/* ==========================================================================
   Lakeway Plumbing Company — style.css
   Premium, fully static single-page design. No frameworks, no build step.
   Palette: deep teal (brand) + copper/bronze (accent) — from the company logo.
   ========================================================================== */

:root {
  --teal-950: #012525;
  --teal-900: #013333;
  --teal-800: #014141;   /* logo background */
  --teal-700: #035454;
  --teal-600: #046a6a;
  --copper-700: #8a4a1d;
  --copper-600: #a95e24;
  --copper-500: #c8732f;   /* primary accent */
  --copper-400: #dd8f4e;
  --copper-300: #ecb083;
  --gold: #f0b429;
  --ink: #0d2120;
  --text: #41595a;
  --text-light: #6b8081;
  --bg: #f7f5f0;          /* warm paper */
  --bg-alt: #efe9de;
  --line: #e4ddcf;
  --white: #ffffff;
  --grad-copper: linear-gradient(135deg, #b05e22 0%, #d97f35 55%, #e89a55 100%);
  --grad-teal: linear-gradient(135deg, #013f3f 0%, #045757 100%);
  --shadow-sm: 0 2px 8px rgba(13, 33, 32, 0.06);
  --shadow-md: 0 14px 34px rgba(13, 33, 32, 0.10);
  --shadow-lg: 0 28px 64px rgba(13, 33, 32, 0.16);
  --radius: 16px;
  --radius-lg: 24px;
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --header-h: 80px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 92px); }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1180px, 92%); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--teal-800); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--copper-600);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--copper-500); }
.eyebrow-light { color: var(--copper-300); }

.section { padding: 96px 0; position: relative; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head h2 {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.16; color: var(--ink); margin: 14px 0 14px; letter-spacing: -0.01em;
}
.section-head h2 em { font-style: italic; color: var(--copper-600); }
.section-head p { font-size: 17px; color: var(--text); }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::after { content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--copper-500); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 15.5px;
  padding: 15px 26px; border-radius: 12px; border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 17px 30px; font-size: 16.5px; border-radius: 14px; }
.btn-sm { padding: 12px 20px; font-size: 14.5px; }

.btn-cta { background: var(--grad-copper); color: #fff; box-shadow: 0 10px 24px rgba(200, 115, 47, 0.38); }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(200, 115, 47, 0.45); }

.btn-primary { background: var(--teal-800); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--teal-700); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.38); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); border-color: rgba(255,255,255,0.6); }

