:root {
  --navy: #0f2040;
  --blue: #0066CC;
  --blue-light: #E8F1FA;
  --blue-mid: #4D8FCC;
  --teal: #00A3B4;
  --bg: #FFFFFF;
  --bg-subtle: #F8F9FC;
  --text: #1A1A2E;
  --text-muted: #5A6072;
  --border: #E4E7F0;
  --radius: 4px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}

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

.wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.wordmark span { color: var(--blue); }

.site-nav nav { display: flex; gap: 32px; }

.site-nav nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav nav a:hover { color: var(--navy); }

/* HERO */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--teal) 100%);
  opacity: 0.25;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(0, 163, 180, 0.4);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
}

.lede {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 420px;
  line-height: 1.65;
  margin-bottom: 36px;
}

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

.meta-item {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dot.blue { background: var(--blue); }
.dot.navy { background: var(--navy); border: 1px solid rgba(255,255,255,0.4); }

/* Hero Visual — Concrete slab illustration */
.hero-visual {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

.concrete-slab {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}

.slab-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 8px 12px 4px;
  background: rgba(0,0,0,0.2);
}

.slabs {
  height: 180px;
  position: relative;
}

.before-texture {
  background: repeating-linear-gradient(
    0deg,
    #7a7a7a 0px, #7a7a7a 1px,
    #6b6b6b 1px, #6b6b6b 3px,
    #7a7a7a 3px, #7a7a7a 5px,
    #8a8a8a 5px, #8a8a8a 7px,
    #757575 7px, #757575 9px,
    #6e6e6e 9px, #6e6e6e 11px
  ), #8a8a8a;
}

.after-texture {
  background: repeating-linear-gradient(
    0deg,
    #d8d8d8 0px, #d8d8d8 1px,
    #cfcfcf 1px, #cfcfcf 3px,
    #e0e0e0 3px, #e0e0e0 5px,
    #d5d5d5 5px, #d5d5d5 7px,
    #cbcbcb 7px, #cbcbcb 9px,
    #d0d0d0 9px, #d0d0d0 11px
  ), #d8d8d8;
}

.slab-texture {
  height: 180px;
}

.wave-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
}

.wave-bottom svg { display: block; width: 100%; }

/* SECTION SHARED */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--blue-light);
  background: var(--blue-light);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}

/* SERVICES */
.services {
  padding: 100px 40px;
  background: var(--bg-subtle);
}

.service-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(0, 102, 204, 0.08);
  border-color: var(--blue-mid);
}

.service-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.service-card.featured .section-label { color: var(--teal); }
.service-icon { color: var(--blue); margin-bottom: 20px; }
.service-card.featured .service-icon { color: var(--teal); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.service-card.featured p { color: rgba(255,255,255,0.72); }

.service-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--blue-light);
  color: var(--blue);
}

.service-card.featured .detail-tag {
  background: rgba(0, 163, 180, 0.15);
  color: var(--teal);
}

/* PRICING */
.pricing {
  padding: 100px 40px;
  background: var(--bg);
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  position: relative;
  background: var(--bg);
}

.pricing-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  background: var(--blue);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.price {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-card.featured .price { color: rgba(255,255,255,0.7); }

.price strong {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-top: 4px;
}

.pricing-card.featured .price strong { color: #fff; }

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
}

.pricing-features li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card.featured .pricing-features li {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
}

.pricing-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li::before { background: var(--teal); }

.pricing-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-card.featured .pricing-note { color: rgba(255,255,255,0.55); }

.pricing-cta {
  max-width: 600px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
}

/* PROOF */
.proof {
  padding: 100px 40px;
  background: var(--navy);
  color: #fff;
}

.proof .section-label { background: rgba(0,163,180,0.15); color: var(--teal); border-color: rgba(0,163,180,0.3); }
.proof .section-header h2 { color: #fff; }

.proof-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}

.proof-stats {
  display: flex;
  gap: 48px;
}

.stat { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.proof-areas h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.area-tag {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
}

.area-note {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  background: var(--bg-subtle);
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.closing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid rgba(0,102,204,0.2);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.closing p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-services {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.closing-services .divider { color: var(--border); }

/* FOOTER */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 80px 40px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-wordmark {
  color: #fff;
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  max-width: 320px;
}

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

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .site-nav nav { display: none; }

  .hero { padding: 60px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }

  .services, .pricing, .proof, .closing { padding: 60px 20px; }

  .service-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }

  .proof-grid { grid-template-columns: 1fr; gap: 40px; }
  .proof-stats { gap: 32px; }
  .stat-number { font-size: 40px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }

  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 30px; }
  .proof-stats { flex-direction: column; gap: 24px; }
  .closing-services { flex-direction: column; }
  .closing-services .divider { display: none; }
}