/* ============================================================================
   CASA MEDIA NETWORK - standalone premium brand
   Deliberately distinct from the CASA NEXUS parent (assets/styles.css):
   deep ink tones, a single brass-gold accent, editorial typography, and a
   lot of air. The parent is warm and rust-toned; this brand is dark, refined,
   and made for executives. A studio for voices that carry.
   ============================================================================ */

:root {
  /* Ink - warm near-blacks, never pure #000 */
  --ink:        #12100c;
  --ink-900:    #171410;
  --ink-800:    #1e1a14;
  --ink-700:    #29231a;
  --ink-600:    #3a3125;
  --line-dark:  rgba(199,162,76,.18);

  /* Paper - warm creams for the light sections */
  --paper:      #f6f1e6;
  --paper-2:    #efe7d6;
  --paper-3:    #e6dcc6;
  --line-light: #ded2b8;

  /* Brass gold - the one accent, used with restraint */
  --gold:       #c7a24c;
  --gold-bright:#dcbb6a;
  --gold-soft:  #e7d3a0;
  --gold-deep:  #9a7b2e;

  /* Text */
  --on-dark:      #f3ecdd;
  --on-dark-soft: #c4b7a0;
  --on-dark-dim:  #9a8f7c;
  --on-light:     #221d15;
  --on-light-soft:#5b5142;

  --font-display: "Bodoni Moda", "Times New Roman", Georgia, serif;
  --font-sans:    "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1200px;
  --radius: 3px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

/* --------------------------------------------------------------- layout */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 28px; }

section { position: relative; }
.pad   { padding-block: clamp(4rem, 9vw, 8rem); }
.pad-sm{ padding-block: clamp(3rem, 6vw, 5rem); }

/* Alternating surfaces */
.surface-ink   { background: var(--ink);     color: var(--on-dark); }
.surface-ink-2 { background: var(--ink-900); color: var(--on-dark); }
.surface-paper { background: var(--paper);   color: var(--on-light); }
.surface-paper .kicker { color: var(--gold-deep); }
.surface-paper .lede,
.surface-paper .section-intro { color: var(--on-light-soft); }

/* --------------------------------------------------------------- type */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.05; margin: 0; letter-spacing: -.01em; overflow-wrap: break-word; hyphens: auto; }

.display {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.02em;
}
.display em { font-style: italic; font-weight: 400; }

h2.headline { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.04; }
h3 { font-size: 1.35rem; letter-spacing: 0; }

.kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.lede {
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.55;
  color: var(--on-dark-soft);
  max-width: 46ch;
}

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-intro { font-size: 1.08rem; color: var(--on-dark-soft); margin-top: 1rem; }

.eyebrow-rule {
  display: flex; align-items: center; gap: .9rem;
  font-family: var(--font-sans);
  font-size: .72rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow-rule::before { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: .7; }

.thread {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-soft);
}

/* --------------------------------------------------------------- buttons */
.btn {
  --btn-fg: var(--ink);
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-sans);
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: .95rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--on-dark); border-color: var(--line-dark); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }
.surface-paper .btn-ghost { color: var(--on-light); border-color: var(--line-light); }
.surface-paper .btn-ghost:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.btn-lg { padding: 1.1rem 2rem; font-size: .86rem; }
.btn-sm { padding: .6rem 1rem; font-size: .72rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-sans);
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.link-arrow svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* --------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.24rem;
  letter-spacing: .02em;
  color: var(--on-dark);
}
.brand-sub {
  font-family: var(--font-sans);
  font-size: .58rem; font-weight: 600; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold); margin-top: .35rem;
}
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-family: var(--font-sans);
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  text-decoration: none; color: var(--on-dark-soft);
  position: relative; padding: .3rem 0;
  transition: color .3s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--on-dark); }
.nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--gold);
}
.header-cta { display: flex; align-items: center; gap: 1.2rem; }
.header-book { display: inline-flex; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-dark); color: var(--on-dark);
  width: 44px; height: 44px; border-radius: var(--radius); cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.mobile-only { display: none; }

