/* ============================================================
   YOUNG'S PLUMBING AND HEATING — styles.css
   Premium one-page trade site · HTML5 + modern CSS3 only
   Palette: deep charcoal slate · crisp whites · safety orange
   No external dependencies. Drop-in ready for static hosting.
   ============================================================ */

/* ------------------------------------------------------------
   01. DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
  /* Ink — deep charcoal slate */
  --ink-950: #0B0E13;
  --ink-900: #10141B;
  --ink-800: #161C25;
  --ink-700: #1F2733;
  --ink-600: #2A3442;

  /* Slate — muted text & borders */
  --slate-500: #47536A;
  --slate-400: #6B7688;
  --mist-400: #B9C4D6;
  --mist-300: #D8DFEA;
  --mist-200: #E3E8F0;
  --mist-100: #EEF1F6;

  /* Paper — crisp whites */
  --paper: #F7F9FC;
  --white: #FFFFFF;

  /* Accent — high-trust safety orange/amber */
  --accent: #F97316;
  --accent-deep: #C2410C;
  --accent-soft: #FFF1E6;
  --amber: #F59E0B;

  /* Type */
  --font-sans: "Avenir Next", Avenir, "Segoe UI Variable", "Segoe UI",
    "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;

  /* Shape & depth */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(16, 20, 27, 0.05), 0 10px 28px -14px rgba(16, 20, 27, 0.14);
  --shadow-md: 0 2px 4px rgba(16, 20, 27, 0.05), 0 18px 44px -16px rgba(16, 20, 27, 0.2);
  --shadow-lg: 0 4px 8px rgba(16, 20, 27, 0.06), 0 32px 64px -20px rgba(16, 20, 27, 0.28);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --speed: 0.3s;

  /* Layout */
  --container: 1160px;
  --header-h: 72px;
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

ul[role="list"] {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--accent);
  color: var(--ink-950);
}

:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.55);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip link (visible only on keyboard focus) */
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  padding: 10px 18px;
  background: var(--ink-900);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top var(--speed) var(--ease);
}

.skip-link:focus {
  top: 0;
}

/* Accessible hide helper */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------
   03. LAYOUT UTILITIES
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding-block: clamp(72px, 9vw, 116px);
}

/* Anchors clear the sticky header */
section[id],
footer[id] {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
}

.eyebrow--light {
  color: var(--accent);
}

.icon {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Section headers (centred) */
.section-head {
  max-width: 660px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}

.section-head .eyebrow::before {
  display: none;
}

.section-head h2 {
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink-900);
}

.section-head__sub {
  margin-top: 16px;
  font-size: 16.5px;
  color: var(--slate-500);
}

/* ------------------------------------------------------------
   04. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform var(--speed) var(--ease),
    background-color var(--speed) var(--ease),
    border-color var(--speed) var(--ease),
    color var(--speed) var(--ease),
    box-shadow var(--speed) var(--ease);
}

.btn .icon {
  transition: transform var(--speed) var(--ease);
}

.btn:hover .icon {
  transform: translateX(4px);
}

.btn--primary {
  background: var(--accent);
  color: var(--ink-950);
  box-shadow: 0 10px 24px -10px rgba(249, 115, 22, 0.6);
}

.btn--primary:hover {
  background: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -12px rgba(249, 115, 22, 0.65);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 15px 28px;
  font-size: 16px;
}

.btn--block {
  width: 100%;
}

/* ------------------------------------------------------------
   05. TOP UTILITY BAR
   ------------------------------------------------------------ */
.topbar {
  background: var(--ink-950);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  font-weight: 500;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
  padding-block: 8px;
}

.topbar__area,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar__area .icon {
  color: var(--accent);
}

.topbar__promise {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
}

.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  color: var(--white);
  transition: color var(--speed) var(--ease);
}

.topbar__phone:hover {
  color: var(--accent);
}

.topbar__phone .icon {
  color: var(--accent);
}

@media (max-width: 639px) {
  .topbar__area {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }
}

/* ------------------------------------------------------------
   06. STICKY HEADER & NAV
   ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: 1px solid var(--mist-200);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo__mark {
  width: 42px;
  height: 42px;
  transition: transform var(--speed) var(--ease);
}

.logo:hover .logo__mark {
  transform: rotate(-4deg) scale(1.04);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink-900);
}

.logo__sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.logo--light .logo__name {
  color: var(--white);
}

.logo--light .logo__sub {
  color: rgba(255, 255, 255, 0.55);
}

/* Desktop nav */
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav__list a:not(.btn) {
  position: relative;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-700);
  padding-block: 6px;
  transition: color var(--speed) var(--ease);
}

