/* ==========================================================================
   Newcastle Structural Engineers — sitewide stylesheet
   Brand colors verified against live rendered site (2026-07-19):
   header/buttons teal #028484, dark sections #3E4444, body text #212121.
   ========================================================================== */

:root {
  --brand: #028484;            /* live computed header/button color */
  --brand-dark: #026a6a;       /* hover/darker shade of brand */
  --brand-deep: #024f4f;       /* hero gradient end */
  --green-accent: #1c4800;     /* green present in live CSS (links/accents) */
  --dark: #3E4444;             /* live footer / highlight section bg */
  --accent: #ffd500;           /* bright vivid yellow accent */
  --accent-dark: #e0bb00;
  --accent-ink: #1a1a1a;       /* text color on accent (4.5:1+) */
  --text: #212121;
  --text-light: #5c6363;
  --white: #ffffff;
  --bg-soft: #f4f7f7;
  --border: #e2e8e8;
  --star: #f5a623;             /* review stars keep conventional gold, independent of brand accent */
  --radius: 10px;
  --shadow: 0 2px 12px rgba(33, 33, 33, 0.08);
  --shadow-lg: 0 8px 28px rgba(33, 33, 33, 0.14);
  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-text-size-adjust: 100%;
}

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

h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 0.6em; color: var(--text); }
h1 { font-size: clamp(1.85rem, 4.5vw, 2.9rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }

a { color: var(--brand-dark); }
a:hover { color: var(--brand); }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 2px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--dark);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 200;
}
.skip-link:focus {
  left: 0;
  color: var(--white);
}

/* ---------- Sticky top bar (phone + email) ---------- */
.mobile-call-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--accent);
  text-align: center;
  padding: 0.55rem 1rem;
}
.mobile-call-bar a {
  color: var(--accent-ink);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
}
.mobile-call-bar a:hover { text-decoration: underline; }
.topbar-email { display: none; }
@media (max-width: 639px) {
  .mobile-call-bar a:not(.topbar-email) {
    display: block;
    width: 100%;
    padding: 0.1rem 1rem;
    font-size: 1rem;
  }
}
@media (min-width: 640px) {
  .mobile-call-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .topbar-email { display: inline-block; }
}

/* ---------- Header ---------- */
.site-header {
  background: var(--brand);
  color: var(--white);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
}
.site-logo img {
  width: 232px;
  height: 57px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
  align-items: center;
}
.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
  display: inline-block;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}
