/*
  Wagler Lawn Equipment — Site Styles
  Brand: Green #0b3e18 / Yellow #fdba07 / Black, White, Grey
  Headlines: Kanit (Bold, ALL CAPS)
  Body: DM Sans
*/

@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,500;0,600;0,700;0,800;1,500;1,600;1,700;1,800&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --green:       #0b3e18;
  --green-dark:  #082c11;
  --green-light: #145128;
  --yellow:      #fdba07;
  --yellow-dark: #e0a306;
  --black:       #0a0a0a;
  --grey-900:    #1a1a1a;
  --grey-700:    #404040;
  --grey-500:    #737373;
  --grey-300:    #d4d4d4;
  --grey-200:    #e5e5e5;
  --grey-100:    #f5f5f5;
  --grey-50:     #fafafa;
  --white:       #ffffff;

  --font-head: 'Kanit', sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --max-w: 1280px;
  --max-w-narrow: 880px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.18);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--grey-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.02;
  color: var(--grey-900);
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3.8vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.125rem; }

p { max-width: 70ch; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--grey-700); line-height: 1.55; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.eyebrow--dark { color: var(--green); }

strong { font-weight: 600; }

/* ── Skip link ─────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--green); color: #fff;
  padding: 0.6rem 1rem; border-radius: 4px; z-index: 9999;
  font-weight: 600; font-size: 0.9rem;
}
.skip-link:focus { top: 0.75rem; }

/* ── Container ─────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.container--narrow { max-width: var(--max-w-narrow); }

.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--alt { background: var(--grey-50); }
.section--dark { background: var(--grey-900); color: var(--grey-200); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--green { background: var(--green); color: rgba(255,255,255,0.85); }
.section--green h2, .section--green h3 { color: #fff; }

/* ── Header / Nav ──────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: #ffffff;
  border-bottom: 1px solid var(--grey-200);
}
.site-header .container {
  max-width: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 84px;
  padding-inline: clamp(1rem, 3vw, 2.5rem);
}

.site-logo { display: flex; align-items: center; }
.site-logo img { height: 56px; width: auto; }
@media (max-width: 640px) {
  .site-logo img { height: 44px; }
  .site-header .container { min-height: 70px; }
}

.site-nav {
  display: flex; align-items: center; gap: 0.25rem; list-style: none;
}
.site-nav > li > a {
  display: inline-flex; align-items: center;
  padding: 0.7rem 1rem;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
  color: var(--grey-900);
  position: relative;
  transition: color 0.2s var(--ease);
}
.site-nav > li > a:not(.nav-cta):hover,
.site-nav > li > a[aria-current="page"]:not(.nav-cta) {
  color: var(--green);
}
.site-nav > li > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 1rem; right: 1rem; bottom: 0.35rem;
  height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.site-nav > li > a:not(.nav-cta):hover::after,
.site-nav > li > a[aria-current="page"]:not(.nav-cta)::after { transform: scaleX(1); }

.nav-cta {
  background: var(--yellow);
  color: var(--grey-900) !important;
  padding: 0.7rem 1.4rem !important;
  border-radius: 2px;
  margin-left: 0.5rem;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav-cta:hover { background: var(--yellow-dark); transform: translateY(-1px); }

/* Inline phone number in main nav (desktop only) */
.nav-phone-item { display: flex; align-items: center; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.7rem 1rem !important;
  color: var(--grey-900) !important;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--green) !important; }
.nav-phone svg { color: var(--green); flex-shrink: 0; }
.nav-phone::after { display: none !important; }

/* Compact phone icon — visible on tablet/mobile next to the burger */
.header-phone {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  margin-left: auto;
  position: relative;
  z-index: 100;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.header-phone:hover { background: var(--green-light); transform: translateY(-1px); color: #fff; }
.header-phone svg { width: 20px; height: 20px; }
.header-cluster { display: flex; align-items: center; gap: 0.5rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  position: relative;
  z-index: 100;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--grey-900); transition: transform 0.25s var(--ease), opacity 0.25s var(--ease); }
.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; gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.92rem;
  border-radius: 2px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
  border: 2px solid transparent;
}
.btn--primary { background: var(--yellow); color: var(--grey-900); }
.btn--primary:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); }
.btn--dark { background: var(--grey-900); color: var(--white); }
.btn--dark:hover { background: var(--black); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--grey-900); border-color: var(--grey-900); }
.btn--outline:hover { background: var(--grey-900); color: var(--white); }