.site-nav__list a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--speed) var(--ease);
}

.site-nav__list a:not(.btn):hover {
  color: var(--ink-900);
}

.site-nav__list a:not(.btn):hover::after {
  transform: scaleX(1);
}

.site-nav__cta {
  padding: 10px 18px;
  font-size: 14px;
}

/* Mobile nav (pure CSS) */
.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background-color var(--speed) var(--ease);
}

.nav-burger:hover {
  background: var(--mist-100);
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: var(--ink-900);
  transition:
    transform var(--speed) var(--ease),
    opacity var(--speed) var(--ease);
}

@media (max-width: 859px) {
  .nav-burger {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: var(--white);
    border-bottom: 1px solid var(--mist-200);
    box-shadow: var(--shadow-md);
  }

  .nav-toggle:checked ~ .site-nav {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
  }

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

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

  .site-nav__list a:not(.btn) {
    display: block;
    padding: 14px 4px;
    font-size: 16px;
  }

  .site-nav__list a:not(.btn)::after {
    display: none;
  }

  .site-nav__cta {
    margin-top: 14px;
    width: 100%;
    padding: 14px 20px;
  }

  /* Hamburger → X */
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .nav-toggle:checked ~ .nav-burger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .nav-burger span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
}

/* ------------------------------------------------------------
   07. HERO
   ------------------------------------------------------------ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 88% -12%, rgba(249, 115, 22, 0.17), transparent 62%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink-900);
  background-size: auto, 44px 44px, 44px 44px, auto;
  color: var(--white);
  padding-block: clamp(64px, 8vw, 108px) clamp(56px, 7vw, 96px);
}

.hero__grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

.hero__title {
  font-size: clamp(36px, 5.4vw, 60px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--white);
  animation: fade-up 0.7s var(--ease) both;
}

.accent-mark {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(249, 115, 22, 0.4);
  text-decoration-thickness: 5px;
  text-underline-offset: 8px;
}

.hero__lede {
  margin-top: 26px;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  animation: fade-up 0.7s var(--ease) 0.1s both;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  animation: fade-up 0.7s var(--ease) 0.2s both;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  animation: fade-up 0.7s var(--ease) 0.3s both;
}

.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
}

.hero__badges .icon {
  color: var(--accent);
}

.hero__art {
  animation: fade-up 0.9s var(--ease) 0.15s both;
}

.hero__art svg {
  width: 100%;
  height: auto;
}

.float-card {
  transform-box: fill-box;
  transform-origin: center;
  animation: float 7s ease-in-out infinite;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.04fr 0.96fr;
    gap: 48px;
  }
}

/* ------------------------------------------------------------
   08. TRUST STRIP
   ------------------------------------------------------------ */
.truststrip {
  background: var(--white);
  border-bottom: 1px solid var(--mist-200);
}

.truststrip__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding-block: 30px;
}

.truststrip__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.truststrip__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  flex-shrink: 0;
}

.truststrip__icon .icon {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.truststrip__text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.truststrip__text strong {
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--ink-900);
}

.truststrip__text small {
  font-size: 12.5px;
  color: var(--slate-400);
}

@media (min-width: 900px) {
  .truststrip__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-block: 34px;
  }

  .truststrip__item + .truststrip__item {
    padding-left: 24px;
    border-left: 1px solid var(--mist-200);
  }
}

/* ------------------------------------------------------------
   09. ABOUT
   ------------------------------------------------------------ */
.about {
  background: var(--paper);
}

.about__grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

.about__copy h2 {
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink-900);
  max-width: 480px;
}

.about__copy > p {
  margin-top: 20px;
  font-size: 16px;
  color: var(--slate-500);
  max-width: 540px;
}

.about__points {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.about__points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-700);
}

.about__points .icon {
  margin-top: 3px;
  color: var(--accent);
  stroke-width: 2.6;
}

/* Dark stat card */
.about__card {
  background:
    radial-gradient(420px 300px at 90% 0%, rgba(249, 115, 22, 0.14), transparent 65%),
    var(--ink-800);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

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

.about__stats li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about__stats li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about__stat-num {
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
  min-width: 110px;
}

.about__stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
}

.about__quote {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about__quote p {
  font-size: 17.5px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
}

.about__quote cite {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 920px) {
  .about__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
  }
}

