/* ==========================================================================
   Yearbook Express — design system & styles
   Palette and type per the brand guide (7.10.26): Kentucky Blue, Photo Blue,
   Camera Gray; DIN Condensed headers with Gotham body. Barlow Condensed and
   Montserrat stand in until the licensed fonts are activated; logo lockups
   are interim HTML/CSS pending the final artwork files.
   ========================================================================== */

:root {
  /* Brand color (approved palette; lighter opacities permitted) */
  --navy-900: #12233d;
  --navy-800: #172c4c;
  --navy: #1b355d;        /* Photo Blue */
  --blue: #0066ac;        /* Kentucky Blue */
  --blue-400: #2e86c9;
  --gray: #a6a7a9;        /* Camera Gray */
  --ink: #16294a;
  --slate: #55647f;
  --paper: #ffffff;
  --mist: #f1f5fa;
  --mist-200: #e2edf6;
  --line: #d5e0eb;

  /* Color roles on dark surfaces (shared: promise, contact, footer) */
  --on-dark: #ffffff;
  --on-dark-muted: #c2d3ea;
  --on-dark-faint: #93a9c8;

  /* Type (stand-ins: Barlow Condensed for DIN Condensed, Montserrat for Gotham) */
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-sans: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-script: "Caveat", cursive;

  /* Layout widths */
  --wrap: 1140px;       /* full section width */
  --content: 820px;     /* centered content sections */
  --statement: 620px;   /* centered statement / tagline blocks */
  --measure: 62ch;      /* body-copy reading measure */

  /* Spacing & shape */
  --section-y: 88px;
  --gutter: 24px;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 20px 44px -26px rgba(20, 48, 78, 0.55);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: .01em;
  text-wrap: balance;
  margin: 0 0 .5rem;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 500; }
h1 em, h1 b, h2 b { font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }

p { margin: 0 0 1rem; text-wrap: pretty; }
a { color: var(--blue); text-decoration: none; }
em { font-style: italic; }

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

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.band { padding: var(--section-y) 0; }
.band.alt { background: var(--mist); }

.section-head { max-width: var(--content); margin-bottom: 42px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.nowrap { white-space: nowrap; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
p.eyebrow.center { display: table; margin-left: auto; margin-right: auto; }

/* Section label in the Express arrow band; the clip-path matches the
   wide-arrow graphic's angled tip so the band stretches with the text. */
.eyebrow {
  display: inline-block;
  margin: 0 0 1.1rem;
  padding: 5px 24px 4px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  clip-path: polygon(0 0, calc(100% - 3px) 0, 100% 48.5%, calc(100% - 8px) 100%, 0 100%);
}

/* Speech-bubble mark above quotes and the closing CTA */
.dialog-mark {
  display: inline-block;
  width: 38px;
  height: 25px;
  background: var(--blue);
  -webkit-mask: url("assets/compact-dialog.svg") center / contain no-repeat;
  mask: url("assets/compact-dialog.svg") center / contain no-repeat;
}
.dialog-mark.light { background: var(--blue-400); }

/* Buttons ----------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  min-height: 45px;
  border: 0;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .12s ease, background .2s ease;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-400); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

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

.site-head {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.head-inner { display: flex; align-items: center; justify-content: space-between; height: 86px; transition: height .25s ease; }
.brand { display: flex; align-items: center; }

/* Wordmark (brand guide logo 2) swaps to the YESS! bubble (logo 5)
   once the header is scrolled. */
.brand-wordmark { display: block; width: auto; height: 66px; }
.brand-yess { display: none; width: auto; height: 42px; }
.site-head.scrolled .head-inner { height: 64px; }
.site-head.scrolled .brand-wordmark { display: none; }
.site-head.scrolled .brand-yess { display: block; }
.nav { display: flex; align-items: center; gap: 28px; }
.navlink {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
}
.navlink:hover { color: var(--blue); }
.nav .btn { padding: 0 20px; min-height: 38px; font-size: .98rem; }

/* Mobile nav: hamburger opens a dropdown panel; the header CTA moves into it */
.nav-toggle { display: none; }
@media (max-width: 880px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 22px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 34px -24px rgba(20, 48, 78, .4);
  }
  .site-head.nav-open .nav { display: flex; }
  .navlink { padding: 14px 0; font-size: 1.3rem; border-bottom: 1px solid var(--mist-200); }
  .nav .btn { margin-top: 18px; min-height: 48px; font-size: 1.05rem; }
  .nav-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
  }
  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background: var(--navy);
    transition: transform .18s ease, opacity .18s ease;
  }
  .nav-toggle-bars { position: relative; }
  .nav-toggle-bars::before { position: absolute; top: -7px; }
  .nav-toggle-bars::after { position: absolute; top: 7px; }
  .site-head.nav-open .nav-toggle-bars { background: transparent; }
  .site-head.nav-open .nav-toggle-bars::before { transform: translateY(7px) rotate(45deg); }
  .site-head.nav-open .nav-toggle-bars::after { transform: translateY(-7px) rotate(-45deg); }
  .brand-wordmark { height: 54px; }
}