.btn .arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ── Hero (split) ──────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 1.4fr;
  min-height: clamp(420px, 60vh, 640px);
  background: var(--black);
  position: relative;
}
.hero__panel {
  background: var(--black);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  z-index: 2;
}
.hero__panel::after {
  /* diagonal cut to image */
  content: ""; position: absolute; top: 0; right: -1px; width: 60px; height: 100%;
  background: linear-gradient(to right, var(--black) 30%, transparent);
  display: none;
}
.hero__panel h1 { color: #fff; max-width: 14ch; font-style: italic; }
.hero__panel .lead { color: rgba(255,255,255,0.82); margin-top: 1.5rem; max-width: 38ch; }
.hero__panel .btn-row { margin-top: 2.25rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero__image {
  background-size: cover; background-position: center;
  min-height: 320px;
}

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; }
  .hero__image { min-height: 280px; order: 2; }
  .hero__panel { order: 1; padding-block: 3rem; }
}

/* ── Section heading row ───────────────────────────────── */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.section-head h2 { max-width: 22ch; }
.section-head p { color: var(--grey-700); max-width: 48ch; }

/* ── Category card grid (hero-style image tiles) ───────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.cat-grid--three {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.cat-grid--three .cat-card { aspect-ratio: 4 / 5; }
.cat-grid--three .cat-card::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.92) 100%);
}
.cat-grid--three .cat-card__title {
  font-size: 1.5rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}
.cat-grid--three .cat-card__body {
  left: 1.5rem; right: 1.5rem; bottom: 1.5rem;
  color: #ffffff;
}
@media (min-width: 900px) {
  .cat-grid--three { grid-template-columns: repeat(3, 1fr); }
  .cat-grid--three .cat-card { aspect-ratio: 3 / 4; }
  .cat-grid--three .cat-card__title { font-size: 1.85rem; }
}
.cat-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  background: var(--grey-900);
  transition: transform 0.3s var(--ease);
  isolation: isolate;
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s var(--ease);
}
.cat-card:hover .cat-card__bg { transform: scale(1.06); }
.cat-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.cat-card__body {
  position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.25rem;
  z-index: 2; color: #fff;
}
.cat-card__title {
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase;
  font-size: 1.35rem; line-height: 1.05; letter-spacing: 0.01em;
  margin-bottom: 0.25rem;
}
.cat-card__sub { font-size: 0.85rem; color: rgba(255,255,255,0.85); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
.cat-card__chevron {
  position: absolute; right: 1rem; bottom: 1rem; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  display: grid; place-items: center;
  color: #fff;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.cat-card:hover .cat-card__chevron { background: var(--yellow); border-color: var(--yellow); color: var(--grey-900); }

/* ── Standard card ─────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 2px;
  padding: 1.75rem;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.card:has(.card__link):hover, a.card:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--grey-700); margin-bottom: 1rem; }
.card .card__link {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: 0.82rem; letter-spacing: 0.12em; color: var(--green);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.card .card__icon {
  width: 48px; height: 48px;
  background: var(--green); color: var(--yellow);
  display: grid; place-items: center;
  margin-bottom: 1.25rem;
  border-radius: 2px;
}
.card--brand { display: flex; flex-direction: column; }
.card--brand .card__logo {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}
.card--brand .card__logo img {
  height: 100%;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
.card--brand h3 { margin-bottom: 0.5rem; }
.card--brand .card__link { margin-top: auto; padding-top: 0.5rem; }

/* ── Feature row (image + text) ────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.feature-row--reverse .feature-row__media { order: 2; }
.feature-row__media {
  aspect-ratio: 4/3; background: var(--grey-200);
  background-size: cover; background-position: center;
  border-radius: 2px;
  position: relative;
}
.feature-row__grass {
  position: absolute;
  left: -8%;
  bottom: -10%;
  width: 66%;
  height: auto;
  pointer-events: none;
  z-index: 2;
}
.feature-row__body h2 { margin-bottom: 1rem; }
@media (max-width: 840px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row--reverse .feature-row__media { order: 0; }
}

/* ── Stats strip ───────────────────────────────────────── */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px; background: var(--grey-200);
  border-block: 1px solid var(--grey-200);
}
.stats__item { background: var(--white); padding: 2rem 1.5rem; text-align: center; }
.stats__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); color: var(--green); line-height: 1; }
.stats__label { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.12em; color: var(--grey-700); margin-top: 0.5rem; }

