/* Hartley Plumbing — site styles */
:root {
  --navy: #0c3b5c;
  --navy-deep: #08293f;
  --navy-mid: #14507a;
  --amber: #d97706;
  --amber-hover: #b45309;
  --amber-soft: #fef3c7;
  --cream: #f7f4ef;
  --cream-dark: #ebe6dc;
  --white: #ffffff;
  --charcoal: #1c1c1c;
  --slate: #4a5560;
  --muted: #6b7280;
  --line: #e5e0d8;
  --success: #166534;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(8, 41, 63, 0.08);
  --shadow-lg: 0 12px 40px rgba(8, 41, 63, 0.12);
  --header-h: 72px;
  --sticky-h: 64px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--navy-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--amber);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 4vw, 2.85rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 3vw, 2rem); letter-spacing: -0.015em; }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; color: var(--slate); }
p:last-child { margin-bottom: 0; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 2rem, 720px);
  margin-inline: auto;
}

/* —— Top bar —— */
.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  padding: 0.45rem 0;
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.topbar a:hover { color: var(--amber-soft); }

.topbar-left {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.topbar .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  margin-right: 0.4rem;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}

.logo:hover { color: var(--navy); }

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-text span {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  text-decoration: none;
  color: var(--slate);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--navy);
  background: var(--cream);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.header-phone {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  line-height: 1.15;
}

.header-phone small {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.header-phone strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 700;
}

.header-phone:hover strong { color: var(--amber); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  line-height: 1.2;
}

.btn:active { transform: translateY(1px); }

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-amber {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
  box-shadow: 0 2px 0 #9a3412, 0 6px 16px rgba(217, 119, 6, 0.25);
}

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

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

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

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

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

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

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

.btn-lg {
  padding: 0.95rem 1.5rem;
  font-size: 1.05rem;
}

.btn-block { width: 100%; }

/* —— Hero —— */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: center;
  min-height: min(72vh, 620px);
  padding: 3rem 0 3.5rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 0.5rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--amber-soft);
}

.hero-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36ch;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-phone-big {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-phone-big a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.hero-phone-big a:hover { color: var(--amber-soft); }

.hero-phone-big span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-lg);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.25;
}

.hero-badge svg {
  width: 20px;
  height: 20px;
  color: var(--amber);
  flex-shrink: 0;
}

/* —— Trust strip —— */
.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}

.trust-list svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
  flex-shrink: 0;
}

/* —— Sections —— */
.section {
  padding: 4.5rem 0;
}

.section-cream { background: var(--cream); }
.section-navy {
  background: var(--navy);
  color: #fff;
}
.section-navy h2,
.section-navy h3 { color: #fff; }
.section-navy p { color: rgba(255, 255, 255, 0.82); }

.section-head {
  max-width: 560px;
  margin-bottom: 2.25rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-kicker {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.section-navy .section-kicker { color: var(--amber-soft); }

/* —— Service cards —— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: inherit;
}

.service-card-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
  min-width: 0;
}

.service-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}

.service-card:hover .service-card-img img {
  transform: scale(1.04);
}

.service-card-body {
  padding: 1.15rem 1.2rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 0.85rem;
}

.service-card .more {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-mid);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.service-card:hover .more { color: var(--amber); }

/* —— Why / split —— */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.split-img {
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  position: relative;
}

.split-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

.checklist {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--slate);
  font-size: 1rem;
}

.checklist .tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amber-soft);
  color: var(--amber-hover);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist .tick svg {
  width: 14px;
  height: 14px;
}

/* —— Emergency banner —— */
.emergency {
  background:
    linear-gradient(135deg, rgba(8, 41, 63, 0.92), rgba(12, 59, 92, 0.88)),
    var(--navy-deep);
  color: #fff;
  border-radius: 16px;
  padding: 2rem 2.25rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.emergency h2 {
  color: #fff;
  margin-bottom: 0.4rem;
}

.emergency p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 48ch;
  margin: 0;
}

.emergency-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: stretch;
  min-width: 220px;
}

