/* =============================================================
   Freeman's Pressure Washing — Louisville, KY
   Shape: local-service lead capture with proof-heavy pages
   Palette: deep navy + bright yellow from Freeman's brand assets
   Display: Bricolage Grotesque · Body: Manrope
   ============================================================= */

:root {
  /* color — pulled from synthesized winning patterns */
  --bg: #ffffff;
  --bg-dark: #0a1f33;
  --bg-darker: #061528;
  --surface: #f5f7fa;
  --surface-dark: #112846;
  --line: rgba(10, 31, 51, 0.10);
  --line-dark: rgba(255, 255, 255, 0.08);

  --ink: #0a1f33;
  --ink-mid: #3d556f;
  --ink-soft: #6e8299;
  --on-dark: #ffffff;
  --on-dark-muted: #b8c5d4;
  --on-dark-soft: #7e90a8;

  --accent: #ffd000;          /* bright yellow CTA */
  --accent-deep: #e6bb00;
  --accent-soft: rgba(255, 208, 0, 0.15);
  --success: #2eb85c;         /* for stars / 5.0 */

  /* type */
  --display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --body: "Manrope", system-ui, -apple-system, sans-serif;

  /* layout */
  --gutter: clamp(20px, 5vw, 56px);
  --max: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
html { overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--accent);
  color: var(--bg-dark);
  padding: 10px 14px;
  border-radius: 4px;
  font-family: var(--display);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.breadcrumbs {
  background: var(--bg-dark);
  color: var(--on-dark-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.breadcrumbs-inner {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.breadcrumbs a {
  color: var(--accent);
  transition: color 0.2s;
}
.breadcrumbs a:hover { color: #ffe366; }
.breadcrumbs span[aria-current="page"] { color: var(--on-dark); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =====  TOP UTILITY BAR  ===== */
.topbar {
  background: var(--bg-darker);
  color: var(--on-dark);
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--accent);
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px var(--gutter);
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .topbar { font-size: 11px; }
  .topbar-inner { gap: 10px; padding: 8px var(--gutter); justify-content: space-between; }
  .topbar-text { font-size: 11px; gap: 6px; flex: 1 1 100%; justify-content: flex-start; }
  .topbar-text .topbar-divider { display: none; }
  .topbar-text > span:nth-child(5) { display: none; } /* hide MON-SAT */
  .topbar-text > span:nth-child(3):not(.topbar-divider) {
    flex-basis: 100%;
    padding-top: 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 2px;
  }
  .topbar-phone { font-size: 13px; margin: 0; }
}
.topbar-text {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--display);
  letter-spacing: 0.01em;
}
.topbar-stars { color: var(--accent); letter-spacing: 0.12em; }
.topbar-divider { color: rgba(255, 255, 255, 0.25); }
.topbar-phone {
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  color: var(--accent);
  margin-left: auto;
  white-space: nowrap;
}
.topbar-phone::before { content: "▶ "; font-size: 10px; }
@media (max-width: 720px) {
  .topbar-text { font-size: 11px; gap: 10px; }
  .topbar-phone { font-size: 14px; }
}

/* =====  NAV  ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gutter);
  gap: 16px;
}
@media (max-width: 720px) {
  .nav-inner { padding: 10px var(--gutter); }
  .brand-logo { height: 40px; padding: 3px 6px; }
  .nav-cta { padding: 10px 14px; font-size: 12px; }
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.015em;
  white-space: nowrap;
  color: var(--ink);
}
.brand-logo {
  height: 48px;
  width: auto;
  display: block;
  border-radius: 4px;
  background: #fff;
  padding: 4px 8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a:not(.nav-cta) { color: var(--ink-mid); transition: color 0.2s; }
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-cta {
  background: var(--accent);
  color: var(--bg-dark);
  padding: 12px 22px;
  border-radius: 4px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px -4px rgba(255, 208, 0, 0.6);
}
.nav-cta:hover { background: #ffe366; transform: translateY(-1px); }

@media (max-width: 900px) {
  .nav-inner {
    align-items: center;
    flex-wrap: wrap;
  }
  .nav-links {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    order: 3;
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding: 2px 0 4px;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links .nav-cta {
    position: absolute;
    top: 10px;
    right: var(--gutter);
  }
}

/* =====  HERO  ===== */
.hero {
  background: var(--bg-dark);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: stretch;
  min-height: 640px;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; min-height: 0; }
  .hero-copy { padding: 36px 0 44px; }
  .hero-copy::before { display: none; }
  .hero { background: var(--bg-dark); }
}
@media (max-width: 720px) {
  .hero h1 { font-size: 40px; line-height: 1.0; margin-bottom: 18px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero h1 .underline::after { bottom: 2px; height: 6px; }
}

.hero-copy {
  padding: clamp(48px, 8vw, 88px) 0 clamp(48px, 8vw, 88px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-copy::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 50vw;
  background:
    linear-gradient(135deg, rgba(10, 31, 51, 0.94), rgba(6, 21, 40, 0.98)),
    url("./img/accent-spray.png");
  background-size: 100%, cover;
  background-position: center;
  z-index: -1;
}
.hero-claim {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 208, 0, 0.3);
  align-self: flex-start;
  margin-bottom: 24px;
  max-width: 100%;
  line-height: 1.3;
}
@media (max-width: 720px) {
  .hero-claim { font-size: 11px; letter-spacing: 0.1em; padding: 6px 12px; }
}
.hero-claim-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 208, 0, 0.2);
}

.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 6.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  color: var(--on-dark);
}
.hero h1 .accent {
  color: var(--accent);
  display: inline-block;
}
.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: var(--accent);
  z-index: -1;
  opacity: 0.85;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--on-dark-muted);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-sub strong { color: var(--on-dark); font-weight: 700; }

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 4px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  min-height: 50px;
}
@media (max-width: 540px) {
  .btn { width: 100%; padding: 16px 18px; font-size: 15px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; }
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
  box-shadow: 0 10px 28px -8px rgba(255, 208, 0, 0.55);
}
.btn-primary:hover { background: #ffe366; box-shadow: 0 14px 36px -8px rgba(255, 208, 0, 0.7); }
.btn-ghost {
  background: transparent;
  color: var(--on-dark);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.5); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 14px 24px;
  font-size: 14px;
}
.btn-outline:hover { background: var(--ink); color: var(--on-dark); }
.btn-icon-phone::before { content: "▶"; font-size: 10px; }

