/* ══════════════════════════════════════════════════════════════════
   HEAP PAVING & SEALING — Premium Paving Site
   ══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --charcoal: #1a1a1a;
  --asphalt: #2d2d2d;
  --slate: #3a3a3a;
  --steel: #6b7280;
  --warm-white: #e8e8e8;
  --cream: #eeeeee;
  --amber: #d4a338;
  --amber-dim: rgba(212, 163, 56, 0.15);
  --amber-glow: rgba(212, 163, 56, 0.4);
  --success: #22c55e;
  --white: #ffffff;
  --text-primary: #f5f0eb;
  --text-muted: rgba(245, 240, 235, 0.7);
  --text-dim: rgba(245, 240, 235, 0.45);
  --text-dark: #1a1a1a;
  --text-dark-muted: #6b7280;
  --shadow-soft: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-strong: 0 20px 60px rgba(0,0,0,0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1200px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Outfit", sans-serif;
  color: var(--text-primary);
  background: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

/* ── HEADER ─────────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--amber); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--amber);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.nav-phone svg { flex-shrink: 0; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--amber);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--amber-glow);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-panel.open { display: flex; }

.mobile-panel a {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-primary);
}

.mobile-panel a:hover { color: var(--amber); }

/* ── HERO ───────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.4) 40%, rgba(26,26,26,0.2) 70%, rgba(26,26,26,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 80px;
  max-width: 700px;
}

.hero-content h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-content h1 span { color: var(--amber); }

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--amber);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--amber-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.btn-outline:hover {
  border-color: var(--amber);
  background: rgba(212,163,56,0.08);
}

/* ── TRUST BAR ──────────────────────────────────────────────────── */

.trust-bar {
  background: var(--asphalt);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.trust-item {
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.trust-item:last-child { border-right: none; }

.trust-number {
  font-family: "DM Serif Display", serif;
  font-size: 1.8rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── SECTIONS ───────────────────────────────────────────────────── */

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--charcoal);
}

.section-darker {
  background: var(--asphalt);
}

.section-light {
  background: var(--cream);
  color: var(--text-dark);
}

.section-warm {
  background: var(--warm-white);
  color: var(--text-dark);
}

.section-head {
  margin-bottom: 56px;
}

.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-head .eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

.section-head h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-head p {
  font-size: 1.05rem;
  max-width: 600px;
  opacity: 0.75;
  line-height: 1.6;
}

.section-light .section-head p,
.section-warm .section-head p {
  color: var(--text-dark-muted);
}

/* ── SERVICES GRID ──────────────────────────────────────────────── */

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

.service-card {
  position: relative;
  padding: 32px 24px;
  background: var(--slate);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--amber-dim);
  color: var(--amber);
}

.service-card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
  line-height: 1.15;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--amber);
  margin-top: auto;
}

/* ── GALLERY GRID ───────────────────────────────────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-grid.hero-gallery {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide { grid-column: span 2; }

/* ── REVIEWS ────────────────────────────────────────────────────── */

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

.review-card {
  padding: 28px;
  background: var(--slate);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.review-stars {
  color: var(--amber);
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-top: 2px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

/* Light-background reviews */
.section-light .review-card,
.section-warm .review-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-soft);
}

.section-light .review-text,
.section-warm .review-text {
  color: var(--text-dark-muted);
}

.section-light .review-name,
.section-warm .review-name {
  color: var(--text-dark);
}

.section-light .review-stars,
.section-warm .review-stars {
  color: #fbbc05;
}

/* ── PROCESS STEPS ──────────────────────────────────────────────── */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
}

.process-num {
  font-family: "DM Serif Display", serif;
  font-size: 3rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 14px;
}

.process-step h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  line-height: 1.55;
}

/* ── WHY HEAP ───────────────────────────────────────────────────── */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.why-card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── CTA BANNER ─────────────────────────────────────────────────── */

.cta-banner {
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(212,163,56,0.12), rgba(212,163,56,0.04)),
    var(--charcoal);
  text-align: center;
}

.cta-banner h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.cta-phone {
  font-family: "DM Serif Display", serif;
  font-size: 2.2rem;
  color: var(--amber);
  display: block;
  margin-bottom: 24px;
}

/* ── FOOTER ─────────────────────────────────────────────────────── */

.site-footer {
  padding: 60px 0 24px;
  background: #111111;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-dim);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dim);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--amber); }

.footer-col .footer-detail {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.footer-col .footer-phone {
  font-family: "DM Serif Display", serif;
  font-size: 1.3rem;
  color: var(--amber);
  display: block;
  margin-top: 8px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ── PAGE HERO (non-home pages) ─────────────────────────────────── */

.page-hero {
  padding: 140px 0 60px;
  background:
    linear-gradient(to bottom, rgba(26,26,26,0.65), rgba(26,26,26,0.85)),
    url('images/services/pavers.jpg') center / cover no-repeat;
}

.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.page-hero .eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--amber);
}

.page-hero h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}

/* ── CONTENT BLOCKS ─────────────────────────────────────────────── */

.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.content-block h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.6rem;
  margin-bottom: 14px;
  line-height: 1.15;
}

.content-block p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.section-light .content-block p { color: var(--text-dark-muted); }
.section-dark .content-block p { color: var(--text-muted); }

.content-block ul {
  list-style: none;
  padding: 0;
}

.content-block ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.content-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.section-light .content-block ul li { color: var(--text-dark-muted); }

/* ── CONTACT FORM ───────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.contact-detail {
  margin-bottom: 20px;
}

.contact-detail h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}

.contact-detail p, .contact-detail a {
  font-size: 0.95rem;
}

.contact-detail .big-phone {
  font-family: "DM Serif Display", serif;
  font-size: 1.5rem;
  color: var(--amber);
}

.form-card {
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  color: var(--text-dark);
}

.form-card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  margin-bottom: 14px;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 0.92rem;
  transition: border-color var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--amber);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--amber);
  color: var(--charcoal);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--amber-glow);
}

/* ── DISCOUNT BADGE ─────────────────────────────────────────────── */

.discount-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--amber-dim);
  border: 1px solid rgba(212,163,56,0.2);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.02em;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .content-two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero-content { padding: 0 0 48px; }
  .hero-content h1 { font-size: 2.4rem; }
}

/* ── AWARD BADGE ────────────────────────────────────────────────── */

.award-badge-fixed {
  position: fixed;
  bottom: 140px;
  right: 50px;
  z-index: 98;
  transition: opacity 0.3s ease;
}

.award-badge-fixed img {
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

/* Hide badge when Rolly chat is open */
.award-badge-fixed.hidden { opacity: 0; pointer-events: none; }

.page-hero-with-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-badge {
  flex-shrink: 0;
}

.hero-badge img {
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

@media (max-width: 768px) {
  .award-badge-fixed { bottom: 92px; right: 20px; }
  .award-badge-fixed img { width: 60px; }
  .page-hero-with-badge { flex-direction: column; }
  .hero-badge img { width: 120px; }
}

/* ── SCROLL REVEAL ──────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