/* --------------------------------------------------------------- hero */
.hero { position: relative; overflow: hidden; background: var(--ink); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 82% -10%, rgba(199,162,76,.16), transparent 55%),
    radial-gradient(90% 70% at -10% 110%, rgba(199,162,76,.08), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3.5rem, 8vw, 7rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-meta {
  margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem;
  font-size: .82rem; color: var(--on-dark-dim); letter-spacing: .02em;
}
.hero-meta strong { color: var(--gold-soft); font-weight: 600; display: block; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: .2rem; }

.hero-figure { position: relative; }
/* The studio photography is shot wide, and the full frame is the point: the
   chairs, the microphones, the cameras and the lighting all read in one shot.
   A fixed-height box cropped roughly a third off each side, so the holder
   takes its height from the photo's own 3:2 proportions instead and the whole
   studio survives at every width. */
.hero-figure img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 3 / 2; object-fit: cover;
  filter: saturate(.92) contrast(1.03);
}
/* Frameless: no border, no card edge. The photo is lit in the centre and
   falls off into the page's ink at every edge, so it reads as a shot caught
   under studio lighting during a session rather than a framed picture. */
.hero-figure::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(135% 125% at 50% 42%, transparent 48%, var(--ink) 100%);
}
.hero-badge {
  position: absolute; left: -18px; bottom: 28px; z-index: 2;
  background: var(--gold); color: var(--ink);
  font-family: var(--font-sans); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: .7rem 1.1rem; border-radius: var(--radius);
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.7);
}

/* --------------------------------------------------------------- generic cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 1.4rem; }
.card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  background: var(--ink-800);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.surface-paper .card { background: #fff; border-color: var(--line-light); box-shadow: 0 20px 40px -32px rgba(60,45,10,.35); }
.card:hover { transform: translateY(-5px); border-color: var(--gold); }
.card-icon {
  width: 46px; height: 46px; border-radius: var(--radius);
  display: grid; place-items: center; margin-bottom: 1.2rem;
  background: rgba(199,162,76,.12); color: var(--gold);
  border: 1px solid var(--line-dark);
}
.surface-paper .card-icon { background: rgba(154,123,46,.1); color: var(--gold-deep); border-color: var(--line-light); }
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.28rem; margin-bottom: .5rem; }
.card p { margin: 0; color: var(--on-dark-soft); font-size: .97rem; }
.surface-paper .card p { color: var(--on-light-soft); }

/* --------------------------------------------------------------- feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { width: 100%; height: clamp(300px, 40vw, 480px); object-fit: cover; border-radius: var(--radius); }
.split-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.split-list li { position: relative; padding-left: 1.9rem; color: var(--on-dark-soft); }
.surface-paper .split-list li { color: var(--on-light-soft); }
.split-list li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 10px; height: 10px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}
.split-list strong { color: var(--on-dark); font-weight: 600; }
.surface-paper .split-list strong { color: var(--on-light); }

/* --------------------------------------------------------------- photo placeholder */
.photo-ph {
  display: grid; place-items: center; text-align: center;
  min-height: clamp(300px, 40vw, 480px);
  border: 1px dashed var(--line-dark); border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(199,162,76,.05) 0 12px, transparent 12px 24px),
    var(--ink-800);
  color: var(--on-dark-dim); padding: 2rem;
}
.surface-paper .photo-ph { background: repeating-linear-gradient(45deg, rgba(154,123,46,.06) 0 12px, transparent 12px 24px), var(--paper-2); border-color: var(--line-light); color: var(--on-light-soft); }
.photo-ph span { font-family: var(--font-sans); font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.photo-ph svg { width: 34px; height: 34px; margin-bottom: .8rem; opacity: .6; }

/* Visible content placeholder (for missing copy/testimonials) */
.placeholder-note {
  display: inline-block;
  font-family: var(--font-sans); font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  color: var(--gold-deep); background: rgba(199,162,76,.12);
  border: 1px dashed var(--gold); border-radius: var(--radius);
  padding: .5rem .8rem;
}

/* --------------------------------------------------------------- CTA band */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 50% -20%, rgba(199,162,76,.18), transparent 60%);
}
.cta-inner { position: relative; z-index: 1; max-width: 44ch; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2rem; }