/* Hero photo (right side) */
.hero-photo {
  position: relative;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
  animation: kenBurns 20s ease-in-out infinite alternate;
  transform-origin: center center;
}
@keyframes kenBurns {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo img { animation: none; }
}
.hero-photo::after {
  /* gradient blend into the dark left column */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 30%, transparent 70%, rgba(10, 31, 51, 0.2) 100%);
  pointer-events: none;
}
.hero-photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(10, 31, 51, 0.85);
  color: var(--on-dark);
  border: 1px solid rgba(255, 208, 0, 0.4);
  border-radius: 6px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(6px);
  font-family: var(--display);
  z-index: 2;
}
.hero-photo-badge-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-photo-badge-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  line-height: 1.3;
}
.hero-photo-badge-label strong { color: var(--on-dark); display: block; font-size: 13px; }

@media (max-width: 960px) {
  .hero-photo { aspect-ratio: 5/4; }
  .hero-photo img { min-height: 0; }
  .hero-copy { padding: 40px 0 48px; }
  .hero-copy::before { display: none; }
}

/* =====  ACCENT STRIPES BAND (between hero and trust strip)  ===== */
.accent-band {
  height: 16px;
  background-image: url("./img/accent-stripes.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =====  TRUST STRIP  ===== */
.trust-strip {
  background: var(--accent);
  color: var(--bg-dark);
  padding: 18px 0;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 14px 28px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .trust-strip-inner { font-size: 11px; gap: 10px 18px; justify-content: center; }
  .trust-strip { padding: 14px 0; }
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.trust-item-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  color: var(--accent);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

/* =====  SECTION HEAD  ===== */
.section { padding: clamp(64px, 10vh, 110px) 0; }
.section-light { background: var(--bg); color: var(--ink); }
.section-dark { background: var(--bg-dark); color: var(--on-dark); }
.section-gray { background: var(--surface); color: var(--ink); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head .kicker {
  display: inline-block;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  padding-bottom: 14px;
}
.section-dark .section-head .kicker { color: var(--accent); }
.section-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  word-wrap: break-word;
}
@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
}
.section-head h2 .accent { color: var(--accent-deep); }
.section-dark .section-head h2 .accent { color: var(--accent); }
.section-sub {
  font-size: 17px;
  color: var(--ink-mid);
  max-width: 620px;
  line-height: 1.55;
}
.section-dark .section-sub { color: var(--on-dark-muted); }

/* =====  SERVICES  ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.service {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.section-gray .service { background: var(--bg); }
.service:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px -16px rgba(10, 31, 51, 0.22);
}
.service-photo .service-photo-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface);
}
.service-photo .service-photo-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-photo:hover .service-photo-wrap img {
  transform: scale(1.06);
}
.service-photo .service-photo-wrap img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-photo .service-photo-wrap .service-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  margin: 0;
  z-index: 2;
}
.service-photo .service-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 31, 51, 0.5) 100%);
}
.service-photo .service-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.service h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.service p {
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
}
.service-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: var(--accent);
  padding: 5px 11px;
  border-radius: 999px;
  margin-top: 6px;
}

/* =====  WHY FREEMAN'S  ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.why {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.why-stat {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 0.95;
}
@media (max-width: 720px) {
  .why-grid { gap: 24px; }
}
.why-stat sup {
  font-size: 0.4em;
  vertical-align: super;
}
.why h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--on-dark);
}
.why p {
  font-size: 15px;
  color: var(--on-dark-muted);
  line-height: 1.55;
}

/* =====  BEFORE / AFTER  ===== */
.ba-composite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  align-items: start;
}
.ba-composite-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ba-frame {
  position: relative;
  display: block;
  aspect-ratio: 2 / 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(10, 31, 51, 0.12);
  box-shadow: 0 20px 48px -28px rgba(10, 31, 51, 0.38);
  background: var(--bg-dark);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}
.ba-frame-portrait {
  aspect-ratio: 4 / 5;
}
.ba-frame:hover {
  border-color: rgba(10, 31, 51, 0.22);
  box-shadow: 0 24px 58px -30px rgba(10, 31, 51, 0.45);
}
.ba-frame:focus-within {
  outline: 0;
  box-shadow:
    0 24px 58px -30px rgba(10, 31, 51, 0.45),
    0 0 0 3px rgba(255, 208, 0, 0.24);
}
.ba-before-img,
.ba-after-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--bg);
}
.ba-after-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--pos));
  pointer-events: none;
}
.ba-label {
  position: absolute;
  top: 12px;
  z-index: 2;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 6px 10px;
  border-radius: 3px;
  pointer-events: none;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}