/* Hero — full-height photo with a diagonal crop ---------------------------- */

.hero { position: relative; overflow: hidden; background: var(--paper); }
.hero .wrap { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 90px; }
.hero-content { max-width: 600px; }
.hero h1 em { color: var(--blue); font-style: italic; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 47%;
  z-index: 1;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--navy) url("assets/hero-classroom.jpg") center 28% / cover no-repeat;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgba(21, 48, 78, .74) 0%, rgba(21, 48, 78, .32) 52%, rgba(21, 48, 78, .62) 100%);
}
@media (max-width: 840px) {
  .hero .wrap { padding-top: 52px; padding-bottom: 0; }
  .hero-content { max-width: none; }
  .hero-photo { position: relative; width: 100%; height: 230px; margin-top: 28px; clip-path: polygon(0 13%, 100% 0, 100% 100%, 0 100%); }
}

/* Trust strip ------------------------------------------------------------- */

.trust { background: var(--navy-900); color: var(--on-dark-muted); }
.trust .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 34px;
  padding: 20px var(--gutter);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.08rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.trust b { color: #fff; font-weight: 700; }
.trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-400); }
@media (max-width: 860px) {
  .trust .wrap { flex-direction: column; gap: 8px; }
  .trust .dot { display: none; }
}

/* Promise — dark statement band ------------------------------------------- */

.mission {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  text-align: center;
  background: var(--navy);
  color: var(--on-dark);
}
.mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/texture-navy.jpg") left center / 122% auto no-repeat;
  opacity: .15;
}
.mission::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 110% at 50% 0%, rgba(60, 131, 208, .16) 0%, transparent 55%),
    linear-gradient(to bottom, transparent 50%, rgba(16, 34, 58, .45) 100%);
}
.mission .wrap { position: relative; z-index: 1; }
.mission-emblem { display: block; width: 70px; height: auto; margin: 0 auto 22px; fill: rgba(255, 255, 255, .85); }
.attrib {
  margin: 0 0 14px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
}
.mission .statement {
  max-width: var(--statement);
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  line-height: 1.32;
  color: var(--on-dark);
  text-wrap: balance;
}
.promise-sign { margin: 26px 0 0; font-family: var(--font-script); font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; color: var(--on-dark); }
.promise-by { margin: 8px 0 0; font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-muted); }

/* Why Yearbook Express — positioning block -------------------------------- */

