/* ============================================================
   PRO EXCAVATING SERVICE LLC — Global Stylesheet
   ============================================================ */

/* Google Fonts loaded via <link> tags in HTML for non-render-blocking performance */

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  --black:       #080807;
  --dark:        #111110;
  --dark-2:      #1A1A18;
  --dark-3:      #222220;
  --dark-4:      #2C2C2A;
  --accent:      #E07A00;
  --accent-dark: #B56000;
  --white:       #FFFFFF;
  --off-white:   #F8F7F3;
  --gray-50:     #F3F2EE;
  --gray-100:    #E9E7E1;
  --gray-300:    #C2BFB5;
  --gray-500:    #8A8780;
  --gray-700:    #4C4A44;
  --text:        #EDECEA;
  --text-muted:  rgba(255,255,255,0.48);
  --border:      rgba(255,255,255,0.08);

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:      6px;
  --radius-lg:   12px;
  --radius-xl:   20px;

  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:  0.2s var(--ease);

  --max-w:       1200px;
  --section-y:   clamp(72px, 9vw, 128px);
}

/* ── Base ────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--dark-2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

.section { padding: var(--section-y) 0; }

.section--dark { background: var(--dark-2); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark .text-muted { color: var(--gray-300); }

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

/* ── Typography helpers ──────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.97;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.text-lg  { font-size: clamp(17px, 1.8vw, 20px); line-height: 1.65; }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }

/* ── Buttons — Glass Style ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: none;
}

/* Glass top-shine — light reflection across upper half */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 54%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.24) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.25s ease;
}

.btn:hover::before {
  opacity: 0.7;
}

/* Keep text/icons above the shine layer */
.btn > *,
.btn > svg {
  position: relative;
  z-index: 3;
}

/* ── Primary — vivid amber glass ─── */
.btn--primary {
  background: linear-gradient(155deg, #F59200 0%, #E07A00 55%, #C96800 100%);
  color: var(--white);
  outline: 1px solid rgba(255, 200, 100, 0.55);
  outline-offset: 0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.20) inset,
    0 -1px 0 rgba(0, 0, 0, 0.18) inset,
    0 6px 24px rgba(224, 122, 0, 0.52),
    0 2px 6px  rgba(0, 0, 0, 0.18);
}
.btn--primary:hover {
  background: linear-gradient(155deg, #FFA010 0%, #F08800 55%, #D97200 100%);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 -1px 0 rgba(0, 0, 0, 0.22) inset,
    0 14px 38px rgba(224, 122, 0, 0.62),
    0 4px 10px rgba(0, 0, 0, 0.22);
}
.btn--primary:active {
  transform: translateY(0);
}

/* ── Outline — frosted dark glass (on dark backgrounds) ─── */
.btn--outline {
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  outline: 1px solid rgba(255, 255, 255, 0.32);
  outline-offset: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 -1px 0 rgba(0, 0, 0, 0.14) inset,
    0 4px 18px rgba(0, 0, 0, 0.25);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.17);
  outline-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.20) inset,
    0 -1px 0 rgba(0, 0, 0, 0.14) inset,
    0 10px 30px rgba(0, 0, 0, 0.32);
}
.btn--outline:active {
  transform: translateY(0);
}

/* ── Outline-dark — now same as outline since everything is dark ─── */
.btn--outline-dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: 1px solid rgba(255, 255, 255, 0.22);
  outline-offset: 0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.10) inset,
    0 -1px 0 rgba(0, 0, 0, 0.20) inset,
    0 3px 10px rgba(0, 0, 0, 0.20);
}
.btn--outline-dark::before {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.10) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
}
.btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.13);
  outline-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 -1px 0 rgba(0, 0, 0, 0.20) inset,
    0 7px 18px rgba(0, 0, 0, 0.30);
}
.btn--outline-dark:active {
  transform: translateY(0);
}

/* ── White — bright glass (on dark/amber backgrounds) ─── */
.btn--white {
  background: linear-gradient(155deg, rgba(255,255,255,0.96) 0%, rgba(242,240,235,0.96) 100%);
  color: var(--accent-dark);
  outline: 1px solid rgba(255, 255, 255, 0.92);
  outline-offset: 0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 -1px 0 rgba(0, 0, 0, 0.07) inset,
    0 8px 28px rgba(0, 0, 0, 0.28);
}
.btn--white::before {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
}
.btn--white:hover {
  background: linear-gradient(155deg, rgba(255,255,255,1) 0%, rgba(250,248,244,1) 100%);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 -1px 0 rgba(0, 0, 0, 0.09) inset,
    0 16px 44px rgba(0, 0, 0, 0.34);
}
.btn--white:active {
  transform: translateY(0);
}