.btn-outline { background: transparent; color: var(--teal-800); border-color: var(--teal-800); }
.btn-outline:hover { background: var(--teal-800); color: #fff; transform: translateY(-2px); }

.btn-light { background: #fff; color: var(--teal-800); box-shadow: 0 10px 26px rgba(0,0,0,0.18); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0,0,0,0.26); }

.btn-block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar { background: var(--teal-950); color: rgba(255,255,255,0.82); font-size: 13.5px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 9px 0; flex-wrap: wrap; }
.topbar-left { display: inline-flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.topbar-status strong { color: #fff; }
.topbar-license strong { color: #fff; }
.topbar-right { display: inline-flex; align-items: center; gap: 7px; }
.topbar-stars { display: inline-flex; gap: 1px; }
.topbar-stars svg { width: 14px; height: 14px; fill: var(--gold); }
.topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.25); margin: 0 4px; }
.topbar-social { display: inline-flex; align-items: center; gap: 6px; transition: color 0.18s ease; }
.topbar-social svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.85); }
.topbar-social:hover { color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(1, 65, 65, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled { background: rgba(1, 53, 53, 0.98); box-shadow: 0 10px 30px rgba(1, 30, 30, 0.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: var(--header-h); }

.brand { display: flex; align-items: center; line-height: 0; }
.brand-logo { height: 58px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.nav-list { display: flex; align-items: center; gap: 28px; }
.nav-list a {
  font-family: var(--font-body); font-weight: 500; font-size: 15px; color: rgba(255,255,255,0.9);
  padding: 6px 2px; position: relative; transition: color 0.18s ease;
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--copper-400); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-list a:hover, .nav-list a.active { color: #fff; }
.nav-list a:hover::after, .nav-list a.active::after { transform: scaleX(1); }

.nav-cta { padding: 12px 20px; font-size: 15px; }

.menu-toggle { display: none; background: none; border: 0; color: #fff; width: 42px; height: 42px; border-radius: 10px; align-items: center; justify-content: center; }
.menu-toggle svg { width: 26px; height: 26px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(94vh, 940px); display: flex; align-items: center; color: #fff; padding: 120px 0 170px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.03); }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(97deg, rgba(1, 42, 42, 0.97) 0%, rgba(1, 53, 53, 0.9) 44%, rgba(1, 65, 65, 0.42) 80%, rgba(1, 65, 65, 0.24) 100%);
}
.hero-overlay::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(1, 38, 38, 0.85) 0%, transparent 30%); }

.hero-inner { display: grid; grid-template-columns: 1.14fr 0.86fr; gap: 56px; align-items: center; }
.hero-content { min-width: 0; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.22);
  padding: 9px 16px; border-radius: 100px; font-weight: 600; font-size: 13px;
  letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px); margin-bottom: 26px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--copper-400); box-shadow: 0 0 0 4px rgba(221, 143, 78, 0.28); }

.hero-title {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(42px, 5.6vw, 66px);
  line-height: 1.05; letter-spacing: -0.015em; margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--copper-300); }

.hero-sub { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 580px; margin-bottom: 36px; }
.hero-sub strong { color: #ffd9b0; font-weight: 600; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 14px 32px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; color: rgba(255,255,255,0.9); }
.hero-trust svg { width: 19px; height: 19px; color: var(--copper-300); flex: none; }
.hero-trust li:nth-child(2) svg { color: #7fe3c0; }
.hero-trust li:nth-child(3) svg { color: #8fd0e8; }

.hero-visual { position: relative; min-width: 0; }

.hero-rating-card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.97); color: var(--ink);
  border-radius: 22px; padding: 30px 30px 26px; border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 40px 90px rgba(2, 24, 24, 0.5);
  animation: floaty 6s ease-in-out infinite;
}
.hero-rating-top { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.hero-rating-num { font-family: var(--font-head); font-weight: 700; font-size: 56px; line-height: 1; color: var(--teal-800); }
.hero-rating-stars { display: inline-flex; gap: 3px; flex-wrap: wrap; }
.hero-rating-stars svg { width: 24px; height: 24px; fill: var(--gold); }
.hero-rating-text { font-size: 15px; color: var(--text); margin-bottom: 18px; }
.hero-rating-text strong { color: var(--ink); }
.hero-rating-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.hero-rating-tags span {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--bg-alt); border: 1px solid var(--line); color: var(--text);
  padding: 6px 12px; border-radius: 100px;
}
.hero-rating-tags span:first-child { background: rgba(200, 115, 47, 0.12); border-color: rgba(200, 115, 47, 0.3); color: var(--copper-700); }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-scroll {
  position: absolute; bottom: 96px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.75); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  z-index: 3; transition: color 0.2s ease;
}
.hero-scroll svg { width: 22px; height: 22px; animation: bounce 2s infinite; }
.hero-scroll:hover { color: #fff; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2; line-height: 0; }
.hero-wave svg { width: 100%; height: 86px; display: block; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--bg); padding: 8px 0 72px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: -64px; position: relative; z-index: 5; }
.trust-item {
  display: flex; align-items: flex-start; gap: 15px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow-md); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trust-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.trust-icon {
  width: 46px; height: 46px; border-radius: 13px; flex: none; display: grid; place-items: center;
  background: rgba(200, 115, 47, 0.12); color: var(--copper-600);
}
.trust-icon svg { width: 24px; height: 24px; }
.trust-item:nth-child(2) .trust-icon { background: rgba(240, 180, 41, 0.14); color: #b8860b; }
.trust-item:nth-child(3) .trust-icon { background: rgba(1, 65, 65, 0.1); color: var(--teal-700); }
.trust-item:nth-child(4) .trust-icon { background: rgba(52, 211, 153, 0.13); color: #0d8a5c; }
.trust-item strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--ink); margin-bottom: 2px; }
.trust-item span { font-size: 13.5px; color: var(--text-light); }

/* ---------- Services ---------- */
.services { background: var(--bg); padding: 88px 0 96px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-copper); transform: scaleX(0); transform-origin: left; transition: transform 0.28s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 60px; height: 60px; border-radius: 17px; display: grid; place-items: center;
  background: rgba(200, 115, 47, 0.1); color: var(--copper-600); margin-bottom: 22px;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.service-card:hover .card-icon { background: var(--grad-copper); color: #fff; transform: scale(1.05); }
.card-icon svg { width: 30px; height: 30px; }

.service-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 22px; color: var(--ink); margin-bottom: 10px; }
.service-card > p { font-size: 15px; margin-bottom: 18px; }
.card-list { display: grid; gap: 9px; margin-bottom: 24px; }
.card-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 14.5px; color: var(--text); }
.card-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--copper-500); flex: none; margin-top: 9px; }