.ba-label-before {
  left: 12px;
  background: rgba(10, 31, 51, 0.82);
  color: #fff;
}
.ba-label-after {
  right: 12px;
  background: rgba(255, 208, 0, 0.94);
  color: var(--ink);
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  z-index: 3;
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(10, 31, 51, 0.22);
  pointer-events: none;
}
.ba-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--accent);
}
.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}
.ba-slider {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.ba-composite-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 6px;
}
.ba-composite-card figcaption strong {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.ba-composite-card figcaption span {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid);
}

@media (max-width: 720px) {
  .ba-composite-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* =====  REVIEWS  ===== */
.rating-card {
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 48px 44px;
  box-shadow: 0 24px 60px -30px rgba(10, 31, 51, 0.18);
}
@media (max-width: 720px) {
  .rating-card { grid-template-columns: 1fr; gap: 28px; padding: 36px 24px; text-align: center; }
  .rating-divider { display: none; }
}
.rating-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.rating-score {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(72px, 12vw, 110px);
  line-height: 0.85;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.rating-stars-row {
  color: var(--accent);
  letter-spacing: 0.16em;
  font-size: 22px;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.05));
}
.rating-count {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  max-width: 200px;
  line-height: 1.4;
}
.rating-divider { background: var(--line); align-self: stretch; }
.rating-message h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--ink);
}
.rating-message p {
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.reviews-cta, .reviews-todo { display: none; }

/* =====  AREA  ===== */
.area-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) {
  .area-inner { grid-template-columns: 1fr; gap: 36px; }
}
.area-copy .kicker {
  display: inline-block;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  padding-bottom: 14px;
}
.area-copy h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--ink);
}
.area-copy h2 .accent { color: var(--accent-deep); }
.area-copy p {
  color: var(--ink-mid);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 26px;
}
.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 6px 28px;
  margin-bottom: 28px;
  font-size: 14px;
}
.area-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-mid);
}
.area-list li::before {
  content: "✓";
  color: var(--accent-deep);
  margin-right: 10px;
  font-weight: 800;
}
.area-note { font-size: 14px; color: var(--ink-soft); }
.area-note a { color: var(--accent-deep); font-weight: 700; border-bottom: 2px solid var(--accent); }
.area-map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px -20px rgba(10, 31, 51, 0.25);
}
.area-map svg { width: 100%; height: auto; display: block; }

