/* ========================================================================
   L'ORANGER STUDIO — CONSEIL
   Feuille de styles
   ======================================================================== */

:root {
  --blue: #1F3E74;
  --blue-deep: #14275A;
  --blue-soft: #2A4A85;
  --red: #E97578;
  --yellow: #FCD74B;
  --green: #6DCD86;
  --paper: #FAF6EE;
  --paper-warm: #F2EAD8;
  --ink: #0E1A35;
  --ink-soft: #2A3656;
  --light: #D3ECFF;
  --line: rgba(20, 39, 90, .12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

::selection { background: var(--yellow); color: var(--ink); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 820px; }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 32px;
  background: rgba(31, 62, 116, 0);
  transition: background .3s ease, backdrop-filter .3s ease;
  display: flex; justify-content: space-between; align-items: center;
}
.nav.scrolled {
  background: rgba(31, 62, 116, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav__brand {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: 19px;
  letter-spacing: .02em;
  color: var(--light);
}
.nav__brand span { font-style: italic; opacity: .75; font-weight: 400; }
.nav__menu {
  display: flex; gap: 4px; align-items: center;
  list-style: none;
}
.nav__menu a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  color: rgba(211, 236, 255, .75);
  padding: 8px 16px;
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav__menu a:hover { color: var(--light); background: rgba(211, 236, 255, .08); }
.nav__menu a[aria-current="page"] {
  color: var(--ink);
  background: var(--yellow);
}
.nav__cta {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--light);
  padding: 10px 18px;
  border: 1px solid rgba(211, 236, 255, .35);
  border-radius: 999px;
  margin-left: 8px;
  transition: background .2s, border-color .2s;
}
.nav__cta:hover { background: rgba(252, 215, 75, .15); border-color: var(--yellow); }
.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(211, 236, 255, .35);
  color: var(--light);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
}
@media (max-width: 880px) {
  .nav__menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--blue-deep); padding: 16px; flex-direction: column; gap: 0; }
  .nav__menu.is-open { display: flex; }
  .nav__menu li { width: 100%; }
  .nav__menu a { display: block; padding: 12px 16px; }
  .nav__cta { display: none; }
  .nav__toggle { display: inline-block; }
}

/* ============ HERO ============ */
.hero {
  background: var(--blue);
  color: var(--light);
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(252, 215, 75, .07), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(109, 205, 134, .04), transparent 55%);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 880px; }
.hero__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 32px;
  display: inline-flex; align-items: center; gap: 12px;
}
.hero__eyebrow::before { content: ""; display: inline-block; width: 28px; height: 1px; background: var(--yellow); }
.hero__title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(48px, 7.5vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero__title em { font-style: italic; color: var(--yellow); font-weight: 400; }
.hero__subtitle {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  margin-bottom: 40px;
  color: rgba(211, 236, 255, .9);
  max-width: 720px;
}
.hero__subtitle em { font-style: normal; color: var(--yellow); font-weight: 500; }
.hero__pitch {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(211, 236, 255, .8);
  max-width: 640px;
  margin-bottom: 44px;
}
.hero__pitch strong { color: var(--light); font-weight: 600; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============ BUTTONS ============ */
.btn {
  font-family: 'DM Sans', sans-serif;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: none;
}
.btn--primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 4px 0 rgba(0,0,0,.15);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 rgba(0,0,0,.18); }
.btn--ghost {
  background: transparent;
  color: var(--light);
  border: 1.5px solid rgba(211, 236, 255, .3);
}
.btn--ghost:hover { border-color: var(--light); background: rgba(211, 236, 255, .08); }
.btn--dark {
  background: var(--blue);
  color: var(--light);
}
.btn--dark:hover { background: var(--blue-deep); transform: translateY(-2px); }

/* ============ BIFURCATION ============ */
.doors { background: var(--paper); padding: 110px 0; }
.doors__intro {
  max-width: 700px;
  margin: 0 auto 70px;
  text-align: center;
}
.doors__intro .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: .55;
  margin-bottom: 18px;
  display: block;
}
.doors__intro h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.doors__intro h2 em { font-style: italic; color: var(--blue); }
.doors__intro p { color: var(--ink-soft); font-size: 18px; }

.doors__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 800px) { .doors__grid { grid-template-columns: 1fr; } }

