/* ==========================================================================
   NOEJ UP — feuille de style principale
   Palette : Jaune doré #E9B949 · Anthracite #292929 · Blanc cassé #F8F7F3
   Accent  : Bleu pétrole #1F5A63
   Titres  : Fraunces · Texte : Inter
   ========================================================================== */

:root {
  --gold: #e9b949;
  --gold-dark: #c99b31;
  --anthracite: #292929;
  --anthracite-soft: #3a3a3a;
  --off-white: #f8f7f3;
  --petrol: #1f5a63;

  --ink: var(--anthracite);
  --ink-muted: rgba(41, 41, 41, 0.66);
  --rule: rgba(41, 41, 41, 0.14);
  --rule-light: rgba(248, 247, 243, 0.18);

  --font-title: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-text: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shell: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --header-h: 84px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

/* --------------------------------------------------------- Typographie -- */

h1,
h2,
h3,
h4 {
  font-family: var(--font-title);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p {
  margin: 0 0 1.15em;
  max-width: 68ch;
}

p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  font-family: var(--font-text);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}

.eyebrow--light {
  color: rgba(248, 247, 243, 0.62);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.6;
  color: var(--ink-muted);
}

/* ------------------------------------------------------------- Layout -- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(4rem, 9vw, 7.5rem);
}

.section--tight {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.section--dark {
  background: var(--anthracite);
  color: var(--off-white);
}

.section--dark .lead {
  color: rgba(248, 247, 243, 0.72);
}

.rule {
  height: 1px;
  border: 0;
  margin: 0;
  background: var(--rule);
}

.rule--spaced {
  margin-block: clamp(2rem, 4vw, 2.75rem);
}

/* ------------------------------------------------------------ Symbole -- */

.mark {
  display: block;
  flex: none;
  overflow: visible;
}

.mark path {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
}

.mark .mark-left {
  stroke: var(--anthracite);
}

.mark .mark-right {
  stroke: var(--gold);
}

.mark .mark-base {
  stroke: var(--petrol);
}

.mark--light .mark-left {
  stroke: var(--off-white);
}

.mark--gold .mark-left,
.mark--gold .mark-right {
  stroke: var(--gold);
}

.mark--gold .mark-base {
  stroke: rgba(233, 185, 73, 0.45);
}

/* ------------------------------------------------------------- Header -- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--anthracite);
  color: var(--off-white);
  border-bottom: 1px solid transparent;
  transition: height 0.3s var(--ease), border-color 0.3s var(--ease);
}

.site-header.is-scrolled {
  height: 68px;
  border-bottom-color: var(--rule-light);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.brand .mark {
  width: 30px;
  height: 30px;
  transition: transform 0.5s var(--ease);
}

.brand:hover .mark {
  transform: translateY(-2px);
}

.brand-name {
  font-family: var(--font-title);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  padding-top: 2px;
}

/* --------------------------------------------------------------- Menu -- */

.burger {
  --bar: 1.5px;
  position: relative;
  z-index: 2;
  width: 52px;
  height: 40px;
  display: grid;
  place-content: center;
  gap: 7px;
  padding: 0;
  border: 1px solid var(--rule-light);
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}

.burger:hover {
  border-color: var(--gold);
}

.burger span {
  display: block;
  width: 22px;
  height: var(--bar);
  background: currentColor;
  transition: transform 0.4s var(--ease), opacity 0.2s linear,
    background-color 0.3s var(--ease);
}

.burger span:nth-child(2) {
  width: 14px;
  margin-left: auto;
  background: var(--gold);
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--anthracite);
  color: var(--off-white);
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s var(--ease), opacity 0.4s var(--ease),
    visibility 0s linear 0.6s;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.6s var(--ease), opacity 0.3s var(--ease),
    visibility 0s;
}

.nav-overlay .shell {
  width: 100%;
  padding-top: var(--header-h);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule-light);
}

.nav-list li {
  border-bottom: 1px solid var(--rule-light);
  overflow: hidden;
}

.nav-link {
  display: flex;
  align-items: baseline;
  gap: clamp(1rem, 4vw, 3rem);
  padding: clamp(0.9rem, 2.4vw, 1.6rem) 0;
  text-decoration: none;
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 6vw, 3.6rem);
  line-height: 1.05;
  color: var(--off-white);
  transform: translateY(110%);
  transition: color 0.3s var(--ease), transform 0.7s var(--ease),
    padding-left 0.4s var(--ease);
}

.nav-overlay.is-open .nav-link {
  transform: translateY(0);
}

.nav-overlay.is-open li:nth-child(1) .nav-link {
  transition-delay: 0.08s;
}
.nav-overlay.is-open li:nth-child(2) .nav-link {
  transition-delay: 0.14s;
}
.nav-overlay.is-open li:nth-child(3) .nav-link {
  transition-delay: 0.2s;
}
.nav-overlay.is-open li:nth-child(4) .nav-link {
  transition-delay: 0.26s;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--gold);
  padding-left: 0.75rem;
}

