/* =====================================================================
   LOCKSMITH SAUSALITO — Coastal Editorial Design 2026-05-29
   Palette: Ocean Deep #0a3d62 + Sea Foam #a8d8c0 + Sailboat White #f0f4f8
   Fonts: Inter (self-hosted woff2) — no Google Fonts CDN
   ===================================================================== */

/* === SELF-HOSTED FONTS ============================================== */
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* === COASTAL TOKENS ================================================= */
:root {
  /* Brand palette */
  --ocean:        #0a3d62;
  --ocean-mid:    #0e5a82;
  --ocean-light:  #1a7fa8;
  --seafoam:      #a8d8c0;
  --seafoam-dark: #6fb89a;
  --sail:         #f0f4f8;
  --sail-dark:    #dde6ef;
  --brass:        #b48c3c;
  --brass-light:  #d4aa58;
  --dock:         #5a4128;
  --tide:         #1e78a0;

  /* Neutrals */
  --white:        #ffffff;
  --dark:         #0c1a26;
  --dark-2:       #0f2236;
  --dark-3:       #142d47;
  --text:         #1a2e3f;
  --text-mid:     #3a5268;
  --text-muted:   #607d8b;
  --text-light:   #e8f2f8;
  --text-dim:     #9ab5c7;
  --border:       #c8dce8;
  --border-dark:  #1e3a52;

  /* CTAs */
  --cta:          #0e5a82;
  --cta-hover:    #0a3d62;
  --cta-text:     #ffffff;
  --cta-secondary:#a8d8c0;

  /* Typography */
  --font-head:    'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Layout */
  --radius:       8px;
  --radius-lg:    14px;
  --radius-xl:    20px;
  --shadow:       0 2px 12px rgba(10,61,98,.10);
  --shadow-md:    0 6px 24px rgba(10,61,98,.14);
  --shadow-lg:    0 16px 48px rgba(10,61,98,.20);
  --ease:         cubic-bezier(.22,.61,.36,1);
  --section-pad:  80px 0;
}

/* === RESET ========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--ocean-mid); text-decoration: none; }
a:hover { color: var(--ocean); }
ul, ol { padding-left: 1.4em; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--dark);
}

/* === LAYOUT ========================================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
section { position: relative; }
.section { padding: var(--section-pad); }
.section--dark  { background: var(--dark-2); }
.section--dark2 { background: var(--dark-3); }
.section--ocean { background: var(--ocean); }
.section--sail  { background: var(--sail); }
.section--white { background: var(--white); }
.section--seafoam { background: #e8f5ef; }

/* Dark section text overrides */
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4,
.section--dark2 h1, .section--dark2 h2, .section--dark2 h3, .section--dark2 h4,
.section--ocean h1, .section--ocean h2, .section--ocean h3, .section--ocean h4 {
  color: var(--white);
}
.section--dark p, .section--dark li, .section--dark span,
.section--dark2 p, .section--dark2 li, .section--dark2 span,
.section--ocean p, .section--ocean li, .section--ocean span {
  color: var(--text-light);
}
.section--dark a:not(.btn):not(.btn-cta),
.section--dark2 a:not(.btn):not(.btn-cta),
.section--ocean a:not(.btn):not(.btn-cta) { color: var(--seafoam); }

/* === DARK-SECTION OVERRIDES (REQUIRED) ============================= */
.site-footer p, .site-footer li, .site-footer a, .site-footer span,
.section--dark p, .section--dark li, .section--dark span,
.cta-band p, .home-hero p, .home-hero span, .page-hero p, .page-hero span {
  color: var(--text-light);
}
.site-footer__brand p { color: var(--text-light); }
.section--dark h1, .section--dark h2, .section--dark h3,
.cta-band h1, .cta-band h2, .cta-band h3,
.home-hero h1, .page-hero h1 { color: var(--white); }

/* === TYPOGRAPHY ===================================================== */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ocean-mid);
  margin-bottom: 12px;
}
.section-label--light { color: var(--seafoam); }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 48px;
}
.section-lead--center { text-align: center; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* === BUTTONS ======================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}
.btn-primary {
  background: var(--cta);
  color: var(--cta-text);
  border-color: var(--cta);
}
.btn-primary:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
  color: var(--white);
}
.btn-seafoam {
  background: var(--seafoam);
  color: var(--ocean);
  border-color: var(--seafoam);
}
.btn-seafoam:hover {
  background: var(--seafoam-dark);
  border-color: var(--seafoam-dark);
  color: var(--white);
}

