/* ============================================================
   Legacy Gutter Co. — style.css
   Tokens, resets, layout, and shared components.
   ============================================================ */

:root {
  /* Colors */
  --color-black: #111111;
  --color-bg: #ffffff;
  --color-accent: #84b53a;
  --color-accent-dark: #6a9128;
  --color-muted: #f4f4f4;
  --color-border: #e5e5e5;
  --color-text: #2a2a2a;
  --color-text-light: #6a6a6a;
  --color-text-on-dark: #f5f5f5;

  /* Typography */
  --font-heading: "Oswald", "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3rem;
  --fs-hero: clamp(2.25rem, 5vw, 4rem);

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  /* Layout */
  --container: 1200px;
  --container-narrow: 860px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.12);
  --header-h: 160px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-accent-dark);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--color-black);
  margin: 0 0 var(--sp-4);
  text-transform: uppercase;
}

h1 {
  font-size: var(--fs-3xl);
}
h2 {
  font-size: var(--fs-2xl);
}
h3 {
  font-size: var(--fs-lg);
}

p {
  margin: 0 0 var(--sp-4);
}

ul {
  margin: 0 0 var(--sp-4);
  padding-left: var(--sp-5);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-black);
  color: var(--color-text-on-dark);
  padding: var(--sp-3) var(--sp-4);
  z-index: 100;
}
.skip-link:focus {
  left: var(--sp-3);
  top: var(--sp-3);
}

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

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--sp-8) 0;
}

.section--muted {
  background: var(--color-muted);
}

.section--dark {
  background: var(--color-black);
  color: var(--color-text-on-dark);
}

.section--dark h2,
.section--dark h3 {
  color: var(--color-text-on-dark);
}

.section__title {
  text-align: center;
  margin-bottom: var(--sp-2);
}

.section__divider {
  width: 80px;
  height: 3px;
  background: var(--color-accent);
  border: 0;
  margin: 0 auto var(--sp-6);
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s,
    transform 0.05s;
  text-decoration: none;
}

.btn:hover,
.btn:focus-visible {
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

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

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-black);
  border-color: var(--color-accent);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-on-dark);
  border-color: #fff;
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: #fff;
  color: var(--color-black);
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--color-black);
  color: var(--color-text-on-dark);
  font-size: var(--fs-xs);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: 36px;
  padding: var(--sp-2) var(--sp-5);
  max-width: var(--container);
  margin: 0 auto;
}

.topbar__call {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.topbar__call a {
  color: var(--color-accent);
  font-weight: 600;
}

.topbar__social {
  display: flex;
  gap: var(--sp-3);
  list-style: none;
  padding: 0;
  margin: 0;
}

.topbar__social a {
  color: var(--color-text-on-dark);
  display: inline-flex;
  align-items: center;
  transition: opacity 0.15s ease;
}

.topbar__social a:hover,
.topbar__social a:focus-visible {
  opacity: 0.7;
}

.topbar__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  max-width: var(--container);
  margin: 0 auto;
  min-height: var(--header-h);
}

.site-header__inner > .site-nav {
  justify-self: center;
}

.site-header__phone {
  justify-self: end;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--font-heading);
  color: var(--color-accent);
  white-space: nowrap;
  line-height: 1.1;
}

.site-header__phone-label {
  font-size: var(--fs-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-header__phone-number {
  font-size: var(--fs-2xl);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-header__phone:hover,
.site-header__phone:focus-visible {
  color: var(--color-accent-dark);
  text-decoration: none;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  max-height: 140px;
  width: auto;
}

@media (max-width: 860px) {
  .site-logo img {
    max-height: 120px;
  }
}

.site-nav {
  display: flex;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__list a {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: var(--fs-sm);
  color: var(--color-black);
  padding: var(--sp-2) 0;
  border-bottom: 2px solid transparent;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible,
.site-nav__list a[aria-current="page"] {
  color: var(--color-accent-dark);
  border-bottom-color: var(--color-accent);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: var(--sp-2);
  cursor: pointer;
}

.mobile-phone-bar {
  display: none;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-black);
  border-radius: 2px;
  position: relative;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle__bar::before {
  top: -8px;
}
.nav-toggle__bar::after {
  top: 8px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-on-dark);
  text-align: center;
  overflow: hidden;
  background: #222;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.65)
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--sp-8) var(--sp-5);
  max-width: 840px;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-3);
}

.hero__title {
  font-size: var(--fs-hero);
  color: #fff;
  margin-bottom: var(--sp-5);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero__tagline {
  font-size: var(--fs-md);
  margin-bottom: var(--sp-6);
  color: #f0f0f0;
}

/* ---------- Page hero (inner pages — shorter) ---------- */
.page-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-on-dark);
  text-align: center;
  overflow: hidden;
  background: #222;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.65)
  );
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: var(--sp-7) var(--sp-5);
  max-width: 900px;
}

