/* Covertile Roofing — Styles */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800;900&family=Nunito:wght@400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --orange:       #C4622D;
  --orange-light: #E07A45;
  --orange-pale:  #FDF0E6;
  --dark:         #1C2B3A;
  --text:         #374151;
  --grey:         #6B7280;
  --white:        #FFFFFF;
  --cream:        #FAFAF7;
  --border:       #EDE7DF;
  --tile-bg:      #F5EFE9;
  --font-head:    'Raleway', sans-serif;
  --font-body:    'Nunito', sans-serif;
  --radius:       12px;
  --shadow:       0 4px 24px rgba(28,43,58,0.10);
  --shadow-lg:    0 12px 48px rgba(28,43,58,0.15);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-family: var(--font-head);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.02em;
  cursor: pointer; border: none; position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 4px 18px rgba(196,98,45,0.35); }
.btn-orange:hover { background: var(--orange-light); box-shadow: 0 8px 28px rgba(196,98,45,0.4); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #253547; }
.btn-outline { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn .arr { transition: transform 0.2s; }
.btn:hover .arr { transform: translateX(4px); }
.ripple {
  position: absolute; border-radius: 50%;
  width: 6px; height: 6px; margin: -3px;
  background: rgba(255,255,255,0.35);
  animation: rippleAnim 0.7s ease-out forwards;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(60); opacity: 0; }
}

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled { border-color: var(--border); box-shadow: 0 2px 20px rgba(28,43,58,0.07); }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon {
  width: 38px; height: 38px; background: var(--orange); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--dark); line-height: 1.15; }
.nav-logo-text span { display: block; font-size: 0.65rem; font-weight: 600; color: var(--grey); letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--grey); transition: color 0.2s; letter-spacing: 0.01em; }
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-cta { background: var(--orange) !important; color: var(--white) !important; padding: 10px 20px; border-radius: 8px; font-size: 0.85rem !important; transition: background 0.2s, transform 0.2s !important; }
.nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(28,43,58,0.4); z-index: 90; opacity: 0; transition: opacity 0.3s; }
.mobile-overlay.open { opacity: 1; }
.mobile-menu {
  display: none; position: fixed; top: 0; right: -280px; width: 280px; height: 100dvh;
  background: var(--white); z-index: 95; padding: 88px 28px 28px;
  flex-direction: column; gap: 4px; transition: right 0.35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 32px rgba(28,43,58,0.12);
}
.mobile-menu.open { right: 0; }
.mobile-menu a { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--dark); padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-menu .mob-cta { margin-top: 20px; background: var(--orange); color: var(--white); text-align: center; border-radius: 8px; padding: 14px; border: none; }

/* ── Scroll reveal ─────────────────────────────────────────── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; } .d5 { transition-delay: 0.5s; }

/* ── Section helpers ───────────────────────────────────────── */
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900; color: var(--dark); line-height: 1.15; letter-spacing: -0.02em;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-head p { color: var(--grey); font-size: 1rem; margin-top: 14px; }
.orange-bar {
  display: block; width: 48px; height: 4px; background: var(--orange);
  border-radius: 2px; margin: 16px 0; opacity: 0; transform: scaleX(0); transform-origin: left;
  transition: opacity 0.5s, transform 0.6s cubic-bezier(.4,0,.2,1);
}
.orange-bar.visible { opacity: 1; transform: scaleX(1); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding: 120px 48px 80px; position: relative; overflow: hidden;
  background: var(--cream);
}
/* Animated tile pattern overlay */
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.45;
  background-image:
    linear-gradient(135deg, var(--border) 1px, transparent 1px),
    linear-gradient(225deg, var(--border) 1px, transparent 1px);
  background-size: 36px 36px;
  animation: patternDrift 18s linear infinite;
}
@keyframes patternDrift { from { background-position: 0 0; } to { background-position: 72px 72px; } }

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-pale); border: 1px solid rgba(196,98,45,0.2);
  color: var(--orange); border-radius: 100px; padding: 6px 14px;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px;
  animation: fadeSlideUp 0.8s ease both;
}
.hero-badge .dot-pulse {
  width: 7px; height: 7px; background: var(--orange); border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(196,98,45,0.5)} 50%{box-shadow:0 0 0 6px rgba(196,98,45,0);} }