/* === HEADER ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ocean);
  box-shadow: 0 2px 16px rgba(10,61,98,.35);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header__logo-icon {
  width: 38px;
  height: 38px;
  background: var(--ocean-mid);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--seafoam);
  flex-shrink: 0;
}
.site-header__logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.2;
}
.site-header__logo-text span {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  color: var(--seafoam);
  letter-spacing: .04em;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.site-header__nav a {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: color .2s;
}
.site-header__nav a:hover,
.site-header__nav a.active { color: var(--seafoam); }
.site-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.site-header__cta .btn-primary {
  padding: 10px 20px;
  font-size: .85rem;
  background: var(--seafoam);
  color: var(--ocean);
  border-color: var(--seafoam);
}
.site-header__cta .btn-primary:hover {
  background: var(--seafoam-dark);
  border-color: var(--seafoam-dark);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .2s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--ocean);
  flex-direction: column;
  padding: 16px 24px 24px;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(10,61,98,.4);
  border-top: 1px solid var(--border-dark);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dark);
  text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--seafoam); }

/* === HERO =========================================================== */
.home-hero {
  position: relative;
  min-height: clamp(520px, 60vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10,61,98,.88) 0%,
    rgba(10,61,98,.75) 35%,
    rgba(10,61,98,.35) 65%,
    rgba(10,61,98,.10) 100%
  );
  pointer-events: none;
}
.home-hero .container { position: relative; z-index: 2; width: 100%; }
.home-hero__content { max-width: 600px; padding: 60px 0; }
.home-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 16px;
}
.home-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
}
.home-hero__lead {
  font-size: 1.15rem;
  color: rgba(240,244,248,.85);
  margin-bottom: 28px;
  line-height: 1.65;
}
.home-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(168,216,192,.18);
  border: 1px solid rgba(168,216,192,.35);
  color: var(--seafoam);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}

/* === PAGE HERO ====================================================== */
.page-hero {
  position: relative;
  min-height: clamp(280px, 36vh, 420px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,61,98,.35) 0%, rgba(10,61,98,.78) 100%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; width: 100%; padding-bottom: 40px; }
.page-hero__inner { max-width: 700px; }
.breadcrumb {
  font-size: .8rem;
  color: var(--seafoam);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(168,216,192,.75); }
.breadcrumb a:hover { color: var(--seafoam); }
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.page-hero__lead {
  font-size: 1rem;
  color: rgba(240,244,248,.85);
}

/* === TRUST STRIP ==================================================== */
.trust-strip {
  background: var(--ocean);
  padding: 20px 0;
  border-bottom: 2px solid var(--ocean-mid);
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.trust-chip__icon {
  width: 30px;
  height: 30px;
  background: rgba(168,216,192,.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--seafoam);
  flex-shrink: 0;
}

/* === SERVICE CARDS ================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.svc-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--sail);
}
.svc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  display: block;
}
.svc-card:hover .svc-card__media img { transform: scale(1.04); }
.svc-card__badge {
  position: absolute;
  bottom: 12px;
  left: 14px;
  background: var(--ocean);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}
.svc-card__body {
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ocean);
}
.svc-card__body p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}
.svc-card__more {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ocean-mid);
  margin-top: auto;
}
.svc-card:hover .svc-card__more { color: var(--ocean); }

/* === FEATURE ROWS =================================================== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }
.feature-row__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-row__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.feature-row__content .section-label { display: block; }
.feature-row__content h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.feature-row__content p { color: var(--text-mid); margin-bottom: 14px; line-height: 1.7; }
.feature-row__list {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-row__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--text-mid);
}
.feature-row__list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: var(--seafoam);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

/* === DIRECT ANSWER CARD ============================================= */
.direct-answer {
  background: var(--sail);
  border-left: 4px solid var(--ocean-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.65;
}
.direct-answer strong { color: var(--ocean); }

/* === COST TABLE ===================================================== */
.cost-table-wrap { overflow-x: auto; }
.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.cost-table th {
  background: var(--ocean);
  color: var(--white);
  font-weight: 700;
  padding: 14px 18px;
  text-align: left;
  font-size: .88rem;
  letter-spacing: .03em;
}
.cost-table th:first-child { border-radius: var(--radius) 0 0 0; }
.cost-table th:last-child  { border-radius: 0 var(--radius) 0 0; }
.cost-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:nth-child(even) td { background: var(--sail); }
.cost-table tr:hover td { background: #dde9f3; }
.cost-price {
  font-weight: 700;
  color: var(--ocean);
}

/* === MINI CARDS (3-UP) ============================================== */
.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}
.mini-card__icon {
  width: 52px;
  height: 52px;
  background: var(--sail);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--ocean-mid);
}
.mini-card h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ocean);
}
.mini-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }

/* === STEPS GRID ===================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step-counter;
}
.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  counter-increment: step-counter;
}
.step-card::before {
  content: counter(step-counter);
  position: absolute;
  top: -18px;
  left: 24px;
  width: 36px;
  height: 36px;
  background: var(--ocean);
  color: var(--white);
  font-weight: 800;
  font-size: .95rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--ocean); }
.step-card p  { font-size: .9rem; color: var(--text-mid); line-height: 1.6; }

/* === GALLERY GRID =================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform .4s var(--ease);
  display: block;
}
.gallery-grid img:hover { transform: scale(1.02); }

/* === REVIEW CARDS =================================================== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--brass);
}
.review-card__text {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-card__name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--ocean);
}
.review-card__location {
  font-size: .8rem;
  color: var(--text-muted);
}

/* === FAQ ACCORDION ================================================== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ocean);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ocean-mid);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item[open] .faq-item__q::after { transform: rotate(45deg); }
.faq-item__a {
  padding: 0 22px 18px;
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* === SCORECARD TABLE ================================================ */
.scorecard-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.scorecard-table th {
  background: var(--ocean);
  color: var(--white);
  font-weight: 700;
  padding: 12px 18px;
  text-align: left;
  font-size: .88rem;
}
.scorecard-table td {
  padding: 11px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.scorecard-table tr:nth-child(even) td { background: var(--sail); }
.scorecard-table tr:last-child td { border-bottom: none; }

/* === NEIGHBORHOODS ================================================== */
.nbhd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.nbhd-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: box-shadow .25s var(--ease);
}
.nbhd-card:hover { box-shadow: var(--shadow-md); }
.nbhd-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 6px;
}
.nbhd-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.55; }
.nbhd-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.nbhd-pill {
  background: var(--sail);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ocean);
}

/* === CTA BAND ======================================================= */
.cta-band {
  background: var(--ocean);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 1.05rem;
  color: rgba(240,244,248,.85);
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-band__btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* === RELATED STRIP ================================================== */
.related-strip {
  background: var(--sail);
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.related-strip h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 16px;
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.related-link {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ocean-mid);
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.related-link:hover {
  background: var(--ocean);
  border-color: var(--ocean);
  color: var(--white);
}

/* === METHODOLOGY BLOCK ============================================== */
.methodology-block {
  background: var(--sail);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.methodology-block h3 { font-size: 1.2rem; font-weight: 800; color: var(--ocean); margin-bottom: 12px; }
.methodology-block p { color: var(--text-mid); line-height: 1.7; margin-bottom: 12px; }
.methodology-block p:last-child { margin-bottom: 0; }

/* === LICENSING BLOCK ================================================ */
.license-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--ocean);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--text-light);
}
.license-block__icon {
  width: 52px;
  height: 52px;
  background: rgba(168,216,192,.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--seafoam);
  flex-shrink: 0;
}
.license-block h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.license-block p  { color: var(--text-light); font-size: .95rem; line-height: 1.65; }
.license-block a  { color: var(--seafoam); }

/* === COMPARISON GRID ================================================ */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.compare-panel {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--white);
}
.compare-panel--highlight {
  border-color: var(--ocean);
  background: var(--sail);
}
.compare-panel h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 6px;
}
.compare-panel__sub {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.compare-panel ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.compare-panel ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .9rem;
  color: var(--text-mid);
}
.compare-panel ul li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--seafoam);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

/* === FADE-UP ANIMATION ============================================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* === FOOTER ========================================================= */
.site-footer {
  background: var(--dark);
  padding: 64px 0 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--ocean);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-brand__logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .95rem;
  color: var(--white);
}
.footer-brand p {
  font-size: .875rem;
  color: rgba(168,216,192,.75);
  line-height: 1.65;
  margin-bottom: 10px;
}
.footer-brand__designed {
  font-size: .78rem;
  color: rgba(168,216,192,.5);
}
.footer-brand__designed a { color: rgba(168,216,192,.6); }
.footer-brand__designed a:hover { color: var(--seafoam); }

