/* ==========================================================================
   Etrenzik Smart Home — design system
   Brand palette: black, white, grey, green
   ========================================================================== */

:root {
  /* Greens */
  --green-900: #17381A;
  --green-700: #2C6B24;
  --green-600: #35812A; /* accessible green text on white — 4.9:1 */
  --green-500: #4FA83A; /* brand fill */
  --green-400: #7CC35C;
  --green-300: #A8DA8C;
  --green-050: #EFF8EA;

  /* Neutrals */
  --ink: #0B0B0C;
  --ink-800: #1A1B1D;
  --ink-700: #2A2C2E;
  --grey-600: #55595B;
  --grey-500: #74797B;
  --grey-400: #9EA3A5;
  --grey-300: #C9CDCE;
  --grey-200: #E2E5E6;
  --grey-100: #F0F2F2;
  --grey-050: #F7F8F8;
  --white: #FFFFFF;

  /* Semantic */
  --bg: var(--white);
  --text: var(--ink-800);
  --text-muted: var(--grey-600);
  --border: var(--grey-200);
  --accent: var(--green-600);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-sm: 9px;

  --shadow-sm: 0 1px 2px rgba(11, 11, 12, .06), 0 2px 8px rgba(11, 11, 12, .04);
  --shadow-md: 0 2px 6px rgba(11, 11, 12, .07), 0 12px 32px rgba(11, 11, 12, .07);
  --shadow-lg: 0 4px 12px rgba(11, 11, 12, .09), 0 24px 60px rgba(11, 11, 12, .12);

  --header-h: 76px;
}

/* ------------------------------------------------------------------ reset */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--green-700); }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.15; letter-spacing: -.021em; font-weight: 700; color: var(--ink); }
h1 { font-size: clamp(2.15rem, 5.2vw, 3.65rem); font-weight: 800; letter-spacing: -.032em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); letter-spacing: -.026em; }
h3 { font-size: 1.16rem; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }

:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------- utilities */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--green-600); margin: 0 0 .85rem;
}
.eyebrow--light { color: var(--green-400); }

.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tint { background: var(--grey-050); border-block: 1px solid var(--border); }
.section--dark { background: var(--ink); color: var(--grey-200); }
.section--dark h2, .section--dark h3 { color: #fff; }

.section__head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section__head h2 { margin-bottom: 0; }
.section__head--light h2 { color: #fff; }

/* ------------------------------------------------------------------ button */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .82rem 1.5rem;
  font-family: inherit; font-size: .95rem; font-weight: 600; line-height: 1.2;
  border-radius: 999px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--green-600); border-color: var(--green-600); color: #fff; }
.btn--primary:hover { background: var(--green-700); border-color: var(--green-700); color: #fff; box-shadow: var(--shadow-md); }

.btn--outline { background: transparent; border-color: var(--grey-300); color: var(--ink); }
.btn--outline:hover { border-color: var(--green-600); color: var(--green-700); background: var(--green-050); }

.btn--ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.35); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; color: #fff; }

.btn--sm { padding: .6rem 1.1rem; font-size: .875rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1.02rem; }
.btn--block { display: flex; width: 100%; }

/* ------------------------------------------------------------------- logo */

.logo { display: inline-flex; align-items: center; gap: .6rem; }
.logo__mark { width: 32px; height: 32px; flex: none; }
.logo__word {
  font-weight: 800; font-size: 1.03rem; letter-spacing: -.02em; line-height: 1.1;
  display: flex; flex-direction: column;
}
.logo__word em { font-style: normal; font-weight: 500; font-size: .7rem; letter-spacing: .17em; text-transform: uppercase; color: var(--green-500); }

/* ----------------------------------------------------------------- header */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: var(--header-h);
}
.site-header__logo { text-decoration: none; flex: none; }

.site-nav { margin-left: auto; }
.site-nav__list { display: flex; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.site-nav__list a {
  display: block; padding: .55rem .85rem; border-radius: 999px;
  font-size: .94rem; font-weight: 600; color: var(--ink-700); text-decoration: none;
  transition: background-color .15s ease, color .15s ease;
}
.site-nav__list a:hover { background: var(--grey-100); color: var(--ink); }
.site-nav__list a[aria-current="page"] { color: var(--green-700); background: var(--green-050); }

.site-header__actions { display: flex; align-items: center; gap: 1rem; flex: none; }
.site-header__phone { font-weight: 700; font-size: .94rem; color: var(--ink); text-decoration: none; }
.site-header__phone:hover { color: var(--green-700); }

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid var(--border); border-radius: 10px;
  cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 19px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s 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); }

