:root {
  --ink: #0c0c0c;
  --charcoal: #161616;
  --slate: #222222;
  --panel: #1c1c1c;
  --ivory: #f7f4ef;
  --ivory-soft: #ebe6dc;
  --muted: #9a948a;
  --gold: #c4a574;
  --gold-soft: #d4bc94;
  --line: rgba(196, 165, 116, 0.28);
  --white: #ffffff;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 300;
  color: var(--ivory);
  background: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
p + p { margin-top: 1rem; }

.wrap { width: min(100% - 2.25rem, var(--max)); margin-inline: auto; }

.nav {
  position: sticky;
  top: 2rem;
  z-index: 150;
  backdrop-filter: blur(14px);
  background: rgba(12, 12, 12, 0.88);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.logo span { color: var(--gold); font-style: italic; font-weight: 400; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ivory);
  padding: 0.45rem 0.7rem;
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ivory); }
.nav-cta {
  display: inline-flex;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--ink) !important; }

.hero {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(196,165,116,0.12), transparent 55%),
    linear-gradient(180deg, #141414 0%, var(--ink) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.hero h1, .page-hero h1, h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  max-width: 14ch;
  margin-bottom: 0.6rem;
}
.hero .tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  color: var(--gold-soft);
  margin-bottom: 1.4rem;
}
.hero-lead, .lede {
  max-width: 42rem;
  color: var(--ivory-soft);
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  font-weight: 500;
}
.btn-gold:hover { background: var(--gold-soft); }
.btn-ghost {
  border-color: var(--line);
  color: var(--ivory);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: linear-gradient(180deg, #141414, var(--ink));
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 0.75rem; }
.page-hero .lede { color: var(--muted); }

section { padding: 4rem 0; }
.section-head {
  margin-bottom: 2rem;
  max-width: 40rem;
}
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 0.6rem; }
.section-head p { color: var(--muted); }
.gold-rule {
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin: 0.9rem 0 1.2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.6rem 1.5rem;
  height: 100%;
}
.card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
  color: var(--ivory);
}
.card p, .card li { color: var(--muted); font-size: 0.95rem; }
.card .pkg-note {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  color: var(--gold-soft);
  font-size: 0.88rem;
}
.feature-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-top: 0.55rem;
  color: var(--muted);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.4rem;
  height: 1px;
  background: var(--gold);
}

.quote {
  background: var(--panel);
  border-left: 2px solid var(--gold);
  padding: 1.4rem 1.5rem;
}
.quote blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ivory-soft);
}
.quote cite {
  display: block;
  margin-top: 0.9rem;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-grid a {
  display: block;
  overflow: hidden;
  background: var(--slate);
  aspect-ratio: 4/3;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-grid a:hover img { transform: scale(1.04); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  background: var(--slate);
  border: 1px solid rgba(255,255,255,0.06);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.prose { max-width: 46rem; color: var(--ivory-soft); }
.prose h2 { margin: 2rem 0 0.8rem; font-size: 1.8rem; }
.prose h3 { margin: 1.5rem 0 0.6rem; font-size: 1.35rem; color: var(--gold-soft); }
.prose ul { margin: 0.8rem 0 1rem 0; }
.prose li {
  position: relative;
  padding-left: 1.1rem;
  margin-top: 0.4rem;
  color: var(--muted);
}
.prose li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.cta-band {
  margin: 1rem 0 0;
  padding: 3rem 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(196,165,116,0.14), transparent 60%),
    var(--charcoal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 0.7rem; }
.cta-band p { color: var(--muted); max-width: 34rem; margin: 0 auto 1.5rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}
.contact-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.75rem;
}
.contact-card a { color: var(--gold-soft); }
.contact-card a:hover { color: var(--gold); }
.contact-card dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1.1rem;
}
.contact-card dd { margin-top: 0.25rem; font-size: 1.05rem; }

.footer {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer h3 {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 0.9rem;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}
.footer a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
}
.footer .award { color: var(--gold-soft); }

@media (max-width: 900px) {
  .grid-3, .gallery-grid, .footer-grid, .contact-grid, .video-grid { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0 1rem;
    gap: 0.85rem;
  }
  .nav-links.is-open { display: flex; }
  .nav-inner { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .grid-3, .grid-2, .gallery-grid, .footer-grid, .contact-grid, .video-grid { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0 3rem; }
}
