/* ============================================================
   Happy Max Handyman — styles
   Mobile-first. Design tokens at top, then layout per-section.
   ============================================================ */

:root {
  /* brand */
  --navy: #112e5e;
  --navy-2: #0a1f42;
  --navy-3: #1a3a6e;
  --gold: #d4a537;
  --gold-2: #b88a26;
  --gold-soft: #f3e7c4;

  /* neutrals */
  --bg: #ffffff;
  --bg-alt: #faf8f3;
  --bg-tint: #f5f4ef;
  --slate: #1f2937;
  --muted: #64748b;
  --border: #e7e5df;
  --border-strong: #d6d3ca;

  /* type */
  --ff-display: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* radii / shadows */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(17,46,94,.06), 0 2px 6px rgba(17,46,94,.04);
  --shadow-md: 0 6px 24px rgba(17,46,94,.08), 0 2px 6px rgba(17,46,94,.05);
  --shadow-lg: 0 20px 60px rgba(17,46,94,.12), 0 8px 24px rgba(17,46,94,.08);

  /* layout */
  --container: 1180px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--navy);
  margin: 0 0 .5em;
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(1.9rem, 3.2vw + 1rem, 2.75rem); font-weight: 800; line-height: 1.15; }

/* Force exactly two lines on desktop — first line: "Professional TV Mounting", second: "in Honolulu, Oahu." */
.break-desktop { display: none; }
@media (min-width: 960px) { .break-desktop { display: inline; } }
h2 { font-size: clamp(1.7rem, 2.2vw + 1rem, 2.5rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: .95rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

p { margin: 0 0 1em; text-wrap: pretty; }

a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-2); }

.text-gold { color: var(--gold); }

/* container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* skip link */
.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--navy); color: #fff; padding: 8px 16px;
  border-radius: 8px; z-index: 1000;
}
.skip-link:focus { left: 8px; }

/* ============================================================
   buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .005em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s, background .2s, color .2s, border-color .2s, box-shadow .2s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-gold {
  background: var(--gold);
  color: var(--navy-2);
  box-shadow: 0 6px 20px rgba(212,165,55,.35);
}
.btn-gold:hover { background: var(--gold-2); color: var(--navy-2); box-shadow: 0 10px 28px rgba(212,165,55,.4); }

.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-2); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ============================================================
   header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; gap: 24px;
  height: var(--header-h);
}

.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  flex: none;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-text {
  display: flex; flex-direction: column; line-height: 1.05;
}
.brand-text strong {
  font-family: var(--ff-display); font-weight: 800;
  color: var(--navy); font-size: 1.05rem; letter-spacing: -0.01em;
}
.brand-text small {
  color: var(--muted); font-size: .72rem;
  text-transform: uppercase; letter-spacing: .08em;
  margin-top: 2px;
}

.primary-nav {
  display: none;
  margin-left: auto;
  gap: 28px;
}
.primary-nav a {
  font-weight: 500; font-size: .95rem;
  color: var(--slate);
  position: relative;
}
.primary-nav a:hover { color: var(--navy); }
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: none; }

.menu-toggle {
  margin-left: auto;
  width: 44px; height: 44px;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0;
  background: #fff;
  z-index: 49;
  padding: 32px 20px;
  display: flex; flex-direction: column; gap: 28px;
  animation: slidein .25s ease;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav {
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu nav a {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu-cta { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
@keyframes slidein { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   hero
   ============================================================ */
.hero {
  position: relative;
  padding: 56px 0 72px;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(212,165,55,.12), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(17,46,94,.08), transparent 60%),
    var(--bg-alt);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(17,46,94,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,46,94,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-content { min-width: 0; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-display);
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--navy);
  background: rgba(17,46,94,.06);
  border: 1px solid rgba(17,46,94,.1);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.kicker .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,165,55,.2);
}

.hero h1 { margin-bottom: 16px; }
.lede {
  font-size: clamp(1.05rem, .5vw + .9rem, 1.2rem);
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 28px;
}

.trust-row {
  display: flex; flex-wrap: wrap;
  list-style: none; padding: 0; margin: 0;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 500;
}
.trust-row li {
  display: inline-flex; align-items: center; gap: 6px;
  padding-right: 18px;
  margin-right: 18px;
  border-right: 1px solid var(--border-strong);
  line-height: 1.5;
}
.trust-row li:last-child { padding-right: 0; margin-right: 0; border-right: 0; }
.trust-row li span { color: var(--gold); letter-spacing: 1px; }