.card-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; color: var(--teal-700);
  transition: gap 0.2s ease, color 0.2s ease;
}
.card-link svg { width: 17px; height: 17px; transition: transform 0.2s ease; }
.card-link:hover { color: var(--copper-600); }
.card-link:hover svg { transform: translateX(4px); }

/* Full services list */
.full-services {
  margin-top: 44px; background: var(--grad-teal); color: #fff;
  border-radius: var(--radius-lg); padding: 46px 48px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.full-services::before {
  content: ""; position: absolute; top: -90px; right: -70px; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 143, 78, 0.28) 0%, transparent 68%);
}
.full-services::after {
  content: ""; position: absolute; bottom: -120px; left: -60px; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
}
.full-services-head { position: relative; margin-bottom: 28px; }
.full-services-head h3 { font-family: var(--font-head); font-weight: 600; font-size: 27px; margin-bottom: 6px; }
.full-services-head p { color: rgba(255,255,255,0.8); font-size: 15.5px; }
.full-services-list {
  position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 36px;
}
.full-services-list li {
  display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.94);
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.09);
}
.full-services-list li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--copper-400); flex: none;
}

.services-cta {
  margin-top: 44px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 40px;
  box-shadow: var(--shadow-md);
}
.services-cta-title { font-family: var(--font-head); font-weight: 600; font-size: 22px; color: var(--ink); }
.services-cta-title em { font-style: italic; color: var(--copper-600); }
.services-cta-sub { font-size: 15px; color: var(--text); margin-top: 4px; }

/* ---------- About ---------- */
.about { background: var(--white); padding: 100px 0; }
.about-inner { display: grid; grid-template-columns: 0.94fr 1.06fr; gap: 68px; align-items: center; }
.about-visual { position: relative; min-width: 0; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.about-photo img { width: 100%; height: 540px; object-fit: cover; transition: transform 0.6s ease; }
.about-photo:hover img { transform: scale(1.04); }
.about-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(1,65,65,0.12) 0%, rgba(1,65,65,0.4) 100%);
}
.since-badge {
  position: absolute; bottom: 22px; left: 22px; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  background: rgba(1, 51, 51, 0.93); color: #fff; border-radius: 16px; padding: 16px 24px;
  box-shadow: var(--shadow-lg); backdrop-filter: blur(6px);
}
.since-num { font-family: var(--font-head); font-weight: 700; font-size: 30px; color: var(--copper-300); line-height: 1.05; }
.since-badge span:last-child { font-size: 13.5px; color: rgba(255,255,255,0.88); line-height: 1.4; }

.about-content h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.18; color: var(--ink); margin: 14px 0 18px; }
.about-content .lead { font-size: 18.5px; color: var(--ink); margin-bottom: 14px; font-weight: 500; }
.about-content > p { margin-bottom: 14px; }
.about-content strong { color: var(--teal-700); }

.about-list { margin: 26px 0 30px; display: grid; gap: 18px; }
.about-list li { display: flex; gap: 15px; }
.check { width: 42px; height: 42px; border-radius: 12px; background: rgba(200, 115, 47, 0.12); color: var(--copper-600); display: grid; place-items: center; flex: none; }
.check svg { width: 20px; height: 20px; }
.about-list strong { font-weight: 600; font-size: 15.5px; color: var(--ink); display: block; margin-bottom: 2px; }
.about-list p { font-size: 14.5px; color: var(--text-light); }
.about-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Service areas ---------- */
.areas { background: var(--bg-alt); padding: 96px 0; }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.area-chip {
  display: flex; align-items: center; gap: 11px;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 18px; font-weight: 600; font-size: 15.5px; color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.area-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(200,115,47,0.4); }
.area-chip svg { width: 20px; height: 20px; color: var(--copper-500); flex: none; }
.areas-note { text-align: center; margin-top: 30px; font-size: 15.5px; color: var(--text); }
.areas-note a { color: var(--teal-700); font-weight: 600; }
.areas-note a:hover { text-decoration: underline; }

