/* === BASE RESET & VARIABLES === */
:root {
  --bg: #F5EFE6;
  --bg-card: #EDE7DC;
  --fg: #1A1A1A;
  --fg-muted: #6B5E4F;
  --accent: #C85C3A;
  --accent-hover: #B04D2E;
  --accent-sage: #4A7C59;
  --white: #FFFFFF;
  --border: rgba(26,26,26,0.1);
  --radius: 4px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,239,230,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.nav-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === SECTION COMMON === */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 48px;
  max-width: 560px;
}

/* === HERO === */
.hero {
  padding: 72px 24px 80px;
  background: var(--bg);
}

.hero-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: center;
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-sage);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-meta {
  display: flex;
  gap: 40px;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
}

.meta-number {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
}

.meta-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* Hero Card */
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 4px 32px rgba(26,26,26,0.08);
}

.hero-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.hero-card-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-card-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.hero-card-features {
  list-style: none;
  margin-bottom: 20px;
}

.hero-card-features li {
  font-size: 0.875rem;
  color: var(--fg);
  padding: 5px 0;
  border-bottom: 1px solid rgba(26,26,26,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-card-features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--accent-sage);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.hero-card-cta {
  background: var(--accent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius);
  letter-spacing: 0.03em;
}

/* === HOW IT WORKS === */
.how-it-works {
  background: var(--fg);
  color: var(--bg);
}

.how-it-works .section-tag { color: var(--accent); }
.how-it-works .section-title { color: var(--bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.step {
  padding: 40px 40px 40px 0;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-right: 40px;
}

.step:last-child { border-right: none; }
.step:not(:first-child) { padding-left: 40px; }

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  margin-bottom: 20px;
  line-height: 1;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 12px;
}

.step-body {
  font-size: 0.9rem;
  color: rgba(245,239,230,0.6);
  line-height: 1.65;
}

/* === SERVICES === */
.services {
  background: var(--bg-card);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26,26,26,0.1);
}

.service-card--featured {
  border-color: var(--accent);
  border-width: 2px;
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

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

.service-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.service-list {
  list-style: none;
}

.service-list li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(26,26,26,0.06);
}

.service-list li:last-child { border-bottom: none; }

.services-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
  font-style: italic;
}

/* === COVERAGE === */
.coverage { background: var(--bg); }

.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.coverage-body {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 420px;
}

.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.coverage-city {
  background: var(--fg);
  color: var(--bg);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.coverage-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Map visual */
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
}

.map-inner {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-label {
  position: absolute;
  top: -32px;
  left: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.map-rings {
  position: absolute;
  inset: 0;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 { width: 80px; height: 80px; opacity: 0.25; }
.ring-2 { width: 140px; height: 140px; opacity: 0.15; }
.ring-3 { width: 200px; height: 200px; opacity: 0.07; }

.map-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.map-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: var(--accent);
  opacity: 0.3;
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}

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

/* === WHY === */
.why { background: var(--bg-card); }

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.quote-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 16px;
}

.quote-attr {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

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

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

.why-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-sage);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.why-point-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-point-body {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* === CLOSING === */
.closing {
  background: var(--fg);
  color: var(--bg);
  text-align: center;
}

.closing .section-inner {
  padding: 96px 24px;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--bg);
}

.closing-sub {
  font-size: 1rem;
  color: rgba(245,239,230,0.6);
  margin-bottom: 40px;
}

.closing-statement {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* === FOOTER === */
.footer {
  background: var(--fg);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 24px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(245,239,230,0.5);
}

.footer-meta {
  font-size: 0.75rem;
  color: rgba(245,239,230,0.3);
}

/* === NAV CTA === */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta {
  background: var(--accent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-hover); }

/* === CLOSING CTA === */
.closing-cta {
  display: inline-block;
  margin-top: 32px;
  background: var(--accent);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.closing-cta:hover { background: var(--accent-hover); transform: translateY(-2px); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 360px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0 0 32px 0; margin-bottom: 32px; }
  .step:last-child { border-bottom: none; margin-bottom: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .coverage-layout { grid-template-columns: 1fr; gap: 40px; }
  .map-placeholder { display: none; }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  .hero { padding: 48px 20px 56px; }
  .hero-meta { gap: 24px; }
  .section-inner { padding: 56px 20px; }
  .service-card { padding: 24px; }
  .coverage-list { gap: 6px; }
  .footer { padding: 24px 20px; }
}