/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAF8F5;
  --bg-alt: #F2EDE5;
  --fg: #1C1C1C;
  --fg-muted: #6B6B6B;
  --accent: #C45A1A;
  --accent-light: rgba(196, 90, 26, 0.08);
  --border: rgba(28,28,28,0.12);
  --font-display: 'Bitter', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --section-pad: clamp(72px, 10vw, 120px);
  --container: 1140px;
  --radius: 4px;
}

html { scroll-behavior: smooth; }

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

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -0.02em;
}

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

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  font-size: 14px;
  color: var(--accent);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-logo-sub {
  font-weight: 400;
  opacity: 0.7;
}

.nav-phone {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 80px,
      rgba(196, 90, 26, 0.03) 80px,
      rgba(196, 90, 26, 0.03) 81px
    );
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg) 60%, rgba(196,90,26,0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 8vw, 100px) clamp(32px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--accent-light);
  border: 1px solid rgba(196, 90, 26, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 48px;
}

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

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

.stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.hero-image-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 60px 60px 20px;
}

.hero-roof-graphic {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.15));
}

/* ===== CREDENTIALS ===== */
.credentials {
  background: var(--fg);
  padding: 36px 32px;
}

.cred-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cred-icon {
  flex-shrink: 0;
}

.cred-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cred-text strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #FAF8F5;
}

.cred-text span {
  font-size: 12px;
  color: rgba(250,248,245,0.6);
}

.cred-div {
  width: 1px;
  height: 40px;
  background: rgba(250,248,245,0.15);
}

/* ===== SERVICES ===== */
.services {
  padding: var(--section-pad) 32px;
  max-width: var(--container);
  margin: 0 auto;
}

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

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

.service-card {
  background: var(--bg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: background 0.2s;
}

.service-card:hover {
  background: var(--accent-light);
}

.service-icon {
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== DIFFERENCE ===== */
.difference {
  background: var(--fg);
  padding: var(--section-pad) 32px;
}

.diff-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.diff-text .section-label { color: rgba(196,90,26,0.8); }

.diff-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #FAF8F5;
  margin-bottom: 28px;
}

.diff-body {
  font-size: 16px;
  color: rgba(250,248,245,0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.diff-quote {
  margin-top: 32px;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 12px;
}

.diff-quote p {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #FAF8F5;
  line-height: 1.5;
  font-style: italic;
}

.diff-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.diff-graphic {
  background: rgba(250,248,245,0.05);
  border: 1px solid rgba(250,248,245,0.12);
  border-radius: 8px;
  padding: 48px 48px 40px;
  text-align: center;
  width: 280px;
}

.big-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.big-num-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250,248,245,0.5);
  line-height: 1.4;
  margin-bottom: 32px;
}

.diff-divider {
  height: 1px;
  background: rgba(250,248,245,0.12);
  margin-bottom: 28px;
}

.diff-stat-row {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.diff-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.ds-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #FAF8F5;
}

.ds-label {
  font-size: 11px;
  color: rgba(250,248,245,0.5);
  line-height: 1.4;
}

/* ===== AREA ===== */
.area {
  padding: var(--section-pad) 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.area-header {
  margin-bottom: 56px;
}

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

.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-svg { width: 100%; max-width: 300px; }

.area-counties h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--fg);
}

.county-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.county-tag {
  background: var(--accent-light);
  border: 1px solid rgba(196,90,26,0.2);
  color: var(--fg);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
}

.area-note p {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.area-phone {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--bg-alt);
  padding: var(--section-pad) 32px;
}

.test-header {
  max-width: var(--container);
  margin: 0 auto 56px;
}

.test-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.test-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 36px 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.test-card-alt {
  border-top: 3px solid var(--accent);
}

.test-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}

.test-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.test-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.test-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--fg);
}

.test-loc {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ===== CLOSING ===== */
.closing {
  padding: var(--section-pad) 32px;
  background: var(--fg);
  text-align: center;
}

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

.closing-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.badge-star {
  animation: rotate 12s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #FAF8F5;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 17px;
  color: rgba(250,248,245,0.6);
  margin-bottom: 48px;
}

.closing-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.closing-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250,248,245,0.4);
}

.closing-phone {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--accent);
  transition: opacity 0.2s;
}

.closing-phone:hover { opacity: 0.8; }

/* ===== FOOTER ===== */
.footer {
  background: #141414;
  padding: 48px 32px 24px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(250,248,245,0.08);
  margin-bottom: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-logo-mark {
  font-size: 12px;
  color: var(--accent);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #FAF8F5;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(250,248,245,0.5);
  margin-bottom: 6px;
}

.footer-address {
  font-size: 12px;
  color: rgba(250,248,245,0.3);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-phone {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #FAF8F5;
}

.footer-sep {
  color: rgba(250,248,245,0.2);
}

.footer-email {
  font-size: 14px;
  color: rgba(250,248,245,0.5);
}

.footer-license {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: rgba(250,248,245,0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(250,248,245,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 80px 24px 40px; }
  .hero-image-panel { display: none; }
  .diff-inner { grid-template-columns: 1fr; gap: 48px; }
  .diff-visual { order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .area-layout { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-right { align-items: flex-start; }
}

@media (max-width: 600px) {
  .cred-inner { flex-direction: column; gap: 24px; }
  .cred-div { display: none; }
  .hero-meta { gap: 20px; }
  .nav-phone { font-size: 13px; }
}