:root {
  --ink: #171511;
  --charcoal: #252520;
  --steel: #384047;
  --paper: #f6f0e7;
  --mist: #e8e4dc;
  --sage: #657167;
  --brass: #b88b46;
  --copper: #915b3f;
  --oxide: #46554c;
  --smoke: #ebe9e2;
  --white: #fffaf2;
  --muted: #514a40;
  --line: rgba(23, 21, 17, 0.16);
  --shadow: 0 24px 70px rgba(23, 21, 17, 0.22);
  --radius: 8px;
  --max: 1160px;
}

* { box-sizing: border-box; }

html {
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(23, 21, 17, 0.035) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(180deg, rgba(23, 21, 17, 0.026) 1px, transparent 1px) 0 0 / 42px 42px,
    var(--paper);
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.5;
}

body.menu-open, body.lightbox-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid #e4c389; outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(23, 21, 17, 0.94), rgba(23, 21, 17, 0.72));
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  grid-template-columns: 40px auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 1px;
  align-items: center;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.05;
}
.brand-logo {
  grid-row: 1 / 3;
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.brand-name { font-size: 18px; }
.brand-sub { color: rgba(255, 250, 242, 0.72); font-size: 11px; font-weight: 800; }

.nav { display: flex; align-items: center; justify-content: flex-end; gap: 17px; }
.nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  color: rgba(255, 250, 242, 0.9);
  border-bottom: 1px solid rgba(255, 250, 242, 0.34);
  text-decoration: none;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--white); border-color: var(--brass); transform: translateY(-1px); }
.nav .nav-cta {
  padding: 8px 12px;
  border: 1px solid rgba(255, 250, 242, 0.36);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.08);
}
.phone-link::before { content: "☎"; margin-right: 7px; font-size: 0.92em; line-height: 1; }

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(255, 250, 242, 0.34);
  border-radius: 7px;
  color: var(--white);
  background: rgba(255, 250, 242, 0.08);
  cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; display: block; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero, .page-hero {
  position: relative;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero { min-height: 86svh; }
.page-hero { min-height: 66svh; }
.hero video, .page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}
.hero::before, .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 21, 17, 0.92) 0%, rgba(23, 21, 17, 0.69) 48%, rgba(23, 21, 17, 0.24) 100%),
    linear-gradient(0deg, rgba(23, 21, 17, 0.86) 0%, rgba(23, 21, 17, 0.16) 58%),
    repeating-linear-gradient(90deg, rgba(255, 250, 242, 0.08) 0 1px, transparent 1px 86px);
}
.hero-inner, .page-hero-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  align-items: end;
}
.hero-inner { padding: 138px 0 62px; }
.page-hero-inner { padding: 132px 0 56px; }
.hero-copy { max-width: 920px; animation: enter 700ms ease both; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero .eyebrow, .page-hero .eyebrow, .dark-section .eyebrow, .contact-band .eyebrow { color: #e4c389; }
.eyebrow::before { content: ""; width: 42px; height: 2px; background: currentColor; }

h1, h2, h3 {
  margin: 0;
  font-family: "Bodoni 72", Didot, Georgia, "Times New Roman", serif;
  line-height: 1;
  font-weight: 700;
}
h1 { max-width: 980px; font-size: clamp(52px, 8.8vw, 112px); overflow-wrap: anywhere; text-wrap: balance; }
.page-hero h1 { font-size: clamp(50px, 7.8vw, 98px); }
h2 { color: var(--ink); font-size: clamp(36px, 6vw, 76px); text-wrap: balance; }
h3 { font-size: clamp(25px, 3vw, 36px); }
.hero-lead {
  max-width: 810px;
  margin: 22px 0 0;
  color: rgba(255, 250, 242, 0.9);
  font-size: clamp(18px, 2.35vw, 26px);
  line-height: 1.34;
  text-wrap: pretty;
}

.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { color: var(--ink); background: var(--white); border-color: var(--white); }
.btn.dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.btn.brass { color: var(--ink); background: var(--brass); border-color: var(--brass); }
.btn.ghost { color: var(--white); border-color: rgba(255, 250, 242, 0.36); background: rgba(255, 250, 242, 0.08); backdrop-filter: blur(14px); }

.trust-strip {
  padding: 0 clamp(18px, 5vw, 64px);
  color: var(--white);
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255, 250, 242, 0.12);
}
.trust-strip .section-inner { transform: translateY(-28px); margin-bottom: -28px; }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1020px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  background: rgba(255, 250, 242, 0.22);
  animation: enter 700ms 120ms ease both;
}
.hero-fact { min-height: 104px; padding: 18px; background: rgba(23, 21, 17, 0.58); backdrop-filter: blur(18px); }
.hero-fact strong { display: block; color: var(--white); font-size: clamp(21px, 3vw, 34px); font-family: Georgia, "Times New Roman", serif; line-height: 1; }
.hero-fact span { display: block; margin-top: 7px; color: rgba(255, 250, 242, 0.84); font-size: 13px; font-weight: 800; line-height: 1.25; }

section { padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 64px); border-bottom: 1px solid var(--line); }
section[id], h2[id] { scroll-margin-top: 96px; }
.section-inner { width: min(var(--max), 100%); margin: 0 auto; }
.section-head { display: grid; grid-template-columns: minmax(0, 0.68fr) minmax(260px, 0.32fr); gap: clamp(22px, 5vw, 72px); align-items: end; margin-bottom: 32px; }
.section-head p, .intro { margin: 0; color: var(--muted); font-size: 17px; font-weight: 650; text-wrap: pretty; }
.intro.large { margin-top: 20px; font-size: clamp(18px, 2.2vw, 24px); line-height: 1.5; }
.narrow { max-width: 760px; }
.section-actions { margin-top: 28px; }

.tint-section { background: linear-gradient(135deg, rgba(184, 139, 70, 0.12), transparent 38%), var(--smoke); }
.mist-section { background: linear-gradient(135deg, rgba(56, 64, 71, 0.09), transparent 42%), var(--mist); }
.dark-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(70, 85, 76, 0.28), transparent 46%),
    repeating-linear-gradient(90deg, rgba(255, 250, 242, 0.04) 0 1px, transparent 1px 74px),
    var(--charcoal);
  border-bottom-color: rgba(255, 250, 242, 0.12);
}
.dark-section h2, .dark-section h3 { color: var(--white); }
.dark-section .intro, .dark-section .section-head p { color: rgba(255, 250, 242, 0.79); }

.split { display: grid; grid-template-columns: minmax(0, 0.54fr) minmax(280px, 0.46fr); gap: clamp(28px, 7vw, 96px); align-items: center; }
.split.reverse { grid-template-columns: minmax(280px, 0.46fr) minmax(0, 0.54fr); }
.split-media { position: relative; min-height: 540px; overflow: hidden; border-radius: var(--radius); background: var(--charcoal); box-shadow: var(--shadow); }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-media figcaption { position: absolute; inset: auto 16px 16px; z-index: 1; padding: 13px 15px; color: var(--white); border: 1px solid rgba(255, 250, 242, 0.2); background: rgba(23, 21, 17, 0.72); font-size: 13px; font-weight: 800; backdrop-filter: blur(16px); }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-card {
  min-height: 250px;
  padding: clamp(20px, 3vw, 30px);
  display: grid;
  align-content: space-between;
  gap: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.82);
}
.info-card .kicker { color: var(--copper); font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: 0.04em; }
.info-card p, .step p { margin: 10px 0 0; color: var(--muted); font-size: 16px; font-weight: 600; }
.dark-section .info-card { border-color: rgba(255, 250, 242, 0.16); background: rgba(255, 250, 242, 0.06); }
.dark-section .info-card p { color: rgba(255, 250, 242, 0.72); }

.number-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.step { min-height: 270px; padding: 24px; border: 1px solid rgba(255, 250, 242, 0.16); border-radius: var(--radius); background: rgba(255, 250, 242, 0.06); }
.step-num { width: 46px; height: 46px; display: inline-grid; place-items: center; color: var(--ink); background: var(--brass); border-radius: 50%; font-weight: 900; }
.step h3 { margin-top: 36px; color: var(--white); }
.step p { color: rgba(255, 250, 242, 0.72); }

