:root {
  --ivory: #f6f1ea;
  --paper: #fdfbf7;
  --sand: #e8dcc8;
  --gold: #b8956c;
  --gold-soft: #d4c0a4;
  --walnut: #4a3426;
  --ink: #1c1410;
  --muted: #6d6258;
  --line: rgba(74, 52, 38, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(28, 20, 16, 0.12);
  --radius: 18px;
  --header: 84px;
  --max: 1180px;
  --font: "Outfit", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
.serif {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

p {
  margin: 0 0 1rem;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--walnut);
  color: var(--ivory);
  padding: 8px 12px;
  z-index: 100;
}

.skip:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header);
  padding: 0 28px;
  background: rgba(246, 241, 234, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(28, 20, 16, 0.05);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  width: 40px;
  height: 40px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-kicker {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  font-size: 14px;
  color: var(--muted);
  position: relative;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--gold);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  background: var(--walnut);
  color: var(--ivory);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  display: grid;
  place-items: end start;
  color: var(--paper);
  overflow: hidden;
}

.hero video,
.hero .hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 20, 16, 0.18) 0%, rgba(28, 20, 16, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 64px 28px 72px;
  max-width: 760px;
}

.kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 84px);
  margin: 0 0 18px;
}

.lede {
  font-size: 18px;
  max-width: 52ch;
  color: rgba(253, 251, 247, 0.86);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  cursor: pointer;
  background: var(--gold);
  color: var(--ink);
}

.btn.secondary {
  background: transparent;
  border-color: rgba(253, 251, 247, 0.45);
  color: var(--paper);
}

.btn.dark {
  background: var(--walnut);
  color: var(--ivory);
}

.btn.ghost {
  background: transparent;
  border-color: var(--walnut);
  color: var(--walnut);
}

.section {
  padding: 88px 28px;
  max-width: calc(var(--max) + 56px);
  margin: 0 auto;
}

.section.narrow {
  max-width: 860px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}

.section h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 0;
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-2 {
  grid-template-columns: 1.1fr 0.9fr;
}

.card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-body {
  padding: 20px 20px 24px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 28px;
}

.figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
}

.figure img,
.figure video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.band {
  background: var(--walnut);
  color: var(--ivory);
  padding: 72px 28px;
  text-align: center;
}

.band h2 {
  font-size: clamp(32px, 5vw, 58px);
  margin: 0 0 12px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fact {
  padding: 24px;
  border-top: 1px solid var(--line);
}

.fact strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 6px;
}

.promo {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.promo-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-hero {
  padding: 72px 28px 28px;
  max-width: calc(var(--max) + 56px);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  margin: 8px 0 12px;
}

.form {
  display: grid;
  gap: 14px;
  background: var(--paper);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

input,
textarea,
select {
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.form-note[data-state="error"] {
  color: #8a2b1f;
}

.legal-doc {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 28px 96px;
}

.legal-doc h1 {
  font-size: 48px;
}

.legal-doc h2 {
  font-size: 28px;
  margin-top: 32px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 28px 28px;
  background: #efe7db;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 12px;
}

.site-footer a {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 14px;
}

.footnote {
  max-width: var(--max);
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  background: var(--ink);
  color: var(--ivory);
  padding: 18px 20px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.note-box {
  background: #efe7db;
  border-left: 3px solid var(--gold);
  padding: 16px 18px;
  border-radius: 0 12px 12px 0;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.gallery .stack {
  display: grid;
  gap: 16px;
}

.gallery img,
.gallery video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  min-height: 220px;
}

.gallery .wide {
  min-height: 520px;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    position: fixed;
    inset: var(--header) 0 0 0;
    background: var(--ivory);
    flex-direction: column;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }

  .nav.is-open {
    transform: none;
  }

  .header-cta {
    display: none;
  }

  .grid-3,
  .grid-4,
  .grid-2,
  .split,
  .facts,
  .footer-grid,
  .gallery,
  .promo {
    grid-template-columns: 1fr;
  }

  .gallery .wide {
    min-height: 280px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
}