/* =====  PROCESS  ===== */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.step {
  position: relative;
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.step:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 16px 40px -16px rgba(10, 31, 51, 0.15); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--bg-dark);
  color: var(--accent);
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 18px;
}
.step h3 {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--ink);
}
.step p {
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.55;
}

/* =====  CONTACT  ===== */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
}
.contact-copy .kicker {
  display: inline-block;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 14px;
}
.contact-copy h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--on-dark);
}
.contact-copy p {
  color: var(--on-dark-muted);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 32px;
}
.contact-direct { border-top: 1px solid var(--line-dark); padding-top: 24px; }
.contact-phone { display: inline-flex; flex-direction: column; gap: 4px; }
.contact-phone-label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  font-weight: 700;
}
.contact-phone-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 6vw, 42px);
  letter-spacing: -0.02em;
  color: var(--accent);
}
.contact-phone:hover .contact-phone-num { color: #ffe366; }

/* =====  FOOTER  ===== */
.footer {
  background: var(--bg-darker);
  color: var(--on-dark-soft);
  padding: 48px 0 32px;
  font-size: 13px;
  border-top: 2px solid var(--accent);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand { display: flex; gap: 18px; align-items: center; }
.footer-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  color: var(--on-dark);
  font-weight: 800;
}
.footer-logo {
  height: 60px;
  width: auto;
  background: #fff;
  padding: 6px 12px;
  border-radius: 4px;
}
.footer-tag-sub {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--on-dark-soft);
  margin-top: 4px;
}
.footer-tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--on-dark-soft);
  margin-top: 4px;
}
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.footer-contact a:first-child { font-size: 22px; font-weight: 800; }
.footer-contact a:hover { color: #ffe366; }
.footer-contact span { font-size: 11px; letter-spacing: 0.06em; color: var(--on-dark-soft); }
.review-meta {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.review-meta strong { color: var(--ink); }
.footer-meta { display: flex; flex-direction: column; gap: 6px; font-size: 11px; letter-spacing: 0.04em; }
.footer-credit a { color: var(--accent); }

/* =====  STICKY MOBILE CALL BAR  ===== */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  color: var(--bg-dark);
  text-align: center;
  padding: 16px 14px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  z-index: 60;
  box-shadow: 0 -8px 20px -10px rgba(0, 0, 0, 0.3);
  min-height: 56px;
}
.sticky-call-icon { display: inline-block; margin-right: 8px; font-size: 12px; }
@media (max-width: 720px) {
  .sticky-call { display: block; }
  body { padding-bottom: 64px; }
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.service[data-reveal] { transition-delay: calc(var(--i, 0) * 50ms); }
.why[data-reveal] { transition-delay: calc(var(--i, 0) * 70ms); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

.hero-scroll { display: none; }

/* =====  NAV ACTIVE STATE  ===== */
.nav-links a.active:not(.nav-cta) {
  color: var(--ink);
  position: relative;
}
.nav-links a.active:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 3px;
  background: var(--accent);
}

/* =====  PAGE HERO (sub-pages)  ===== */
.page-hero {
  background:
    linear-gradient(135deg, rgba(10, 31, 51, 0.94), rgba(6, 21, 40, 0.98)),
    url("../img/accent-spray.png");
  background-size: cover;
  background-position: center;
  color: var(--on-dark);
  padding: clamp(56px, 9vh, 100px) 0 clamp(56px, 9vh, 100px);
  position: relative;
}
.page-hero .container { max-width: 1000px; }
.page-hero .hero-claim { margin-bottom: 22px; }
.page-hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 5.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--on-dark);
  margin-bottom: 22px;
  word-wrap: break-word;
}
@media (max-width: 720px) {
  .page-hero { padding: 36px 0; }
}
.page-hero h1 .accent { color: var(--accent); }
.page-hero-sub {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--on-dark-muted);
  margin-bottom: 32px;
  max-width: 660px;
}
.page-hero .hero-cta { margin-bottom: 0; }