/* --------------------------------------------------------------- watch / video */
.show-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; }
.show-head h3 { font-size: 1.7rem; }
.show-head p { margin: .4rem 0 0; color: var(--on-dark-soft); max-width: 52ch; }

.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: 1.3rem; }
.video-card { position: relative; margin: 0; }
.video-facade {
  position: relative; display: block; width: 100%; padding: 0; border: 0; cursor: pointer;
  background: var(--ink-800); border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16 / 9;
}
.video-facade img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), opacity .4s; opacity: .9; }
.video-facade:hover img { transform: scale(1.05); opacity: 1; }
.video-play {
  position: absolute; inset: 0; display: grid; place-items: center; color: var(--on-dark);
}
.video-play svg {
  width: 58px; height: 58px; padding: 15px; border-radius: 50%;
  background: color-mix(in srgb, var(--gold) 92%, transparent); color: var(--ink);
  transition: transform .35s var(--ease);
  box-shadow: 0 12px 30px -12px rgba(0,0,0,.7);
}
.video-facade:hover .video-play svg { transform: scale(1.08); }
.video-show {
  position: absolute; left: 12px; top: 12px;
  background: color-mix(in srgb, var(--ink) 78%, transparent); color: var(--gold-soft);
  font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: .35rem .6rem; border-radius: var(--radius); backdrop-filter: blur(6px);
}
.video-frame { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: var(--radius); display: block; }
.video-card figcaption { margin-top: .8rem; font-size: .98rem; color: var(--on-dark-soft); }
.reel-loading { color: var(--on-dark-dim); font-style: italic; grid-column: 1 / -1; }

.channel-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 1.4rem; margin-bottom: 3rem; }
.channel-card {
  border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 1.8rem; background: var(--ink-800);
}
.channel-card h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.channel-card p { color: var(--on-dark-soft); margin: 0 0 1.3rem; font-size: .96rem; }

/* --------------------------------------------------------------- forms */
.form-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-panel .talk-now { margin-top: 2rem; display: grid; gap: .6rem; }
.contact-panel .talk-now a { display: inline-flex; align-items: center; gap: .6rem; color: var(--gold-soft); text-decoration: none; font-size: 1.02rem; }
.contact-panel .talk-now a:hover { color: var(--gold-bright); }
.contact-panel .talk-now svg { width: 19px; height: 19px; color: var(--gold); }
.contact-detail { margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line-dark); }
.contact-detail h4 { font-family: var(--font-sans); font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.contact-detail p { margin: 0; color: var(--on-dark-soft); }

.form-card {
  background: var(--paper); color: var(--on-light);
  border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line-light);
}
.form-field { margin-bottom: 1.1rem; }
.form-field.full { grid-column: 1 / -1; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-card label {
  display: block; font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--on-light-soft); margin-bottom: .45rem;
}
.form-card input, .form-card select, .form-card textarea {
  width: 100%; font-family: var(--font-sans); font-size: 1rem; color: var(--on-light);
  background: #fff; border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: .8rem .9rem; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.form-card textarea { min-height: 130px; resize: vertical; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(199,162,76,.2);
}
.form-actions { margin-top: 1.4rem; }
.form-note { margin-top: 1rem; font-size: .85rem; color: var(--on-light-soft); }
.hp { position: absolute; left: -5000px; }