.footer-declaration {
  margin-top: 20px;
  padding: 16px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(168,216,192,.15);
  border-radius: var(--radius);
}
.footer-declaration h4,
.footer-declaration .footer-col-heading {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(168,216,192,.7);
  margin-bottom: 6px;
}
.footer-declaration p {
  font-size: .78rem;
  color: rgba(168,216,192,.55);
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-col h4,
.footer-col-heading {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li { font-size: .875rem; }
.footer-col ul span { color: rgba(168,216,192,.6); }
.footer-col ul a {
  color: rgba(168,216,192,.75);
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--seafoam); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(168,216,192,.45);
  margin: 0;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-legal a {
  font-size: .8rem;
  color: rgba(168,216,192,.55);
  text-decoration: none;
}
.footer-legal a:hover { color: var(--seafoam); }

/* === PROSE BLOCK ==================================================== */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.6rem; font-weight: 800; color: var(--ocean); margin: 36px 0 12px; }
.prose h3 { font-size: 1.2rem; font-weight: 700; color: var(--ocean); margin: 28px 0 10px; }
.prose p  { color: var(--text-mid); margin-bottom: 14px; line-height: 1.75; }
.prose ul { color: var(--text-mid); margin-bottom: 14px; }
.prose li { margin-bottom: 8px; }
.prose a  { color: var(--ocean-mid); text-decoration: underline; }

/* === CONTACT FORM =================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: 1.8rem; font-weight: 800; color: var(--ocean); margin-bottom: 16px; }
.contact-info p   { color: var(--text-mid); line-height: 1.7; margin-bottom: 18px; }

.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  min-height: 44px;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--ocean-mid);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.hp-field { display: none !important; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-success {
  display: none;
  background: #e8f5ef;
  border: 1px solid var(--seafoam);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--ocean);
  font-weight: 600;
}
.form-success.show { display: block; }

/* === UTILITIES ====================================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.flag-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.flag-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--text-mid);
  padding: 12px 16px;
  background: var(--sail);
  border-radius: var(--radius);
  border-left: 3px solid var(--ocean-mid);
}

/* === RESPONSIVE ===================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row   { grid-template-columns: 1fr; gap: 32px; }
  .feature-row--reverse { direction: ltr; }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .nbhd-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-cards { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px 0; }
  .site-header__nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .review-grid   { grid-template-columns: 1fr; }
  .compare-grid  { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .nbhd-grid     { grid-template-columns: 1fr; }
  .mini-cards    { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }
  .home-hero__overlay {
    background: linear-gradient(180deg, rgba(10,61,98,.50) 0%, rgba(10,61,98,.82) 100%);
  }
  .trust-strip__inner { gap: 16px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .methodology-block { padding: 24px; }
  .license-block { flex-direction: column; padding: 24px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .home-hero h1 { font-size: 1.85rem; }
  .home-hero__ctas { flex-direction: column; }
  .cta-band__btns { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* === ENHANCED REVIEW CARDS v2 (May 2026) =========================== */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.review-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s cubic-bezier(.22,.61,.36,1);
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.review-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.review-card__stars { color: #FFC107; font-size: 1.3rem; letter-spacing: 3px; line-height: 1; }
.review-card__badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; padding: 4px 11px;
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  color: rgba(255,255,255,.8); letter-spacing: .04em; white-space: nowrap;
}
.review-card__quote {
  color: rgba(255,255,255,.9);
  font-size: 1rem; line-height: 1.72; font-style: italic; flex: 1;
  margin-bottom: 24px;
  border-left: 3px solid var(--copper-light,#d4964d);
  padding-left: 18px;
}
.review-card__author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px;
}
.review-card__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--copper-light,#d4964d);
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  background: rgba(255,255,255,.1);
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-card__name { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--white,#fff); line-height: 1.2; }
.review-card__meta, .review-card__location { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 3px; }

/* === MAP + NEIGHBORHOODS LAYOUT ==================================== */
.areas-map-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  align-items: start; margin-bottom: 32px;
}
.areas-map-iframe {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  border: 1px solid var(--border,#d8eaee);
  line-height: 0;
}
.areas-map-iframe iframe { display: block; border: 0; width: 100%; min-height: 400px; }

@media (max-width: 900px) {
  .areas-map-layout { grid-template-columns: 1fr; }
  .areas-map-iframe iframe { min-height: 320px; }
}
@media (max-width: 768px) {
  .review-grid { grid-template-columns: 1fr; }
  .review-card { padding: 24px 20px; }
  .review-card__quote { font-size: .95rem; }
}
