/* ============================================================
   HAYES FAMILY ELECTRICIANS — Token System
   POV: Warm, trustworthy, neighborhood-crew. Navy dominates,
   amber-gold accent (incandescent light color), warm off-white bg.
   NOT graphite/hi-vis (Code Electric), NOT cream/terracotta,
   NOT near-black/acid-green.
   ============================================================ */

@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./fonts/barlow-condensed-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/source-serif-4-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./fonts/source-serif-4-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* --- Color tokens --- */
  --c-navy:       #1B2B4B;   /* dominant: deep dusk navy */
  --c-navy-dark:  #111D33;   /* dark variant */
  --c-navy-mid:   #2C4068;   /* mid navy */
  --c-amber:      #D4870A;   /* accent: warm incandescent gold */
  --c-amber-lt:   #F5A623;   /* lighter amber for hover */
  --c-bg:         #F7F4EF;   /* warm off-white background */
  --c-bg-alt:     #EEE9E1;   /* slightly deeper warm section bg */
  --c-text:       #1A1E2A;   /* near-black text */
  --c-text-mid:   #4A5568;   /* mid-tone body text */
  --c-text-lt:    #718096;   /* light utility text */
  --c-border:     #D8D0C5;   /* warm border */
  --c-white:      #FFFFFF;

  /* --- Typography --- */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Source Serif 4', Georgia, serif;

  /* --- Type scale --- */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

  /* --- Spacing --- */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-7:  1.75rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* --- Radii --- */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;

  /* --- Shadows --- */
  --shadow-sm:  0 1px 3px rgba(27,43,75,0.10), 0 1px 2px rgba(27,43,75,0.06);
  --shadow-md:  0 4px 12px rgba(27,43,75,0.12), 0 2px 6px rgba(27,43,75,0.08);
  --shadow-lg:  0 10px 30px rgba(27,43,75,0.16), 0 4px 12px rgba(27,43,75,0.10);

  /* --- Layout --- */
  --container-max: 1140px;
  --header-h: 68px;
}

/* ============================================================
   RESET + BASE
   ============================================================ */

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  padding-top: var(--header-h);
  padding-bottom: 72px; /* space for mobile bar */
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

address { font-style: normal; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   UTILITY
   ============================================================ */

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

.section-eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: var(--space-3);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.link-arrow {
  color: var(--c-amber);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.link-arrow:hover { border-color: var(--c-amber); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  min-height: 48px;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--c-amber);
  color: var(--c-white);
  border-color: var(--c-amber);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--c-amber-lt);
  border-color: var(--c-amber-lt);
  box-shadow: 0 0 0 3px rgba(212,135,10,0.28);
}

.btn-outline {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: var(--c-white);
}

.btn-header {
  background: var(--c-amber);
  color: var(--c-white);
  border-color: var(--c-amber);
  padding: 10px 20px;
  font-size: var(--text-sm);
}
.btn-header:hover, .btn-header:focus-visible {
  background: var(--c-amber-lt);
}

.btn:focus-visible {
  outline: 2px solid var(--c-amber);
  outline-offset: 3px;
}

/* ============================================================
   SITE HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--c-navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--space-8);
}

.header-brand {
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 1.2;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-left: auto;
}

.header-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.header-nav a:hover, .header-nav a:focus-visible { color: var(--c-white); }

/* ============================================================
   HERO — two-column: solid navy copy panel | contained framed photo
   ============================================================ */

.hero {
  background: var(--c-navy-dark);
  padding: var(--space-16) 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

/* Left: copy panel */
.hero-copy {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: var(--space-4);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl));
  color: var(--c-white);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-8);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

/* Outline variant that works on dark bg */
.btn-outline-dark {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  min-height: 48px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline-dark:hover, .btn-outline-dark:focus-visible {
  background: rgba(255,255,255,0.10);
  border-color: var(--c-white);
}
.btn-outline-dark:focus-visible {
  outline: 2px solid var(--c-amber);
  outline-offset: 3px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3) var(--space-5);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
}

.trust-stars {
  color: var(--c-amber);
  letter-spacing: 0.02em;
}

.trust-sep {
  color: rgba(255,255,255,0.25);
}

/* Right: contained framed photo */
.hero-photo-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  /* Hard cap so it never exceeds native width */
  max-width: 929px;
  border: 3px solid rgba(255,255,255,0.08);
  line-height: 0; /* collapse inline gap */
}

.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  /* Let the image render at its natural aspect ratio — no upscaling */
}

/* ============================================================
   SERVICES
   ============================================================ */

.services {
  background: var(--c-bg);
  padding: var(--space-24) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--c-navy-mid);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(27,43,75,0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--c-navy);
  transition: background 0.2s, color 0.2s;
}

.service-card:hover .service-icon {
  background: var(--c-amber);
  color: var(--c-white);
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  letter-spacing: 0.01em;
  color: var(--c-navy);
  margin-bottom: var(--space-3);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--c-text-mid);
  line-height: 1.65;
}

/* ============================================================
   PHOTO STRIP (signature element — horizontal scroll of real work)
   ============================================================ */

.photo-strip {
  background: var(--c-navy-dark);
  overflow: hidden;
  padding: 0;
}

.photo-strip-inner {
  display: flex;
  gap: 0;
  height: 280px;
}

.strip-photo {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

/* Signature element: the amber conduit-line appears on hover as a bottom border */
.strip-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.strip-photo:hover::after {
  transform: scaleX(1);
}

.strip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.strip-photo:hover img {
  transform: scale(1.04);
}

/* ============================================================
   WHY US
   ============================================================ */

.why-us {
  background: var(--c-bg-alt);
  padding: var(--space-24) 0;
}

.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-16);
  align-items: center;
}