/* hero card */
.hero-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-card::before {
  content: "";
  position: absolute; top: -14px; left: -14px; right: 40px; bottom: 40px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border-radius: var(--r-xl);
  z-index: -1;
  opacity: .08;
}
.hero-card-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap; gap: 8px;
}
.badge {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: var(--gold-soft);
  padding: 6px 12px; border-radius: 999px;
}
.price-hint { font-size: .82rem; color: var(--muted); }

.check-list {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: .95rem;
  color: var(--slate);
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l5 5L20 7' stroke='%230a1f42' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.card-foot {
  font-size: .8rem; color: var(--muted);
  margin: 12px 0 0; text-align: center;
}

/* ============================================================
   sections
   ============================================================ */
.section { padding: 80px 0; }
.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head .kicker { margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* card grids */
.card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

/* service cards */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold-soft), #fff);
  border: 1px solid rgba(212,165,55,.3);
  color: var(--navy);
  border-radius: 14px;
  margin-bottom: 18px;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }

/* why section */
.why { background: var(--bg-alt); }
.why-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
.why-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.why-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 16px;
  margin-bottom: 18px;
}
.why-icon svg { width: 26px; height: 26px; }
.why-item h3 { margin-bottom: 6px; }
.why-item p { color: var(--muted); margin: 0; font-size: .95rem; }

/* how it works */
.how-it-works { background: var(--navy); color: rgba(255,255,255,.85); position: relative; overflow: hidden; }
.how-it-works::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 300px at 100% 0%, rgba(212,165,55,.18), transparent 60%),
    radial-gradient(600px 300px at 0% 100%, rgba(212,165,55,.12), transparent 60%);
  pointer-events: none;
}
.how-it-works .section-head h2 { color: #fff; }
.how-it-works .section-head .kicker {
  color: var(--gold);
  background: rgba(212,165,55,.12);
  border-color: rgba(212,165,55,.3);
}
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
  position: relative;
}
.step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
}
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--gold); color: var(--navy-2);
  font-family: var(--ff-display); font-weight: 800; font-size: 1.1rem;
  border-radius: 12px;
  margin-bottom: 14px;
}
.step h3 { color: #fff; margin-bottom: 6px; }
.step p { color: rgba(255,255,255,.7); margin: 0; font-size: .95rem; }

/* service area */
.service-area-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  align-items: center;
}
.neighborhood-list {
  list-style: none; padding: 0; margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}
.neighborhood-list li {
  position: relative;
  padding-left: 22px;
  color: var(--slate);
  font-weight: 500;
  font-size: .95rem;
}
.neighborhood-list li::before {
  content: "";
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
}
.small-note { font-size: .85rem; color: var(--muted); }

.service-area-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  text-align: center;
}
.service-area-card svg { margin: 0 auto 16px; width: 100%; max-width: 280px; height: auto; }
.service-area-stat {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.service-area-stat strong {
  font-family: var(--ff-display); font-weight: 800;
  color: var(--navy); font-size: 1.6rem;
}
.service-area-stat span { font-size: .9rem; color: var(--muted); }

/* reviews */
.reviews { background: var(--bg-alt); }
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column;
}
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 12px; }
.review-card blockquote {
  margin: 0 0 18px;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.65;
}
.review-card footer {
  font-size: .9rem; color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}
.review-card footer strong { color: var(--navy); font-weight: 700; }

/* faq */
.faq-inner { max-width: 820px; }
.faq-list {
  display: flex; flex-direction: column; gap: 10px;
}
.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0 24px;
  transition: border-color .2s, box-shadow .2s;
}
.faq-list details[open] {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(212,165,55,.08);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform .25s;
  line-height: 1;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.65;
}

/* ============================================================
   contact
   ============================================================ */
.contact { background: var(--bg-alt); }
.contact-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  align-items: start;
}

.contact-form-wrap h2 { margin-bottom: 12px; }
.contact-form-wrap .lede { margin-bottom: 28px; }