.btn--lg {
  padding: 17px 36px;
  font-size: 17px;
}

.btn--sm {
  padding: 10px 22px;
  font-size: 14px;
}

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 0;
  transition: padding 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
  padding: 14px clamp(16px, 3vw, 32px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 5vw, 56px);
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    background    0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    padding       0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow    0.45s cubic-bezier(0.4, 0, 0.2, 1),
    max-width     0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .header-inner {
  background: rgba(17, 18, 16, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 9999px;
  max-width: 960px;
  padding: 10px 10px 10px 26px;
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.07);
}

/* Hide phone number in pill — too cramped */
.site-header.scrolled .header-phone {
  display: none;
}

/* Tighten nav gap inside pill */
.site-header.scrolled .nav {
  gap: 2px;
}
.site-header.scrolled .nav-link {
  font-size: 14px;
  padding: 7px 12px;
}

/* Slightly smaller logo in pill */
.site-header.scrolled .logo img {
  height: 32px;
}
.site-header.scrolled .logo-text {
  font-size: 13px;
}
.site-header.scrolled .logo-text span {
  font-size: 9px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img {
  height: 40px;
  width: auto;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.logo-text span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.55;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--accent); }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-phone {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--accent); }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  padding: 96px 40px 48px;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .mobile-link {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  padding: 10px 0;
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.mobile-nav .mobile-link:hover { color: var(--accent); }
.mobile-nav-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 28px;
  padding: 8px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.mobile-close:hover { opacity: 1; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--dark-2);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 18, 16, 0.60) 0%,
    rgba(17, 18, 16, 0.45) 50%,
    rgba(17, 18, 16, 0.75) 100%
  );
  z-index: 1;
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 65% 55% at 75% 45%, rgba(224,122,0,0.09) 0%, transparent 68%),
    radial-gradient(ellipse 45% 65% at 15% 75%, rgba(224,122,0,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  padding: clamp(8px, 1vw, 20px) 0 clamp(48px, 7vw, 96px);
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(224,122,0,0.12);
  border: 1px solid rgba(224,122,0,0.28);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: var(--white);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.6);
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
  justify-content: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* ── Section Headers ─────────────────────────────────────── */
.section-header { margin-bottom: clamp(40px, 6vw, 72px); text-align: center; }
.section-header .display-md,
.section-header .display-lg { margin-left: auto; margin-right: auto; }
.section-sub {
  margin-top: 16px;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.section--dark .section-sub { color: rgba(255,255,255,0.5); }
.text-muted { color: var(--text-muted); }
.section-header--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

/* ── Service Showcase ────────────────────────────────────── */
.service-showcase {
  display: grid;
  grid-template-columns: 220px 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.showcase-nav {
  background: var(--dark-3);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.showcase-tab {
  position: relative;
  padding: 20px 22px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  text-align: left;
  cursor: pointer;
  color: rgba(255,255,255,0.42);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  transition: color 0.2s, background 0.2s;
  overflow: hidden;
}
.showcase-tab:last-child { border-bottom: none; }
.showcase-tab:hover { color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.03); }
.showcase-tab.active { color: var(--white); background: var(--dark-4); }

.showcase-tab-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s ease;
}
.showcase-tab.active .showcase-tab-bar { transform: scaleY(1); }

.showcase-tab-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  width: 0%;
}
.showcase-tab.active .showcase-tab-progress {
  opacity: 0.55;
  animation: showcase-fill 2.5s linear forwards;
}
@keyframes showcase-fill {
  from { width: 0%; }
  to { width: 100%; }
}

.showcase-stage {
  position: relative;
  min-height: 300px;
  background: var(--dark-2);
}

.showcase-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 52px 56px;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.showcase-panel.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.showcase-icon-wrap {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(224,122,0,0.1);
  border: 1.5px solid rgba(224,122,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.showcase-panel.active .showcase-icon-wrap {
  animation: icon-emerge 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes icon-emerge {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.showcase-body h3 {
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.showcase-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 500px;
}

/* ── Stats Band ──────────────────────────────────────────── */
.stats-band {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark-3);
}

.stats-list {
  max-width: 680px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stat-item:last-child { border-bottom: none; }

.stats-list.in-view .stat-item:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stats-list.in-view .stat-item:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stats-list.in-view .stat-item:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.stats-list.in-view .stat-item:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  min-width: 160px;
  text-align: right;
  flex-shrink: 0;
}

.stat-info { flex: 1; }

.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.stat-bar {
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}
.stat-bar-fill {
  height: 100%;
  background: var(--accent);
  width: 0;
  border-radius: 2px;
  transition: width 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stats-list.in-view .stat-item:nth-child(1) .stat-bar-fill { width: 92%; transition-delay: 0.35s; }
.stats-list.in-view .stat-item:nth-child(2) .stat-bar-fill { width: 68%; transition-delay: 0.5s; }
.stats-list.in-view .stat-item:nth-child(3) .stat-bar-fill { width: 100%; transition-delay: 0.65s; }
.stats-list.in-view .stat-item:nth-child(4) .stat-bar-fill { width: 100%; transition-delay: 0.8s; }

/* ── Why Grid ────────────────────────────────────────────── */
@property --why-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes why-border-spin {
  to { --why-angle: 360deg; }
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: why-counter;
}

.why-item {
  position: relative;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 30px 22px 34px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease),
              box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
  counter-increment: why-counter;
}

/* Spinning conic-gradient border */
.why-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--why-angle),
    transparent 0%,
    rgba(224,122,0,0.7) 18%,
    rgba(255,165,60,1)  25%,
    rgba(224,122,0,0.7) 32%,
    transparent 50%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}

/* Subtle number badge */
.why-item::after {
  content: counter(why-counter, decimal-leading-zero);
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(224,122,0,0.2);
  pointer-events: none;
  transition: color 0.35s ease;
}

/* Entrance reveal */
.why-item.why-visible {
  opacity: 1;
  transform: translateY(0);
}

/* JS-driven spinning border highlight */
.why-item.why-highlight {
  border-color: transparent;
  box-shadow: 0 0 28px rgba(224,122,0,0.1), 0 6px 24px rgba(0,0,0,0.25);
}
.why-item.why-highlight::before {
  opacity: 1;
  animation: why-border-spin 2.5s linear infinite;
}
.why-item.why-highlight::after {
  color: rgba(224,122,0,0.5);
}

/* Staggered entrance delays */
.why-item:nth-child(1) { transition-delay: 0s; }
.why-item:nth-child(2) { transition-delay: 0.07s; }
.why-item:nth-child(3) { transition-delay: 0.14s; }
.why-item:nth-child(4) { transition-delay: 0.21s; }
.why-item:nth-child(5) { transition-delay: 0.28s; }

/* Hover */
.why-item:hover {
  transition-delay: 0s;
  transform: translateY(-5px);
  border-color: rgba(224,122,0,0.35);
  box-shadow:
    0 0 0 1px rgba(224,122,0,0.15),
    0 20px 48px rgba(0,0,0,0.45);
}
.why-item:hover::before {
  opacity: 0;
  animation: none;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(224,122,0,0.10);
  border: 1px solid rgba(224,122,0,0.18);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.why-item:hover .why-icon {
  background: rgba(224,122,0,0.18);
  border-color: rgba(224,122,0,0.35);
}

.why-item h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.why-item p {
  font-size: 13px;
  color: var(--gray-300);
  line-height: 1.7;
}

/* ── Process (Redesign) ──────────────────────────────────── */
.section--process {
  background: var(--dark-2);
}
.section--process .eyebrow {
  color: var(--accent);
  border-color: rgba(224,122,0,0.3);
}
.section--process .display-md {
  color: var(--white);
}

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

/* Connector track — runs behind the icon circles */
.process-track {
  position: absolute;
  top: 52px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.process-track-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 2px;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.process-steps.proc-visible .process-track-fill {
  width: 100%;
}

/* Cards */
.process-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 28px 20px 32px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              opacity 0.5s var(--ease);
  opacity: 0;
  transform: translateY(28px);
}
.process-card.proc-visible {
  opacity: 1;
  transform: translateY(0);
}
.process-card:nth-child(2) { transition-delay: 0.05s; }
.process-card:nth-child(3) { transition-delay: 0.15s; }
.process-card:nth-child(4) { transition-delay: 0.25s; }
.process-card:nth-child(5) { transition-delay: 0.35s; }

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  border-color: rgba(224,122,0,0.25);
}

/* Icon area */
.process-icon-wrap {
  position: relative;
  flex-shrink: 0;
}
.process-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(224,122,0,0.35);
}
.process-icon svg {
  width: 44px;
  height: 44px;
}

/* Step badge */
.step-badge {
  position: absolute;
  top: -2px;
  right: -6px;
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 99px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Card body text */
.process-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.process-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.process-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ── Icon Animations ──────────────────────────────────────── */

/* Phone: ring shake */
@keyframes phone-ring {
  0%,55%,100% { transform: rotate(0deg); }
  60%          { transform: rotate(-16deg); }
  67%          { transform: rotate(16deg); }
  74%          { transform: rotate(-12deg); }
  81%          { transform: rotate(12deg); }
  88%          { transform: rotate(-6deg); }
  95%          { transform: rotate(0deg); }
}
.process-icon--phone svg {
  animation: phone-ring 3.2s ease-in-out infinite;
  transform-origin: bottom center;
}
/* Pulse rings on phone */
@keyframes ring-pulse {
  0%,100% { opacity: 0.18; transform: scale(1); }
  50%      { opacity: 0.5;  transform: scale(1.12); }
}
.proc-ring-1 { animation: ring-pulse 3.2s ease-in-out infinite 0s; }
.proc-ring-2 { animation: ring-pulse 3.2s ease-in-out infinite 0.4s; }

/* Email: plane float */
@keyframes plane-fly {
  0%,100% { transform: translate(0,0);   opacity: 1; }
  45%     { transform: translate(5px,-5px); opacity: 0.3; }
  46%     { transform: translate(-4px,4px); opacity: 0; }
  47%     { transform: translate(-4px,4px); opacity: 0; }
  48%     { transform: translate(0,0);   opacity: 1; }
}
.plane-group {
  animation: plane-fly 2.8s ease-in-out infinite;
  transform-origin: 29px 7px;
}

/* Estimate: checkmark stroke-in */
@keyframes check-draw {
  0%,40%  { stroke-dashoffset: 30; opacity: 0.2; }
  65%,85% { stroke-dashoffset: 0;  opacity: 1; }
  100%    { stroke-dashoffset: 30; opacity: 0.2; }
}
.check-path {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: check-draw 2.6s ease-in-out infinite;
}

/* Calendar: date highlight pulse */
@keyframes cal-pulse {
  0%,100% { r: 5;   opacity: 1; }
  50%     { r: 6.5; opacity: 0.7; }
}
.cal-date-bg {
  animation: cal-pulse 2s ease-in-out infinite;
}

/* ── Review Source Badge ─────────────────────────────────── */
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.review-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
}
.review-time {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.local-guide-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  margin-left: 6px;
}
.author-avatar--photo {
  background: none;
  padding: 0;
  overflow: hidden;
}
.author-avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* ── Review Cards ────────────────────────────────────────── */
.reviews-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.review-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.review-card:hover {
  box-shadow: 0 8px 36px rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.14);
}

