/* ===== Variables ===== */
:root {
  --gold: #b08d4f;
  --gold-dark: #8a6a35;
  --gold-light: #d8bb84;
  --cream: #faf6ef;
  --cream-dark: #f1e9db;
  --charcoal: #211d18;
  --charcoal-soft: #4a443c;
  --white: #ffffff;
  --serif: 'Playfair Display', serif;
  --sans: 'Jost', sans-serif;
  --max-width: 1180px;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Progress bar ===== */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  z-index: 1100;
  transition: width 0.1s linear;
}

/* ===== Typography ===== */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; }
em { font-style: italic; color: var(--gold); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}

.lead {
  max-width: 620px;
  color: var(--charcoal-soft);
  font-size: 1.05rem;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-small { padding: 10px 20px; font-size: 0.72rem; }
.btn-block { width: 100%; text-align: center; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 22px 0;
}
.site-header.scrolled {
  background: rgba(250, 246, 239, 0.96);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 12px 0;
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 42px; height: 42px; object-fit: cover; border-radius: 50%; transition: width var(--transition), height var(--transition); }
.site-header.scrolled .brand-logo { width: 34px; height: 34px; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
  transition: color var(--transition);
}
.site-header.scrolled .brand-name { color: var(--charcoal); }

.nav { display: flex; gap: 32px; }
.nav a {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.site-header.scrolled .nav a { color: var(--charcoal); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav a:hover::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none; cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: all var(--transition);
}
.site-header.scrolled .nav-toggle span { background: var(--charcoal); }

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,17,13,0.55) 0%, rgba(20,17,13,0.45) 40%, rgba(20,17,13,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.hero-content .eyebrow { color: var(--gold-light); }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 22px;
}
.hero-sub {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-cue span {
  display: block;
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.6);
  position: relative;
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { opacity: 0; transform: translateY(-10px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ===== Sections ===== */
.section { padding: 110px 0; }
.section-alt { background: var(--cream); }

/* ===== About ===== */
.pillars {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar { text-align: center; padding: 0 12px; }
.pillar-num {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.pillar h3 { font-size: 1.3rem; margin-bottom: 12px; }
.pillar p { color: var(--charcoal-soft); font-size: 0.95rem; }

/* ===== Services ===== */
.services-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(176,141,79,0.14);
  border-color: var(--gold-light);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--gold-dark); }
.service-card p { color: var(--charcoal-soft); font-size: 0.92rem; }

.services-note {
  text-align: center;
  margin-top: 48px;
  color: var(--charcoal-soft);
  font-size: 0.92rem;
}
.services-note a { color: var(--gold-dark); text-decoration: underline; }

/* ===== Packages ===== */
.packages-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: start;
}
.package-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(176,141,79,0.16);
}
.package-head h3 { font-size: 1.5rem; margin-bottom: 8px; }
.package-head p { color: var(--charcoal-soft); font-size: 0.92rem; }

.package-includes { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.package-includes li {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  padding-left: 20px;
  position: relative;
}
.package-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.price-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.price-table th, .price-table td {
  text-align: left;
  padding: 10px 4px;
  border-bottom: 1px solid var(--cream-dark);
}
.price-table th { color: var(--gold-dark); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.72rem; }
.price-table td:last-child, .price-table th:last-child { text-align: right; font-family: var(--serif); }

.package-note { font-size: 0.8rem; color: var(--charcoal-soft); font-style: italic; }

/* ===== Gallery ===== */
.video-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--charcoal);
}
.video-card video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.video-card:hover video { transform: scale(1.06); }
.video-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%);
}
.play-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.8);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  z-index: 2;
  transition: background var(--transition), transform var(--transition);
}
.video-card:hover .play-icon { background: var(--gold); border-color: var(--gold); transform: translate(-50%, -50%) scale(1.08); }

/* ===== Contact ===== */
.contact { background: var(--charcoal); color: var(--white); text-align: center; }
.contact .eyebrow { color: var(--gold-light); }
.contact .lead { color: rgba(255,255,255,0.75); margin-left: auto; margin-right: auto; }

.contact-links {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-link {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 22px 34px;
  min-width: 220px;
  transition: all var(--transition);
}
.contact-link:hover { border-color: var(--gold); background: rgba(176,141,79,0.08); transform: translateY(-4px); }
.contact-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.contact-value { font-family: var(--serif); font-size: 1.15rem; }

/* ===== Footer ===== */
.site-footer { background: #17140f; color: rgba(255,255,255,0.6); padding: 50px 0; text-align: center; }
.footer-logo { width: 46px; height: 46px; object-fit: cover; border-radius: 50%; margin: 0 auto 16px; }
.footer-tag { font-family: var(--serif); color: var(--gold-light); margin-bottom: 10px; }
.footer-copy { font-size: 0.8rem; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,9,7,0.94);
  display: none;
  align-items: center; justify-content: center;
  z-index: 1200;
  padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox video { max-width: 900px; width: 100%; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 24px; right: 30px;
  background: none; border: none;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open { background: var(--cream); padding: 12px 0; }
  .site-header.nav-open .brand-name { color: var(--charcoal); }
  .site-header.nav-open .nav-toggle span { background: var(--charcoal); }
  .nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    padding: 24px;
    gap: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
  .nav.mobile-open a { color: var(--charcoal); }

  .pillars { grid-template-columns: 1fr; gap: 44px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .section { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .contact-link { min-width: 100%; }
  .hero-actions { flex-direction: column; align-items: center; }
}