/* --------------------------------------------------------------- footer */
.site-footer { background: var(--ink-900); color: var(--on-dark-soft); border-top: 1px solid var(--line-dark); padding-block: 3.4rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 2.4rem; }
.footer-brand .brand-name { font-size: 1.5rem; }
.footer-brand p { max-width: 34ch; margin: 1rem 0 0; font-size: .95rem; }
.footer-thread { margin-top: 1rem; font-style: italic; color: var(--gold-soft); font-family: var(--font-display); }
.footer-col h4 { font-family: var(--font-sans); font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.footer-col a { color: var(--on-dark-soft); text-decoration: none; font-size: .95rem; display: inline-flex; align-items: center; gap: .5rem; transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-col svg { width: 17px; height: 17px; color: var(--gold); flex: none; }
.footer-bottom {
  margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; align-items: center;
  font-size: .82rem; color: var(--on-dark-dim);
}
.footer-parent a { color: var(--gold-soft); text-decoration: none; border-bottom: 1px solid var(--line-dark); }
.footer-parent a:hover { color: var(--gold-bright); }

/* --------------------------------------------------------------- sticky book bar (mobile) */
.sticky-book {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  display: none;
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom, 0px));
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-dark);
}
.sticky-book .btn { width: 100%; justify-content: center; }

/* --------------------------------------------------------------- quiet invitations (v2) */
/* Three equal, unranked invitations. No numbers, no tiers, no funnel. */
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.offer {
  display: flex; flex-direction: column;
  padding: 2.2rem 0 0;
  border-top: 1px solid var(--line-dark);
  text-decoration: none; color: inherit;
  transition: border-color .4s var(--ease);
}
.offer:hover { border-color: var(--gold); }
.offer-index {
  font-family: var(--font-sans); font-size: .7rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}
.offer h3 { font-size: 1.6rem; line-height: 1.1; margin-bottom: .7rem; }
.offer p { color: var(--on-dark-soft); font-size: 1rem; margin: 0 0 1.6rem; max-width: 30ch; }
.surface-paper .offer p { color: var(--on-light-soft); }
.offer .link-arrow { margin-top: auto; }

/* Understated inline modes (studio sessions) */
.modes { display: flex; flex-wrap: wrap; gap: 0; margin-top: 2.2rem; }
.mode {
  padding: .2rem 1.4rem; border-left: 1px solid var(--line-dark);
}
.mode:first-child { padding-left: 0; border-left: 0; }
.mode span { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--on-dark); }
.surface-paper .mode span { color: var(--on-light); }
.mode small { font-size: .82rem; color: var(--on-dark-dim); letter-spacing: .04em; }

/* A single quiet line, set large, for a page to breathe around */
.statement {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.28; letter-spacing: -.01em;
  max-width: 24ch;
}
.statement em { font-style: italic; color: var(--gold-soft); }
.measure { max-width: 60ch; }
.body-copy p { color: var(--on-dark-soft); font-size: 1.1rem; line-height: 1.6; margin: 0 0 1.2rem; max-width: 56ch; }
.surface-paper .body-copy p { color: var(--on-light-soft); }
.body-copy p:last-child { margin-bottom: 0; }

/* A single portrait studio figure, centred, with a quiet caption */
.studio-figure { margin: 0 auto; max-width: 480px; text-align: center; }
.studio-figure img { width: 100%; border-radius: var(--radius); box-shadow: 0 30px 60px -40px rgba(0,0,0,.7); }
.studio-figure figcaption {
  margin-top: 1.1rem; font-family: var(--font-display); font-style: italic;
  color: var(--on-dark-soft); font-size: 1.05rem;
}