.page-hero__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: var(--sp-2);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.page-hero__subtitle {
  color: #eaeaea;
  font-size: var(--fs-md);
  margin-bottom: 0;
}

/* ---------- Intro ---------- */
.intro {
  max-width: var(--container-narrow);
  margin: 0 auto;
  text-align: center;
}

.intro p {
  font-size: var(--fs-md);
  color: var(--color-text);
}

/* ---------- Prose + feature rows ---------- */
.prose {
  max-width: var(--container-narrow);
  margin: 0 auto;
  font-size: var(--fs-md);
}

.prose p {
  margin-bottom: var(--sp-5);
}

.prose blockquote {
  border-left: 4px solid var(--color-accent);
  padding: var(--sp-3) var(--sp-5);
  margin: var(--sp-5) 0;
  font-style: italic;
  color: var(--color-text-light);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
  margin-top: var(--sp-6);
}

.feature-row--reverse {
  direction: rtl;
}
.feature-row--reverse > * {
  direction: ltr;
}

.feature-row__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-row__body h2 {
  margin-bottom: var(--sp-4);
}

@media (max-width: 860px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
  .feature-row--reverse {
    direction: ltr;
  }
}

/* ---------- Services checklist ---------- */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-3) var(--sp-5);
  list-style: none;
  padding: 0;
  margin: var(--sp-5) 0 0;
}

.service-list li {
  padding-left: var(--sp-5);
  position: relative;
  color: var(--color-text);
  font-size: var(--fs-base);
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 2px;
  transform: rotate(45deg);
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}

.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-muted);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
}

.service-card__body p {
  color: var(--color-text-light);
  flex: 1;
}

.service-card__link {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  color: var(--color-accent-dark);
  margin-top: var(--sp-3);
}

/* ---------- Why us ---------- */
.why-us__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-5);
  list-style: none;
  padding: 0;
  margin: var(--sp-6) 0 0;
}

.why-us__item {
  background: var(--color-bg);
  border-left: 4px solid var(--color-accent);
  padding: var(--sp-5);
  color: var(--color-black);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--fs-sm);
  box-shadow: var(--shadow-sm);
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--color-accent);
  color: var(--color-black);
  text-align: center;
  padding: var(--sp-7) var(--sp-5);
}

.cta-strip h2 {
  color: var(--color-black);
  margin-bottom: var(--sp-4);
}

.cta-strip__phone {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  color: var(--color-black);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.cta-strip__phone:hover {
  color: #000;
  text-decoration: none;
}

/* ---------- Reviews ---------- */
.reviews {
  max-width: var(--container-narrow);
  margin: 0 auto;
  text-align: center;
}

.review-card {
  padding: var(--sp-5);
}

.review-card__quote {
  font-size: var(--fs-md);
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--sp-4);
}

.review-card__author {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-dark);
  font-size: var(--fs-sm);
}