.nav-link[aria-current="page"] {
  color: var(--gold);
}

.nav-index {
  font-family: var(--font-text);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: rgba(248, 247, 243, 0.42);
}

.nav-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.5rem;
  align-items: center;
  margin-top: clamp(2rem, 5vw, 3.5rem);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(248, 247, 243, 0.6);
}

.nav-foot a {
  text-decoration: none;
  border-bottom: 1px solid rgba(233, 185, 73, 0.5);
  padding-bottom: 2px;
  transition: color 0.25s var(--ease);
}

.nav-foot a:hover {
  color: var(--gold);
}

/* --------------------------------------------------------------- Hero -- */

.hero {
  position: relative;
  background: var(--anthracite);
  color: var(--off-white);
  padding-top: calc(var(--header-h) + clamp(3.5rem, 9vw, 7rem));
  padding-bottom: clamp(3.5rem, 9vw, 7rem);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--anthracite-soft) 0 33.33%,
    var(--gold) 33.33% 66.66%,
    var(--petrol) 66.66% 100%
  );
}

.hero-mark {
  position: absolute;
  top: 50%;
  right: calc(var(--gutter) * -0.25);
  width: clamp(220px, 34vw, 460px);
  height: auto;
  transform: translateY(-50%);
  opacity: 0.14;
  pointer-events: none;
}

.hero .shell {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(3.4rem, 12vw, 8.5rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin: 1.4rem 0 0;
}

.hero-title .up {
  color: var(--gold);
}

.hero-tagline {
  font-family: var(--font-title);
  font-size: clamp(1.15rem, 2.6vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(248, 247, 243, 0.88);
  margin: 1.6rem 0 0;
  max-width: 26ch;
}

.hero-sep {
  width: 96px;
  height: 2px;
  background: var(--gold);
  margin: clamp(1.8rem, 4vw, 2.6rem) 0;
  border: 0;
}

.hero-intro {
  max-width: 52ch;
  color: rgba(248, 247, 243, 0.72);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: clamp(2rem, 4vw, 2.8rem);
}

/* Hero secondaire (pages intérieures) */

.page-hero {
  background: var(--anthracite);
  color: var(--off-white);
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem));
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--anthracite-soft) 0 33.33%,
    var(--gold) 33.33% 66.66%,
    var(--petrol) 66.66% 100%
  );
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  margin-top: 1rem;
}

.page-hero .lead {
  margin-top: 1.4rem;
  max-width: 56ch;
}

/* -------------------------------------------------------------- Boutons -- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-text);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--anthracite);
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--off-white);
  border-color: var(--rule-light);
}

.btn--ghost:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn--dark {
  background: var(--anthracite);
  border-color: var(--anthracite);
  color: var(--off-white);
}

.btn--dark:hover {
  background: var(--petrol);
  border-color: var(--petrol);
}

/* ------------------------------------------------------------ Sections -- */

.section-head {
  display: grid;
  gap: 1.2rem;
  max-width: 62ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
}

.blocks {
  border-top: 1px solid var(--rule);
}

.block {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(1.25rem, 4vw, 4rem);
  padding-block: clamp(2.25rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--rule);
}

.block-aside {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.block-aside .mark {
  width: 26px;
  height: 26px;
  margin-top: 0.35rem;
}

.block-num {
  font-family: var(--font-text);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold-dark);
  padding-top: 0.7rem;
}

.block h3 {
  font-size: clamp(1.45rem, 2.9vw, 2.05rem);
  margin-bottom: 1rem;
}

.block-body p {
  color: var(--ink-muted);
}

.block:hover .mark {
  transform: translateY(-3px);
}

.block .mark {
  transition: transform 0.5s var(--ease);
}

/* ----------------------------------------------------------- Colonnes -- */

.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--rule);
  background: #fff;
  display: grid;
  gap: 1rem;
  align-content: start;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.card:hover {
  border-color: rgba(41, 41, 41, 0.35);
  transform: translateY(-3px);
}

.card .mark {
  width: 24px;
  height: 24px;
}

.card h3 {
  font-size: 1.3rem;
}

.card p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin: 0;
}

.section--dark .card {
  background: transparent;
  border-color: var(--rule-light);
}

.section--dark .card p {
  color: rgba(248, 247, 243, 0.7);
}

.section--dark .card:hover {
  border-color: rgba(233, 185, 73, 0.6);
}

/* --------------------------------------------------------------- Stats -- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-top: 1px solid var(--rule-light);
  border-left: 1px solid var(--rule-light);
}

.stat {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-right: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}

.stat-value {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1;
  color: var(--gold);
}

.stat-label {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(248, 247, 243, 0.66);
}

/* ------------------------------------------------------------ Timeline -- */

