/* ── Reset & Variables ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ivory: #F9F5EE;
  --champagne: #D4AF7A;
  --dusty-rose: #C9A9A6;
  --sage: #8A9E8A;
  --charcoal: #2C2C2C;
  --white: #FFFFFF;
  --border: #E8E4DE;
  --text: #3A3A3A;
  --text-muted: #8A8580;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.3;
  color: var(--charcoal);
}

a { color: var(--charcoal); }

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

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--champagne); }
.nav-links {
  list-style: none;
  display: flex;
  gap: 0.25rem;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  color: var(--text-muted);
  transition: all 0.15s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--charcoal); background: var(--ivory); }
.nav-cta {
  background: var(--charcoal);
  color: var(--white) !important;
  border-radius: 4px;
  padding: 0.5rem 1rem;
}
.nav-cta:hover { background: #444 !important; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: var(--white);
  padding: 6rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--champagne);
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 2rem;
}
.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--champagne);
  margin: 0 auto 2rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-size: 0.88rem;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid var(--border);
  letter-spacing: 0.02em;
}
.btn-primary { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn-primary:hover { background: #444; }
.btn-secondary { background: var(--white); color: var(--charcoal); }
.btn-secondary:hover { background: var(--ivory); }
.btn-champagne { background: var(--champagne); color: var(--white); border-color: var(--champagne); }
.btn-champagne:hover { background: #c49e6a; }

/* ── Sections ──────────────────────────────────────────────── */
.section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section-alt { background: var(--white); }
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ── Featured Product ──────────────────────────────────────── */
.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.featured-img {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  overflow: hidden;
}
.featured-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-details h3 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.featured-details p { margin-bottom: 1rem; color: var(--text-muted); }
.featured-specs { list-style: none; margin-bottom: 1.5rem; }
.featured-specs li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
}
.featured-specs li strong { color: var(--charcoal); }
.price-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--champagne);
  margin-bottom: 1rem;
}
.price-tag small { font-size: 0.9rem; color: var(--text-muted); }

/* ── How It Works ──────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--champagne);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--text-muted); }

/* ── Product Card Grid ─────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44,44,44,0.08);
}
.product-card-img {
  aspect-ratio: 4/3;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  overflow: hidden;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card-body { padding: 1.25rem; }
.product-card-body h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.product-card-body .price { color: var(--champagne); font-weight: 600; margin-bottom: 0.5rem; }
.product-card-body .avail { font-size: 0.82rem; color: var(--sage); }

/* ── Product Detail ────────────────────────────────────────── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.product-specs { margin: 1.5rem 0; }
.product-specs dt { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-top: 0.75rem; }
.product-specs dd { font-size: 0.95rem; color: var(--charcoal); }
.policy-box {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 1.5rem;
}
.policy-box h4 { font-size: 0.9rem; margin-bottom: 0.5rem; }
.policy-box ul { list-style: none; font-size: 0.85rem; color: var(--text-muted); }
.policy-box li { padding: 0.2rem 0; }
.policy-box li::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--sage); border-radius: 50%; margin-right: 0.5rem; vertical-align: middle; }

/* ── Calendar ──────────────────────────────────────────────── */
.calendar-container { max-width: 900px; margin: 0 auto; }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.calendar-header {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding: 0.5rem;
}
.calendar-day {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.5rem;
  min-height: 60px;
  text-align: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s;
}
.calendar-day:hover { background: var(--ivory); }
.calendar-day.available { background: #eaf7ee; border-color: #c3e6cb; }
.calendar-day.limited { background: #fef9e7; border-color: #f0e1a1; }
.calendar-day.full { background: #fdf2f2; border-color: #f5c6cb; }
.calendar-day.empty { background: transparent; border: none; cursor: default; }
.calendar-day .qty { font-size: 0.7rem; color: var(--text-muted); display: block; }
.calendar-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.calendar-nav h2 { font-size: 1.5rem; }

/* ── FAQ Accordion ─────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover { background: var(--ivory); }
.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 1.25rem 1.25rem; }

/* ── Contact ───────────────────────────────────────────────── */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.contact-card h2 { font-size: 1.6rem; margin-bottom: 1rem; }
.contact-card p { margin-bottom: 0.75rem; }
.contact-card a { color: var(--champagne); text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }

/* ── Booking Flow ──────────────────────────────────────────── */
.booking-container { max-width: 700px; margin: 0 auto; padding: 3rem 2rem; }
.booking-steps { display: flex; gap: 0.5rem; margin-bottom: 2rem; justify-content: center; }
.booking-step {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--border);
  color: var(--text-muted);
}
.booking-step.active { background: var(--champagne); color: var(--white); }
.booking-step.done { background: var(--sage); color: var(--white); }
.booking-step-line { width: 40px; height: 2px; background: var(--border); align-self: center; }
.booking-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}
.booking-form .form-group { margin-bottom: 1rem; }
.booking-form label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.3rem; color: #555; text-transform: uppercase; letter-spacing: 0.03em; }
.booking-form input, .booking-form select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
}
.booking-form input:focus { outline: none; border-color: var(--champagne); box-shadow: 0 0 0 3px rgba(212,175,122,0.15); }
.booking-form .form-row { display: flex; gap: 1rem; }
.booking-form .form-row .form-group { flex: 1; }
.booking-summary {
  background: var(--ivory);
  border-radius: 6px;
  padding: 1.25rem;
  margin: 1.5rem 0;
}
.booking-summary h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.booking-summary .line { display: flex; justify-content: space-between; padding: 0.3rem 0; font-size: 0.9rem; }
.booking-summary .total { border-top: 1px solid var(--border); margin-top: 0.5rem; padding-top: 0.5rem; font-weight: 700; }
.checkbox-row { display: flex; align-items: flex-start; gap: 0.5rem; margin: 1rem 0; }
.checkbox-row input { margin-top: 0.3rem; }
.checkbox-row label { font-size: 0.85rem; color: var(--text-muted); text-transform: none; letter-spacing: 0; }
.confirmation {
  text-align: center;
  padding: 3rem 2rem;
}
.confirmation h2 { color: var(--sage); margin-bottom: 1rem; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 3rem 2rem;
  text-align: center;
  font-size: 0.85rem;
}
.footer a { color: var(--champagne); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer p { margin-bottom: 0.5rem; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .featured { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .nav-inner { flex-direction: column; height: auto; padding: 0.75rem 0; gap: 0.5rem; }
  .nav-links { flex-wrap: wrap; justify-content: center; }
  .hero { padding: 3rem 1.5rem; }
  .booking-form .form-row { flex-direction: column; }
}