.why { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.why-head h2 { margin: 0; }
@media (max-width: 820px) { .why { grid-template-columns: 1fr; gap: 20px; } }
.why-body p { font-size: 1.12rem; line-height: 1.7; color: var(--slate); margin: 0; }
.why-body p + p { margin-top: 1rem; }

/* What you get — ruled benefit rows --------------------------------------- */

.benefits { border-top: 2px solid var(--navy); }
.benefit {
  display: grid;
  grid-template-columns: 248px 1fr;
  gap: 48px;
  align-items: baseline;
  padding: 30px 4px;
  border-bottom: 1px solid var(--line);
}
.benefit-label { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; line-height: 1.02; letter-spacing: .015em; text-transform: uppercase; color: var(--navy); }
.benefit p { margin: 0; font-size: 1.12rem; line-height: 1.6; color: var(--slate); }
.benefit p a { font-weight: 600; white-space: nowrap; }
.benefit-cta { color: var(--blue); }
.benefit-cta::after { content: " \203A"; }
.benefit-cta:hover { text-decoration: underline; }
@media (max-width: 760px) { .benefit { grid-template-columns: 1fr; gap: 8px; } }

/* How it works — steps ----------------------------------------------------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step .num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 63px;
  padding-bottom: 8px; /* keeps the digit in the box, above the tail */
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  background: var(--blue);
  -webkit-mask: url("assets/square-dialog.svg") center / contain no-repeat;
  mask: url("assets/square-dialog.svg") center / contain no-repeat;
}
.step h3 { margin: 10px 0 .3rem; }
.step p { margin: 0; color: var(--slate); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 24px; } }

/* Memento demo band -------------------------------------------------------- */

.demo-band { padding: var(--section-y) 0; background: var(--navy); color: var(--on-dark-muted); }
.demo { display: grid; grid-template-columns: .82fr 1.18fr; gap: 52px; align-items: center; }
.demo-text h2 { color: #fff; }
.demo-text h2 b { color: var(--blue-400); }
.demo-text p:not(.eyebrow) { color: var(--on-dark-muted); margin-bottom: 26px; }
.btn-ghost-light { background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, .28); margin-top: 24px; }
.btn-ghost-light:hover { border-color: #fff; transform: translateY(-1px); }

.demo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 48px -28px rgba(0, 0, 0, .45);
}
.demo-media { position: relative; aspect-ratio: 16 / 9; }
.video-facade {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  color: #fff;
  background:
    linear-gradient(rgba(18, 35, 61, .38), rgba(18, 35, 61, .38)),
    var(--navy-900) url("assets/memento-poster.jpg") center / cover no-repeat;
}
.video-play { display: grid; place-items: center; width: 68px; height: 68px; border-radius: 50%; background: rgba(255, 255, 255, .16); backdrop-filter: blur(2px); transition: transform .15s ease, background .15s ease; }
.video-play::after { content: ""; margin-left: 5px; border-style: solid; border-width: 11px 0 11px 19px; border-color: transparent transparent transparent #fff; }
.video-facade:hover .video-play { transform: scale(1.07); background: var(--blue); }
.video-cap { font-family: var(--font-display); font-weight: 600; font-size: .95rem; letter-spacing: .1em; text-transform: uppercase; }
.demo-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 760px) { .demo { grid-template-columns: 1fr; gap: 30px; } }

/* Find your school --------------------------------------------------------- */

.find-lede { max-width: var(--measure); color: var(--slate); margin: 0 auto; }
@media (max-width: 760px) { .find-side { grid-template-columns: 1fr; } }
.find { max-width: 620px; margin: 0 auto; }
.find-input {
  width: 100%;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2355647f' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.8-3.8'/%3E%3C/svg%3E") 16px center / 19px no-repeat;
  padding: 15px 18px 15px 46px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
}
.find-input:focus { outline: none; border-color: var(--blue); }
.find-results { display: grid; gap: 12px; margin-top: 14px; }
.find-school {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.find-school-name { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; text-transform: uppercase; color: var(--navy); }
.find-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.find-actions .btn { padding: 0 16px; min-height: 36px; font-size: .95rem; }
.find-note {
  padding: 16px 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  font-size: .98rem;
  color: var(--slate);
}
.find-note a { font-weight: 600; }
.find-help { margin: 16px 0 0; text-align: center; font-size: .92rem; color: var(--slate); }
.find-help a { font-weight: 600; }

/* Testimonial ------------------------------------------------------------- */

.testi { max-width: var(--content); margin: 0 auto; text-align: center; }
.testi-slider { max-width: 720px; margin: 0 auto; }
.testi-viewport { overflow: hidden; }
.testi-track { display: flex; align-items: stretch; transition: transform .35s ease; }
.quote { flex: 0 0 100%; margin: 0; padding: 8px 12px 0; }
.quote blockquote {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.25rem, 2.3vw, 1.55rem);
  line-height: 1.45;
  color: var(--navy);
}
.quote figcaption {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
}
.quote figcaption span { display: block; font-weight: 500; color: var(--slate); font-size: .9em; letter-spacing: .04em; }
.testi-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 26px; }
.testi-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0 0 4px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
}
.testi-arrow:hover { border-color: var(--blue); color: var(--blue); }
.testi-dots { display: flex; gap: 9px; }
.testi-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: var(--mist-200); cursor: pointer; }
.testi-dot.on { background: var(--blue); }

