:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE3;
  --fg: #1A1A18;
  --fg-muted: #6B6560;
  --accent: #1B4332;
  --accent-light: #2D6A4F;
  --amber: #D97706;
  --amber-light: #F59E0B;
  --white: #FFFFFF;
  --border: #E5DDD3;
}

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

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

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

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  font-weight: 700;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  display: block;
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 6px;
  background: var(--amber);
  border-radius: 50%;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-phone a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-phone a:hover { color: var(--amber); }

.nav-brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-quote-btn {
  padding: 8px 18px;
  background: var(--accent);
  color: var(--white);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-quote-btn:hover {
  background: var(--accent-light);
}

@media (max-width: 600px) {
  .nav-actions { gap: 12px; }
  .nav-quote-btn { font-size: 0.8rem; padding: 7px 14px; }
}

/* HERO */
.hero {
  padding: 80px 48px 72px;
  position: relative;
  overflow: hidden;
}
.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(27,67,50,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(217,119,6,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
}
.compare-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.compare-label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
  text-align: center;
}
.compare-scales {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.scale-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.scale-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.scale-icon svg {
  width: 24px;
  height: 24px;
}
.scale-icon.too-high {
  background: #FEE2E2;
  color: #DC2626;
}
.scale-icon.right-way {
  background: #D1FAE5;
  color: var(--accent);
}
.scale-text {
  display: flex;
  flex-direction: column;
}
.scale-text strong {
  font-size: 0.9rem;
  font-weight: 600;
}
.scale-text span {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* SECTION SHARED */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--fg);
  margin-bottom: 24px;
}

/* SERVICES */
.services {
  padding: 80px 48px;
  background: var(--white);
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg { color: var(--white); width: 22px; height: 22px; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--fg);
}
.service-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* DIFFERENCE */
.difference {
  padding: 80px 48px;
  background: var(--accent);
}
.difference-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}
.diff-badge { text-align: center; }
.badge-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.badge-inner { text-align: center; }
.badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.badge-unit {
  display: block;
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  margin-top: 4px;
}
.diff-stats { display: flex; flex-direction: column; gap: 16px; }
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
}
.diff-text .section-label { color: var(--amber-light); }
.diff-text .section-headline { color: var(--white); }
.diff-body {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.diff-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.diff-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.95rem;
}
.check {
  width: 22px;
  height: 22px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check svg { width: 12px; height: 12px; color: var(--white); }

/* PROCESS */
.process {
  padding: 80px 48px;
  background: var(--bg);
}
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-top: 48px;
}
.step {
  flex: 1;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--amber);
  margin-bottom: 12px;
}
.step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.step p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }
.step a { color: var(--accent); font-weight: 600; }
.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 60px;
  color: var(--border);
}
.step-arrow svg { width: 40px; }

/* PRICING */
.pricing {
  padding: 80px 48px;
  background: var(--white);
}
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-intro {
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 40px;
  font-size: 1rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.price-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  position: relative;
}
.price-card.featured {
  border-color: var(--accent);
  background: var(--accent);
}
.price-surface {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.price-card.featured .price-surface { color: var(--white); }
.price-range {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 12px;
}
.price-card.featured .price-range { color: var(--amber-light); }
.price-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.price-card.featured .price-note { color: rgba(255,255,255,0.75); }
.price-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--amber);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 0 0 8px 8px;
}
.pricing-cta {
  color: var(--fg-muted);
  font-size: 0.9rem;
}
.pricing-cta a { color: var(--accent); font-weight: 600; text-decoration: none; }
.pricing-cta a:hover { color: var(--amber); }

/* CLOSING */
.closing {
  padding: 80px 48px;
  background: var(--fg);
}
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.closing-content p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 32px;
}
.closing-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-btn {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.contact-btn:hover { background: var(--amber-light); }
.contact-sep { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.contact-email {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-decoration: none;
}
.contact-email:hover { color: var(--amber-light); }

/* FOOTER */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-info {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
}
.footer-info a { color: var(--fg-muted); text-decoration: none; }
.footer-info a:hover { color: var(--accent); }
.footer-legal { font-size: 0.75rem; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .difference-inner { grid-template-columns: 1fr; gap: 40px; }
  .diff-badge { display: flex; align-items: center; gap: 32px; }
  .diff-stats { flex-direction: row; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); padding: 8px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .nav { padding: 16px 24px; }
  .hero, .services, .difference, .process, .pricing, .closing { padding: 56px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .nav-phone { display: none; }
}