/* ─── Tokens ─────────────────────────────────── */
:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE3;
  --fg: #1C1A17;
  --fg-muted: #6B6560;
  --accent: #6B8F71;
  --accent-warm: #C4846C;
  --accent-warm-light: #F0D9CF;
  --card: #FFFFFF;
  --border: #E2DAD0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(28,26,23,0.06), 0 1px 4px rgba(28,26,23,0.04);
  --shadow-lg: 0 12px 48px rgba(28,26,23,0.10), 0 2px 8px rgba(28,26,23,0.06);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  font-weight: 600;
}

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

/* ─── Hero ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--bg);
}

.hero-shape {
  position: absolute;
  top: -10%;
  right: 20%;
  width: 60vw;
  height: 120vh;
  background: radial-gradient(ellipse at 60% 30%, #E8DDD0 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 500;
  margin-bottom: 28px;
  display: block;
}

.hero-headline {
  font-size: clamp(52px, 6vw, 88px);
  color: var(--fg);
  margin-bottom: 28px;
  font-weight: 700;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-stat { display: flex; flex-direction: column; gap: 2px; }

.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
}

.hero-stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EDE5DA 0%, #D6CDBF 100%);
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(107,143,113,0.15);
}

.hero-circle-1 {
  width: 380px; height: 380px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(107,143,113,0.04);
}

.hero-circle-2 {
  width: 260px; height: 260px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(196,132,108,0.20);
}

.hero-circle-3 {
  width: 140px; height: 140px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(196,132,108,0.08);
  border: none;
}

.hero-badge {
  position: absolute;
  bottom: 64px;
  right: 64px;
  background: white;
  border-radius: 100px;
  padding: 12px 20px 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  z-index: 2;
}

/* ─── Philosophy ─────────────────────────────── */
.philosophy {
  background: var(--fg);
  padding: 100px 80px;
  position: relative;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-warm) 100%);
}

.philosophy-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  color: #F5F0E8;
  line-height: 1.6;
  font-style: italic;
  position: relative;
}

.philosophy-quote::before {
  content: '\201C';
  font-size: 80px;
  color: var(--accent);
  opacity: 0.4;
  position: absolute;
  top: -24px;
  left: -20px;
  line-height: 1;
}

/* ─── Services ───────────────────────────────── */
.services {
  padding: 100px 80px;
  background: var(--bg);
}

.services-header {
  margin-bottom: 64px;
}

.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-headline {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--fg);
}

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

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-name {
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.service-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── Pricing ────────────────────────────────── */
.pricing {
  background: var(--bg-alt);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pricing-card {
  background: var(--card);
  border-radius: 20px;
  padding: 52px 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.pricing-badge {
  display: inline-block;
  background: var(--accent-warm-light);
  color: var(--accent-warm);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.pricing-unit {
  font-size: 16px;
  color: var(--fg-muted);
  margin-top: 6px;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
}

.pricing-cta {
  margin-top: 36px;
}

.pricing-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--fg);
  color: var(--bg);
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s;
}

.pricing-phone:hover { background: var(--accent); }

.pricing-aside {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.venue-list {}

.venue-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.venue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.venue-tag {
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 14px;
  color: var(--fg);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(28,26,23,0.04);
}

/* ─── Closing ────────────────────────────────── */
.closing {
  padding: 120px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(107,143,113,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.closing-headline {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-cta {
  margin-bottom: 24px;
}

.closing-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: white;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.2s, transform 0.1s;
}

.closing-btn:hover {
  background: #5a7a60;
  transform: translateY(-2px);
}

.closing-btn:active { transform: translateY(0); }

.closing-availability {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
}

.avail-dot {
  width: 10px;
  height: 10px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.3); }
}

/* ─── Footer ─────────────────────────────────── */
.footer {
  background: var(--fg);
  padding: 40px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #F5F0E8;
  font-weight: 600;
}

.footer-location {
  font-size: 13px;
  color: #6B6560;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #6B6560;
}

.footer-sep { color: #3D3A35; }

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-visual { display: none; }
  .hero-content { padding: 80px 32px; }
  .philosophy { padding: 72px 32px; }
  .services { padding: 72px 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing {
    grid-template-columns: 1fr;
    padding: 72px 32px;
    gap: 48px;
  }
  .closing { padding: 72px 32px; }
  .footer {
    flex-direction: column;
    gap: 16px;
    padding: 40px 32px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-divider { display: none; }
  .pricing-card { padding: 36px 28px; }
  .pricing-price { font-size: 56px; }
}