.why-us-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
}

.why-lead {
  font-size: var(--text-lg);
  color: var(--c-text-mid);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.why-list li {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.why-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--c-amber);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  margin-top: 2px;
}

.why-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-navy);
  margin-bottom: var(--space-1);
}

.why-list span {
  font-size: var(--text-sm);
  color: var(--c-text-mid);
  line-height: 1.6;
}

.why-us-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-us-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.why-photo-tag {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  background: rgba(17,29,51,0.85);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
}

/* ============================================================
   REVIEWS
   ============================================================ */

.reviews {
  background: var(--c-navy);
  padding: var(--space-24) 0;
}

.reviews .section-eyebrow {
  color: var(--c-amber);
}

.reviews .section-header h2 {
  color: var(--c-white);
}

.rating-big {
  font-size: 1.1em;
  color: var(--c-amber);
  margin-right: var(--space-2);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: var(--space-7, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: background 0.2s, border-color 0.2s;
}

.review-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.review-card--featured {
  background: rgba(212,135,10,0.12);
  border-color: rgba(212,135,10,0.30);
}

.review-stars {
  color: var(--c-amber);
  font-size: var(--text-base);
  letter-spacing: 0.05em;
}

.review-card blockquote p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  font-style: normal;
}

.review-author {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-top: auto;
}

.review-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  color: var(--c-white);
}

.review-date {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.40);
}

.reviews-cta-text {
  text-align: center;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */

.service-area {
  background: var(--c-bg);
  padding: var(--space-24) 0;
}

.area-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-16);
  align-items: center;
}

.area-info h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-6);
}

.nap {
  margin-bottom: var(--space-6);
  font-size: var(--text-base);
  color: var(--c-text-mid);
  line-height: 1.8;
}

.nap-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: 0.01em;
  margin-top: var(--space-2);
  transition: color 0.2s;
}
.nap-phone:hover { color: var(--c-amber); }

.hours-list {
  font-size: var(--text-sm);
  color: var(--c-text-mid);
}
.hours-list dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: var(--space-1);
}
.hours-list dd {
  color: var(--c-navy);
  font-weight: 600;
}

.area-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.map-placeholder {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.7);
  transition: filter 0.3s;
}

.area-map:hover .map-placeholder { filter: saturate(1); }

.map-label {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-navy-dark);
  color: var(--c-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  white-space: nowrap;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  background: var(--c-navy-dark);
  padding: var(--space-24) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: var(--space-16);
  align-items: start;
}

.contact-copy .section-eyebrow {
  color: var(--c-amber);
}

.contact-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
}

.contact-copy > p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.70);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.contact-form {
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-row label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-navy);
}

.form-row .optional {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-text-lt);
  font-size: var(--text-xs);
}

.form-row input,
.form-row textarea {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--c-text);
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  min-height: 48px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--c-navy);
  box-shadow: 0 0 0 3px rgba(27,43,75,0.14);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--c-text-lt);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: var(--text-base);
  padding: 16px;
}

.form-note {
  font-size: var(--text-xs);
  color: var(--c-text-lt);
  text-align: center;
}

.form-success,
.form-error {
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.form-success {
  background: rgba(27,43,75,0.06);
  border: 1px solid var(--c-amber);
  color: var(--c-navy);
}

.form-error {
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.30);
  color: #B91C1C;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */

.site-footer {
  background: var(--c-navy-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-12) 0 var(--space-8);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--space-8);
  align-items: start;
  margin-bottom: var(--space-8);
}

.footer-brand .brand-name {
  display: block;
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

.footer-nap {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.footer-nap a {
  color: var(--c-amber);
  transition: color 0.2s;
}
.footer-nap a:hover { color: var(--c-amber-lt); }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-self: start;
}

.footer-nav a {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--c-white); }

.footer-copy {
  grid-column: 1 / -1;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.30);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-6);
}

/* ============================================================
   MOBILE CALL BAR
   ============================================================ */

.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  background: var(--c-navy-dark);
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-call-link,
.mobile-quote-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 56px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.mobile-call-link {
  background: var(--c-amber);
  color: var(--c-white);
}
.mobile-call-link:hover { background: var(--c-amber-lt); }

.mobile-quote-link {
  background: transparent;
  color: rgba(255,255,255,0.80);
  border-left: 1px solid rgba(255,255,255,0.10);
}
.mobile-quote-link:hover { background: rgba(255,255,255,0.06); }

/* ============================================================
   JS REVEAL
   ============================================================ */

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .header-nav { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  /* Photo above copy on tablet/mobile */
  .hero-photo-frame {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-layout,
  .area-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .why-us-photo img { height: 320px; }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-4);
  }
}

@media (max-width: 600px) {
  :root { --header-h: 60px; }

  body { padding-bottom: 60px; }

  .hero { padding: var(--space-10) 0; }

  .hero-headline { font-size: clamp(2.4rem, 10vw, 3.2rem); }

  .hero-actions { flex-direction: column; }

  .hero-actions .btn,
  .hero-actions .btn-outline-dark { width: 100%; justify-content: center; }

  .hero-photo-frame { max-width: 100%; }

  .services-grid { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: 1fr; }

  .photo-strip-inner { height: 180px; }

  .section-header { text-align: left; }
  .section-header h2 { font-size: clamp(var(--text-2xl), 8vw, var(--text-4xl)); }

  .contact-form { padding: var(--space-6); }
}

@media (max-width: 390px) {
  .container { padding: 0 var(--space-4); }
  .hero { padding: var(--space-8) 0; }
  .trust-sep { display: none; }
  .trust-strip { flex-direction: column; align-items: flex-start; gap: var(--space-2); }
}