.proof-list { display: grid; gap: 1px; border: 1px solid var(--line); background: var(--line); }
.proof-list span { min-height: 80px; display: grid; align-content: center; padding: 16px 18px; color: var(--muted); background: rgba(255, 250, 242, 0.78); font-size: 14px; font-weight: 850; }
.dark-section .proof-list { border-color: rgba(255, 250, 242, 0.16); background: rgba(255, 250, 242, 0.16); }
.dark-section .proof-list span { color: rgba(255, 250, 242, 0.86); background: rgba(23, 21, 17, 0.45); }

.gallery-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-flow: dense; gap: 14px; }
.gallery-card { position: relative; grid-column: span 4; min-height: 0; aspect-ratio: 4 / 5; display: grid; align-content: end; overflow: hidden; border-radius: var(--radius); background: var(--steel); box-shadow: 0 10px 34px rgba(23, 21, 17, 0.12); }
.gallery-card--wide { grid-column: span 8; aspect-ratio: 16 / 9; }
.gallery-card--square { aspect-ratio: 1; }
.gallery-card--tall { aspect-ratio: 3 / 4; }
.gallery-card button { position: absolute; inset: 0; width: 100%; min-height: 44px; padding: 0; border: 0; color: inherit; background: transparent; cursor: zoom-in; }
.gallery-card picture, .gallery-card img { width: 100%; height: 100%; }
.gallery-card img { object-fit: cover; transition: transform 500ms ease; }
.gallery-card:hover img, .gallery-card:focus-within img { transform: scale(1.035); }
.gallery-card::after { content: ""; position: absolute; inset: 34% 0 0; pointer-events: none; background: linear-gradient(0deg, rgba(23, 21, 17, 0.92), transparent); }
.gallery-card figcaption { position: relative; z-index: 2; padding: 22px; color: var(--white); pointer-events: none; }
.gallery-card figcaption h3 { color: var(--white); font-size: clamp(24px, 2.5vw, 34px); }
.gallery-card figcaption p { margin: 9px 0 0; color: rgba(255, 250, 242, 0.74); font-size: 14px; font-weight: 650; }
.gallery-hint { display: inline-block; margin-top: 14px; color: #e4c389; font-size: 11px; font-weight: 900; text-transform: uppercase; }

.lightbox[hidden] { display: none; }
.lightbox { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 70px 76px; color: var(--white); background: rgba(9, 9, 8, 0.96); }
.lightbox img { width: auto; max-width: min(100%, 1180px); max-height: calc(100svh - 150px); object-fit: contain; box-shadow: 0 30px 90px rgba(0,0,0,.42); }
.lightbox-close { position: fixed; top: 16px; right: 16px; z-index: 2; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,250,242,.34); border-radius: 50%; color: var(--white); background: rgba(23,21,17,.76); font-size: 28px; cursor: pointer; }
.lightbox-caption { position: fixed; left: 50%; bottom: 16px; width: min(720px, calc(100% - 72px)); padding: 10px 16px; transform: translateX(-50%); border: 1px solid rgba(255,250,242,.18); border-radius: 8px; background: rgba(23,21,17,.78); text-align: center; }
.lightbox-caption strong { font-family: "Bodoni 72", Didot, Georgia, serif; font-size: 23px; }
.lightbox-caption span { display: block; color: rgba(255,250,242,.72); font-size: 12px; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,250,242,.82); }
.spec-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.spec-table th, .spec-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.spec-table th { color: var(--copper); font-size: 12px; text-transform: uppercase; }
.spec-table td { color: var(--muted); font-weight: 650; }
.spec-table tr:last-child td { border-bottom: 0; }

.notice { margin-top: 24px; padding: 18px 20px; border: 1px solid var(--line); border-left: 4px solid var(--brass); background: rgba(255,250,242,.75); color: var(--muted); font-weight: 650; }
.dark-section .notice { border-color: rgba(255,250,242,.2); color: rgba(255,250,242,.84); background: rgba(255,250,242,.08); }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.tag-list li { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,250,242,.7); color: var(--muted); font-size: 12px; font-weight: 850; }