.lead-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
.field label {
  font-family: var(--ff-display); font-weight: 600;
  font-size: .88rem; color: var(--navy);
}
.field label .optional { color: var(--muted); font-weight: 500; font-size: .8rem; }
.field input,
.field select,
.field textarea {
  font-family: inherit; font-size: 1rem;
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--slate);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,165,55,.15);
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #c0392b;
  box-shadow: 0 0 0 4px rgba(192,57,43,.1);
}

.hp { position: absolute; left: -9999px; height: 0; width: 0; overflow: hidden; }

#lf-submit { margin-top: 6px; position: relative; }
.lf-submit-spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(10,31,66,.3);
  border-top-color: var(--navy-2);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
#lf-submit.is-loading .lf-submit-label { opacity: .5; }
#lf-submit.is-loading .lf-submit-spinner { display: inline-block; }
#lf-submit[disabled] { cursor: not-allowed; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-foot { font-size: .8rem; color: var(--muted); margin: 0; text-align: center; }
.form-status {
  display: none;
  padding: 14px 16px; border-radius: 12px;
  font-size: .95rem;
  margin-top: 8px;
}
.form-status.is-success {
  display: block;
  background: #ecfdf5; color: #065f46;
  border: 1px solid #6ee7b7;
}
.form-status.is-error {
  display: block;
  background: #fef2f2; color: #991b1b;
  border: 1px solid #fca5a5;
}

/* contact aside */
.contact-aside {
  background: var(--navy);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  overflow: hidden;
}
.contact-aside::before {
  content: "";
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,165,55,.25), transparent 60%);
  pointer-events: none;
}
.contact-aside h3 { color: #fff; font-size: 1.1rem; margin-bottom: 6px; }
.contact-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: background .2s;
}
.contact-row:hover { background: rgba(255,255,255,.06); color: #fff; }
.contact-row-static { cursor: default; }
.contact-icon {
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(212,165,55,.18);
  color: var(--gold);
  border-radius: 12px;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.contact-text small {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.55);
}
.contact-text strong { font-size: .95rem; color: #fff; word-break: break-word; }

.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.badge-pill {
  font-family: var(--ff-display);
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--gold);
  background: rgba(212,165,55,.12);
  border: 1px solid rgba(212,165,55,.3);
  padding: 5px 12px; border-radius: 999px;
}

/* ============================================================
   footer
   ============================================================ */
.site-footer {
  background: var(--navy-2);
  color: rgba(255,255,255,.7);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand img {
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  width: 56px; height: 56px;
  object-fit: contain;
  flex: none;
}
.footer-brand strong { color: #fff; font-family: var(--ff-display); display: block; margin-bottom: 4px; font-size: 1rem; }
.footer-brand p { font-size: .9rem; margin: 0; }

.footer-col h4 { color: #fff; margin-bottom: 12px; font-size: .8rem; }
.footer-col a, .footer-col p {
  display: block;
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  margin: 0 0 6px;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 24px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  text-align: center;
}

/* ============================================================
   floating call (mobile)
   ============================================================ */
.floating-call {
  position: fixed;
  bottom: 16px; right: 16px;
  width: 56px; height: 56px;
  background: var(--gold); color: var(--navy-2);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(212,165,55,.4), 0 4px 8px rgba(0,0,0,.1);
  z-index: 40;
  transition: transform .2s, box-shadow .2s;
}
.floating-call:hover { transform: scale(1.06); color: var(--navy-2); }

/* ============================================================
   scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   responsive — tablet
   ============================================================ */
@media (min-width: 640px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .neighborhood-list { grid-template-columns: repeat(3, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

/* ============================================================
   responsive — desktop
   ============================================================ */
@media (min-width: 960px) {
  .primary-nav { display: flex; }
  .header-cta { display: inline-flex; margin-left: 12px; }
  .menu-toggle { display: none; }
  .floating-call { display: none; }

  .hero { padding: 96px 0 110px; }
  .hero-grid { grid-template-columns: 1.35fr 1fr; gap: 56px; }

  .section { padding: 110px 0; }

  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }

  .service-area-grid { grid-template-columns: 1.1fr 1fr; gap: 64px; }
  .contact-grid { grid-template-columns: 1.4fr 1fr; gap: 40px; }
}

/* respect users who prefer no anim */
@media (prefers-reduced-motion: reduce) {
  .btn, .card, .floating-call { transition: none !important; }
  .btn:hover, .floating-call:hover, .card:hover { transform: none !important; }
}