.door {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 44px 36px;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.door:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -16px rgba(20, 39, 90, .2);
  border-color: var(--blue);
}
.door__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.door__num::before { content: ""; width: 28px; height: 2px; background: var(--blue); display: inline-block; }
.door:nth-child(1) .door__num { color: var(--blue); }
.door:nth-child(1) .door__num::before { background: var(--blue); }
.door:nth-child(2) .door__num { color: #B68B11; }
.door:nth-child(2) .door__num::before { background: var(--yellow); }

.door h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.door h3 em { font-style: italic; }
.door__desc {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(20, 39, 90, .15);
}
.door__cases {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: .6;
  margin-bottom: 14px;
}
.door ul {
  list-style: none; padding: 0;
  margin-bottom: 32px;
  flex: 1;
}
.door li {
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.45;
  display: flex; align-items: flex-start; gap: 12px;
  border-top: 1px solid rgba(20, 39, 90, .08);
}
.door li:first-child { border-top: none; }
.door li::before {
  content: "→";
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  padding-top: 1px;
}
.door:nth-child(2) li::before { color: #B68B11; }

.door__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--blue);
  align-self: flex-start;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--blue);
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.door__cta:hover { background: var(--blue); color: var(--light); transform: translateY(-2px); }
.door:nth-child(2) .door__cta { color: var(--ink); border-color: #B68B11; }
.door:nth-child(2) .door__cta:hover { background: var(--yellow); color: var(--ink); }

/* ============ SERVICES ============ */
.services { background: var(--blue-deep); color: var(--light); padding: 120px 0; }
.services__intro {
  max-width: 720px;
  margin: 0 auto 70px;
  text-align: center;
}
.services__intro .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
  display: block;
}
.services__intro h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.services__intro p { opacity: .75; font-size: 18px; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .services__grid { grid-template-columns: 1fr; } }

.service {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 40px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.service:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.06);
  border-color: rgba(252, 215, 75, .2);
}
.service__num {
  font-family: 'Fraunces', serif;
  font-weight: 200;
  font-size: 80px;
  line-height: 1;
  color: rgba(252, 215, 75, .25);
  margin-bottom: 18px;
  font-variation-settings: "opsz" 144;
}
.service h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.service__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(252, 215, 75, .12);
  color: var(--yellow);
  display: inline-block;
  margin-bottom: 18px;
  align-self: flex-start;
}
.service p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(211, 236, 255, .8);
  margin-bottom: 22px;
}
.service__missions {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .55;
  margin-bottom: 12px;
}
.service__list {
  list-style: none; padding: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(211, 236, 255, .75);
  flex: 1;
}
.service__list li {
  padding: 8px 0;
  border-top: 1px dashed rgba(255,255,255,.06);
}
.service__list li:first-child { border-top: none; }

/* ============ MÉTHODE ============ */
.method { background: var(--paper); padding: 120px 0; }
.method__intro {
  max-width: 720px;
  margin: 0 auto 70px;
  text-align: center;
}
.method__intro .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: .55;
  margin-bottom: 18px;
  display: block;
}
.method__intro h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.method__intro h2 em { font-style: italic; color: var(--blue); }

.method__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 900px) { .method__steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .method__steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 32px 24px;
  background: var(--paper-warm);
  border-radius: 10px;
  border: 1px solid var(--line);
}
.step__num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: var(--blue);
  margin-bottom: 14px;
  font-variation-settings: "opsz" 144;
}
.step:nth-child(1) .step__num { color: var(--red); }
.step:nth-child(2) .step__num { color: #B68B11; }
.step:nth-child(3) .step__num { color: var(--blue); }
.step:nth-child(4) .step__num { color: #2F8F4D; }

.step h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.step__meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(20, 39, 90, .15);
  color: var(--blue);
  opacity: .55;
}

/* ============ ABOUT ============ */
.about { background: var(--paper-warm); padding: 110px 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; gap: 50px; } }

.about__content h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.about__content h2 em { font-style: italic; color: var(--blue); }
.about__content p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.about__content p strong { color: var(--ink); }

.about__creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--paper);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--line);
}
.about__cred {
  padding: 12px 0;
}
.about__cred:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 16px; }
.about__cred:nth-child(even) { padding-left: 16px; }
@media (max-width: 600px) {
  .about__creds { grid-template-columns: 1fr; }
  .about__cred:nth-child(odd) { border-right: none; padding-right: 0; }
  .about__cred:nth-child(even) { padding-left: 0; border-top: 1px solid var(--line); }
}
.about__cred-value {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  color: var(--blue);
  margin-bottom: 6px;
  font-variation-settings: "opsz" 144;
}
.about__cred:nth-child(1) .about__cred-value { color: var(--red); }
.about__cred:nth-child(2) .about__cred-value { color: #B68B11; }
.about__cred:nth-child(3) .about__cred-value { color: var(--blue); }
.about__cred:nth-child(4) .about__cred-value { color: #2F8F4D; }
.about__cred-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .65;
  line-height: 1.4;
}

/* ============ FAQ ============ */
.faq { background: var(--paper); padding: 110px 0; }
.faq__head {
  text-align: center;
  margin-bottom: 60px;
}
.faq__head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.faq__head h2 em { font-style: italic; color: var(--blue); }
.faq__list { max-width: 820px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--blue);
  transition: transform .2s, color .2s;
  flex-shrink: 0;
}
.faq__item[open] summary::after { content: "−"; color: var(--yellow); }
.faq__item summary:hover { color: var(--blue); }
.faq__answer {
  padding: 0 0 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 92%;
}
.faq__answer strong { color: var(--ink); }
.faq__answer em { font-style: italic; color: var(--blue); }