/* =====  SECTION FOOT (cta after grid)  ===== */
.section-foot {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* =====  CTA STRIP  ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--bg-darker), var(--surface-dark));
  border: 1px solid rgba(255, 208, 0, 0.18);
  border-radius: 10px;
  padding: 40px clamp(28px, 4vw, 56px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-strip h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 36px);
  letter-spacing: -0.02em;
  color: var(--on-dark);
  margin-bottom: 6px;
}
@media (max-width: 540px) {
  .cta-strip { padding: 28px 22px; }
  .cta-strip-actions { width: 100%; flex-direction: column; }
  .cta-strip-actions .btn { width: 100%; }
}
.cta-strip p { color: var(--on-dark-muted); font-size: 16px; line-height: 1.5; }
.cta-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-strip-centered {
  flex-direction: column;
  text-align: center;
  align-items: center;
}

/* =====  AREA — multi-column lists + real-map sizing  ===== */
.area-map-real {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(10, 31, 51, 0.25);
  position: relative;
}
.area-map-real iframe { display: block; }
.map-credit {
  display: block;
  padding: 14px 20px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-deep);
  letter-spacing: 0.02em;
  text-align: center;
}
.map-credit:hover { background: var(--accent-soft); }
.area-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
}
.area-col-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px;
  display: inline-block;
}

