/* ============================================================
   CRAFT & TRADE — Shared Stylesheet
   Editorial plumbing website, Ireland
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --cream:       #F5F0E8;
  --cream-dark:  #EDE6D8;
  --charcoal:    #1A1714;
  --charcoal-mid:#2C2622;
  --terra:       #C85A2A;
  --terra-dark:  #A6461E;
  --stone:       #7A6E60;
  --stone-light: #B5AD9F;
  --white:       #FDFAF5;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 10rem;

  --max-w: 1160px;
  --nav-h: 72px;

  --transition: 0.22s ease;
  --radius: 2px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.t-display {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.02em;
}

.t-heading {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.t-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.t-body  { font-size: 1rem; line-height: 1.72; }
.t-large { font-size: 1.2rem; line-height: 1.6; }
.t-small { font-size: 0.88rem; line-height: 1.6; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section { padding-block: var(--space-xl); }
.section--sm { padding-block: var(--space-lg); }
.section--lg { padding-block: var(--space-2xl); }

/* ============================================================
   HORIZONTAL RULE DIVIDER (editorial accent)
   ============================================================ */
.rule {
  border: none;
  border-top: 1px solid var(--stone-light);
  margin-block: var(--space-md);
}
.rule--heavy {
  border-top-width: 3px;
  border-color: var(--charcoal);
}
.rule--terra {
  border-top-width: 3px;
  border-color: var(--terra);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}
.btn--primary:hover {
  background: var(--terra-dark);
  border-color: var(--terra-dark);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn--outline:hover {
  background: var(--cream);
  color: var(--charcoal);
}

.btn--dark {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.btn--dark:hover {
  background: var(--charcoal-mid);
  border-color: var(--charcoal-mid);
}

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--terra);
  border-bottom: 2px solid var(--terra);
  padding-bottom: 2px;
  transition: gap var(--transition), opacity var(--transition);
}
.link-arrow:hover { gap: 0.7rem; opacity: 0.8; }
.link-arrow--light { color: var(--cream); border-color: var(--cream); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--cream);
  display: flex;
  align-items: center;
  transition: border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { border-bottom-color: var(--stone-light); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  line-height: 1;
}
.nav__wordmark span { color: var(--terra); }

.nav__links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--charcoal); }

.nav__cta { flex-shrink: 0; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 1px;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  border-top: 1px solid var(--stone-light);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 99;
}
.nav__drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav__drawer a {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding-block: var(--space-xs);
  border-bottom: 1px solid var(--cream-dark);
}

/* ============================================================
   PAGE WRAPPER (offset for fixed nav)
   ============================================================ */
.page { padding-top: var(--nav-h); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  min-height: calc(92vh - var(--nav-h));
  display: flex;
  align-items: center;
}

/* Diagonal stripe */
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -8%;
  width: 44%;
  height: 130%;
  background: var(--terra);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-md);
  padding-block: var(--space-xl);
}

.hero__content { max-width: 620px; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}
.hero__eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--terra);
}

.hero__headline {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  margin-bottom: var(--space-md);
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--stone);
  max-width: 480px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero__phone {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}
.hero__phone-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.hero__phone-number:hover { color: var(--terra); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  background: var(--charcoal);
  color: var(--cream);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.08);
}

.stats__item {
  padding: var(--space-lg) var(--space-md);
  border-right: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid transparent;
  transition: border-color var(--transition);
}
.stats__item:hover { border-top-color: var(--terra); }

.stats__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--terra);
  margin-bottom: 0.5rem;
}

.stats__label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-light);
}

/* ============================================================
   SERVICES TEASER / NUMBERED LIST
   ============================================================ */
.services-list { }

.services-list__item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: var(--space-md);
  align-items: start;
  padding-block: var(--space-lg);
  border-bottom: 1px solid var(--stone-light);
  transition: background var(--transition);
}
.services-list__item:first-child { border-top: 1px solid var(--stone-light); }

.services-list__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 0.85;
  color: var(--cream-dark);
  user-select: none;
  transition: color var(--transition);
}
.services-list__item:hover .services-list__num { color: var(--terra); }

.services-list__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.services-list__text {
  color: var(--stone);
  max-width: 520px;
  line-height: 1.7;
}

.services-list__cta { padding-top: 0.25rem; }

/* ============================================================
   PULL QUOTE / TESTIMONIAL
   ============================================================ */
.pullquote {
  background: var(--charcoal-mid);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.pullquote::before {
  content: '\201C';
  position: absolute;
  top: -0.3em;
  left: var(--space-md);
  font-family: var(--font-display);
  font-size: clamp(12rem, 20vw, 20rem);
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.pullquote__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.pullquote__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
}

.pullquote__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.pullquote__dash {
  width: 30px;
  height: 2px;
  background: var(--terra);
  flex-shrink: 0;
}
.pullquote__name {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-light);
}

/* Testimonial nav dots */
.pullquote__nav {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--space-md);
}
.pullquote__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--stone);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  padding: 0;
}
.pullquote__dot.active { background: var(--terra); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--terra);
  color: var(--white);
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cta-strip__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.25;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: var(--charcoal);
  color: var(--cream);
  padding-block: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 4px;
  background: var(--terra);
}