.contact-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(184, 139, 70, 0.18), transparent 44%),
    linear-gradient(90deg, rgba(23, 21, 17, 0.96), rgba(37, 37, 32, 0.94));
  border-bottom: 0;
}
.contact-band h2 { color: var(--white); }
.contact-layout { display: grid; grid-template-columns: minmax(0, .47fr) minmax(320px, .53fr); gap: clamp(24px, 5vw, 64px); align-items: start; }
.contact-details { display: grid; gap: 10px; margin-top: 26px; }
.contact-details a, .contact-details span { min-height: 48px; display: flex; align-items: center; padding: 11px 14px; border: 1px solid rgba(255,250,242,.22); border-radius: 7px; color: rgba(255,250,242,.88); text-decoration: none; font-weight: 800; }

.lead-form { padding: clamp(20px, 3vw, 30px); border: 1px solid rgba(255, 250, 242, 0.18); border-radius: var(--radius); background: rgba(255, 250, 242, 0.08); backdrop-filter: blur(16px); }
.form-note { margin: 0 0 18px; color: rgba(255,250,242,.8); font-size: 14px; font-weight: 750; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field.trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
label { color: rgba(255,250,242,.82); font-size: 13px; font-weight: 850; }
input, select, textarea { width: 100%; min-height: 46px; padding: 12px; color: var(--white); border: 1px solid rgba(255,250,242,.24); border-radius: 6px; background: rgba(23,21,17,.28); outline: none; }
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--brass); box-shadow: 0 0 0 3px rgba(184,139,70,.18); }
input::placeholder, textarea::placeholder { color: rgba(255,250,242,.48); }
select option { color: var(--ink); }
.consent-field { grid-column: 1 / -1; display: grid; grid-template-columns: 22px minmax(0,1fr); gap: 10px; align-items: start; padding: 12px; border: 1px solid rgba(255,250,242,.18); border-radius: 6px; background: rgba(23,21,17,.18); }
.consent-field input { width: 18px; min-height: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--brass); }
.consent-field span { color: rgba(255,250,242,.82); font-size: 12px; font-weight: 760; line-height: 1.45; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 16px; }
.form-status { min-height: 22px; margin: 0; color: rgba(255,250,242,.78); font-size: 13px; font-weight: 750; }
.form-status.success { color: #f3d79f; }
.form-status.error { color: #ffd0c4; }
.submit { min-height: 48px; padding: 13px 18px; color: var(--ink); border: 0; border-radius: 999px; background: var(--brass); font-weight: 900; cursor: pointer; }
.submit:disabled { cursor: progress; opacity: .68; }

.legal-layout { display: grid; grid-template-columns: minmax(210px, .28fr) minmax(0, .72fr); gap: clamp(24px, 6vw, 72px); align-items: start; }
.legal-nav { position: sticky; top: 108px; display: grid; gap: 8px; }
.legal-nav a { padding: 10px 12px; border-left: 2px solid var(--line); color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 800; }
.legal-card { padding: clamp(22px, 4vw, 38px); border: 1px solid var(--line); border-top: 4px solid var(--brass); background: rgba(255,250,242,.82); box-shadow: 0 20px 60px rgba(23,21,17,.1); }
.legal-card section { padding: 25px 0; border-bottom: 1px solid var(--line); }
.legal-card section:first-child { padding-top: 0; }
.legal-card section:last-child { padding-bottom: 0; border-bottom: 0; }
.legal-card h2 { font-size: clamp(28px, 4vw, 42px); }
.legal-card p, .legal-card ul { margin: 12px 0 0; color: var(--muted); font-size: 16px; font-weight: 610; }
.legal-card ul { padding-left: 22px; }

.site-footer { padding: 34px clamp(18px, 5vw, 64px); color: rgba(255,250,242,.68); background: var(--ink); font-size: 13px; font-weight: 700; }
.site-footer-inner { width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 28px; }
.footer-brand strong { display: block; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 24px; }
.footer-brand span { display: block; margin-top: 8px; }
.footer-links { display: grid; align-content: start; gap: 8px; }
.footer-links strong { margin-bottom: 4px; color: rgba(255,250,242,.92); }
.footer-links a { min-height: 32px; display: flex; align-items: center; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { width: min(var(--max), 100%); margin: 28px auto 0; padding-top: 18px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; border-top: 1px solid rgba(255,250,242,.14); }

.mobile-dock { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 30; display: none; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px; border: 1px solid rgba(255,250,242,.18); border-radius: 10px; background: rgba(23,21,17,.88); box-shadow: 0 18px 50px rgba(0,0,0,.28); backdrop-filter: blur(18px); }
.mobile-dock a { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; border-radius: 7px; color: var(--ink); background: var(--white); text-decoration: none; font-size: 14px; font-weight: 950; }
.mobile-dock a:first-child { background: var(--brass); }

@keyframes enter { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1100px) {
  .nav { gap: 12px; }
  .nav a { font-size: 10px; }
}

@media (max-width: 980px) {
  .site-header { flex-wrap: wrap; }
  .nav-toggle { display: grid; }
  .nav {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 8px;
    border: 1px solid rgba(255,250,242,.18);
    border-radius: 8px;
    background: rgba(23,21,17,.97);
    box-shadow: 0 24px 60px rgba(0,0,0,.32);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }
  .nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .nav a { width: 100%; min-height: 44px; padding: 10px; border: 0; background: rgba(255,250,242,.055); font-size: 12px; }
  .nav .nav-cta { grid-column: 1 / -1; }
  .hero { min-height: 76svh; }
  .hero-inner, .page-hero-inner { width: min(100% - 28px, var(--max)); padding-top: 108px; }
  .hero-facts { max-width: 540px; grid-template-columns: 1fr; }
  .hero-fact { min-height: 82px; }
  .section-head, .split, .split.reverse, .contact-layout, .legal-layout { grid-template-columns: 1fr; }
  .card-grid, .number-grid { grid-template-columns: 1fr; }
  .card-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-card, .gallery-card--square, .gallery-card--tall { grid-column: span 1; aspect-ratio: 4 / 5; }
  .gallery-card--wide { grid-column: span 2; aspect-ratio: 16 / 9; }
  .info-card, .step { min-height: auto; }
  .step h3 { margin-top: 22px; }
  .legal-nav { position: static; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .site-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .site-header { padding: 12px 14px; }
  .brand-name { font-size: 16px; }
  .brand-sub { font-size: 10px; }
  .nav { grid-template-columns: 1fr; }
  .nav .nav-cta { grid-column: auto; }
  .hero, .page-hero { min-height: 74svh; }
  .hero::before, .page-hero::before { background: linear-gradient(90deg, rgba(23,21,17,.92), rgba(23,21,17,.58)), linear-gradient(0deg, rgba(23,21,17,.8), rgba(23,21,17,.18) 62%); }
  .hero-inner, .page-hero-inner { width: min(100% - 24px, var(--max)); padding-bottom: 78px; }
  h1 { font-size: clamp(38px, 12vw, 58px); }
  .page-hero h1 { font-size: clamp(36px, 11.5vw, 54px); }
  .hero-lead { font-size: 17px; }
  .btn { width: 100%; min-height: 46px; }
  section { padding: 48px 14px; }
  h2 { font-size: clamp(34px, 11vw, 50px); }
  .split-media { min-height: 410px; }
  .card-grid.two, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card, .gallery-card--square, .gallery-card--tall { grid-column: span 1; aspect-ratio: 4 / 5; }
  .gallery-card--wide { grid-column: span 1; aspect-ratio: 4 / 3; }
  .gallery-card figcaption { padding: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-footer { display: grid; }
  .submit { width: 100%; }
  .contact-band { padding-bottom: 112px; }
  .legal-nav { grid-template-columns: 1fr; }
  .site-footer { padding-bottom: 92px; }
  .site-footer-inner { grid-template-columns: 1fr; }
  .footer-links a { min-height: 44px; }
  .mobile-dock { display: grid; }
  .lightbox { padding: 68px 12px; }
  .lightbox-caption span { display: none; }
}

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