/* About Carolyn ----------------------------------------------------------- */

.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: 52px; align-items: center; }
.about p:not(.eyebrow) { color: var(--slate); }
.about-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (max-width: 780px) { .about { grid-template-columns: 1fr; gap: 28px; } }

/* Contact — dark closing band --------------------------------------------- */

.cta-final {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
  background: var(--navy-900);
  color: var(--on-dark);
}
.cta-final::before { content: ""; position: absolute; inset: 0; background: url("assets/texture-navy.jpg") left center / 122% auto no-repeat; opacity: .14; }
.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 35, 61, 0) 62%, var(--navy-900) 100%),
    radial-gradient(ellipse 70% 110% at 50% 0%, rgba(60, 131, 208, .14) 0%, transparent 55%);
}
.cta-final .wrap { position: relative; z-index: 1; }
.cta-final .cta-mark { display: inline-block; height: .78em; width: auto; vertical-align: baseline; }
.cta-bang {
  display: inline-block;
  width: .28em;
  height: .78em;
  margin-left: .07em;
  vertical-align: baseline;
  background: var(--blue-400);
  -webkit-mask: url("assets/bang.svg") center / contain no-repeat;
  mask: url("assets/bang.svg") center / contain no-repeat;
}
.cta-final h2 { color: var(--on-dark); font-size: clamp(2.5rem, 5.2vw, 3.8rem); margin-bottom: 26px; }
.cta-final .btn-primary { padding: 17px 38px 15px; font-size: 1.2rem; background: #fff; color: var(--navy); }
.cta-final .email { margin: 18px 0 0; font-size: .95rem; }
.cta-final .email a { color: var(--on-dark); text-decoration: underline; }

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

.site-foot { padding: 40px 0; background: var(--navy-900); color: var(--on-dark-faint); font-size: .92rem; }
.foot-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px 40px; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px 24px; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .09); }
.foot-legal { margin: 0; font-size: .82rem; color: var(--on-dark-faint); }
.foot-brand-logo { display: block; width: auto; height: 96px; }
.foot-contact { display: flex; flex-wrap: wrap; align-items: baseline; }
.foot-contact a { color: var(--on-dark-muted); }
.foot-contact > * + *::before { content: "\00B7"; margin: 0 10px; color: var(--on-dark-faint); }
.foot-powered { display: flex; align-items: center; gap: 12px; opacity: .9; transition: opacity .15s ease; }
.foot-powered:hover { opacity: 1; }
.foot-powered span { flex: none; font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; color: var(--on-dark-faint); }
.foot-powered img { width: 132px; height: auto; display: block; }

/* Mobile refinements ------------------------------------------------------ */

@media (max-width: 600px) {
  :root { --section-y: 56px; }
  .foot-top { justify-content: center; text-align: center; }
  .foot-brand-logo, .foot-powered { margin-left: auto; margin-right: auto; }
  .foot-bottom { flex-direction: column; align-items: center; gap: 12px; text-align: center; }
  .foot-contact { flex-direction: column; align-items: center; gap: 6px; }
  .foot-contact > * + *::before { content: none; }
  .mission { padding: 52px 0; }
  .cta-final { padding: 68px 0; }
  .about-photo { aspect-ratio: 1; }
}