/* ── Brand logo slider ─────────────────────────────────── */
.brand-strip {
  background: var(--white);
  padding: 2.5rem 0;
  border-block: 1px solid var(--grey-200);
  overflow: hidden;
}
.brand-strip__head {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: var(--grey-500);
  margin-bottom: 1.5rem;
}
.brand-track {
  display: flex; gap: 3rem;
  width: max-content;
  animation: brand-scroll 38s linear infinite;
}
.brand-strip:hover .brand-track { animation-play-state: paused; }
.brand-logo {
  flex-shrink: 0;
  height: 64px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 1.25rem;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  position: relative;
  opacity: 0.85;
}
.brand-logo img {
  height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.brand-logo:hover { opacity: 1; transform: scale(1.05); }
.brand-logo small {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin-top: 2px;
  opacity: 0.7;
}
@keyframes brand-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Testimonials ──────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 2rem 1.75rem;
  border-radius: 2px;
  display: flex; flex-direction: column;
  position: relative;
}
.testimonial__stars { color: var(--yellow); font-size: 1rem; letter-spacing: 0.15em; margin-bottom: 0.75rem; }
.testimonial__text {
  font-size: 1.02rem; line-height: 1.55; color: var(--grey-900);
  margin-bottom: 1.25rem; font-style: normal;
}
.testimonial__author { margin-top: auto; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.85rem; color: var(--grey-900); }
.testimonial__loc { display: block; font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 0.85rem; color: var(--grey-500); margin-top: 2px; }

/* ── FAQ ──────────────────────────────────────────────── */
.faq-list { list-style: none; padding: 0; }
.faq-item { border-bottom: 1px solid var(--grey-200); }
.faq-item details { padding: 1.25rem 0; }
.faq-item summary {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.02em; font-size: 1.05rem;
  color: var(--grey-900);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex-shrink: 0;
  font-size: 1.4rem; font-weight: 300; color: var(--green);
  transition: transform 0.25s var(--ease);
}
.faq-item details[open] summary::after { transform: rotate(45deg); }
.faq-item details[open] summary { color: var(--green); }
.faq-answer { padding-top: 1rem; color: var(--grey-700); line-height: 1.7; }

/* ── Info card / NAP ───────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 1.75rem;
  border-radius: 2px;
}
.info-card__icon { color: var(--yellow); margin-bottom: 1rem; }
.info-card h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.info-card p, .info-card address { color: var(--grey-700); font-style: normal; line-height: 1.65; }
.info-card a { color: var(--green); font-weight: 600; }
.info-card a:hover { color: var(--green-dark); text-decoration: underline; }

/* ── Contact form ──────────────────────────────────────── */
.contact-form {
  display: grid;
  gap: 1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--grey-700);
}
.form-field label .req { color: var(--green); margin-left: 2px; }
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-family: var(--font-body);
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: 2px;
  color: var(--grey-900);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11,62,24,0.12);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-consent {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.88rem; color: var(--grey-700); line-height: 1.5;
}
.form-consent input { margin-top: 4px; }
.form-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-top: 0.5rem; }
.form-note { font-size: 0.85rem; color: var(--grey-500); }
@media (max-width: 840px) {
  .contact-form-wrap { grid-template-columns: 1fr !important; }
}

/* ── Map ──────────────────────────────────────────────── */
.map-frame {
  width: 100%; aspect-ratio: 16/8;
  border: 0; display: block;
  filter: saturate(0.7) contrast(1.05);
}
.map-frame--footer {
  width: 100%;
  aspect-ratio: 4/3;
  min-height: 0;
  max-height: 144px;
  margin-top: 0.25rem;
  border-radius: 2px;
}

/* ── CTA strip ─────────────────────────────────────────── */
.cta-strip {
  background: var(--yellow);
  color: var(--grey-900);
}
.cta-strip .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: clamp(2rem, 4vw, 3rem);
}
.cta-strip h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); max-width: 28ch; color: var(--grey-900); }
.cta-strip .phone { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--grey-900); }