/* megamenu / mobile nav */
.megamenu {
  border-top: 1px solid var(--border);
  background: var(--white);
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
}
.megamenu[hidden] { display: none; }
.megamenu__inner {
  display: grid; gap: 2rem clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  padding-block: 2rem 2.5rem;
}
.megamenu__title { font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--green-600); margin: 0 0 .9rem; }
.megamenu__inner ul { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: .15rem; }
.megamenu__inner ul a {
  display: flex; align-items: center; gap: .6rem;
  padding: .5rem .6rem; margin-left: -.6rem; border-radius: 8px;
  font-size: .92rem; font-weight: 500; color: var(--ink-700); text-decoration: none;
}
.megamenu__inner ul a:hover { background: var(--green-050); color: var(--green-700); }
.megamenu__inner .icon { width: 18px; height: 18px; flex: none; color: var(--green-500); }
.megamenu__all { font-size: .85rem; font-weight: 700; text-decoration: none; }
.megamenu__cta { margin-top: .5rem; }
.megamenu__col--contact { border-left: 1px solid var(--border); padding-left: clamp(1.5rem, 3vw, 2.25rem); }

@media (max-width: 940px) {
  .site-nav, .site-header__actions { display: none; }
  .nav-toggle { display: flex; }
  .megamenu__col--contact { border-left: 0; padding-left: 0; border-top: 1px solid var(--border); padding-top: 1.5rem; }
}

/* -------------------------------------------------------------------- hero */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--grey-300);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(70rem 34rem at 82% -12%, rgba(79,168,58,.30), transparent 62%),
    radial-gradient(46rem 26rem at 6% 108%, rgba(79,168,58,.14), transparent 64%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; right: -12%; top: -30%;
  width: 46rem; height: 46rem;
  background: linear-gradient(135deg, rgba(124,195,92,.14), transparent 55%);
  transform: rotate(18deg); border-radius: 40%;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; padding-block: clamp(3.5rem, 9vw, 7rem); }
/* Keep the hero on the same left edge as body content, but cap line length. */
.hero__inner > * { max-width: 50rem; }
.hero h1 { color: #fff; margin-bottom: .55em; }
.hero__body { font-size: clamp(1.03rem, 1.9vw, 1.22rem); color: var(--grey-300); max-width: 42rem; margin-bottom: 1.6rem; }
.hero__tagline {
  font-size: 1.06rem; font-weight: 700; letter-spacing: -.01em; color: var(--green-400);
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero--home .hero__inner { padding-block: clamp(4.5rem, 12vw, 9rem); }
.hero--service .hero__inner, .hero--inner .hero__inner { padding-block: clamp(3rem, 7vw, 5.25rem); }

/* ------------------------------------------------------------ breadcrumbs */

.breadcrumbs { background: var(--grey-050); border-bottom: 1px solid var(--border); }
.breadcrumbs ol {
  display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0; padding: .85rem 0;
  font-size: .84rem; color: var(--text-muted);
}
.breadcrumbs li + li::before { content: '/'; margin-right: .5rem; color: var(--grey-400); }
.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--green-700); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ------------------------------------------------------------------ props */

.props { display: grid; gap: 1.75rem clamp(1.5rem, 3vw, 2.75rem); grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.prop { padding-top: 1.4rem; border-top: 3px solid var(--green-500); }
.prop h3 { font-size: 1.24rem; letter-spacing: -.02em; }
.prop p { color: var(--text-muted); margin: 0; font-size: .97rem; }

/* -------------------------------------------------------------- divisions */

.divisions { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); }
.division-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.division-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--green-300); }
.division-card h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); letter-spacing: -.025em; }
.division-card__body { color: var(--text-muted); font-size: .97rem; }
.division-card__list {
  list-style: none; margin: .5rem 0 1.75rem; padding: 0;
  display: grid; gap: .5rem; font-size: .92rem;
}
.division-card__list li { position: relative; padding-left: 1.5rem; color: var(--ink-700); }
.division-card__list li::before {
  content: ''; position: absolute; left: 0; top: .5em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--green-500);
}
.division-card .btn { margin-top: auto; align-self: flex-start; }

/* ------------------------------------------------------------------ chips */