.nav-cta {
  margin-left: 0.5rem;
}
.main-nav a.nav-cta {
  color: var(--accent-ink);
  background: var(--accent);
}
.main-nav a.nav-cta:hover {
  background: var(--accent-dark);
  color: var(--accent-ink);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-dark);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1rem 1rem;
    z-index: 90;
    box-shadow: var(--shadow-lg);
  }
  .site-header { position: relative; }
  .main-nav.open { display: flex; }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .main-nav a { padding: 0.75rem 0.5rem; font-size: 1.05rem; }
  .nav-cta { margin: 0.75rem 0 0; text-align: center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--brand);
  color: var(--white);
}
.btn-primary:hover { background: var(--brand-dark); color: var(--white); }
.btn-light {
  background: var(--white);
  color: var(--brand-dark);
}
.btn-light:hover { background: #e8f4f4; color: var(--brand-deep); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.15); color: var(--white); }
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: #2e3333; color: var(--white); }
.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-accent:hover { background: var(--accent-dark); color: var(--accent-ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  padding: 4rem 0 4.5rem;
  overflow: hidden;
  background-color: var(--brand-deep);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(2, 132, 132, 0.88) 0%, rgba(2, 79, 79, 0.92) 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 48px),
    url('/assets/img/projects/132-Brookfield-Avenue-Fletcher-NSW-2287-2.webp');
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center;
  background-repeat: no-repeat, repeat, repeat, no-repeat;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(0, 0, 0, 0.25);
  border-left: 4px solid var(--accent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  margin: 0 0 1.2rem;
}
.hero h1 { color: var(--white); margin-bottom: 0.5em; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35); }
.hero h1 .accent-word { color: var(--accent); }
.hero .hero-sub {
  max-width: 34rem;
  margin: 0 0 1.6rem;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.hero .hero-sub a {
  color: var(--white);
  font-weight: 700;
}
.hero-trust {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.hero-trust li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.hero-trust .tick {
  flex: none;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.85rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}
.hero-credentials {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}
.hero-credentials a { color: rgba(255, 255, 255, 0.9); font-weight: 600; }
.hero-credentials a:hover { color: var(--white); }

/* ---------- Hero entrance animation ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes growLine {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.hero-content .hero-eyebrow { animation: fadeUp 0.55s ease 0.05s both; }
.hero-content h1            { animation: fadeUp 0.55s ease 0.15s both; }
.hero-content .hero-sub     { animation: fadeUp 0.55s ease 0.3s both; }
.hero-content .hero-trust li:nth-child(1) { animation: fadeUp 0.5s ease 0.45s both; }
.hero-content .hero-trust li:nth-child(2) { animation: fadeUp 0.5s ease 0.57s both; }
.hero-content .hero-trust li:nth-child(3) { animation: fadeUp 0.5s ease 0.69s both; }
.hero-content .hero-ctas    { animation: fadeUp 0.55s ease 0.85s both; }
.hero .quote-card           { animation: fadeUp 0.65s ease 0.4s both; }
.hero h1 .accent-word {
  display: inline-block;
}
.hero h1 .accent-word::after {
  content: "";
  display: block;
  height: 4px;
  margin-top: 0.08em;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: growLine 0.5s ease 0.75s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .hero-content .hero-eyebrow,
  .hero-content h1,
  .hero-content .hero-sub,
  .hero-content .hero-trust li,
  .hero-content .hero-ctas,
  .hero .quote-card { animation: none; }
  .hero h1 .accent-word::after { animation: none; transform: scaleX(1); }
  html { scroll-behavior: auto; }
}

/* ---------- Hero quote form card ---------- */
.quote-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--accent);
  padding: 1.8rem 1.7rem 1.7rem;
  color: var(--text);
}
.quote-card h2 {
  font-size: 1.45rem;
  margin-bottom: 0.25rem;
}
.quote-card .quote-intro {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 0.9rem;
}
.quote-form .field { display: flex; flex-direction: column; }
.quote-form .field-full { grid-column: 1 / -1; }
.quote-form label {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 0.6rem 0.7rem;
  width: 100%;
}
.quote-form textarea { resize: vertical; min-height: 74px; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(2, 132, 132, 0.2);
}
.quote-form input[type="file"] {
  border-style: dashed;
  font-size: 0.85rem;
  color: var(--text-light);
}
.quote-form .btn { width: 100%; font-size: 1.05rem; }
.form-hint {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}
.form-status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  display: none;
}
.form-status.error { display: block; color: #b3261e; }
.form-status.sending { display: block; color: var(--brand-dark); }
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 950px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero { padding: 3.2rem 0 3.5rem; }
}
@media (max-width: 520px) {
  .quote-form { grid-template-columns: 1fr; }
  .quote-card { padding: 1.5rem 1.2rem 1.4rem; }
}

/* ---------- Interior page hero + breadcrumbs ---------- */
.page-hero {
  background:
    linear-gradient(135deg, rgba(2, 132, 132, 0.96) 0%, rgba(2, 79, 79, 0.97) 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 48px);
  background-color: var(--brand-deep);
  color: var(--white);
  padding: 3rem 0 3.2rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.35em; }
.page-hero .page-sub {
  max-width: 46rem;
  margin: 0 auto;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
}
.page-hero .page-sub a { color: var(--white); font-weight: 700; }
.page-hero .hero-eyebrow { animation: fadeUp 0.55s ease 0.05s both; }
.page-hero h1 { animation: fadeUp 0.55s ease 0.15s both; }
.page-hero .page-sub { animation: fadeUp 0.55s ease 0.3s both; }
@media (prefers-reduced-motion: reduce) {
  .page-hero .hero-eyebrow, .page-hero h1, .page-hero .page-sub { animation: none; }
}

.breadcrumbs {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(33, 33, 33, 0.05);
  font-size: 0.86rem;
  padding: 0.8rem 0;
}
.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.breadcrumbs li + li::before {
  content: "\203A";
  color: var(--brand);
  font-weight: 700;
}
.breadcrumbs a {
  color: var(--text-light);
  font-weight: 600;
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--brand-dark); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--text); font-weight: 700; }