/* —— Testimonials —— */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stars {
  color: var(--amber);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.quote-card blockquote {
  margin: 0;
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.55;
  flex: 1;
}

.quote-card footer {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.quote-card footer span {
  display: block;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* —— Areas teaser —— */
.areas-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  align-items: stretch;
}

.areas-panel-img {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
  align-self: stretch;
}

.areas-panel-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

.areas-panel-body {
  min-width: 0;
  padding: 2rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.suburb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 1.5rem;
  list-style: none;
  padding: 0;
}

.suburb-tags li {
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

/* —— Page hero (inner) —— */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 3rem 0 2.75rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(217, 119, 6, 0.15), transparent),
    radial-gradient(ellipse 40% 60% at 10% 100%, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 { color: #fff; margin-bottom: 0.5rem; }

.page-hero .lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 48ch;
  margin: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.breadcrumb a:hover { color: #fff; }

/* —— Service detail list —— */
.service-list {
  display: grid;
  gap: 1.25rem;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  align-items: stretch;
}

.service-row-img {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
  align-self: stretch;
}

.service-row-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

.service-row-body {
  min-width: 0;
  padding: 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-row-body h3 { margin-bottom: 0.4rem; }

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.chip {
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--navy);
  border: 1px solid var(--line);
}

.chip-amber {
  background: var(--amber-soft);
  border-color: #fcd34d;
  color: var(--amber-hover);
}

/* —— Areas page —— */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  color: var(--navy);
}

.area-card svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
  flex-shrink: 0;
}

/* —— About values —— */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--amber-soft);
  color: var(--amber-hover);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.value-icon svg { width: 22px; height: 22px; }

.value-card h3 { margin-bottom: 0.4rem; }

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 2rem;
}

.contact-card h2 { color: #fff; }

.contact-card p { color: rgba(255, 255, 255, 0.8); }

.contact-lines {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.contact-lines li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.75rem;
  align-items: start;
}

.contact-lines svg {
  width: 22px;
  height: 22px;
  color: var(--amber);
  margin-top: 2px;
}

.contact-lines strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.15rem;
}

.contact-lines a,
.contact-lines span {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-lines a:hover { color: var(--amber-soft); }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-card h2 { margin-bottom: 0.35rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.field .req {
  color: var(--amber);
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-mid);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(12, 59, 92, 0.12);
}

.field textarea { min-height: 120px; resize: vertical; }

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-status.ok {
  display: block;
  background: #dcfce7;
  color: var(--success);
  border: 1px solid #86efac;
}

.form-status.err {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* —— Licence strip —— */
.licence-strip {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}

.licence-strip strong {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.05rem;
}

.licence-strip span { color: var(--slate); font-size: 0.95rem; }

/* —— Footer —— */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand .logo-text span { color: rgba(255, 255, 255, 0.5); }
.footer-brand .logo-mark { background: var(--amber); color: var(--navy-deep); }

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  max-width: 28ch;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-col a:hover { color: #fff; }

.footer-phone {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff !important;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.15rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* —— Mobile sticky call bar —— */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--navy-deep);
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  gap: 0.6rem;
}

.sticky-call .btn { flex: 1; }

/* —— Utility —— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* —— Responsive —— */
@media (min-width: 900px) {
  .header-phone { display: flex; }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 2.25rem 0 2.5rem;
    gap: 1.75rem;
  }

  .hero-visual { order: -1; }

  .services-grid,
  .testimonials,
  .values,
  .area-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .areas-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .areas-panel-img {
    aspect-ratio: 16 / 9;
    max-height: 280px;
    min-height: 200px;
  }

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

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

  .emergency-actions {
    min-width: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  :root { --header-h: 64px; }

  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: calc(var(--header-h) + 32px) 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    gap: 0.15rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s var(--ease), opacity 0.2s;
    box-shadow: var(--shadow);
    z-index: 40;
  }

  body.nav-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* account for topbar when present */
  .has-topbar .nav {
    inset: calc(var(--header-h) + 36px) 0 auto 0;
  }

  .nav a {
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
  }

  .header-cta .btn-amber,
  .header-cta .btn-navy,
  .header-cta .btn-outline { display: none; }

  .logo-text span { display: none; }

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  .services-grid,
  .testimonials,
  .values,
  .area-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row-img {
    aspect-ratio: 16 / 9;
    max-height: 220px;
    min-height: 160px;
  }

  .service-row-body {
    padding: 1.15rem 1.2rem 1.35rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .sticky-call {
    display: flex;
  }

  body {
    padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom));
  }

  .section { padding: 3.25rem 0; }

  .hero-grid {
    padding-bottom: calc(1.5rem + var(--sticky-h));
  }

  .hero-visual {
    aspect-ratio: 16 / 10;
  }

  .hero-lead {
    font-size: 1.05rem;
    margin-bottom: 1.15rem;
  }

  .hero-phone-big {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0;
  }

  .hero-actions .btn {
    width: 100%;
  }

  /* Sticky bar already offers Free quote — keep hero focused on the call */
  .hero-actions .btn-outline-light {
    display: none;
  }

  .hero-grid {
    padding-bottom: 2rem;
  }

  .emergency { padding: 1.5rem; }

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

  .form-card,
  .contact-card { padding: 1.5rem; }

  .topbar .topbar-left span:not(.emergency-label) {
    display: none;
  }
}

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