:root {
  color-scheme: light;
  --gold: #dbb344;
  --gold-deep: #a97824;
  --ink: #28272b;
  --muted: #68676d;
  --cream: #f6f2e8;
  --white: #fff;
  scroll-behavior: smooth;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body { font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif; color: var(--ink); background: var(--white); }
a { color: inherit; }

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 8vw, 150px);
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(35, 35, 38, .08);
  box-shadow: 0 5px 25px rgba(28, 25, 20, .05);
  backdrop-filter: blur(14px);
}

.brand { display: inline-flex; align-items: center; gap: 13px; font-size: 1.25rem; font-weight: 750; letter-spacing: -.02em; text-decoration: none; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.site-nav { display: flex; align-items: stretch; gap: clamp(26px, 4vw, 64px); height: 100%; }
.site-nav a { position: relative; display: grid; place-items: center; font-size: .98rem; font-weight: 650; text-decoration: none; }
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: 23px; left: 0; height: 2px; transform: scaleX(0); background: var(--gold); transition: transform .2s ease; }
.site-nav a:hover::after, .site-nav a.is-active::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 0; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; }

.hero { position: relative; min-height: 100svh; display: grid; place-items: center; padding: 142px 24px 80px; overflow: hidden; color: var(--white); text-align: center; }
.hero__image, .hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: center center; }
.hero__overlay { background: linear-gradient(180deg, rgba(18, 19, 20, .36), rgba(22, 20, 18, .3) 44%, rgba(20, 18, 15, .67)); }
.hero__content { position: relative; z-index: 2; max-width: 960px; text-shadow: 0 3px 24px rgba(0, 0, 0, .42); }
.hero__eyebrow { margin: 0 0 18px; color: #f1ce70; font-size: .82rem; font-weight: 750; letter-spacing: .24em; text-transform: uppercase; }
.hero h1 { margin: 0; font-size: clamp(3rem, 7vw, 6.6rem); line-height: .98; letter-spacing: -.055em; }
.hero__statement { max-width: 760px; margin: 28px auto 0; font-size: clamp(1.1rem, 2.1vw, 1.7rem); font-weight: 520; line-height: 1.45; }
.hero__scroll { position: absolute; z-index: 2; bottom: 25px; display: flex; flex-direction: column; align-items: center; gap: 5px; color: rgba(255, 255, 255, .82); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-decoration: none; text-transform: uppercase; }
.hero__scroll svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.6; }

.section-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.intro { min-height: 470px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(42px, 8vw, 110px); padding-block: 90px; }
.section-kicker { margin: 0 0 15px; color: var(--gold-deep); font-size: .76rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.intro h2, .commitment h2, .policies h2 { margin: 0; font-size: clamp(2.2rem, 4.5vw, 4.4rem); line-height: 1.05; letter-spacing: -.045em; }
.intro__copy, .policies > p:last-child { margin: 0; color: var(--muted); font-size: 1.1rem; line-height: 1.85; }

.commitment { color: var(--white); background: var(--ink); }
.commitment__inner { padding-block: 100px; }
.section-kicker--light { color: #e7c66d; }
.commitment__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 58px; background: rgba(255, 255, 255, .18); }
.commitment article { min-height: 170px; padding: 32px; background: var(--ink); }
.commitment strong { color: #eccb70; font-size: 1.2rem; }
.commitment article p { color: #c9c7c3; line-height: 1.65; }
.policies { padding-block: 100px; }
.policies > p:last-child { max-width: 760px; margin-top: 25px; }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 30px max(24px, calc((100% - 1180px) / 2)); color: #bdb9b0; background: #1e1d20; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

@media (max-width: 760px) {
  .site-header { height: 76px; padding-inline: 20px; }
  .brand { font-size: 1.04rem; }
  .brand img { width: 39px; height: 39px; }
  .menu-toggle { display: block; cursor: pointer; }
  .site-nav { position: absolute; top: 76px; right: 0; left: 0; height: auto; display: none; flex-direction: column; gap: 0; padding: 10px 20px 18px; background: rgba(255, 255, 255, .98); box-shadow: 0 14px 20px rgba(0, 0, 0, .09); }
  .site-nav.is-open { display: flex; }
  .site-nav a { justify-content: start; padding: 13px 0; }
  .site-nav a::after { right: auto; bottom: 8px; width: 38px; }
  .hero { min-height: 90svh; padding-top: 120px; }
  .hero__image { object-position: 58% center; }
  .intro { min-height: 0; grid-template-columns: 1fr; padding-block: 72px; }
  .commitment__inner, .policies { padding-block: 72px; }
  .commitment__grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}

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