/* ==========================================================================
   Plumber Westminster — Master Stylesheet
   Shared across all pages. No build step — plain CSS, mobile-first.
   ========================================================================== */

:root {
  /* Brand palette — navy + orange "local trades" look */
  --navy-900: #0a1f38;
  --navy-800: #0f2c4c;
  --navy-700: #163a63;
  --navy-600: #1f4b7d;
  --accent-500: #f26522;
  --accent-600: #d9550f;
  --accent-700: #b9450a;
  --white: #ffffff;
  --gray-50: #f7f9fb;
  --gray-100: #eef1f5;
  --gray-200: #dde3ea;
  --gray-300: #c3cdd8;
  --gray-500: #6b7a8c;
  --gray-700: #3d4a5a;
  --gray-900: #1a2330;
  --success-600: #1a7a3c;
  --star-500: #f5a623;

  --font-heading: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(10, 31, 56, 0.12);
  --shadow-md: 0 6px 20px rgba(10, 31, 56, 0.14);
  --shadow-lg: 0 12px 32px rgba(10, 31, 56, 0.22);
  --container-width: 1180px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--accent-600);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 5vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }

ul, ol { padding-left: 1.25em; }

/* Focus visibility for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent-500);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent-500);
  color: var(--white);
  padding: 12px 20px;
  z-index: 2000;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
}

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

section {
  padding: 56px 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-navy {
  background: var(--navy-900);
  color: var(--gray-100);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head p {
  color: var(--gray-500);
  font-size: 1.05rem;
}

.section-navy .section-head p {
  color: var(--gray-300);
}

.eyebrow {
  display: inline-block;
  color: var(--accent-500);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  line-height: 1.1;
}

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

.btn-accent {
  background: var(--accent-500);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
  background: var(--accent-600);
  color: var(--white);
}

.btn-navy {
  background: var(--navy-800);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-700);
  color: var(--white);
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

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

.btn-outline-navy:hover {
  background: var(--navy-800);
  color: var(--white);
}

.btn-lg {
  padding: 18px 34px;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy-900);
  flex-shrink: 1;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.brand-text {
  line-height: 1.15;
}

.brand-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy-900);
  display: block;
}

.main-nav {
  display: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--navy-800);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--accent-600);
  border-bottom-color: var(--accent-500);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.6;
}

.main-nav .nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 1001;
}

.main-nav .nav-dropdown:hover .nav-dropdown-menu,
.main-nav .nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--navy-800);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-dropdown-menu li a:hover {
  background: var(--gray-50);
  color: var(--accent-600);
}

.nav-dropdown-category {
  position: relative;
}

.main-nav .nav-dropdown-category > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.nav-dropdown-category > a::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid currentColor;
  opacity: 0.5;
  flex-shrink: 0;
}

.main-nav .nav-dropdown-submenu {
  display: none;
  position: absolute;
  top: -8px;
  left: 100%;
  min-width: 260px;
  margin: 0 0 0 4px;
  padding: 8px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 1002;
}

.main-nav .nav-dropdown-category:hover .nav-dropdown-submenu,
.main-nav .nav-dropdown-category:focus-within .nav-dropdown-submenu {
  display: block;
}

.nav-dropdown-submenu li a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--navy-800);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-dropdown-submenu li a:hover {
  background: var(--gray-50);
  color: var(--accent-600);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--navy-800);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.header-cta .btn-accent {
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-call-full {
  display: none;
}

.btn-call-short {
  display: inline;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .btn-call-full {
    display: inline;
  }

  .btn-call-short {
    display: none;
  }
}

.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 10px 20px 20px;
}

.mobile-nav li {
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav a {
  display: block;
  padding: 14px 4px;
  text-decoration: none;
  color: var(--navy-900);
  font-weight: 600;
}

.mobile-nav .btn {
  margin-top: 14px;
}

.mobile-nav-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 14px 4px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
  cursor: pointer;
}

.mobile-nav-dropdown-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gray-500);
  transition: transform 0.2s ease;
}

.mobile-nav-dropdown.is-open .mobile-nav-dropdown-icon {
  transform: rotate(180deg);
}

.mobile-nav-submenu {
  display: none;
  list-style: none;
  margin: 0 0 6px;
  padding: 0 0 0 14px;
}

.mobile-nav-dropdown.is-open .mobile-nav-submenu {
  display: block;
}

.mobile-nav-submenu a {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gray-700);
  padding: 8px 4px;
}

@media (min-width: 900px) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* Floating mobile call button */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--accent-500);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}

.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 10px;
}

@media (min-width: 900px) {
  .mobile-call-bar { display: none; }
}

body {
  padding-bottom: 64px;
}

@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
  padding: 56px 0 64px;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 16, 28, 0.93) 0%, rgba(10, 31, 56, 0.86) 55%, rgba(6, 16, 28, 0.94) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 36px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero .container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 0.4em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-200);
  max-width: 55ch;
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0;
  color: var(--gray-200);
  font-size: 0.95rem;
}