/* ---------- Project groups ---------- */
.project-group { margin-bottom: 3rem; }
.project-group:last-child { margin-bottom: 0; }
.project-group-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0 0 1.3rem;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}

/* ---------- Sections ---------- */
.section { padding: 4rem 0; }
.section-soft { background: var(--bg-soft); }
.section-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2.5rem;
}
.section-head p { color: var(--text-light); }
.title-divider {
  width: 64px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand) 0 55%, var(--accent) 55% 100%);
  margin: 0.9rem auto 0;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.service-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #e2f3f3;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.service-card .icon svg { width: 28px; height: 28px; }
.service-card p { color: var(--text-light); flex: 1; }
.service-card .card-link {
  font-weight: 700;
  text-decoration: none;
}

/* ---------- Price-match banner ---------- */
.price-match {
  background: var(--dark);
  color: var(--white);
  padding: 2.5rem 0;
}
.price-match-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.price-match h2 {
  color: var(--white);
  margin: 0;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
}
.price-match p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Why choose us ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--brand);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.4rem;
}
.value-card p { color: var(--text-light); margin: 0; }

/* ---------- Long-form copy ---------- */
.copy-block {
  max-width: 50rem;
  margin: 0 auto;
}
.copy-block h2 { margin-top: 1.6em; }
.copy-block h2:first-child { margin-top: 0; }
.copy-block ul { padding-left: 1.3rem; }
.copy-block li { margin-bottom: 0.45rem; }
.copy-more { animation: fadeUp 0.4s ease both; }
@media (prefers-reduced-motion: reduce) {
  .copy-more { animation: none; }
}
.copy-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-dark);
  background: var(--white);
  border: 1.5px solid var(--brand);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.copy-toggle:hover { background: #e2f3f3; }
.copy-toggle-icon {
  display: inline-block;
  transition: transform 0.2s ease;
}
.copy-toggle.is-expanded .copy-toggle-icon { transform: rotate(180deg); }

/* ---------- Projects ---------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
}
.project-card:hover { box-shadow: var(--shadow-lg); color: var(--text); }
.project-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.project-card .project-body { padding: 1rem 1.1rem 1.2rem; }
.project-card .project-cat {
  display: inline-block;
  background: #e2f3f3;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.project-card h3 {
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.4;
}
.projects-more { text-align: center; margin-top: 2.2rem; }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.stars {
  color: var(--star);
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.7rem;
}
.review-card blockquote {
  margin: 0 0 1rem;
  color: var(--text-light);
  flex: 1;
}
.review-card cite {
  font-style: normal;
  font-weight: 700;
}
.reviews-cta { text-align: center; margin-top: 2.2rem; }

/* ---------- Service areas ---------- */
.areas-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.areas-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}
.areas-more { text-align: center; margin-top: 1.8rem; }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 50rem;
  margin: 0 auto;
}
.faq-list details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  padding: 1.05rem 1.3rem;
  list-style: none;
  position: relative;
  padding-right: 2.6rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--accent-dark);
}
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list .faq-answer { padding: 0 1.3rem 1.15rem; color: var(--text-light); }
.faq-more { text-align: center; margin-top: 1.8rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(135deg, rgba(2, 132, 132, 0.97) 0%, rgba(2, 79, 79, 0.97) 100%);
  background-color: var(--brand-deep);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 0;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255, 255, 255, 0.9); max-width: 40rem; margin: 0 auto 1.8rem; }
.cta-band .hero-ctas { justify-content: center; }
.cta-band p a { color: var(--white); font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.88);
  padding: 3.5rem 0 0;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
@media (min-width: 560px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 2rem; }
}
.site-footer h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-logo img {
  width: 220px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.footer-nap p { margin-bottom: 0.5rem; }
.footer-map iframe {
  width: 100%;
  max-width: 100%;
  height: 220px;
  border: 0;
  border-radius: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2.5rem;
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-bottom p { margin: 0; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }

@media (max-width: 480px) {
  .section { padding: 3rem 0; }
  .hero { padding: 3.2rem 0 3rem; }
  .btn { width: 100%; }
  .hero-ctas .btn, .price-match .btn { width: auto; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
}