@keyframes fadeSlideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }

.hero-title {
  font-family: var(--font-head); font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900; color: var(--dark); line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 22px; animation: fadeSlideUp 0.8s 0.15s ease both;
}
.hero-title .accent { color: var(--orange); }
.hero-title .underline-word {
  position: relative; display: inline-block;
}
.hero-title .underline-word::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 5px;
  background: var(--orange); border-radius: 3px; opacity: 0.25;
  animation: slideIn 0.9s 0.7s ease both;
}
@keyframes slideIn { from{transform:scaleX(0);transform-origin:left} to{transform:scaleX(1)} }

.hero-tagline {
  color: var(--grey); font-size: 1.05rem; line-height: 1.8; max-width: 480px;
  margin-bottom: 36px; animation: fadeSlideUp 0.8s 0.25s ease both;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeSlideUp 0.8s 0.35s ease both; }
.hero-meta {
  display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.45s ease both;
}
.hero-meta-item { display: flex; align-items: center; gap: 8px; }
.hero-meta-item .m-icon { color: var(--orange); flex-shrink: 0; }
.hero-meta-item .m-text { font-size: 0.85rem; color: var(--grey); font-weight: 600; }
.hero-meta-item .m-text strong { color: var(--dark); }

/* Hero visual card */
.hero-visual { position: relative; animation: fadeSlideUp 0.9s 0.2s ease both; }
.hero-card {
  background: var(--white); border-radius: 20px; padding: 40px;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,98,45,0.08), transparent 70%);
}
.roof-svg-wrap {
  width: 100%; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  background: var(--orange-pale); border-radius: 12px; margin-bottom: 28px;
  position: relative; overflow: hidden;
}
.roof-svg-wrap::after {
  content: ''; position: absolute; inset: 0; opacity: 0.15;
  background-image: linear-gradient(135deg, var(--border) 1px, transparent 1px),
    linear-gradient(225deg, var(--border) 1px, transparent 1px);
  background-size: 24px 24px;
}
.roof-svg { width: 75%; height: auto; position: relative; z-index: 1; }

/* Animated tiles on SVG */
.tile-row rect { opacity: 0; animation: tileAppear 0.4s ease forwards; }
@keyframes tileAppear { to { opacity: 1; } }

.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.h-stat {
  background: var(--tile-bg); border-radius: 10px; padding: 16px 12px; text-align: center;
}
.h-stat-num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; color: var(--dark); line-height: 1; }
.h-stat-label { font-size: 0.7rem; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.h-stat.orange-stat { background: var(--orange); }
.h-stat.orange-stat .h-stat-num, .h-stat.orange-stat .h-stat-label { color: var(--white); }

.google-badge {
  position: absolute; top: 24px; right: 24px; z-index: 2;
  background: var(--white); border-radius: 10px; padding: 8px 12px;
  box-shadow: 0 4px 16px rgba(28,43,58,0.12);
  display: flex; align-items: center; gap: 6px;
  animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.google-badge svg { flex-shrink: 0; }
.google-badge-text { font-family: var(--font-head); }
.google-badge-text .rating { font-size: 0.9rem; font-weight: 800; color: var(--dark); line-height: 1; }
.google-badge-text .label { font-size: 0.62rem; color: var(--grey); font-weight: 600; letter-spacing: 0.05em; }

/* ── Ticker ─────────────────────────────────────────────────── */
.ticker {
  background: var(--dark); padding: 14px 0; overflow: hidden;
  border-top: 3px solid var(--orange);
}
.ticker-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
}
@keyframes tickerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 40px; font-family: var(--font-head); font-size: 0.78rem;
  font-weight: 700; color: rgba(255,255,255,0.6); letter-spacing: 0.06em;
  text-transform: uppercase; flex-shrink: 0;
}
.ticker-item .dot { width: 5px; height: 5px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

/* ── Services preview ──────────────────────────────────────── */
.services-preview { padding: 100px 48px; }
.services-preview .section-head { margin-bottom: 56px; }
.svc-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.svc-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 24px;
  border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 52px; height: 52px; background: var(--orange-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  color: var(--orange); transition: background 0.3s, color 0.3s;
}
.svc-card:hover .svc-icon { background: var(--orange); color: var(--white); }
.svc-name { font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.svc-desc { font-size: 0.88rem; color: var(--grey); line-height: 1.7; }
.svc-more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  color: var(--orange); transition: gap 0.2s;
}
.svc-card:hover .svc-more { gap: 10px; }
.services-footer { text-align: center; margin-top: 52px; }

/* ── Stats ──────────────────────────────────────────────────── */
.stats {
  background: var(--dark);
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  padding: 120px 48px;
}
.stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-head); font-size: clamp(2.4rem,4vw,3.2rem); font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-num .orange { color: var(--orange); }
.stat-label { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.12em; }
.stat-divider { width: 32px; height: 2px; background: var(--orange); border-radius: 1px; margin: 12px auto 0; }