.hero-stars .stars {
  color: var(--star-500);
  letter-spacing: 2px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
}

.hero-subtext-btn {
  max-width: 440px;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.4;
  white-space: normal;
}

.hero-phone-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
}

.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-panel {
  background: var(--white);
  color: var(--gray-900);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.hero-panel h2 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.hero-panel ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.hero-panel li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-weight: 600;
  color: var(--gray-700);
}

.hero-panel li:last-child { border-bottom: none; }

.hero-panel .check {
  color: var(--success-600);
  font-weight: 900;
}

/* Interior page hero (smaller) */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
  padding: 44px 0;
}

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

.page-hero h1 {
  color: var(--white);
  margin-bottom: 8px;
}

.page-hero p {
  color: var(--gray-200);
  max-width: 65ch;
  font-size: 1.05rem;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: var(--gray-300);
}

.breadcrumbs a {
  color: var(--gray-200);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs li:last-child {
  color: var(--gray-300);
}

/* --------------------------------------------------------------------------
   Trust bar
   -------------------------------------------------------------------------- */
.trust-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 26px 0;
}

.trust-bar .grid {
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--navy-800);
  font-weight: 700;
  font-size: 0.92rem;
}

.trust-item .trust-icon {
  font-size: 1.6rem;
}

.trust-item span.trust-sub {
  font-weight: 500;
  color: var(--gray-500);
  font-size: 0.82rem;
}

/* --------------------------------------------------------------------------
   Service groups (grouped service catalog — homepage services section)
   -------------------------------------------------------------------------- */
.service-group {
  margin-bottom: 48px;
}

.service-group:last-child {
  margin-bottom: 0;
}

.service-group-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  font-size: 1.5rem;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-200);
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.card h3,
.card h4 {
  margin-bottom: 8px;
}

.card p {
  color: var(--gray-500);
  margin-bottom: 12px;
}

.card-link {
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
}

/* Process steps */
.steps {
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px 24px 26px;
  height: 100%;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--accent-500);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(242, 101, 34, 0.35);
}

.step h3 {
  margin-bottom: 8px;
}

/* Photo showcase (two-image row) */
.photo-showcase {
  max-width: 900px;
  margin: 0 auto;
}

.photo-showcase-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

.photo-showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Pricing table (service pages) */
.price-table {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-200);
}

.price-table thead th {
  background: var(--navy-900);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr:nth-child(even) {
  background: var(--gray-50);
}

.price-table td:last-child {
  font-weight: 700;
  color: var(--navy-800);
  white-space: nowrap;
}

/* Plain-text grouped service list */
.plain-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plain-service-list li {
  padding: 6px 0;
  color: var(--gray-700);
}

/* Testimonials */
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.testimonial .stars {
  color: var(--star-500);
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.testimonial p {
  font-style: italic;
  color: var(--gray-700);
}

.testimonial-author {
  font-weight: 700;
  color: var(--navy-900);
  font-style: normal;
  margin-top: 12px;
}

/* Service area list */
.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .area-list { grid-template-columns: repeat(3, 1fr); }
}

.area-list li {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-weight: 600;
  color: var(--navy-800);
}

/* FAQ (native details/summary — accessible, no JS required) */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 4px;
  font-weight: 700;
  color: var(--navy-900);
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent-500);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item .faq-answer {
  padding: 0 4px 18px;
  color: var(--gray-700);
}

/* CTA band */
.cta-band {
  background: var(--accent-500);
  color: var(--white);
  padding: 44px 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  color: rgba(255,255,255,0.92);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 20px;
}

.cta-band .btn-navy {
  background: var(--navy-900);
}

.cta-band .btn-outline {
  border-color: var(--white);
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 640px) {
  .form-row-2 {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 18px;
  }
}

.form-field label {
  display: block;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--gray-900);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--navy-700);
}

.form-field .hint {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.form-required {
  color: var(--accent-600);
}

/* Honeypot field — hidden from real users, visible to bots */
.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-status {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-weight: 600;
}

.form-status.success {
  background: #e8f6ec;
  color: var(--success-600);
  border: 1px solid #bfe6cb;
}

/* --------------------------------------------------------------------------
   Info blocks (contact page, quick facts)
   -------------------------------------------------------------------------- */
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.info-list .info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.info-list strong {
  display: block;
  color: var(--navy-900);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  aspect-ratio: 16 / 10;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */
.legal-content h2 {
  margin-top: 1.6em;
}

.legal-content ul {
  color: var(--gray-700);
}

.legal-updated {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   404 page
   -------------------------------------------------------------------------- */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 80px 0;
}

.error-code {
  font-size: clamp(4rem, 14vw, 7rem);
  font-weight: 900;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 0.2em;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: var(--gray-300);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.site-footer .footer-heading {
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.site-footer p {
  color: var(--gray-300);
}

.site-footer a {
  color: var(--gray-300);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent-500);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.footer-bottom a {
  color: var(--gray-500);
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Misc
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