.steps {
  counter-reset: step;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.step {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: clamp(1.6rem, 3.5vw, 2.4rem);
  border-bottom: 1px solid var(--rule);
}

.step-index {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--petrol);
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.step p {
  color: var(--ink-muted);
  font-size: 0.96rem;
  margin: 0;
}

/* ---------------------------------------------------------------- CTA -- */

.cta {
  background: var(--anthracite);
  color: var(--off-white);
  padding-block: clamp(3.5rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.cta .shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.6rem;
  justify-items: start;
}

.cta h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 20ch;
}

.cta-mark {
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: clamp(200px, 28vw, 340px);
  opacity: 0.12;
  pointer-events: none;
}

/* ----------------------------------------------------------- Formulaire -- */

.form {
  display: grid;
  gap: 1.4rem;
  max-width: 620px;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-text);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--petrol);
  box-shadow: 0 0 0 2px rgba(31, 90, 99, 0.12);
}

.form-note {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin: 0;
}

.form-status {
  font-size: 0.9rem;
  color: var(--petrol);
  margin: 0;
  min-height: 1.4em;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.contact-list dt {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.3rem;
}

.contact-list dd {
  margin: 0;
}

.contact-list a {
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.contact-list a:hover {
  color: var(--petrol);
  border-color: var(--petrol);
}

/* ------------------------------------------------------------- Footer -- */

.site-footer {
  background: var(--anthracite);
  color: rgba(248, 247, 243, 0.72);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: 0.9rem;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--rule-light);
}

.footer-brand {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.footer-brand .brand-name {
  color: var(--off-white);
  font-size: 1.35rem;
}

.footer-brand .mark {
  width: 34px;
}

.footer-col h4 {
  font-family: var(--font-text);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 247, 243, 0.5);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-col a {
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  justify-content: space-between;
  padding-top: 1.6rem;
  font-size: 0.8rem;
  color: rgba(248, 247, 243, 0.5);
}

/* ------------------------------------------------------------ Utilités -- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--gold);
  color: var(--anthracite);
  padding: 0.8rem 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 720px) {
  :root {
    --header-h: 72px;
  }

  .block,
  .step {
    grid-template-columns: 1fr;
  }

  .block-num {
    padding-top: 0.35rem;
  }

  .hero-mark {
    opacity: 0.08;
  }
}

/* ----------------------------------------------------- En construction -- */

body.is-coming-soon {
  background: var(--anthracite);
  color: var(--off-white);
  min-height: 100vh;
  min-height: 100dvh;
}

.coming-soon {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.coming-soon::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--anthracite-soft) 0 33.33%,
    var(--gold) 33.33% 66.66%,
    var(--petrol) 66.66% 100%
  );
}

.coming-soon__glow {
  position: absolute;
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(233, 185, 73, 0.16) 0%,
    rgba(31, 90, 99, 0.1) 42%,
    transparent 70%
  );
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: coming-soon-pulse 7s var(--ease) infinite alternate;
}

.coming-soon__mark {
  position: absolute;
  top: 50%;
  right: calc(var(--gutter) * -0.2);
  width: clamp(240px, 38vw, 520px);
  height: auto;
  transform: translateY(-50%);
  opacity: 0.12;
  pointer-events: none;
  animation: coming-soon-drift 12s var(--ease) infinite alternate;
}

.coming-soon__shell {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: coming-soon-rise 1.1s var(--ease) both;
}

.coming-soon__eyebrow {
  animation: coming-soon-rise 1s var(--ease) 0.1s both;
}

.coming-soon__brand {
  font-size: clamp(3.2rem, 11vw, 7.5rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin: 1.2rem 0 0;
  line-height: 1;
}

.coming-soon__brand .up {
  color: var(--gold);
}

.coming-soon .hero-sep {
  margin-inline: auto;
}

.coming-soon__title {
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(248, 247, 243, 0.9);
  margin: 0;
}

.coming-soon__text {
  margin: 1.25rem 0 0;
  max-width: 36ch;
  color: rgba(248, 247, 243, 0.68);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.7;
}

.coming-soon .btn {
  margin-top: clamp(2rem, 4vw, 2.8rem);
}

.coming-soon__foot {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 247, 243, 0.38);
}

@keyframes coming-soon-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes coming-soon-pulse {
  from {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes coming-soon-drift {
  from {
    transform: translateY(-52%) rotate(-2deg);
  }
  to {
    transform: translateY(-46%) rotate(2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .nav-link {
    transform: none;
  }

  .coming-soon__shell,
  .coming-soon__eyebrow,
  .coming-soon__glow,
  .coming-soon__mark {
    animation: none;
  }
}

@media print {
  .site-header,
  .nav-overlay,
  .cta {
    display: none;
  }
}