.chips { display: flex; flex-wrap: wrap; gap: .65rem; }
.chip {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .7rem 1.1rem .7rem .85rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 999px;
  font-size: .92rem; font-weight: 600; color: var(--ink-700); text-decoration: none;
  transition: border-color .15s ease, background-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.chip:hover { border-color: var(--green-500); background: var(--green-050); color: var(--green-700); box-shadow: var(--shadow-sm); }
.chip .icon { width: 18px; height: 18px; color: var(--green-500); flex: none; }
.chip em {
  font-style: normal; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--grey-400); padding-left: .45rem; border-left: 1px solid var(--border);
}

/* ------------------------------------------------------------------ steps */

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem clamp(1.5rem, 3vw, 2.5rem); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.step { display: flex; gap: 1rem; }
.step__num {
  font-size: .8rem; font-weight: 800; letter-spacing: .06em;
  color: var(--green-400); padding-top: .3rem; flex: none;
}
.step h3 { font-size: 1.08rem; margin-bottom: .35em; }
.step p { color: var(--grey-400); font-size: .93rem; margin: 0; }

/* ----------------------------------------------------------- service grid */

.service-grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.service-card {
  position: relative;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.service-card:hover { border-color: var(--green-400); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card__icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--green-050); color: var(--green-600);
  display: grid; place-items: center; margin-bottom: 1.1rem;
}
.service-card__icon .icon { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.14rem; margin-bottom: .5em; }
.service-card h3 a { color: var(--ink); text-decoration: none; }
.service-card h3 a::after { content: ''; position: absolute; inset: 0; }
.service-card p { color: var(--text-muted); font-size: .93rem; margin-bottom: 1rem; }
.service-card__more { font-size: .85rem; font-weight: 700; color: var(--green-600); }

/* ------------------------------------------------------------ service page */

.service-layout {
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}
@media (max-width: 940px) { .service-layout { grid-template-columns: 1fr; } }

.prose { max-width: 44rem; }
.prose--narrow { max-width: 46rem; }
.prose p { font-size: 1.045rem; color: var(--ink-700); }
.prose--intro p { font-size: clamp(1.05rem, 2vw, 1.16rem); }
.prose-block { margin-bottom: 2.75rem; }
.prose-block h2 { margin-bottom: .6em; }

.service-h2 { margin-top: 3rem; margin-bottom: 1.5rem; font-size: clamp(1.35rem, 2.6vw, 1.7rem); }

.features { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.feature {
  padding: 1.35rem 1.4rem;
  background: var(--grey-050); border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.feature h3 { font-size: 1.02rem; margin-bottom: .45em; }
.feature p { font-size: .91rem; color: var(--text-muted); margin: 0; }

.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; max-width: 42rem; }
.checklist li { position: relative; padding-left: 2rem; font-size: .98rem; color: var(--ink-700); }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: .34em;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-050);
  border: 1.5px solid var(--green-400);
}
.checklist li::after {
  content: ''; position: absolute; left: 5.5px; top: .68em;
  width: 6px; height: 3px;
  border-left: 2px solid var(--green-600); border-bottom: 2px solid var(--green-600);
  transform: rotate(-45deg);
}

/* aside cards */
.service-aside { position: sticky; top: calc(var(--header-h) + 1.5rem); display: grid; gap: 1.25rem; }
@media (max-width: 940px) { .service-aside { position: static; } }

.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.card--cta { background: var(--ink); border-color: var(--ink); color: var(--grey-300); }
.card--cta h3 { color: #fff; font-size: 1.2rem; }
.card--cta p { font-size: .92rem; color: var(--grey-400); }
.card--muted { background: var(--grey-050); }
.card__eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--green-500); margin: 0 0 .6rem; }
.card__phone { display: block; text-align: center; margin-top: .85rem; font-weight: 700; color: var(--green-400); text-decoration: none; }
.card__phone:hover { color: var(--green-300); }
.card__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .1rem; }
.card__list a {
  display: block; padding: .45rem .55rem; margin-left: -.55rem; border-radius: 7px;
  font-size: .91rem; font-weight: 500; color: var(--ink-700); text-decoration: none;
}
.card__list a:hover { background: var(--green-050); color: var(--green-700); }