/* =====  ABOUT  ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }
.about-copy h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 20px;
}
.about-copy h2 .accent { color: var(--accent-deep); }
.about-copy p {
  color: var(--ink-mid);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.about-copy p:first-of-type { font-size: 18px; }
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--bg-dark);
  padding: 36px 32px;
  border-radius: 10px;
}
@media (max-width: 720px) {
  .about-stats { padding: 28px 22px; }
  .about-stat .why-stat { font-size: 44px; }
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
}
.about-stat:last-child { border-bottom: none; padding-bottom: 0; }
.about-stat .why-stat { font-size: 56px; color: var(--accent); line-height: 0.95; }
.about-stat-label {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

/* =====  REVIEWS PAGE  ===== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
@media (max-width: 720px) {
  .review-grid { grid-template-columns: 1fr; }
  .review-card { padding: 22px 20px; }
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -16px rgba(10, 31, 51, 0.15);
}
.review-stars {
  color: var(--accent);
  letter-spacing: 0.14em;
  font-size: 16px;
}
.review-card p {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-mid);
}
/* =====  CONTACT PAGE  ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; gap: 16px; }
}
.contact-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -16px rgba(10, 31, 51, 0.15);
}
.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--bg-dark);
  color: var(--accent);
  border-radius: 8px;
  font-size: 22px;
  margin-bottom: 8px;
}
.contact-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.contact-card p {
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
}
.contact-card .contact-phone-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--accent-deep);
  margin-top: 4px;
  display: inline-block;
}
.contact-card .contact-phone-num:hover { color: var(--accent); }
.contact-card-hint {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 700;
  margin-top: 4px;
}
.contact-hours {
  list-style: none;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.contact-hours li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-mid);
  font-weight: 500;
}
.contact-hours li span:first-child {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
}

/* =====  EXPERT POLISH PASS  ===== */
.nav-phone {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.05;
  white-space: nowrap;
}
.nav-phone span {
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav {
  background: rgba(6, 21, 40, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-links a:not(.nav-cta) { color: var(--on-dark-muted); }
.nav-links a:not(.nav-cta):hover,
.nav-links a.active:not(.nav-cta) { color: var(--on-dark); }
.nav-phone { color: var(--on-dark); }
.nav-phone span { color: var(--on-dark-soft); }
.brand-logo {
  box-shadow: 0 10px 28px -18px rgba(0, 0, 0, 0.6);
}

.hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 208, 0, 0.10), transparent 28%),
    linear-gradient(135deg, #061528 0%, #0a1f33 54%, #102c4c 100%);
}
.hero > .hero-inner {
  max-width: none;
  padding: 0;
  grid-template-columns: minmax(620px, 56vw) minmax(0, 1fr);
  min-height: clamp(600px, calc(100svh - 132px), 700px);
  gap: 0;
}
.hero-copy {
  padding:
    clamp(46px, 5vw, 72px)
    clamp(34px, 4vw, 64px)
    clamp(44px, 5vw, 66px)
    max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  max-width: none;
}
.hero-copy::before { display: none; }
.hero h1 {
  max-width: 660px;
  font-size: clamp(42px, 5vw, 68px);
}
.hero-sub { max-width: 650px; }
.hero-photo {
  min-height: inherit;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-photo img {
  position: absolute;
  inset: 0;
  min-height: inherit;
  max-width: none;
  object-position: 58% 47%;
}
.hero-photo::after {
  background:
    linear-gradient(90deg, var(--bg-dark) 0%, rgba(10, 31, 51, 0.86) 8%, rgba(10, 31, 51, 0.24) 40%, rgba(10, 31, 51, 0.04) 100%),
    linear-gradient(0deg, rgba(6, 21, 40, 0.66), transparent 45%);
}
.hero-photo-badge {
  left: auto;
  right: 28px;
  bottom: 28px;
}
.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  border-top: 1px solid var(--line-dark);
  padding-top: 26px;
  max-width: 760px;
}
.hero-proof {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 6px 10px;
  align-items: start;
}
.hero-proof-icon {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--display);
  font-weight: 900;
  font-size: 14px;
}
.hero-proof strong {
  color: var(--on-dark);
  font-family: var(--display);
  font-size: 13px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-proof span:last-child {
  color: var(--on-dark-muted);
  font-size: 12px;
  line-height: 1.4;
}

.accent-band { display: none; }
.trust-strip {
  background: var(--bg-darker);
  color: var(--on-dark);
  padding: 10px 0;
  border-top: 1px solid rgba(255, 208, 0, 0.36);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-strip-inner {
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px clamp(16px, 2vw, 32px);
  color: var(--on-dark);
  font-size: 11px;
  line-height: 1.2;
}
.trust-item {
  color: var(--on-dark);
  gap: 7px;
}
.trust-item-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 12px;
  font-weight: 900;
  flex: 0 0 auto;
}

.service-best {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.home-workbench {
  padding-top: clamp(54px, 8vh, 86px);
  padding-bottom: clamp(64px, 10vh, 110px);
}
.workbench-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 62px);
  align-items: start;
}
.workbench-services {
  position: sticky;
  top: 112px;
  align-self: start;
  padding-right: clamp(0px, 2vw, 28px);
  border-right: 1px solid var(--line);
}
.workbench-services h2,
.workbench-proof-head h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.workbench-services h2 .accent,
.workbench-proof-head h2 .accent { color: var(--accent-deep); }
.workbench-intro {
  color: var(--ink-mid);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.workbench-service-list {
  list-style: none;
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}
.workbench-service-list li {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}
.workbench-service-list li span {
  display: block;
  color: var(--accent-deep);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.workbench-service-list strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.workbench-service-list p {
  color: var(--ink-mid);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 4px;
}
.workbench-proof-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.workbench-proof-head a {
  color: var(--ink);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  border-bottom: 2px solid var(--accent);
}
.ba-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.ba-feature-grid .ba-composite-card:first-child { grid-column: 1 / -1; }
.ba-feature-grid .ba-composite-card:first-child .ba-frame { aspect-ratio: 2.2 / 1; }
.ba-feature-grid .ba-composite-card:not(:first-child) .ba-frame { aspect-ratio: 1.55 / 1; }
.ba-feature-grid .ba-composite-card:not(:first-child) .ba-frame-portrait { aspect-ratio: 4 / 5; }

.quote-dock {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1fr) auto;
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 208, 0, 0.10), transparent 38%),
    linear-gradient(135deg, var(--bg-darker), var(--surface-dark));
  border: 1px solid rgba(255, 208, 0, 0.24);
  border-radius: 10px;
  padding: clamp(28px, 4vw, 48px);
}
.quote-dock-copy span {
  color: var(--accent);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.quote-dock-copy h2 {
  color: var(--on-dark);
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 10px 0 12px;
}
.quote-dock-copy p {
  color: var(--on-dark-muted);
  font-size: 15px;
  line-height: 1.58;
}
.quote-dock-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.quote-dock-steps li {
  min-height: 98px;
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}
.quote-dock-steps strong {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: var(--display);
  font-weight: 900;
  margin-bottom: 12px;
}
.quote-dock-steps span {
  display: block;
  color: var(--on-dark);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}
.quote-dock-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 210px;
}