/* ------------------------------------------------------------
   10. 24/7 EMERGENCY (dark feature)
   ------------------------------------------------------------ */
.emergency {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 8% 110%, rgba(249, 115, 22, 0.12), transparent 60%),
    var(--ink-900);
  color: var(--white);
}

.emergency__grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

.emergency__intro h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  max-width: 520px;
}

.emergency__lede {
  margin-top: 22px;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
}

.emergency__phone {
  margin-top: 36px;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.4);
}

.emergency__phone-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.emergency__phone-num {
  display: inline-block;
  margin-top: 6px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--accent);
  transition: color var(--speed) var(--ease);
}

.emergency__phone-num:hover {
  color: var(--amber);
}

.emergency__cards {
  display: grid;
  gap: 18px;
}

.emergency__card {
  padding: 26px 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition:
    transform var(--speed) var(--ease),
    border-color var(--speed) var(--ease),
    background-color var(--speed) var(--ease);
}

.emergency__card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.45);
  background: rgba(255, 255, 255, 0.065);
}

.emergency__icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.14);
  color: var(--accent);
}

.emergency__icon .icon {
  width: 22px;
  height: 22px;
}

.emergency__card h3 {
  font-size: 17.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
}

.emergency__card p {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

@media (min-width: 960px) {
  .emergency__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
  }
}

/* ------------------------------------------------------------
   11. SERVICES
   ------------------------------------------------------------ */
.services {
  background: var(--white);
}

.services__grid {
  display: grid;
  gap: 22px;
}

.service-card {
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--mist-200);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--speed) var(--ease),
    box-shadow var(--speed) var(--ease),
    border-color var(--speed) var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--mist-300);
}

.service-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  flex-shrink: 0;
}

.service-card__icon .icon {
  width: 24px;
  height: 24px;
}

.service-card__head h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}

.service-card__blurb {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate-500);
  margin-bottom: 18px;
}

.service-list {
  display: grid;
  gap: 9px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-600);
}

.service-list .icon {
  margin-top: 3px;
  width: 15px;
  height: 15px;
  color: var(--accent);
  stroke-width: 2.8;
}

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

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

/* ------------------------------------------------------------
   12. RECENT WORK (gallery)
   ------------------------------------------------------------ */
.projects {
  background: var(--mist-100);
}

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

.project-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--mist-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--speed) var(--ease),
    box-shadow var(--speed) var(--ease);
}

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

.project-card__art {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 26px;
  background:
    radial-gradient(240px 160px at 80% 10%, rgba(249, 115, 22, 0.06), transparent 70%),
    linear-gradient(135deg, #F2F5FA, #E9EDF4);
  border-bottom: 1px solid var(--mist-100);
}

.project-card__art svg {
  width: 86%;
  height: auto;
  transition: transform 0.45s var(--ease);
}

.project-card:hover .project-card__art svg {
  transform: scale(1.045);
}

.project-card__body {
  padding: 20px 22px 24px;
}

.project-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-card__tag .icon {
  width: 13px;
  height: 13px;
  stroke-width: 2.4;
}

.project-card__body h3 {
  margin-top: 12px;
  font-size: 17.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}

.project-card__body > p:last-child {
  margin-top: 7px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate-500);
}

.projects__cta {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-700);
  text-align: center;
}

.projects__cta a {
  color: var(--accent-deep);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color var(--speed) var(--ease);
}

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

.projects__cta .icon {
  color: var(--accent);
}

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

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

/* ------------------------------------------------------------
   13. SERVICE AREAS
   ------------------------------------------------------------ */
.areas {
  background: var(--white);
}

.areas__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.areas__copy h2 {
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink-900);
  max-width: 520px;
}

.areas__copy > p {
  margin-top: 20px;
  font-size: 16px;
  color: var(--slate-500);
  max-width: 540px;
}

.areas__tiles {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.area-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--mist-100);
  border: 1px solid var(--mist-200);
  transition:
    background-color var(--speed) var(--ease),
    border-color var(--speed) var(--ease),
    transform var(--speed) var(--ease);
}

.area-tile:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.area-tile .icon {
  width: 20px;
  height: 20px;
  color: var(--accent-deep);
}

.area-tile__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.area-tile__text strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink-900);
}

.area-tile__text small {
  font-size: 12.5px;
  color: var(--slate-400);
}

.area-tile--home {
  background: var(--ink-900);
  border-color: var(--ink-900);
}