/* --------------------------------------------------------------- reveals */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------- responsive */
@media (max-width: 960px) {
  .hero-grid, .split, .split.reverse .split-media, .form-layout { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .offers { grid-template-columns: 1fr; gap: 0; }
  .offer { padding-block: 1.8rem; }
  .hero-figure { order: -1; }
}

/* The six-item nav plus the brand and the Book button need ~1080px before the
   labels start colliding and clipping, so the menu takes over below that;
   this covers landscape tablets and small laptops, not just phones. */
@media (max-width: 1080px) {
  .nav {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: .2rem;
    background: var(--ink-900); border-bottom: 1px solid var(--line-dark);
    padding: 1rem 28px 1.4rem;
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: .7rem 0; border-bottom: 1px solid var(--line-dark); }
  .nav a.active::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-book { display: none; }
  .mobile-only { display: block; }
}

@media (max-width: 780px) {
  body { font-size: 16px; }
  .field-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .modes { flex-direction: column; gap: 1rem; }
  .mode { padding: 0; border-left: 0; }
  .sticky-book { display: block; }
  body { padding-bottom: 72px; }
  /* Hero photos already follow their own proportions; this only stops a wide
     shot from filling a short landscape-orientation screen edge to edge. */
  .hero-figure img { max-height: 72vh; }
}

/* Large phones (roughly 6in and up): tighten the gutter and ease the large
   display floors so long words never crowd or clip against the screen edge. */
@media (max-width: 480px) {
  .wrap { padding-inline: 20px; }
  .display        { font-size: clamp(2.1rem, 10vw, 2.6rem); }
  h2.headline     { font-size: clamp(1.7rem, 8vw, 1.9rem); }
  .offer h3       { font-size: 1.4rem; }
  p, .lede, .body-copy p { overflow-wrap: break-word; }
}

/* Small phones (under 6in): trim the frame and ease the display floors so no
   line crowds an edge, and keep the gold badge inside the viewport. */
@media (max-width: 400px) {
  .wrap { padding-inline: 16px; }
  .display    { font-size: clamp(1.95rem, 10.5vw, 2.1rem); }
  h2.headline { font-size: clamp(1.55rem, 8.5vw, 1.7rem); }
  .statement  { font-size: clamp(1.35rem, 7vw, 1.5rem); max-width: none; }
  .btn        { padding: .85rem 1.15rem; letter-spacing: .08em; }
  .btn-lg     { padding: .95rem 1.25rem; }
  .hero-badge { left: 0; }
  .card, .channel-card { padding: 1.5rem 1.2rem; }
}

/* ----------------------------------------------- capabilities nav panel
   The shared header script renders a Capabilities group on every page,
   including this dark sub-brand. Same behaviour as the parent site, dressed
   in the studio's gold-on-ink palette. */
.nav-group { position: relative; }
.nav-trigger {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-sans); font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  color: var(--on-dark-soft); background: none; border: 0; padding: .3rem 0; cursor: pointer;
  transition: color .3s var(--ease);
}
.nav-trigger:hover, .nav-group.open .nav-trigger, .nav-trigger.active { color: var(--on-dark); }
.nav-trigger svg { width: .62rem; height: .62rem; transition: transform .3s var(--ease); }
.nav-group.open .nav-trigger svg { transform: rotate(180deg); }

.nav-panel {
  position: absolute; top: calc(100% + 1.1rem); left: -1.1rem; z-index: 70;
  min-width: 31rem; padding: 1.1rem;
  background: var(--ink-800); border: 1px solid var(--line-dark); border-top: 2px solid var(--gold);
  border-radius: var(--radius); box-shadow: 0 30px 70px rgba(0,0,0,.55);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .2rem;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.nav-group.open .nav-panel { opacity: 1; visibility: visible; transform: none; }
.nav-panel a { display: block; padding: .75rem .85rem; border-radius: var(--radius); transition: background .25s var(--ease); }
.nav-panel a:hover { background: var(--ink-700); }
.nav-panel a b {
  display: block; font-family: var(--font-display); font-size: 1rem; font-weight: 500;
  color: var(--on-dark); margin-bottom: .2rem; letter-spacing: .01em;
}
.nav-panel a:hover b { color: var(--gold); }
.nav-panel a span { display: block; font-size: .76rem; line-height: 1.45; color: var(--on-dark-dim); }
.nav-panel a::after { display: none; }
.nav-panel a.active { background: var(--ink-700); }
.nav-panel a.active b { color: var(--gold); }

@media (max-width: 1080px) {
  .nav-group { width: 100%; }
  .nav-trigger { display: none; }
  .nav-panel {
    position: static; opacity: 1; visibility: visible; transform: none;
    min-width: 0; box-shadow: none; border: 0; border-left: 1px solid var(--line-dark);
    grid-template-columns: 1fr; padding: .1rem 0 .5rem .9rem; margin: .2rem 0 .4rem;
    background: none; gap: 0;
  }
  .nav-panel a { padding: .5rem .2rem; }
  .nav-panel a span { display: none; }
}
