:root {
  --bg: #faf8f5;
  --bg-warm: #f3efe9;
  --bg-dark: #2c2926;
  --fg: #2c2926;
  --fg-light: #6b6560;
  --fg-muted: #9b9590;
  --accent: #8b7355;
  --accent-light: #c4a882;
  --accent-warm: #a6875e;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --border: #e0dbd5;
  --shadow: 0 2px 20px rgba(44, 41, 38, 0.06);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

em { font-family: var(--serif); font-style: italic; color: var(--accent); }

.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, #2c2926 0%, #3d3630 40%, #4a403a 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(139, 115, 85, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196, 168, 130, 0.08) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 80px 32px;
  text-align: center;
}

.hero-tagline {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-light);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: #faf8f5;
  margin-bottom: 28px;
}

.hero h1 em {
  color: var(--accent-light);
  font-weight: 400;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.7;
  color: #b5aea6;
  max-width: 600px;
  margin: 0 auto 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: #faf8f5;
}

.stat-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(196, 168, 130, 0.3);
}

/* ---- SERVICES ---- */
.services {
  padding: 120px 32px;
  background: var(--bg);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.service-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fff 0%, #faf6f0 100%);
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 20px;
}

.service-icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-warm);
  margin-bottom: 12px;
}

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

/* ---- WHY ---- */
.why {
  padding: 120px 32px;
  background: var(--bg-warm);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.why h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}

.why-desc {
  color: var(--fg-light);
  font-size: 17px;
  margin-bottom: 40px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
}

.feature strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature p {
  font-size: 15px;
  color: var(--fg-light);
  line-height: 1.55;
}

.why-quote {
  position: sticky;
  top: 80px;
  background: var(--bg-dark);
  border-radius: 16px;
  padding: 48px 36px;
}

.why-quote blockquote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
  color: #d9d3cc;
}

.quote-attr {
  margin-top: 24px;
  font-size: 14px;
  color: var(--fg-muted);
}

/* ---- CLOSING ---- */
.closing {
  padding: 140px 32px;
  background: linear-gradient(165deg, #2c2926 0%, #3d3630 100%);
  text-align: center;
}

.closing-inner {
  max-width: 650px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: #faf8f5;
  margin-bottom: 24px;
}

.closing p {
  font-size: 17px;
  line-height: 1.7;
  color: #b5aea6;
  margin-bottom: 16px;
}

.closing-tagline {
  margin-top: 40px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent-light) !important;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 80px 32px 40px;
  background: #242120;
  color: #8a837d;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 48px;
}

.footer-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #faf8f5;
  margin-bottom: 8px;
}

.footer-motto {
  font-style: italic;
  color: var(--fg-muted);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-heading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 15px;
  line-height: 2;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 13px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero { min-height: 80vh; }
  .hero-content { padding: 60px 24px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 40px; height: 1px; }

  .services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }

  .why { padding: 80px 24px; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-quote { position: static; }

  .closing { padding: 100px 24px; }

  .footer-links { grid-template-columns: 1fr; gap: 32px; }
}