.review-stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(224,122,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  line-height: 1.3;
}
.author-location {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Rating Summary ──────────────────────────────────────── */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 36px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  margin-bottom: 60px;
}
.rating-big {
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--white);
  line-height: 1;
  flex-shrink: 0;
}
.rating-detail {}
.rating-stars-lg {
  color: var(--accent);
  font-size: 26px;
  letter-spacing: 3px;
  margin-bottom: 6px;
}
.rating-label {
  font-size: 15px;
  color: var(--text-muted);
}
.rating-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}
.rating-note {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 360px;
  line-height: 1.7;
}

/* ── Gallery Grid ────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  outline: 1px solid rgba(255,255,255,0.12);
  outline-offset: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.filter-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 54%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.01) 100%);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.25s ease;
}
.filter-btn:hover {
  background: rgba(255,255,255,0.10);
  outline-color: rgba(255,255,255,0.22);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.3);
}
.filter-btn.active {
  background: linear-gradient(155deg, #F59200 0%, #E07A00 55%, #C96800 100%);
  color: var(--white);
  outline: 1px solid rgba(255, 200, 100, 0.55);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.22) inset,
    0 -1px 0 rgba(0,0,0,0.18) inset,
    0 6px 20px rgba(224,122,0,0.48),
    0 2px 6px rgba(0,0,0,0.16);
}
.filter-btn.active::before {
  opacity: 0.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-3);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,18,16,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption-text {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}
.gallery-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
  display: block;
}

/* Gallery placeholder */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  font-weight: 500;
}
.gallery-placeholder svg { opacity: 0.3; }