/* ── About ──────────────────────────────────────────────────── */
.about { padding: 100px 48px; background: var(--white); }
.about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-title { font-family: var(--font-head); font-size: clamp(1.8rem,2.8vw,2.4rem); font-weight: 900; color: var(--dark); line-height: 1.2; margin-bottom: 20px; }
.about-body { color: var(--grey); line-height: 1.9; margin-bottom: 18px; font-size: 0.97rem; }
.about-features { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.about-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--text); }
.about-check {
  width: 22px; height: 22px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--white); flex-shrink: 0; margin-top: 1px;
}

/* About right panel */
.about-panel { display: flex; flex-direction: column; gap: 20px; }
.about-info-card {
  background: var(--orange-pale); border: 1px solid rgba(196,98,45,0.15);
  border-radius: var(--radius); padding: 28px;
}
.about-info-card h4 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.abt-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text); margin-bottom: 10px; }
.abt-row:last-child { margin-bottom: 0; }
.abt-icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.team-card {
  background: var(--dark); border-radius: var(--radius); padding: 24px;
  display: flex; align-items: center; gap: 16px;
}
.team-avatar {
  width: 52px; height: 52px; border-radius: 50%; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 900; font-size: 1.1rem; color: var(--white); flex-shrink: 0;
}
.team-name { font-family: var(--font-head); font-weight: 800; font-size: 0.95rem; color: var(--white); }
.team-role { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; margin-top: 3px; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hours-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 16px; text-align: center;
}
.hours-val { font-family: var(--font-head); font-size: 1.1rem; font-weight: 900; color: var(--dark); }
.hours-key { font-size: 0.68rem; color: var(--grey); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

/* ── Why Us ─────────────────────────────────────────────────── */
.why-us { padding: 100px 48px; background: var(--tile-bg); }
.pillars-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.pillar-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px;
  text-align: center; border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar-icon-wrap {
  width: 64px; height: 64px; border-radius: 16px; background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--orange);
  transition: background 0.3s, color 0.3s;
}
.pillar-card:hover .pillar-icon-wrap { background: var(--orange); color: var(--white); }
.pillar-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.pillar-body { font-size: 0.9rem; color: var(--grey); line-height: 1.75; }