/* related */
.related { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.related__item {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: 1.25rem 1.35rem;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  text-decoration: none; color: var(--text-muted); font-size: .89rem;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.related__item:hover { border-color: var(--green-400); box-shadow: var(--shadow-sm); color: var(--text-muted); }
.related__item .icon { width: 22px; height: 22px; color: var(--green-500); flex: none; margin-top: .1rem; }
.related__item strong { display: block; color: var(--ink); font-size: .99rem; margin-bottom: .25rem; }

/* --------------------------------------------------------------- cta band */

.cta-band { background: var(--green-600); color: #fff; }
.cta-band__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.75rem; padding-block: clamp(2.75rem, 5vw, 4rem);
}
.cta-band h2 { color: #fff; max-width: 22ch; margin-bottom: .35em; }
.cta-band p { color: rgba(255,255,255,.88); max-width: 46ch; margin: 0; font-size: .99rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.cta-band .btn--primary { background: #fff; border-color: #fff; color: var(--green-700); }
.cta-band .btn--primary:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ------------------------------------------------------------ contact page */

.contact-layout {
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
}
@media (max-width: 940px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-intro { color: var(--text-muted); max-width: 40rem; }
.contact-aside { display: grid; gap: 1.25rem; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.contact-list li { display: grid; gap: .1rem; font-size: .97rem; }
.contact-list span { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-400); }
.contact-list a { font-weight: 600; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

/* ------------------------------------------------------------------- form */

.form { margin-top: 1.75rem; max-width: 44rem; }
.form__row { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; margin-bottom: 1.1rem; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }

.field { display: grid; gap: .4rem; margin-bottom: 1.1rem; border: 0; padding: 0; }
.form__row .field { margin-bottom: 0; }
.field--full { margin-bottom: 1.4rem; }
.field label, .field legend {
  font-size: .85rem; font-weight: 600; color: var(--ink); padding: 0;
}
.field label span[aria-hidden] { color: var(--green-600); }
.field__opt { font-weight: 400; color: var(--grey-500); }

.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field select, .field textarea {
  width: 100%; padding: .72rem .9rem;
  font-family: inherit; font-size: .97rem; color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--grey-300); border-radius: var(--radius-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 8rem; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2355595B' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .95rem center; padding-right: 2.4rem; }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(79,168,58,.18);
}
.field[data-invalid] input, .field[data-invalid] select { border-color: #C0392B; }
.field__error { margin: 0; font-size: .82rem; font-weight: 600; color: #C0392B; }

.checks { display: grid; gap: .5rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-top: .3rem; }
.check { display: flex; align-items: center; gap: .55rem; font-size: .92rem; font-weight: 500; color: var(--ink-700); cursor: pointer; }
.check input { width: 17px; height: 17px; accent-color: var(--green-600); flex: none; margin: 0; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__note { font-size: .82rem; color: var(--grey-500); margin: .9rem 0 0; }
.form__status {
  margin: 1rem 0 0; padding: .85rem 1rem; border-radius: var(--radius-sm);
  font-size: .92rem; font-weight: 600;
}
.form__status[data-state="ok"] { background: var(--green-050); color: var(--green-700); border: 1px solid var(--green-300); }
.form__status[data-state="error"] { background: #FDECEA; color: #96271A; border: 1px solid #F0B7B0; }

/* ----------------------------------------------------------------- footer */

.site-footer { background: var(--ink); color: var(--grey-400); padding-top: clamp(3rem, 6vw, 4.5rem); }
.site-footer__inner {
  display: grid; gap: 2.5rem clamp(1.5rem, 3vw, 3rem);
  grid-template-columns: 1.6fr repeat(auto-fit, minmax(150px, 1fr));
  padding-bottom: 3rem;
}
@media (max-width: 820px) { .site-footer__inner { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); } }

.site-footer__brand { max-width: 26rem; }
.site-footer__tagline { color: var(--green-400); font-weight: 700; margin: 1rem 0 .5rem; }
.site-footer__blurb { font-size: .9rem; color: var(--grey-500); }
.site-footer__contact { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: .35rem; font-size: .92rem; }
.site-footer__contact a { color: var(--grey-300); text-decoration: none; font-weight: 600; }
.site-footer__contact a:hover { color: var(--green-400); }

.site-footer__heading { font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--green-500); margin: 0 0 .9rem; }
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.site-footer__col a { font-size: .89rem; color: var(--grey-400); text-decoration: none; }
.site-footer__col a:hover { color: #fff; }

.site-footer__legal {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  padding-block: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .83rem; color: var(--grey-500);
}
.site-footer__legal p { margin: 0; }
.site-footer__legal a { color: var(--grey-400); text-decoration: none; }
.site-footer__legal a:hover { color: var(--green-400); }

/* --------------------------------------------------------------- printing */

@media print {
  .site-header, .site-footer, .cta-band, .service-aside, .breadcrumbs { display: none; }
  .hero { background: none; color: #000; }
  .hero h1, body { color: #000; }
}