@media (max-width: 1120px) {
  .hero > .hero-inner { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy {
    padding:
      clamp(40px, 8vw, 64px)
      var(--gutter)
      clamp(42px, 8vw, 64px);
    max-width: none;
  }
  .hero-photo { width: 100%; min-height: 420px; aspect-ratio: auto; border-left: 0; }
  .hero-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    flex-wrap: wrap;
  }
  .quote-dock { grid-template-columns: 1fr; }
  .quote-dock-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 900px) {
  .nav-phone { display: none; }
  .workbench-layout { grid-template-columns: 1fr; }
  .workbench-services {
    position: static;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 32px;
  }
  .ba-feature-grid { grid-template-columns: 1fr; }
  .ba-feature-grid .ba-composite-card:first-child { grid-column: auto; }
  .ba-feature-grid .ba-composite-card:not(:first-child) .ba-frame { aspect-ratio: 2 / 1; }
}
@media (max-width: 720px) {
  .hero h1 { font-size: 44px; }
  .hero-proof-grid { grid-template-columns: 1fr; }
  .hero-photo { min-height: 340px; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .workbench-proof-head { align-items: start; flex-direction: column; }
  .quote-dock-steps { grid-template-columns: 1fr; }
  .quote-dock-actions { flex-direction: column; }
}