/* Home gallery preview */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 200px;
  gap: 12px;
}
.gp-item {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.gp-item img { width: 100%; height: 100%; object-fit: cover; }
.gp-1 { grid-column: span 8; }
.gp-2 { grid-column: span 4; }
.gp-3 { grid-column: span 4; }
.gp-4 { grid-column: span 4; }
.gp-5 { grid-column: span 4; }

/* ── Contact Layout ──────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-top: 40px; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: background 0.2s, border-color 0.2s;
}
.contact-method:hover { background: var(--dark-4); border-color: rgba(255,255,255,0.14); }
.contact-method-icon {
  width: 46px;
  height: 46px;
  background: rgba(224,122,0,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-method-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-method-value {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color var(--transition);
  display: block;
}
.contact-method-value:hover { color: var(--accent); }
.contact-method-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ── Estimate Form ───────────────────────────────────────── */
.estimate-form {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
}
.form-header { margin-bottom: 32px; }
.form-header h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--white);
}
.form-header p { font-size: 14px; color: var(--text-muted); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--white);
  background: rgba(255,255,255,0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224,122,0,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; color-scheme: dark; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888884' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group select option {
  background: var(--dark-3);
  color: var(--white);
}

.form-submit { margin-top: 4px; }
.form-submit .btn { width: 100%; }
.form-note {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-note svg { color: var(--accent); flex-shrink: 0; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--accent);
  padding: clamp(72px, 9vw, 120px) 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Page Hero (interior pages) ──────────────────────────── */
.page-hero {
  background: var(--dark-2);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
.page-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(224,122,0,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.58);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-logo-wrap img { height: 38px; width: auto; }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 280px;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  padding: 11px 18px;
  background: rgba(224,122,0,0.1);
  border: 1px solid rgba(224,122,0,0.22);
  border-radius: 100px;
  transition: background 0.2s;
  width: fit-content;
  margin-bottom: 10px;
}
.footer-contact-link:hover { background: rgba(224,122,0,0.2); }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 15px;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-info { display: flex; flex-direction: column; gap: 13px; }
.footer-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.footer-info-row svg { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  line-height: 1.6;
}

/* ── Page CTA Strip (reviews / gallery pages) ────────────── */
.page-cta-strip {
  padding: 44px 0;
  background: var(--dark-3);
  border-bottom: 1px solid var(--border);
}
.page-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.page-cta-strip__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.page-cta-strip__sub {
  font-size: 14px;
  color: var(--text-muted);
}
.page-cta-strip__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

/* ── Utility ─────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Responsive ──────────────────────────────────────────── */

/* ── Tablet: ≤ 1024px ─── */
@media (max-width: 1024px) {

  /* Service showcase — scrollable tab strip */
  .service-showcase { grid-template-columns: 1fr; }
  .showcase-nav {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .showcase-nav::-webkit-scrollbar { display: none; }
  .showcase-tab {
    flex: 0 0 auto;
    text-align: center;
    padding: 14px 18px;
    border-bottom: none;
    border-right: 1px solid var(--border);
    font-size: 13px;
    white-space: nowrap;
  }
  .showcase-tab:last-child { border-right: none; }
  .showcase-tab-bar {
    left: 0; right: 0; bottom: 0; top: auto;
    width: auto; height: 3px;
    transform: scaleX(0);
    transform-origin: left;
  }
  .showcase-tab.active .showcase-tab-bar { transform: scaleX(1); }

  /* Let active panel drive its own height (no absolute positioning) */
  .showcase-stage { min-height: unset; }
  .showcase-panel {
    position: relative;
    inset: auto;
    flex-direction: column;
    padding: 36px 28px;
    gap: 24px;
    text-align: center;
    align-items: center;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: none;
    transition: none;
  }
  .showcase-panel.active { display: flex; }
  .showcase-body p { max-width: 100%; }

  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-track { display: none; }
  .reviews-preview-grid,
  .reviews-full-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > .footer-brand { grid-column: 1 / -1; }
}

/* ── Mobile: ≤ 768px ─── */
@media (max-width: 768px) {

  /* Header — hide desktop nav & CTA entirely, show hamburger */
  .nav { display: none; }
  .header-phone { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }

  /* Section split headers stack vertically */
  .section-header--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-method-value { font-size: 16px; word-break: break-word; }

  /* Rating summary */
  .rating-summary {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 28px 20px;
  }
  .rating-divider { width: 64px; height: 1px; }
  .rating-big { font-size: 64px; }

  /* Home gallery preview — 2 col */
  .gallery-preview {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }
  .gp-1 { grid-column: 1 / -1; height: 220px; }
  .gp-2, .gp-3, .gp-4, .gp-5 { grid-column: span 1; height: 160px; }
  .gp-item img { width: 100%; height: 100%; object-fit: cover; }

  /* Why grid — 2 columns, center lone last card */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .why-item:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 6px);
    margin-inline: auto;
  }

  /* Stats */
  .stat-item { gap: 16px; }
  .stat-number { font-size: clamp(36px, 9vw, 56px); min-width: 100px; }

  /* Process */
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Reviews */
  .reviews-preview-grid,
  .reviews-full-grid { grid-template-columns: 1fr; }
}