/* ---------- Reviews grid (multi-review layout) ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}

.reviews-grid .review-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
  text-align: left;
  margin: 0;
}

.reviews-grid .review-card__quote {
  font-size: var(--fs-base);
}

.reviews-grid .review-card__stars {
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-3);
  font-size: var(--fs-md);
}

/* ---------- Contact layout ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--sp-7);
  align-items: start;
  margin-top: var(--sp-6);
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
}

.contact-form {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

@media (max-width: 640px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

.contact-form label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-black);
  margin-bottom: var(--sp-2);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-muted);
  color: var(--color-text);
  transition: border-color 0.15s, background 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--color-accent);
  background: #fff;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__field {
  margin-bottom: var(--sp-4);
}

.contact-form__status {
  margin-top: var(--sp-4);
  font-size: var(--fs-sm);
  min-height: 1.2em;
}

.contact-form__status[data-state="ok"] {
  color: var(--color-accent-dark);
}

.contact-form__status[data-state="err"] {
  color: #b33;
}

.contact-info {
  background: var(--color-black);
  color: var(--color-text-on-dark);
  padding: var(--sp-6);
  border-radius: var(--radius-lg);
}

.contact-info h3 {
  color: var(--color-accent);
  margin-bottom: var(--sp-2);
  font-size: var(--fs-sm);
  letter-spacing: 0.12em;
}

.contact-info p {
  margin-bottom: var(--sp-5);
  color: #dcdcdc;
}

.contact-info a {
  color: #fff;
}

.contact-map {
  margin-top: var(--sp-7);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.gallery-grid button {
  appearance: none;
  border: 0;
  padding: 0;
  background: var(--color-muted);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
  position: relative;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-grid button:hover img,
.gallery-grid button:focus-visible img {
  transform: scale(1.05);
}

.gallery-grid button:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: var(--sp-5);
}

.lightbox[data-open="true"] {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  border-radius: var(--radius);
}

.lightbox__btn {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__btn:hover {
  background: var(--color-accent);
  color: var(--color-black);
  border-color: var(--color-accent);
}

.lightbox__btn--close {
  top: var(--sp-5);
  right: var(--sp-5);
}
.lightbox__btn--prev {
  left: var(--sp-5);
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__btn--next {
  right: var(--sp-5);
  top: 50%;
  transform: translateY(-50%);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-black);
  color: var(--color-text-on-dark);
  padding: var(--sp-8) 0 var(--sp-5);
  font-size: var(--fs-sm);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
}

.site-footer h4 {
  color: var(--color-accent);
  font-size: var(--fs-sm);
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-3);
}

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

.site-footer li {
  margin-bottom: var(--sp-2);
}

.site-footer a {
  color: var(--color-text-on-dark);
}

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

.site-footer__payments {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  align-items: center;
}

.site-footer__payments img {
  height: 28px;
  width: auto;
  background: #fff;
  padding: 2px 6px;
  border-radius: var(--radius);
}

.site-footer__bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: var(--sp-4);
  text-align: center;
  color: #9a9a9a;
  font-size: var(--fs-xs);
}

/* ---------- Floating call button (mobile) ---------- */
.call-fab {
  position: fixed;
  right: var(--sp-4);
  bottom: var(--sp-4);
  background: var(--color-accent);
  color: var(--color-black);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--sp-3) var(--sp-5);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  z-index: 60;
  display: none;
}

.call-fab:hover {
  background: var(--color-accent-dark);
  color: #fff;
  text-decoration: none;
}

/* ============================================================
   Responsive
   ============================================================ */
/* Mobile nav breakpoint — 1024 because the nav has 7 items + a big logo. */
@media (max-width: 1024px) {
  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-header__phone {
    display: none;
  }

  .site-header__inner > .site-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    display: grid;
    grid-template-rows: 0fr;
    background: var(--color-bg);
    margin: 0 calc(-1 * var(--sp-5)) calc(-1 * var(--sp-4));
    transition: grid-template-rows 0.3s ease;
  }

  .site-nav[data-open="true"] {
    grid-template-rows: 1fr;
  }

  .site-nav__list {
    display: block;
    min-height: 0;
    overflow: hidden;
    padding: var(--sp-3) var(--sp-5);
  }

  .site-nav__list li {
    border-bottom: 1px solid var(--color-border);
  }

  .site-nav__list li:last-child {
    border-bottom: 0;
  }

  .site-nav__list a {
    display: block;
    padding: var(--sp-4) 0;
    border-bottom: 0;
  }

  .mobile-phone-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    background: var(--color-accent);
    color: var(--color-black);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: var(--sp-3) var(--sp-4);
    text-align: center;
  }

  .mobile-phone-bar__number {
    font-size: var(--fs-lg);
  }

  .mobile-phone-bar:hover,
  .mobile-phone-bar:focus-visible {
    background: var(--color-accent-dark);
    color: #fff;
    text-decoration: none;
  }
}

@media (max-width: 860px) {
  h1 {
    font-size: var(--fs-2xl);
  }
  h2 {
    font-size: var(--fs-xl);
  }

  .section {
    padding: var(--sp-7) 0;
  }

  .topbar__social {
    display: none;
  }

  .hero {
    min-height: 60vh;
  }

  .page-hero {
    min-height: 32vh;
  }

  .cta-strip__phone {
    font-size: var(--fs-xl);
  }

  .call-fab {
    display: inline-block;
  }
}