.area-tile--home:hover {
  background: var(--ink-800);
  border-color: var(--accent);
}

.area-tile--home .icon {
  color: var(--accent);
}

.area-tile--home .area-tile__text strong {
  color: var(--white);
}

.area-tile--home .area-tile__text small {
  color: rgba(255, 255, 255, 0.55);
}

.areas__more {
  margin-top: 26px;
  font-size: 14.5px;
  color: var(--slate-500);
}

.areas__more span {
  font-weight: 700;
  color: var(--ink-700);
}

.areas__map {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--mist-100);
  border: 1px solid var(--mist-200);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 960px) {
  .areas__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* ------------------------------------------------------------
   14. LOCAL PROOF BAND
   ------------------------------------------------------------ */
.proof {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(800px 400px at 50% -30%, rgba(249, 115, 22, 0.16), transparent 65%),
    var(--ink-950);
  color: var(--white);
  padding-block: clamp(64px, 8vw, 96px);
  text-align: center;
}

.proof__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 24px;
  max-width: 880px;
  margin: 0 auto;
}

.proof__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.proof__num {
  font-size: clamp(36px, 4.6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
}

.proof__label {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
}

.proof__line {
  max-width: 540px;
  margin: 40px auto 30px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 820px) {
  .proof__stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

/* ------------------------------------------------------------
   15. QUOTE REQUEST
   ------------------------------------------------------------ */
.quote {
  background: var(--paper);
}

.quote__grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

.quote__intro h2 {
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink-900);
}

.quote__intro > p {
  margin-top: 20px;
  font-size: 16px;
  color: var(--slate-500);
  max-width: 460px;
}

.quote__assurances {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.quote__assurances li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-700);
}

.quote__assurances .icon {
  margin-top: 3px;
  color: var(--accent);
}

.quote__phone-card {
  margin-top: 36px;
  padding: 24px 26px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--mist-200);
  box-shadow: var(--shadow-sm);
}

.quote__phone-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--slate-500);
}

.quote__phone {
  display: inline-block;
  margin-top: 6px;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--accent-deep);
  transition: color var(--speed) var(--ease);
}

.quote__phone:hover {
  color: var(--accent);
}

/* Form card */
.quote__card {
  padding: clamp(26px, 3.6vw, 42px);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--mist-200);
  box-shadow: var(--shadow-lg);
}

.quote__card-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}

.quote__card-sub {
  margin-top: 6px;
  font-size: 14px;
  color: var(--slate-400);
}

.quote-form {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.field-row {
  display: grid;
  gap: 18px;
}

@media (min-width: 560px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-700);
}

.field .req {
  color: var(--accent-deep);
}

.field .opt {
  font-weight: 500;
  color: var(--slate-400);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--mist-300);
  background: var(--white);
  font-size: 15px;
  color: var(--ink-900);
  transition:
    border-color var(--speed) var(--ease),
    box-shadow var(--speed) var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9AA5B8;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2347536A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 44px;
  cursor: pointer;
}

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

/* Honeypot (spam trap — hidden from humans & assistive tech) */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.quote-form__note {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--slate-400);
}

@media (min-width: 980px) {
  .quote__grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 64px;
  }
}

/* ------------------------------------------------------------
   16. FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background: var(--ink-950);
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__grid {
  display: grid;
  gap: 44px;
  padding-block: clamp(56px, 7vw, 84px) 48px;
}

.site-footer__tagline {
  margin-top: 20px;
  max-width: 320px;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition:
    border-color var(--speed) var(--ease),
    color var(--speed) var(--ease),
    transform var(--speed) var(--ease);
}

.site-footer__social:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.site-footer__heading {
  margin-bottom: 20px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__list {
  display: grid;
  gap: 13px;
}

.site-footer__list a,
.site-footer__list span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
}

.site-footer__list .icon {
  color: var(--accent);
}

.site-footer__list a {
  transition: color var(--speed) var(--ease);
}

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

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 22px;
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.42);
}

@media (min-width: 860px) {
  .site-footer__grid {
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 48px;
  }
}

/* ------------------------------------------------------------
   17. ANIMATIONS
   ------------------------------------------------------------ */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

/* ------------------------------------------------------------
   18. MOTION PREFERENCES & SMALL SCREENS
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .float-card {
    animation: none;
  }
}

@media (max-width: 639px) {
  .hero {
    background-position:
      0 0,
      50% 50%,
      50% 50%,
      0 0;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .truststrip__list {
    gap: 20px;
  }

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