/* Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #FEF9F0;
  --bg-alt: #F0EDE6;
  --fg: #1A1A1A;
  --fg-muted: #5C5C5C;
  --green: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #52B788;
  --amber: #C97D10;
  --amber-light: #F4C067;
  --white: #FFFFFF;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(27, 67, 50, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo {
  width: 34px; height: 34px;
  background: var(--amber);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--white);
  font-weight: 400;
}
.nav-name { font-family: var(--font-serif); font-size: 18px; color: var(--white); }
.nav-tagline { font-size: 13px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(82, 183, 136, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(201, 125, 16, 0.08) 0%, transparent 50%),
    var(--bg);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  color: var(--green);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 460px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.stat-val {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--green);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--fg-muted); font-weight: 500; letter-spacing: 0.02em; }
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(27, 67, 50, 0.15);
}

/* Quote Card */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.quote-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  max-width: 360px;
  box-shadow:
    0 4px 6px rgba(27,67,50,0.04),
    0 20px 40px rgba(27,67,50,0.10),
    0 0 0 1px rgba(27,67,50,0.06);
}
.quote-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.quote-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-light);
}
.quote-dot.active {
  background: var(--green-light);
  box-shadow: 0 0 0 3px rgba(82,183,136,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(82,183,136,0.25); }
  50% { box-shadow: 0 0 0 5px rgba(82,183,136,0.1); }
}
.quote-service { font-size: 13px; color: var(--fg-muted); margin-bottom: 6px; }
.quote-price { font-family: var(--font-serif); font-size: 42px; color: var(--green); line-height: 1; margin-bottom: 6px; }
.quote-meta { font-size: 11px; color: var(--fg-muted); margin-bottom: 20px; }
.quote-divider { height: 1px; background: var(--bg-alt); margin-bottom: 16px; }
.quote-contractor { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.contractor-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 14px;
}
.contractor-name { font-weight: 600; font-size: 14px; }
.contractor-detail { font-size: 12px; color: var(--fg-muted); }
.quote-actions { display: flex; gap: 10px; }
.quote-book {
  background: var(--amber);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}
.hero-tagline-badge {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Sections */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-label.light { color: rgba(201,125,16,0.7); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 46px);
  color: var(--green);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

/* How */
.how { padding: 100px 48px; background: var(--bg); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 60px; }
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 32px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(27,67,50,0.07);
}
.step-num {
  font-family: var(--font-serif);
  font-size: 48px;
  color: rgba(27,67,50,0.12);
  margin-bottom: 16px;
  line-height: 1;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--green);
  margin-bottom: 10px;
}
.step-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }
.step-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, rgba(27,67,50,0.2), rgba(201,125,16,0.3));
  margin: 80px 0 0;
  flex-shrink: 0;
}

/* Services */
.services { padding: 100px 48px; background: var(--green); }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-top { text-align: center; margin-bottom: 56px; }
.services-sub { font-size: 17px; color: rgba(255,255,255,0.65); margin-top: 12px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 28px;
  transition: background 0.2s;
}
.service-card:hover { background: rgba(255,255,255,0.10); }
.service-icon {
  font-size: 28px;
  margin-bottom: 14px;
  filter: grayscale(1) brightness(2);
}
.service-name {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}
.service-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.services-note {
  text-align: center;
  margin-top: 36px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

/* Value */
.value { padding: 100px 48px; background: var(--bg); }
.value-inner { max-width: 1100px; margin: 0 auto; }
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 0;
}
.value-col-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--green);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--green);
}
.value-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.value-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.value-icon {
  width: 22px; height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Closing */
.closing { padding: 100px 48px; background: var(--bg-alt); }
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-content { margin-bottom: 60px; }
.closing-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.closing-vision { font-size: 15px; color: var(--fg-muted); max-width: 560px; line-height: 1.7; }
.closing-philosophy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.philosophy-block {
  padding: 28px;
  background: var(--white);
  border-radius: 14px;
  border-left: 3px solid var(--amber);
}
.philosophy-title {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 10px;
}
.philosophy-text { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* Footer */
.footer { padding: 48px; background: var(--green); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { margin-bottom: 32px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-logo {
  width: 30px; height: 30px;
  background: var(--amber);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--white);
}
.footer-name { font-family: var(--font-serif); font-size: 17px; color: var(--white); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-location { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-legal { font-size: 13px; color: rgba(255,255,255,0.35); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .how-steps { flex-direction: column; gap: 16px; }
  .step-connector { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
  .closing-philosophy { grid-template-columns: 1fr; }
  .nav { padding: 14px 24px; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 24px 60px; }
  .how, .services, .value, .closing { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .hero-stats { gap: 16px; }
  .stat-val { font-size: 22px; }
}