/* ---------- Gallery ---------- */
.gallery { background: var(--bg); padding: 96px 0 110px; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; gap: 14px;
  max-width: 1240px; margin-inline: auto; padding: 0 20px;
}
.gallery-item { border-radius: 14px; overflow: hidden; cursor: zoom-in; position: relative; background: var(--line); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(1, 40, 40, 0.45) 0%, transparent 45%);
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }

/* ---------- Reviews ---------- */
.reviews { background: var(--white); padding: 96px 0; }
.rating-badge {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 22px;
  background: var(--bg-alt); border: 1px solid var(--line); padding: 10px 22px; border-radius: 100px;
  font-size: 15px; color: var(--text);
}
.rating-badge strong { color: var(--ink); }
.rating-stars { display: inline-flex; gap: 2px; }
.rating-stars svg { width: 20px; height: 20px; fill: var(--gold); }

.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.review-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 30px 26px; display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 17px; height: 17px; fill: var(--gold); }
.review-card blockquote { font-size: 15.5px; color: var(--ink); line-height: 1.75; flex: 1; font-family: var(--font-head); font-weight: 500; }
.review-card figcaption { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 700; font-size: 17px; color: #fff; background: var(--av, var(--teal-700)); flex: none;
}
.review-card figcaption strong { display: block; font-size: 14px; color: var(--ink); line-height: 1.2; }
.review-card figcaption span span { font-size: 12.5px; color: var(--text-light); }
.g-logo { width: 20px; height: 20px; margin-left: auto; flex: none; }