/* ── Google rating strip ───────────────────────────────────── */
.rating-strip {
  background: var(--orange); padding: 60px 48px; text-align: center;
}
.rating-inner { max-width: 700px; margin: 0 auto; }
.stars { display: flex; justify-content: center; gap: 8px; margin-bottom: 16px; }
.rating-score { font-family: var(--font-head); font-size: 3.2rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 8px; }
.rating-label { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.rating-sub { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

/* ── CTA section ───────────────────────────────────────────── */
.cta-section {
  background: var(--dark); padding: 100px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(135deg, var(--white) 1px, transparent 1px),
    linear-gradient(225deg, var(--white) 1px, transparent 1px);
  background-size: 36px 36px;
}
.cta-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.cta-title { font-family: var(--font-head); font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.cta-body { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 36px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: #111D29; padding: 64px 48px 32px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon { width: 36px; height: 36px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-logo-text { font-family: var(--font-head); font-weight: 800; color: var(--white); font-size: 1rem; line-height: 1.2; }
.footer-logo-text span { display: block; font-size: 0.6rem; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-tagline { color: rgba(255,255,255,0.4); font-size: 0.88rem; line-height: 1.8; }
.footer-col h4 { font-family: var(--font-head); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-cline { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.footer-cline svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-cline a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-cline a:hover { color: var(--orange); }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.est-badge { background: var(--orange); color: var(--white) !important; padding: 4px 12px; border-radius: 100px; font-family: var(--font-head); font-weight: 800; font-size: 0.72rem; letter-spacing: 0.06em; }

/* ── Page hero (inner pages) ───────────────────────────────── */
.page-hero {
  padding: 140px 48px 80px; background: var(--dark);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(135deg, var(--white) 1px, transparent 1px),
    linear-gradient(225deg, var(--white) 1px, transparent 1px);
  background-size: 36px 36px;
}
.page-hero-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--orange-light); }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: var(--white); margin: 12px 0 16px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.75; }

/* ── Services full page ─────────────────────────────────────── */
.svc-full { max-width: 1200px; margin: 0 auto; padding: 80px 48px; }
.svc-cat-block {
  display: grid; grid-template-columns: 260px 1fr; gap: 56px;
  padding: 56px 0; border-bottom: 1px solid var(--border);
  align-items: start;
}
.svc-cat-block:last-child { border-bottom: none; }
.svc-cat-sidebar { position: sticky; top: 100px; }
.svc-cat-icon-big {
  width: 64px; height: 64px; background: var(--orange-pale); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-bottom: 16px;
}
.svc-cat-num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 900; color: var(--border); line-height: 1; margin-bottom: 6px; }
.svc-cat-name { font-family: var(--font-head); font-size: 1.25rem; font-weight: 900; color: var(--dark); line-height: 1.2; margin-bottom: 14px; }
.svc-cat-line { width: 36px; height: 3px; background: var(--orange); border-radius: 2px; }
.svc-cat-body-text { color: var(--grey); line-height: 1.85; font-size: 0.95rem; margin-bottom: 16px; }
.svc-items-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.svc-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--tile-bg); border-radius: 8px; padding: 12px 14px;
  font-size: 0.88rem; font-weight: 600; color: var(--dark);
  border: 1px solid var(--border); transition: border-color 0.2s, background 0.2s;
}
.svc-item:hover { border-color: var(--orange); background: var(--orange-pale); }
.svc-item-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

/* Process steps */
.process-section { background: var(--tile-bg); padding: 80px 48px; }
.process-inner { max-width: 1100px; margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 56px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 28px; left: calc(12.5% + 14px); right: calc(12.5% + 14px);
  height: 2px; background: var(--border); z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; background: var(--white); border: 3px solid var(--orange);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 900; font-size: 1.1rem; color: var(--orange);
  margin: 0 auto 16px;
}
.step.active .step-num { background: var(--orange); color: var(--white); }
.step-title { font-family: var(--font-head); font-weight: 800; font-size: 0.95rem; color: var(--dark); margin-bottom: 8px; }
.step-body { font-size: 0.83rem; color: var(--grey); line-height: 1.7; }

/* ── Contact page ───────────────────────────────────────────── */
.contact-section { padding: 80px 48px; }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; }
.contact-info-title { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; color: var(--dark); margin-bottom: 12px; }
.contact-info-body { color: var(--grey); font-size: 0.95rem; line-height: 1.8; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.c-icon-wrap {
  width: 42px; height: 42px; background: var(--orange-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--orange); flex-shrink: 0;
}
.c-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey); margin-bottom: 3px; }
.c-value { font-size: 0.97rem; font-weight: 700; color: var(--dark); }
.c-value a { color: var(--dark); transition: color 0.2s; }
.c-value a:hover { color: var(--orange); }
.hours-table { width: 100%; margin-top: 8px; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 8px 0; font-size: 0.88rem; }
.hours-table td:first-child { color: var(--grey); }
.hours-table td:last-child { font-weight: 700; color: var(--dark); text-align: right; }

