/* ===== Tokens ===== */
:root {
  --gold: #b8945f;
  --gold-light: #d8bd8a;
  --gold-pale: #f1e6d2;
  --cream: #faf7f1;
  --cream-2: #f3ede1;
  --ink: #211d17;
  --ink-soft: #57503f;
  --line: #e6dcc7;
  --navy: #1c2333;
  --radius: 14px;
  --shadow: 0 20px 50px -20px rgba(33, 29, 23, 0.25);
  --ff-serif: 'Montserrat', 'Segoe UI', sans-serif;
  --ff-sans: 'Open Sans', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--ff-serif); font-weight: 600; line-height: 1.15; letter-spacing: 0.3px; }

.section { padding: 96px 0; }
.center { text-align: center; }
.light { color: var(--cream); }

.section-eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-eyebrow.center { text-align: center; }

.section-sub {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 16px auto 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #201a0f;
  box-shadow: 0 12px 30px -10px rgba(184, 148, 95, 0.65);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(184, 148, 95, 0.8); }
.btn-lg { padding: 18px 46px; font-size: 16px; }
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: var(--gold-pale); }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ===== Header ===== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 28px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--ff-serif);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--cream);
}
.logo-accent { color: var(--gold-light); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: saturate(0.9);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 16, 9, 0.55) 0%, rgba(20, 16, 9, 0.75) 55%, rgba(20, 16, 9, 0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 780px;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 5.6vw, 60px);
  font-weight: 700;
  margin-bottom: 24px;
}
.hero h1 .highlight { color: var(--gold-light); }
.hero-sub {
  font-size: 17px;
  color: #e9e2d4;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(216, 189, 138, 0.45);
  border-radius: 999px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.04);
}
.detail-icon { font-size: 15px; }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 10px 0 20px; }
.about-text p { color: var(--ink-soft); margin-bottom: 16px; font-size: 16px; }
.about-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

/* ===== Steps ===== */
.steps { background: var(--cream-2); }
.steps h2 { font-size: clamp(26px, 3.6vw, 38px); max-width: 720px; margin: 10px auto 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.step-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-number {
  font-family: var(--ff-serif);
  font-size: 30px;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.step-card h3 { font-size: 19px; margin-bottom: 10px; }
.step-card p { color: var(--ink-soft); font-size: 14.5px; }

.quote {
  max-width: 700px;
  margin: 64px auto 0;
  padding: 8px 0 8px 32px;
  border-left: 3px solid var(--gold);
}
.quote p {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 2.6vw, 28px);
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
}

/* ===== Pricing ===== */
.pricing h2 { font-size: clamp(26px, 3.6vw, 38px); margin: 10px 0 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 720px;
  margin: 72px auto 0;
}
.price-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.price-card h3 { font-family: var(--ff-sans); font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 18px; }
.price-card .price {
  font-family: var(--ff-serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
}
.price-card .price span { font-size: 22px; font-weight: 500; }
.price-features { list-style: none; margin-bottom: 20px; text-align: left; }
.price-features li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.price-features li:last-child { border-bottom: none; }
.price-card .btn { width: 100%; margin-top: auto; }
.price-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  padding-top: 52px;
}
.price-card.featured .price { color: var(--gold); }

.price-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-bonus {
  background: var(--navy);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 24px;
  text-align: left;
}
.price-bonus strong { display: block; font-size: 14px; color: var(--gold-light); margin-bottom: 6px; }
.price-bonus span { font-size: 13px; color: #d9dae2; line-height: 1.5; }

/* ===== Gallery ===== */
.gallery h2 { font-size: clamp(26px, 3.6vw, 38px); margin: 10px 0 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.gallery-item.large { grid-row: span 1; }
.gallery-grid .gallery-item img { aspect-ratio: 4/5; }
.gallery-grid .large img { aspect-ratio: 4/5; }

/* ===== Venue ===== */
.venue { background: var(--cream-2); }
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.venue-info h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 10px 0 18px; }
.venue-info > p { color: var(--ink-soft); margin-bottom: 26px; }
.venue-list { list-style: none; margin-bottom: 26px; }
.venue-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.venue-list li:last-child { border-bottom: none; }
.link-map {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}
.link-map:hover { text-decoration: underline; }
.venue-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

/* ===== CTA Final ===== */
.cta-final {
  background: radial-gradient(120% 140% at 50% 0%, #2c2415 0%, #171209 70%);
  position: relative;
}
.cta-content { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.cta-final h2 { font-size: clamp(26px, 3.8vw, 40px); margin: 10px 0 18px; }
.cta-sub { color: #d9cdb2; margin-bottom: 36px; }

/* ===== Footer ===== */
.site-footer {
  background: #171209;
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.site-footer p { color: #a89a7d; font-size: 13.5px; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .about-grid, .venue-grid { grid-template-columns: 1fr; gap: 36px; }
  .venue-photo { order: -1; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .price-card.featured { margin-top: 20px; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .hero-content { padding-top: 100px; }
}