/* ============ CONTACT ============ */
.contact { background: var(--blue); color: var(--light); padding: 120px 0; position: relative; overflow: hidden; }
.contact::before {
  content: ""; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--yellow), transparent 70%);
  opacity: .12;
  pointer-events: none;
}
.contact__inner { position: relative; max-width: 920px; margin: 0 auto; }
.contact__head {
  text-align: center;
  margin-bottom: 60px;
}
.contact__head .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
  display: block;
}
.contact__head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.contact__head h2 em { font-style: italic; color: var(--yellow); }
.contact__head p {
  color: rgba(211, 236, 255, .8);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto;
}

.contact__cta-block {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(252, 215, 75, .25);
  border-radius: 14px;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}
.contact__cta-block h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 12px;
}
.contact__cta-block p { opacity: .75; margin-bottom: 24px; font-size: 15px; }
.contact__cta-block .btn { font-size: 16px; padding: 18px 32px; }

.contact__divider {
  text-align: center;
  margin: 40px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .4;
  position: relative;
}
.contact__divider::before, .contact__divider::after {
  content: ""; position: absolute; top: 50%;
  width: 25%; height: 1px; background: rgba(255,255,255,.15);
}
.contact__divider::before { left: 10%; }
.contact__divider::after { right: 10%; }

.form {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form input, .form select, .form textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(211, 236, 255, .25);
  color: var(--light);
  padding: 16px 20px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  width: 100%;
  transition: border-color .2s, background .2s;
}
.form input::placeholder, .form textarea::placeholder { color: rgba(211, 236, 255, .5); }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(255,255,255,.1);
}
.form select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23D3ECFF' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 22px center; padding-right: 44px; }
.form textarea {
  min-height: 130px;
  resize: vertical;
  font-family: 'DM Sans', sans-serif;
}
.form button {
  background: var(--yellow); color: var(--ink);
  border: none;
  padding: 18px 32px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s ease;
  justify-self: end;
}
.form button:hover { transform: translateY(-2px); }
.form__note {
  font-size: 13px;
  opacity: .55;
  text-align: center;
  margin-top: 12px;
}

/* ============ FOOTER ============ */
.footer { background: var(--blue-deep); color: var(--light); padding: 60px 0 40px; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 700px) { .footer__grid { grid-template-columns: 1fr; gap: 30px; } }
.footer__brand h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 8px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.footer__brand h3 em { font-style: italic; opacity: .7; font-weight: 300; }
.footer__brand p { font-size: 14px; opacity: .55; max-width: 320px; line-height: 1.5; }
.footer__col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .5;
  margin-bottom: 14px;
}
.footer__col ul { list-style: none; padding: 0; }
.footer__col li { margin-bottom: 8px; font-size: 14px; }
.footer__col a { opacity: .8; transition: opacity .2s, color .2s; }
.footer__col a:hover { opacity: 1; color: var(--yellow); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .08em;
  opacity: .5;
  flex-wrap: wrap; gap: 12px;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.hero__eyebrow, .hero__title, .hero__subtitle, .hero__pitch, .hero__ctas {
  opacity: 0;
  animation: fadeUp .8s ease forwards;
}
.hero__eyebrow { animation-delay: .15s; }
.hero__title { animation-delay: .3s; }
.hero__subtitle { animation-delay: .45s; }
.hero__pitch { animation-delay: .6s; }
.hero__ctas { animation-delay: .75s; }

/* ============ MERCI ============ */
.merci {
  min-height: 100vh;
  background: var(--blue);
  color: var(--light);
  display: flex;
  align-items: center;
  text-align: center;
  padding: 120px 32px 60px;
}
.merci__inner { max-width: 600px; margin: 0 auto; }
.merci__check {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
  color: var(--ink);
  font-size: 40px;
  font-weight: 600;
}
.merci h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.merci h1 em { font-style: italic; color: var(--yellow); }
.merci p { font-size: 19px; opacity: .85; margin-bottom: 36px; }
.merci a { display: inline-block; }