.page-header__label {
  color: var(--terra);
  margin-bottom: var(--space-sm);
}

.page-header__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.page-header__sub {
  margin-top: var(--space-sm);
  font-size: 1.1rem;
  color: var(--stone-light);
  max-width: 560px;
}

/* ============================================================
   SERVICES PAGE — detailed cards (editorial row)
   ============================================================ */
.service-block {
  padding-block: var(--space-lg);
  border-bottom: 1px solid var(--stone-light);
}
.service-block:first-of-type { border-top: 3px solid var(--terra); }

.service-block__header {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.service-block__index {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--terra);
}
.service-block__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
}

.service-block__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.service-block__when {
  padding: var(--space-sm) var(--space-md);
  border-left: 3px solid var(--terra);
  background: var(--cream-dark);
}
.service-block__when-title {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.5rem;
}

/* ============================================================
   ABOUT PAGE — split layout
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.about-split__image {
  background: var(--charcoal-mid);
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.about-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.about-split__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--charcoal-mid);
}

.about-split__content {
  padding: var(--space-xl) var(--space-lg);
  background: var(--cream);
}

.about-big-stat {
  background: var(--terra);
  color: var(--white);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}
.about-big-stat__number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.credentials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 3px solid var(--charcoal);
}
.credentials-row__item {
  padding: var(--space-md);
  border-right: 1px solid var(--stone-light);
}
.credentials-row__item:last-child { border-right: none; }
.credentials-row__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* ============================================================
   AREAS PAGE
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.area-block {
  padding: var(--space-lg) var(--space-md);
  border-bottom: 1px solid var(--stone-light);
  border-right: 1px solid var(--stone-light);
}
.area-block:nth-child(even) { border-right: none; }

.area-block__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.area-block__name span {
  color: var(--terra);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  display: block;
  margin-bottom: 0.25rem;
}

.map-placeholder {
  background: var(--charcoal-mid);
  aspect-ratio: 16 / 6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 3px solid var(--terra);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: start;
}

.contact-form { }

.form-group {
  margin-bottom: var(--space-md);
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid var(--stone-light);
  border-radius: var(--radius);
  color: var(--charcoal);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--terra);
}
.form-group textarea { min-height: 130px; }

.contact-aside { }
.contact-phone-block {
  padding: var(--space-md);
  background: var(--charcoal);
  color: var(--cream);
  margin-bottom: var(--space-md);
  border-top: 3px solid var(--terra);
}
.contact-phone-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--terra);
  display: block;
  margin-top: 0.5rem;
  transition: opacity var(--transition);
}
.contact-phone-num:hover { opacity: 0.8; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin-top: var(--space-sm);
}
.hours-table tr { border-bottom: 1px solid var(--stone-light); }
.hours-table td { padding: 0.6rem 0; }
.hours-table td:last-child { text-align: right; color: var(--stone); }

.emergency-banner {
  background: var(--terra);
  color: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius);
}
.emergency-banner p { font-size: 0.9rem; opacity: 0.9; margin-top: 0.4rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding-block: var(--space-lg);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand .nav__wordmark { color: var(--cream); font-size: 1.5rem; }
.footer__brand .nav__wordmark span { color: var(--terra); }
.footer__tagline {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--stone-light);
  line-height: 1.6;
}

.footer__col-title {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: var(--space-sm);
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a {
  font-size: 0.92rem;
  color: var(--stone-light);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--cream); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  font-size: 0.8rem;
  color: var(--stone);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ============================================================
   DIAGONAL SECTION DIVIDER
   ============================================================ */
.clip-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  margin-bottom: -3vw;
  position: relative;
  z-index: 1;
}
.clip-top {
  clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
  margin-top: -3vw;
  padding-top: calc(var(--space-xl) + 3vw);
  position: relative;
  z-index: 0;
}

/* ============================================================
   EMERGENCY CALLOUT BLOCK
   ============================================================ */
.emergency-callout {
  background: var(--charcoal);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-left: 4px solid var(--terra);
  flex-wrap: wrap;
}
.emergency-callout__text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}
.emergency-callout__text p {
  font-size: 0.9rem;
  color: var(--stone-light);
  margin-top: 0.3rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-split__content { padding: var(--space-lg) var(--space-md); }
  .service-block__body { grid-template-columns: 1fr; }
  .credentials-row { grid-template-columns: 1fr; }
  .credentials-row__item { border-right: none; border-bottom: 1px solid var(--stone-light); }
}

@media (max-width: 768px) {
  :root { --space-xl: 4.5rem; --space-2xl: 6rem; }

  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero::after { width: 60%; right: -15%; }
  .hero__content { max-width: 100%; }

  .services-list__item {
    grid-template-columns: 64px 1fr;
    gap: var(--space-sm);
  }
  .services-list__cta {
    grid-column: 2;
    padding-top: 0;
  }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }

  .cta-strip__inner { flex-direction: column; text-align: center; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .areas-grid { grid-template-columns: 1fr; }
  .area-block { border-right: none; }

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

  .about-split__image { min-height: 280px; }
  .about-split__content { padding: var(--space-md); }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .services-list__item { grid-template-columns: 50px 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero::after { display: none; }
  .hero__phone { flex-direction: column; gap: 0.4rem; }
}