/* ── Small Mobile: ≤ 600px ─── */
@media (max-width: 600px) {

  :root { --section-y: clamp(52px, 8vw, 88px); }

  /* Hero */
  .hero-badge { font-size: 11px; padding: 5px 14px 5px 9px; }
  .hero-trust { gap: 14px; }
  .trust-item { font-size: 13px; gap: 6px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 360px; justify-content: center; }

  /* CTA banner */
  .cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-actions .btn { width: 100%; max-width: 340px; justify-content: center; }

  /* Service showcase */
  .showcase-panel { padding: 24px 16px; gap: 18px; }
  .showcase-icon-wrap { width: 72px; height: 72px; }
  .showcase-tab { padding: 12px 14px; font-size: 12px; }

  /* Stats */
  .stat-item { gap: 14px; }
  .stat-number { font-size: clamp(32px, 9vw, 48px); min-width: 88px; }

  /* Why cards */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .why-item { padding: 20px 14px 24px; }
  .why-item h3 { font-size: 13.5px; }
  .why-icon { width: 40px; height: 40px; margin-bottom: 14px; }
  .why-icon svg { width: 20px; height: 20px; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: 14px; }
  .process-card { padding: 24px 20px 28px; }
  .process-icon { width: 80px; height: 80px; }
  .process-icon svg { width: 36px; height: 36px; }

  /* Reviews */
  .reviews-preview-grid,
  .reviews-full-grid { grid-template-columns: 1fr; }
  .review-card { padding: 24px 20px; }

  /* Gallery page grid */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-filters { gap: 6px; }
  .filter-btn { padding: 8px 14px; font-size: 13px; }

  /* Home gallery preview — single column */
  .gallery-preview { grid-template-columns: 1fr; gap: 8px; }
  .gp-1, .gp-2, .gp-3, .gp-4, .gp-5 {
    grid-column: 1 / -1;
    height: 200px;
  }

  /* Contact form */
  .estimate-form { padding: 28px 20px; }

  /* Page hero (interior pages) */
  .page-hero { padding: 110px 0 56px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid > .footer-brand { grid-column: unset; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-tagline { max-width: 100%; }

  /* Rating page */
  .rating-summary { padding: 24px 16px; }
  .rating-big { font-size: 56px; }

  /* Page CTA strip — stack vertically */
  .page-cta-strip__inner { flex-direction: column; align-items: flex-start; }
  .page-cta-strip__btns { width: 100%; flex-direction: column; }
  .page-cta-strip__btns .btn { width: 100%; justify-content: center; }
}

/* ── Extra Small: ≤ 400px ─── */
@media (max-width: 400px) {

  /* Why grid — single column on tiny phones */
  .why-grid { grid-template-columns: 1fr; }
  .why-item { padding: 18px 16px 22px; }
  .why-item:last-child { grid-column: auto; max-width: 100%; margin-inline: 0; }

  /* Gallery — single column */
  .gallery-grid { grid-template-columns: 1fr; }

  /* Showcase tabs */
  .showcase-tab { font-size: 11px; padding: 11px 12px; }

  /* Stats */
  .stat-number { font-size: clamp(28px, 9vw, 40px); min-width: 76px; }
  .stat-item { gap: 12px; }

  /* Mobile nav */
  .mobile-nav .mobile-link { font-size: 28px; }
  .mobile-nav-actions .btn { font-size: 15px; padding: 15px 20px; }

  /* Buttons */
  .btn--lg { padding: 15px 22px; font-size: 15px; }
  .hero-badge { font-size: 10px; }
}