.reviews-note {
  margin-top: 36px; display: flex; align-items: flex-start; justify-content: center; gap: 12px;
  text-align: center; font-size: 16px; color: var(--ink); font-weight: 500; max-width: 780px; margin-inline: auto; line-height: 1.6;
}
.reviews-note svg { width: 22px; height: 22px; color: var(--copper-500); flex: none; margin-top: 3px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-teal); color: #fff; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; top: -140px; right: -100px; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 143, 78, 0.3) 0%, transparent 70%);
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  padding: 64px 0; position: relative;
}
.cta-band h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(26px, 3.2vw, 38px); margin: 12px 0 8px; }
.cta-band p { color: rgba(255,255,255,0.82); font-size: 16.5px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact { background: var(--bg); padding: 96px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 32px; align-items: start; }
.contact-info { display: grid; gap: 16px; }
.contact-card {
  display: flex; gap: 17px; align-items: flex-start; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px;
  box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-icon {
  width: 46px; height: 46px; border-radius: 13px; background: rgba(200, 115, 47, 0.11); color: var(--copper-600);
  display: grid; place-items: center; flex: none;
}
.contact-card:nth-child(2) .contact-icon { background: rgba(1, 65, 65, 0.1); color: var(--teal-700); }
.contact-card:nth-child(3) .contact-icon { background: rgba(240, 180, 41, 0.14); color: #b8860b; }
.contact-card:nth-child(4) .contact-icon { background: rgba(52, 211, 153, 0.13); color: #0d8a5c; }
.contact-card:nth-child(5) .contact-icon { background: rgba(143, 208, 232, 0.2); color: #0b6a86; }
.contact-icon svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 3px; font-weight: 600; }
.contact-card a[href^="tel"], .contact-card a[href^="mailto"] { font-weight: 600; font-size: 17px; color: var(--ink); font-family: var(--font-head); }
.contact-card strong { font-weight: 600; font-size: 17px; color: var(--ink); font-family: var(--font-head); }
.contact-card p { font-size: 14px; color: var(--text); line-height: 1.5; }

.contact-form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 36px; }
.contact-form h3 { font-family: var(--font-head); font-weight: 700; font-size: 26px; color: var(--ink); margin-bottom: 6px; }
.form-note { font-size: 14.5px; color: var(--text-light); margin-bottom: 24px; }
.form-row { margin-bottom: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label { display: block; font-weight: 600; font-size: 13.5px; color: var(--ink); margin-bottom: 7px; }
.form-row .optional { font-weight: 400; color: var(--text-light); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 11px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--bg);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--copper-500); background: #fff; box-shadow: 0 0 0 4px rgba(200, 115, 47, 0.14);
}
.form-row input.error, .form-row textarea.error { border-color: #c0392b; }
.form-status { margin-top: 12px; font-size: 14.5px; font-weight: 600; min-height: 22px; }
.form-status.ok { color: #0d8a5c; }
.form-status.bad { color: #c0392b; }
.form-fallback { margin-top: 14px; font-size: 14px; color: var(--text-light); text-align: center; }
.form-fallback a { color: var(--teal-700); font-weight: 600; }

.map-wrap { margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); line-height: 0; }
.map-wrap iframe { display: block; filter: saturate(0.92); }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-950); color: rgba(255,255,255,0.8); }
.footer-inner { display: grid; grid-template-columns: 1.35fr 0.75fr 0.9fr 1.05fr; gap: 44px; padding: 64px 0 48px; }
.footer-logo { height: 46px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; line-height: 1.7; margin-bottom: 18px; max-width: 330px; }
.footer-rating { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; color: rgba(255,255,255,0.9); }
.footer-rating .rating-stars svg { width: 16px; height: 16px; }
.footer-rating strong { color: #fff; }

.site-footer h3 { font-weight: 600; font-size: 15px; color: #fff; margin-bottom: 18px; letter-spacing: 0.04em; }
.footer-col ul, .footer-contact ul { display: grid; gap: 11px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,0.78); transition: color 0.18s ease; }
.footer-col a:hover { color: #fff; }
.footer-col li { font-size: 14.5px; color: rgba(255,255,255,0.78); }
.footer-contact a { color: rgba(255,255,255,0.9); font-weight: 500; }
.footer-contact a:hover { color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 22px 0; font-size: 13.5px; color: rgba(255,255,255,0.62); }
.footer-badges { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-badges strong { color: rgba(255,255,255,0.9); }
.footer-badges a:hover { color: #fff; }

/* ---------- Mobile call bar ---------- */
.mobile-call {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  align-items: center; justify-content: center; gap: 10px;
  background: var(--grad-copper); color: #fff; font-weight: 700; font-size: 16px;
  padding: 17px 20px; box-shadow: 0 -6px 24px rgba(200, 115, 47, 0.4);
}
.mobile-call svg { width: 20px; height: 20px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center;
  background: rgba(1, 20, 20, 0.94); backdrop-filter: blur(6px); padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 80vh; border-radius: 12px; box-shadow: var(--shadow-lg); object-fit: contain; }
.lightbox-caption { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.85); font-size: 15px; }
.lightbox button {
  position: absolute; z-index: 2; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; transition: background 0.18s ease;
}
.lightbox button:hover { background: rgba(255,255,255,0.24); }
.lightbox button svg { width: 22px; height: 22px; }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 0.9fr; gap: 40px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .full-services-list { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding-top: 90px; }
  .hero-visual { max-width: 460px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
  .trust-strip { padding: 56px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 150px; }
  .main-nav { gap: 14px; }
  .nav-list { gap: 18px; }
}

@media (max-width: 820px) {
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; top: var(--header-h); right: 0; bottom: 0; width: min(340px, 86vw);
    background: var(--teal-900); flex-direction: column; align-items: stretch; gap: 8px;
    padding: 30px 28px; transform: translateX(100%); transition: transform 0.3s ease;
    box-shadow: -20px 0 50px rgba(1, 20, 20, 0.5); border-left: 1px solid rgba(255,255,255,0.1);
  }
  .main-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 6px; }
  .nav-list a { display: block; padding: 13px 10px; border-radius: 10px; font-size: 16px; }
  .nav-list a::after { display: none; }
  .nav-list a:hover { background: rgba(255,255,255,0.08); }
  .nav-cta { justify-content: center; margin-top: 12px; }
  .card-grid { grid-template-columns: 1fr; }
  .full-services-list { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-call { display: flex; }
  .site-footer { padding-bottom: 62px; }
  .hero-wave svg { height: 50px; }
  .topbar-right { display: none; }
  .hero-scroll { display: none; }
  .section { padding: 72px 0; }
  .services-cta { padding: 28px; flex-direction: column; align-items: flex-start; }
  .cta-band-inner { padding: 48px 0; }
}

@media (max-width: 560px) {
  .brand-logo { height: 44px; }
  .header-inner { min-height: 66px; }
  :root { --header-h: 66px; }
  .hero { padding-top: 60px; }
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 16.5px; }
  .hero-actions .btn { width: 100%; }
  .hero-rating-card { padding: 24px 22px; }
  .hero-rating-num { font-size: 46px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; gap: 10px; }
  .gallery-wide { grid-column: span 2; }
  .trust-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .since-badge { padding: 12px 16px; }
  .contact-form-wrap { padding: 24px; }
  .form-row-2 { grid-template-columns: 1fr; gap: 0; }
  .lightbox button { width: 42px; height: 42px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .full-services { padding: 32px 26px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