@media (max-width: 480px) {
  .head-inner { gap: 12px; height: 74px; }
  .brand-wordmark { height: 48px; }
  .brand-yess { height: 36px; }
  .nav .btn { padding: 8px 14px; font-size: .9rem; }
}

/* ==========================================================================
   Coming-soon placeholder (coming-soon.html) — branded interim page that the
   live URL points to before the full site launches. Reuses the design system.
   ========================================================================== */

body.coming {
  min-height: 100vh;
  display: flex;
  background: var(--navy-900);
  color: var(--on-dark);
}

.coming-stage {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 56px var(--gutter) 40px;
  overflow: hidden;
}
.coming-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/texture-navy.jpg") left center / 122% auto no-repeat;
  opacity: .14;
}
.coming-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 90% at 50% 0%, rgba(60, 131, 208, .18) 0%, transparent 58%);
}

.coming-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  text-align: center;
}

/* Brand logo */
.coming-logo {
  display: block;
  width: min(330px, 78%);
  height: auto;
  margin: 0 auto 28px;
}

/* Brand lockup with full legal name (legacy type mark, unused) */
.coming-brand { justify-content: center; gap: 16px; margin-bottom: 30px; }
.coming-name { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.coming .brand-name { color: var(--on-dark); font-size: 1.85rem; }
.coming .brand-name em { color: var(--blue-400); }
.coming-sub {
  margin-top: 5px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
}
/* Single speed streak — echoes the motion line under "EXPRESS" in the logo.
   Skewed to the wordmark's italic angle, tapered at the trailing edge. */
.speed-bar {
  flex: none;
  width: 36px;
  height: 5px;
  background: var(--blue-400);
  border-radius: 1px;
  transform: skewX(-12deg);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
}

.coming-eyebrow { color: var(--on-dark-muted); font-style: italic; letter-spacing: .14em; margin-bottom: 16px; }
.coming-head { color: var(--on-dark); font-style: italic; font-size: clamp(2.4rem, 6vw, 3.8rem); margin-bottom: 18px; }
.coming-head em { color: var(--blue-400); font-style: italic; }
.coming-lede {
  max-width: 52ch;
  margin: 0 auto 14px;
  font-size: 1.18rem;
  line-height: 1.62;
  color: var(--on-dark-muted);
  text-wrap: pretty;
}
.coming-sign {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 4.6vw, 3.2rem);
  line-height: 1;
  color: var(--on-dark);
}
.coming-by {
  margin: 6px 0 40px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
}

/* Save-my-contact card */
.coming-vcard {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 560px;
  margin: 0 auto;
  padding: 26px 30px;
  text-align: left;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(146, 169, 200, .28);
  border-radius: var(--radius);
}
.coming-qr {
  flex: none;
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  padding: 12px;
  background: #fff;
  border-radius: var(--radius-sm);
}
.coming-qr img { display: block; width: 100%; height: 100%; }
.coming-qr-text { min-width: 0; }
.coming-qr-head {
  margin: 0 0 .35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.45rem;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--on-dark);
}
.coming-qr-text > p:not(.coming-qr-head):not(.coming-email) {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--on-dark-muted);
}
.coming-qr-text .btn-primary { background: #fff; color: var(--navy); }
.coming-qr-text .btn-primary:hover { background: var(--mist-200); }
.coming-email { margin: 12px 0 0; font-size: .95rem; }
.coming-email a { color: var(--on-dark); text-decoration: underline; }

.coming-backed {
  max-width: 56ch;
  margin: 34px auto 0;
  font-size: .98rem;
  line-height: 1.55;
  color: var(--on-dark-faint);
  text-wrap: pretty;
}

.coming-foot {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: .9rem;
  color: var(--on-dark-faint);
}
.coming-foot a { color: var(--on-dark-muted); }

@media (max-width: 560px) {
  .coming-vcard { flex-direction: column; gap: 20px; text-align: center; padding: 26px 22px; }
  .coming-qr-text .btn-primary { width: 100%; }
  .coming-brand { gap: 12px; }
  .coming .brand-name { font-size: 1.5rem; }
}