/* Contact form */
.contact-form-card {
  background: var(--white); border-radius: 16px; padding: 40px;
  box-shadow: var(--shadow);
}
.form-card-title { font-family: var(--font-head); font-size: 1.35rem; font-weight: 900; color: var(--dark); margin: 10px 0 6px; }
.form-card-sub { color: var(--grey); font-size: 0.88rem; margin-bottom: 28px; line-height: 1.7; }
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; margin-bottom: 16px; }
.form-row.one-col { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: 0.75rem; font-weight: 800; color: var(--dark); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--dark);
  background: var(--cream); outline: none; transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange); background: var(--white);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; padding: 15px; font-size: 0.95rem; }
.form-note { font-size: 0.78rem; color: var(--grey); margin-top: 12px; display: flex; align-items: center; gap: 6px; }
.form-success {
  display: none; text-align: center; padding: 40px 20px; color: var(--dark);
}
.form-success svg { color: var(--orange); margin: 0 auto 16px; }
.form-success h4 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; margin-bottom: 8px; }
.form-success p { color: var(--grey); font-size: 0.9rem; }

/* ── Hero photo (replaces SVG illustration) ────────────────── */
.hero-photo-wrap {
  position: relative; border-radius: 12px; overflow: hidden;
  width: 100%; aspect-ratio: 4/3;
  margin-bottom: 28px;
  box-shadow: 0 8px 32px rgba(28,43,58,0.18);
}
.hero-photo {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-card:hover .hero-photo { transform: scale(1.03); }
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,43,58,0.55) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 16px;
}
.hero-photo-caption {
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.85); letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(196,98,45,0.85); padding: 4px 10px; border-radius: 4px;
}

/* ── Gallery section ───────────────────────────────────────── */
.gallery-section { padding: 100px 48px; background: var(--tile-bg); }
.gallery-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.gallery-item {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
  box-shadow: 0 4px 16px rgba(28,43,58,0.10);
}
.gallery-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,43,58,0.7) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 18px;
  opacity: 0; transition: opacity 0.35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 800;
  color: var(--white); letter-spacing: 0.05em;
  border-bottom: 2px solid var(--orange); padding-bottom: 3px;
}

/* ── Service category photo ────────────────────────────────── */
.svc-cat-photo {
  width: 100%; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden;
  margin-bottom: 20px; box-shadow: 0 4px 16px rgba(28,43,58,0.10);
}
.svc-cat-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-cat-block:hover .svc-cat-photo img { transform: scale(1.04); }

/* ── Contact photo banner ──────────────────────────────────── */
.contact-photo-banner {
  margin-top: 72px; position: relative; height: 320px; overflow: hidden;
}
.contact-photo-banner img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
}
.contact-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,43,58,0.4), rgba(28,43,58,0.75));
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .svc-cat-block { grid-template-columns: 1fr; gap: 24px; }
  .svc-cat-sidebar { position: static; }
}
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-overlay, .mobile-menu { display: flex; }
  .hero, .services-preview, .about, .why-us, .stats, .cta-section, .footer { padding-left: 24px; padding-right: 24px; }
  .svc-grid, .pillars-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .svc-full, .process-section, .contact-section { padding-left: 24px; padding-right: 24px; }
  .svc-items-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 24px 60px; }
  .gallery-section { padding-left: 24px; padding-right: 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .contact-photo-banner { height: 200px; }
  .svc-cat-photo { aspect-ratio: 16/9; }
}