/* ── Product / Accessory list ──────────────────────────── */
.spec-list {
  list-style: none; padding: 0;
}
.spec-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--grey-200);
  display: flex; gap: 1rem; align-items: flex-start;
}
.spec-list li::before {
  content: ""; flex-shrink: 0;
  width: 6px; height: 6px; background: var(--yellow);
  margin-top: 0.6rem;
}
.spec-list li:last-child { border-bottom: 0; }

/* ── Pill chips ────────────────────────────────────────── */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: 999px;
  font-family: var(--font-head); font-weight: 600;
  text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.12em;
  color: var(--grey-900);
}
.chip--green { background: var(--green); color: #fff; border-color: var(--green); }

/* ── Breadcrumbs ───────────────────────────────────────── */
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  list-style: none; padding: 1rem 0; margin: 0;
  font-size: 0.82rem; color: var(--grey-500);
  font-family: var(--font-head); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.breadcrumb li + li::before { content: "/"; margin-right: 0.5rem; color: var(--grey-300); }
.breadcrumb a { color: var(--grey-500); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb [aria-current="page"] { color: var(--grey-900); }

/* ── Page banner (non-home hero) ───────────────────────── */
.page-banner {
  background: var(--black);
  color: #fff;
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: ""; position: absolute; right: -4%; top: -20%;
  width: 320px; height: 320px;
  background: var(--yellow); opacity: 0.10;
  transform: rotate(45deg);
}
.page-banner h1 { color: #fff; max-width: 18ch; font-style: italic; }
.page-banner .lead { color: rgba(255,255,255,0.82); margin-top: 1rem; max-width: 60ch; }
.page-banner .eyebrow { color: var(--yellow); }

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}
.site-footer .footer-map { padding-bottom: 2rem; }
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 3rem;
}
@media (max-width: 880px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo { height: 64px; width: auto; margin-bottom: 1rem; }
.footer-logo--secondary { height: auto; width: 240px; max-width: 100%; background: #fff; padding: 0.6rem 0.85rem; border-radius: 2px; }
.site-footer .footer-heading {
  color: #fff; font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.14em;
  margin-bottom: 1.25rem;
}
.site-footer address { color: rgba(255,255,255,0.65); font-style: normal; line-height: 1.85; font-size: 0.95rem; }
.site-footer .footer-links { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-links li { margin-bottom: 0.5rem; }
.site-footer .footer-links a {
  color: rgba(255,255,255,0.65); font-size: 0.95rem;
  transition: color 0.2s var(--ease);
}
.site-footer .footer-links a:hover { color: var(--yellow); }
.site-footer .hours-list { list-style: none; padding: 0; margin: 0; font-size: 0.95rem; }
.site-footer .hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.3rem 0; color: rgba(255,255,255,0.65); }
.site-footer .hours-list strong { color: #fff; font-weight: 600; }
.site-footer .phone-big {
  font-family: var(--font-head); font-weight: 700; font-size: 1.35rem;
  color: #fff; letter-spacing: 0.02em; display: inline-block; margin-top: 0.25rem;
}
.site-footer .phone-big:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--yellow); }

/* ── Responsive nav ────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .header-phone { display: inline-flex; }
  .nav-phone-item { display: none; }
  .site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    flex-direction: column; align-items: stretch;
    padding: calc(70px + 1rem) 1.25rem 1.5rem;
    gap: 0;
    max-height: 100vh;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.3s var(--ease);
    box-shadow: var(--shadow-md);
    z-index: 89;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav > li { width: 100%; }
  .site-nav > li > a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--grey-200);
    font-size: 1rem;
  }
  .site-nav > li > a::after { display: none; }
  .nav-cta {
    margin-top: 1rem; margin-left: 0;
    text-align: center; justify-content: center;
    border-bottom: 0 !important;
  }
}

/* ── Utilities ─────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-gap { gap: 0.75rem; }
.flex-wrap { flex-wrap: wrap; }
.flex-center { align-items: center; justify-content: center; }

/* ── Print ─────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .brand-strip, .cta-strip { display: none; }
  body { color: #000; }
}
