:root {
  --ink: #1f160f;
  --muted: #5f4b3a;
  --paper: #f7eddf;
  --paper-2: #fff9f0;
  --brown: #754322;
  --brown-dark: #2a1a10;
  --gold: #d9aa5c;
  --gold-soft: #f3d399;
  --forest: #203323;
  --line: rgba(117, 67, 34, .18);
  --white-line: rgba(255, 255, 255, .22);
  --shadow: 0 28px 80px rgba(54, 31, 17, .16);
  --radius: 30px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217,170,92,.22), transparent 34rem),
    linear-gradient(180deg, var(--paper-2), var(--paper));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { color: inherit; }
::selection { background: var(--gold-soft); color: var(--brown-dark); }

.skip {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  background: #fff;
  color: var(--ink);
  padding: .75rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.skip:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.container { width: min(100% - 40px, 1180px); margin-inline: auto; }
.topbar {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px;
  border: 1px solid var(--white-line);
  border-radius: 999px;
  background: rgba(26, 16, 10, .58);
  backdrop-filter: blur(18px);
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
}
.topbar.is-scrolled { background: rgba(26, 16, 10, .9); box-shadow: 0 18px 50px rgba(0,0,0,.22); }
.brand { display: flex; align-items: center; min-width: 0; }
.brand-logo { width: 184px; height: auto; max-height: 70px; object-fit: contain; filter: drop-shadow(0 8px 16px rgba(0,0,0,.28)); }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  color: #fff5e7;
  text-decoration: none;
  font-weight: 800;
  padding: 12px 15px;
  border-radius: 999px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav a:hover { background: rgba(255,255,255,.12); color: #fff; }
.nav-cta { background: linear-gradient(135deg, var(--gold-soft), #bd7138); color: #24150c !important; }
.burger { display: none; width: 48px; height: 48px; border: 0; border-radius: 50%; background: rgba(255,255,255,.14); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.burger span { width: 20px; height: 2px; background: #fff; border-radius: 999px; }

.hero {
  min-height: 94svh;
  position: relative;
  display: grid;
  align-content: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--brown-dark);
  padding: 8rem 0 2rem;
}
.hero.sub { min-height: 56svh; }
.hero-bg, .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg { z-index: -2; }
.hero-bg img { object-fit: cover; opacity: .78; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(18,10,5,.88), rgba(18,10,5,.46) 55%, rgba(18,10,5,.74)); }
.eyebrow { display: inline-flex; align-items: center; gap: .6rem; color: var(--gold-soft); font-weight: 950; text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; }
.eyebrow.dark { color: var(--brown); }
h1, h2, h3 { font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif; letter-spacing: -.045em; line-height: .98; margin: 0; }
h1 { font-size: clamp(3rem, 7.4vw, 7.8rem); max-width: 1080px; margin-top: 20px; text-wrap: balance; }
h2 { font-size: clamp(2.1rem, 4.6vw, 4.8rem); text-wrap: balance; }
h3 { font-size: 1.65rem; }
p { line-height: 1.72; }
.hero-copy, .lead { font-size: clamp(1.05rem, 1.5vw, 1.32rem); max-width: 780px; }
.hero-copy { color: #f7e6c8; }
.lead { color: var(--muted); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 999px; padding: 15px 22px; text-decoration: none; font-weight: 950; cursor: pointer; transition: transform .22s var(--ease), box-shadow .22s var(--ease); box-shadow: 0 18px 42px rgba(0,0,0,.18); }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: linear-gradient(135deg, var(--gold-soft), #b66b34); color: #1c1109; }
.btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,.34); background: rgba(255,255,255,.1); }
.btn-light { background: #fff; color: #20140c; }
.inline-btn { width: fit-content; margin-top: 12px; }

.signature-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; width: min(1060px, calc(100% - 40px)); margin: 26px auto 40px; position: relative; z-index: 4; border: 0; border-radius: 0; overflow: visible; background: transparent; backdrop-filter: none; }
.signature-strip span { padding: 18px 18px; text-align: center; border: 1px solid var(--white-line); border-radius: 22px; background: rgba(255,255,255,.14); box-shadow: 0 16px 38px rgba(0,0,0,.18); backdrop-filter: blur(16px); font-weight: 950; color: #fff; }
.section { padding: 108px 0; }
.section.alt { background: linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.12)); }
.section-head { max-width: 900px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { margin-top: 12px; }
.section-head p { color: var(--muted); max-width: 780px; margin-inline: auto; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }

.glass, .card, .contact-card, .legal-card, .metric-card, .process-card, .info-card {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.glass, .contact-card, .legal-card, .metric-card, .process-card, .info-card { padding: 34px; }
.metric-label { color: var(--brown); font-weight: 950; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; }
.metric { font-size: clamp(5rem, 13vw, 11rem); font-weight: 950; letter-spacing: -.1em; line-height: .82; background: linear-gradient(135deg, var(--brown), var(--gold)); -webkit-background-clip: text; color: transparent; }
.image-card { position: relative; overflow: hidden; border-radius: 38px; box-shadow: var(--shadow); background: #29180e; }
.image-card img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; display: block; }
.image-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.52), transparent 52%); }
.image-caption { position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 2; color: #fff; }
.image-caption strong { display: block; font-family: ui-serif, Georgia, serif; font-size: 2rem; letter-spacing: -.04em; }
.image-caption span { color: #f8dfb6; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { position: relative; min-height: 390px; padding: 30px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; transition: transform .24s var(--ease); }
.card:hover { transform: translateY(-8px); }
.card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(19,12,8,.9), rgba(19,12,8,.24) 58%, rgba(255,255,255,.06)); }
.card-content { position: relative; z-index: 2; color: #fff; }
.pill { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: rgba(255,217,144,.18); border: 1px solid rgba(255,217,144,.28); color: #ffd990; font-weight: 950; font-size: .78rem; margin-bottom: 14px; }
.card p { color: #f0ddbd; }
.card a { color: #ffd990; font-weight: 950; text-decoration: none; }
.feature-list, .check-list { list-style: none; display: grid; gap: 14px; margin: 28px 0 0; padding: 0; }
.feature-list.compact { margin-top: 18px; }
.feature-list li, .check-list li { position: relative; padding-left: 36px; font-weight: 800; color: #4f3d2f; }
.feature-list li::before, .check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--forest); color: #fff; font-size: .82rem; }

.process-grid, .info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.info-grid { grid-template-columns: repeat(3, 1fr); }
.process-card span { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 18px; background: linear-gradient(135deg, var(--forest), #152016); color: #fff; font-weight: 950; margin-bottom: 18px; }
.process-card p, .info-card p { color: var(--muted); }
.band { padding: 42px; border-radius: 40px; background: linear-gradient(135deg,#21140d,#7a4423); color: #fff; box-shadow: 0 30px 90px rgba(75,41,19,.32); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.band h2 { font-size: clamp(2rem,4vw,4.2rem); max-width: 850px; }
.gallery { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.gallery-main { min-height: 520px; }
.gallery-side { display: grid; gap: 24px; }
.gallery-side .image-card img { min-height: 248px; }
.timeline { display: grid; gap: 24px; }
.timeline-item { display: grid; grid-template-columns: 92px 1fr; gap: 24px; padding: 28px; border-left: 1px solid var(--line); }
.timeline-item span { font-weight: 950; font-size: 3rem; color: var(--gold); line-height: 1; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 38px; display: grid; gap: 16px; }
.small-note { color: #77614d; font-size: .94rem; }
.legal-card { max-width: 940px; margin: auto; }
.legal-card h2 { margin-bottom: 24px; }
.legal-card h3 { margin-top: 34px; }
.notice { padding: 18px 20px; border-left: 4px solid var(--gold); background: #fff8eb; border-radius: 14px; }
.footer { background: #120c08; color: #ead7b5; padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 32px; }
.footer-logo { width: 230px; max-width: 100%; height: auto; filter: drop-shadow(0 10px 18px rgba(0,0,0,.3)); margin-bottom: 18px; }
.footer a { display: block; color: #ead7b5; text-decoration: none; margin: 10px 0; }
.footer a:hover { color: #ffd990; }
.footer h2 { font-family: inherit; letter-spacing: .14em; text-transform: uppercase; font-size: .88rem; color: #fff; }
.footer-bottom { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #a9906d; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .burger { display: flex; }
  .nav { display: none; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: stretch; padding: 12px; border-radius: 26px; background: rgba(18,12,8,.98); box-shadow: 0 18px 45px rgba(0,0,0,.28); }
  .nav.open { display: flex; }
  .nav a { text-align: center; }
  .split, .gallery, .contact-grid { grid-template-columns: 1fr; }
  .cards, .process-grid, .info-grid { grid-template-columns: 1fr; }
  .signature-strip { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 18px; }
  .section { padding: 76px 0; }
  .hero .container { padding-top: 70px; }
  .band { display: grid; }
  .footer-grid { grid-template-columns: 1fr; }
  .image-card img { min-height: 330px; }
  .gallery-main { min-height: unset; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .topbar { border-radius: 24px; }
  .brand-logo { width: 148px; max-height: 56px; }
  .hero { min-height: 88svh; }
  .hero.sub { min-height: 48svh; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.6rem); }
  .signature-strip { grid-template-columns: 1fr; gap: 12px; }
  .glass, .contact-card, .form-card, .legal-card, .metric-card, .process-card, .info-card { padding: 24px; }
  .card { min-height: 330px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Real media integration: photos and trailer */
.hero-bg-img { object-position: center 42%; }
.hero-home .hero-bg img { opacity: .95; }
.hero-home::after {
  background:
    radial-gradient(circle at 24% 48%, rgba(217,170,92,.18), transparent 28rem),
    linear-gradient(90deg, rgba(12,7,4,.92), rgba(18,10,5,.58) 50%, rgba(18,10,5,.72));
}
.hero.sub .hero-bg img { opacity: .72; filter: saturate(.92); }
.hero.sub::after { background: linear-gradient(90deg, rgba(18,10,5,.92), rgba(18,10,5,.62) 56%, rgba(18,10,5,.78)); }

.section-intro { padding-top: 104px; }
.visual-split { align-items: center; }
.portrait-card img { object-position: center center; }

.trailer-card {
  overflow: hidden;
  border-radius: 42px;
  background: #17100a;
  border: 1px solid rgba(117, 67, 34, .2);
  box-shadow: 0 32px 90px rgba(54,31,17,.24);
  padding: 12px;
}
.trailer-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 32px;
  background: #120c08;
  object-fit: cover;
}
.gallery-premium .image-card img { object-position: center center; }

.process-band {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: 40px;
  background: #fffaf1;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.process-copy h2 { font-size: clamp(2rem, 3.6vw, 4rem); margin-top: 10px; }
.mini-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.mini-process div {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  padding: 20px;
  border-radius: 26px;
  background: linear-gradient(135deg, #2b1a10, #7a4423);
  color: #fff7e8;
}
.mini-process strong { font-size: 1.55rem; color: var(--gold-soft); }
.mini-process span { font-weight: 900; }

.contact-grid-premium { align-items: start; }
.contact-photo {
  overflow: hidden;
  border-radius: 22px;
  margin-top: 24px;
  box-shadow: 0 18px 46px rgba(54,31,17,.16);
}
.contact-photo img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-process { margin-top: 28px; }
.final-cta-section { padding-top: 42px; }
.card > img, .image-card img { filter: saturate(1.04) contrast(1.02); }

@media (max-width: 960px) {
  .process-band { grid-template-columns: 1fr; }
  .mini-process { grid-template-columns: repeat(2, 1fr); }
  .trailer-card { border-radius: 30px; padding: 8px; }
  .trailer-video { border-radius: 24px; }
}

@media (max-width: 560px) {
  .hero-bg-img { object-position: 42% 50%; }
  .process-band { padding: 24px; border-radius: 28px; }
  .mini-process { grid-template-columns: 1fr; }
  .mini-process div { min-height: 104px; }
  .trailer-card { margin-inline: -2px; }
}


/* Compact trailer placement: keeps lower-resolution video visually crisp */
.compact-trailer-section { padding: 86px 0; }
.trailer-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 560px);
  gap: 46px;
  align-items: center;
}
.trailer-copy { max-width: 680px; }
.trailer-copy h2 { margin-top: 12px; }
.trailer-copy p { color: var(--muted); }
.trailer-card-compact {
  max-width: 560px;
  justify-self: end;
  border-radius: 32px;
  padding: 10px;
}
.trailer-card-compact .trailer-video {
  border-radius: 24px;
  object-fit: cover;
}

@media (max-width: 960px) {
  .trailer-feature { grid-template-columns: 1fr; }
  .trailer-card-compact { justify-self: start; width: min(100%, 620px); }
}

@media (max-width: 560px) {
  .compact-trailer-section { padding: 66px 0; }
  .trailer-card-compact { width: 100%; max-width: 100%; }
}

/* Compact sticky navigation on scroll */
.topbar {
  transition:
    top .32s var(--ease),
    width .32s var(--ease),
    padding .32s var(--ease),
    border-radius .32s var(--ease),
    background .32s var(--ease),
    border-color .32s var(--ease),
    box-shadow .32s var(--ease),
    transform .32s var(--ease);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.topbar::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.16), transparent 38%, rgba(217,170,92,.10));
  opacity: .7;
  transition: opacity .32s var(--ease);
}
.topbar > * { position: relative; z-index: 1; }
.brand-logo,
.nav a,
.burger {
  transition:
    width .32s var(--ease),
    max-height .32s var(--ease),
    padding .32s var(--ease),
    font-size .32s var(--ease),
    transform .32s var(--ease),
    background .32s var(--ease),
    box-shadow .32s var(--ease);
}
.topbar.is-scrolled {
  top: 10px;
  width: min(1040px, calc(100% - 44px));
  padding: 7px 10px;
  border-radius: 28px;
  border-color: rgba(243,211,153,.28);
  background:
    linear-gradient(135deg, rgba(31,20,12,.94), rgba(54,31,17,.86)),
    rgba(26, 16, 10, .92);
  box-shadow: 0 18px 48px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08);
}
.topbar.is-scrolled::before { opacity: .38; }
.topbar.is-scrolled .brand-logo {
  width: 132px;
  max-height: 50px;
  filter: drop-shadow(0 5px 12px rgba(0,0,0,.28));
}
.topbar.is-scrolled .nav { gap: 4px; }
.topbar.is-scrolled .nav a {
  padding: 9px 12px;
  font-size: .94rem;
}
.topbar.is-scrolled .nav-cta {
  padding-inline: 18px;
  box-shadow: 0 10px 24px rgba(217,170,92,.18);
}
.topbar.is-scrolled .burger {
  width: 42px;
  height: 42px;
}

@media (max-width: 960px) {
  .topbar.is-scrolled {
    width: min(100% - 28px, 780px);
    padding: 8px 10px;
    border-radius: 24px;
  }
  .topbar.is-scrolled .brand-logo { width: 136px; max-height: 50px; }
  .topbar.is-scrolled .nav { top: 62px; }
}

@media (max-width: 560px) {
  .topbar { top: 12px; width: calc(100% - 24px); }
  .topbar.is-scrolled {
    top: 8px;
    width: calc(100% - 20px);
    padding: 7px 9px;
  }
  .topbar.is-scrolled .brand-logo { width: 120px; max-height: 46px; }
}

/* Release polish: stronger readability, responsive balance, active states */
body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, video { max-width: 100%; }
img { height: auto; }
p { max-width: 72ch; }

.topbar {
  width: min(1120px, calc(100% - 36px));
  padding: 10px 12px;
  box-shadow: 0 18px 54px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
}
.brand-logo { width: 164px; max-height: 62px; }
.nav a[aria-current="page"] {
  background: rgba(255,255,255,.16);
  color: #fff;
}
.nav-cta[aria-current="page"] { background: linear-gradient(135deg, var(--gold-soft), #bd7138); }

.hero { min-height: 92svh; padding-top: 9rem; }
.hero.sub { min-height: 50svh; padding-top: 8rem; }
.hero .container { position: relative; z-index: 2; }
.hero-copy { max-width: 820px; }
.hero-bg-img { object-position: center center; }
.hero-home .hero-bg-img { object-position: center 48%; }
.hero::after {
  background:
    radial-gradient(circle at 18% 42%, rgba(217,170,92,.20), transparent 30rem),
    linear-gradient(90deg, rgba(13,8,5,.92), rgba(20,12,7,.52) 54%, rgba(13,8,5,.76));
}
.signature-strip { margin-bottom: 26px; }
.signature-strip span {
  min-height: 62px;
  display: grid;
  place-items: center;
}

.section { position: relative; }
.section-head h2 + p { margin-top: 18px; }
.card, .image-card, .glass, .contact-card, .form-card, .legal-card, .process-card, .info-card, .band, .process-band {
  transform: translateZ(0);
}
.card-content h3 { text-shadow: 0 2px 12px rgba(0,0,0,.26); }
.card:focus-within { transform: translateY(-6px); }
.card a:focus-visible, .footer a:focus-visible { outline-color: var(--gold-soft); }

.image-card img { min-height: clamp(320px, 42vw, 540px); }
.gallery-side .image-card img { min-height: 260px; }
.trailer-card-compact { width: min(100%, 520px); }
.trailer-video { max-height: 315px; }
.form-card h2 { font-size: clamp(2rem, 3.8vw, 3.6rem); }
.legal-card p { color: var(--muted); }
.legal-card a { color: var(--brown); font-weight: 900; }

@media (max-width: 1100px) {
  .topbar { width: calc(100% - 28px); }
  .nav a { padding: 10px 12px; }
  h1 { font-size: clamp(3rem, 8vw, 6.2rem); }
}

@media (max-width: 960px) {
  .topbar { top: 12px; border-radius: 28px; }
  .nav {
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.14);
  }
  .nav a { padding: 14px 16px; }
  .nav-cta { margin-top: 4px; }
  .hero { min-height: auto; padding: 8rem 0 3rem; }
  .hero.sub { min-height: auto; padding: 8rem 0 4rem; }
  .hero .container { padding-top: 38px; }
  .hero-actions { margin-top: 26px; }
  .cards { grid-template-columns: 1fr; gap: 20px; }
  .process-grid, .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { gap: 22px; }
  .reverse-mobile > :first-child { order: 2; }
  .reverse-mobile > :last-child { order: 1; }
  .trailer-feature { gap: 28px; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero-bg-img { object-position: 43% center; }
  h1 { font-size: clamp(2.35rem, 11vw, 4.2rem); line-height: 1.02; }
  h2 { font-size: clamp(2rem, 9vw, 3.5rem); line-height: 1.03; }
  h3 { font-size: 1.42rem; line-height: 1.08; }
  .eyebrow { font-size: .72rem; letter-spacing: .12em; }
  .hero-copy, .lead { font-size: 1.02rem; }
  .btn { width: 100%; padding: 14px 18px; }
  .signature-strip { width: min(100% - 28px, 560px); grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
  .signature-strip span { padding: 14px 10px; min-height: 58px; border-radius: 18px; font-size: .92rem; }
  .section { padding: 64px 0; }
  .compact-trailer-section { padding: 62px 0; }
  .image-card { border-radius: 28px; }
  .image-card img { min-height: 300px; }
  .image-caption { left: 18px; right: 18px; bottom: 18px; }
  .image-caption strong { font-size: 1.55rem; }
  .card { min-height: 360px; border-radius: 26px; padding: 24px; }
  .process-grid, .info-grid, .mini-process { grid-template-columns: 1fr; }
  .band { padding: 26px; border-radius: 28px; }
  .footer { padding-top: 56px; }
}

@media (max-width: 430px) {
  .topbar { width: calc(100% - 18px); padding: 7px 8px; }
  .brand-logo { width: 118px; max-height: 45px; }
  .burger { width: 42px; height: 42px; }
  .topbar.is-scrolled .brand-logo { width: 108px; max-height: 42px; }
  .hero { padding-top: 6.8rem; }
  .hero .container { padding-top: 24px; }
  .signature-strip { grid-template-columns: 1fr; }
  .glass, .contact-card, .form-card, .legal-card, .metric-card, .process-card, .info-card { padding: 22px; }
  .timeline-item { grid-template-columns: 1fr; gap: 10px; padding: 22px; }
  .timeline-item span { font-size: 2.4rem; }
}

.hero-home h1 { font-size: clamp(3.2rem, 6.8vw, 7rem); }
.hero.sub h1 { font-size: clamp(2.7rem, 5.6vw, 5.6rem); max-width: 980px; }
@media (max-width: 700px) {
  .hero-home h1, .hero.sub h1 { font-size: clamp(2.35rem, 11vw, 4.2rem); }
}
