﻿/* ==========================================================================
   Main Street Web Development
   Single stylesheet. No preprocessor, no build step.
   ========================================================================== */

/* --- Fonts ------------------------------------------------------------------
   Self-hosted Roboto, matching the brand's original type family. */

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/roboto-v29-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/roboto-v29-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/roboto-v29-latin-900.woff2") format("woff2");
}

/* --- Tokens --------------------------------------------------------------- */

:root {
  color-scheme: light;

  --paper: #ffffff;
  --paper-2: #f7f7f7;
  --surface: #ffffff;
  --ink: #1a1a1a;
  --deep: #1a1a1a;
  --ink-2: #4e4b66;
  /* Dark enough to clear 4.5:1 against --paper-2, not just --surface. */
  --ink-3: #6b6880;
  --line: #e6e6e6;

  --accent: #1e7a46;
  --accent-hover: #175f37;
  --on-accent: #ffffff;
  --accent-tint: #e6f4ec;

  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(26, 26, 26, .06), 0 1px 3px rgba(26, 26, 26, .05);
  --shadow-md: 0 4px 6px rgba(26, 26, 26, .04), 0 12px 28px rgba(26, 26, 26, .08);

  --font-body: "Roboto", Arial, sans-serif;

  --wrap: 1140px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
}

:root[data-theme="dark"] {
  color-scheme: dark;

  --paper: #1a1a1a;
  --paper-2: #232323;
  --surface: #262626;
  --ink: #f5f5f5;
  --deep: #101010;
  --ink-2: #c7c5d1;
  --ink-3: #9c99a6;
  --line: #383838;

  --accent: #4caf7d;
  --accent-hover: #6fd19b;
  --on-accent: #0b2015;
  --accent-tint: #123322;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, .45);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;

    --paper: #1a1a1a;
    --paper-2: #232323;
    --surface: #262626;
    --ink: #f5f5f5;
    --deep: #101010;
    --ink-2: #c7c5d1;
    --ink-3: #9c99a6;
    --line: #383838;

    --accent: #4caf7d;
    --accent-hover: #6fd19b;
    --on-accent: #0b2015;
    --accent-tint: #123322;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, .45);
  }
}

/* --- Reset ---------------------------------------------------------------- */

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.15;
  text-wrap: balance;
}

h1, h2 { font-weight: 900; }
h3, h4 { font-weight: 700; }

h1 { font-size: clamp(2.25rem, 5.2vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.375rem); }
h4 { font-size: 1.0625rem; }

p { text-wrap: pretty; }

a { color: var(--accent); text-underline-offset: .18em; }
a:hover { color: var(--accent-hover); }

:focus-visible {
  outline: 3px solid var(--accent-hover);
  outline-offset: 3px;
  border-radius: 3px;
}

ul, ol { padding-left: 1.15rem; }
li { margin-block: .35rem; }

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

/* --- Layout --------------------------------------------------------------- */

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

.wrap--narrow { max-width: 760px; }

.section { padding-block: var(--section-y); }
.section--tint { background: var(--paper-2); }
.section--line { border-top: 1px solid var(--line); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* --- Header --------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  margin-right: auto;
}
.brand:hover { color: var(--ink); }
.brand__mark { flex: none; height: 30px; width: auto; }
.footer__about .brand__mark { height: 52px; }

.nav { display: none; }

.nav__list {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  display: block;
  padding: .5rem .75rem;
  border-radius: var(--radius);
  color: var(--ink-2);
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
}
.nav__link:hover { background: var(--paper-2); color: var(--ink); }
.nav__link[aria-current="page"] { color: var(--accent); font-weight: 600; }

.header__actions { display: flex; align-items: center; gap: .5rem; }
.header__cta { display: none; }
@media (min-width: 62rem) { .header__cta { display: inline-flex; } }

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink-2);
  cursor: pointer;
}
.icon-btn:hover { color: var(--ink); border-color: var(--ink-3); }
.icon-btn svg { width: 20px; height: 20px; }

.theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: none; }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: block; }
}

.nav-toggle { display: inline-grid; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding-block: 1rem 1.5rem;
}
.mobile-nav[data-open] { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav a {
  display: block;
  padding: .8rem .25rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}
.mobile-nav .btn { margin-top: 1.25rem; width: 100%; }

@media (min-width: 62rem) {
  .nav { display: block; }
  .nav-toggle, .mobile-nav { display: none !important; }
}

/* --- Buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary:hover { background: var(--accent-hover); color: var(--on-accent); }

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--ink-3); color: var(--ink); background: var(--surface); }

.btn--on-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, .32);
  color: #fff;
}
.btn--on-dark:hover { background: rgba(255, 255, 255, .1); border-color: #fff; color: #fff; }

.btn--lg { padding: 1rem 1.75rem; font-size: 1rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

/* --- Type helpers --------------------------------------------------------- */

.eyebrow {
  display: block;
  margin-bottom: .875rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}

.lede { font-size: clamp(1.0625rem, 1.6vw, 1.25rem); color: var(--ink-2); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p { margin-top: .875rem; font-size: 1.0625rem; }
.section-head--center { margin-inline: auto; text-align: center; }

.prose > * + * { margin-top: 1.1rem; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 2rem; }
.prose ul { padding-left: 1.25rem; }

/* --- Hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink-2);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60rem 30rem at 82% -10%, rgba(30, 122, 70, .12), transparent 65%),
    radial-gradient(46rem 26rem at 5% 108%, rgba(15, 61, 36, .1), transparent 62%);
  pointer-events: none;
}

/* Dark theme keeps the original moodier, high-contrast treatment. */
:root[data-theme="dark"] .hero { background: var(--deep); color: #cfdae4; }
:root[data-theme="dark"] .hero::before {
  background:
    radial-gradient(60rem 30rem at 82% -10%, rgba(30, 122, 70, .38), transparent 65%),
    radial-gradient(46rem 26rem at 5% 108%, rgba(15, 61, 36, .48), transparent 62%);
}
:root[data-theme="dark"] .hero h1 { color: #fff; }
:root[data-theme="dark"] .hero .eyebrow { color: #6fd19b; }
:root[data-theme="dark"] .hero__lede { color: #c3d0dc; }
:root[data-theme="dark"] .hero__trust { color: #a9b9c7; }
:root[data-theme="dark"] .hero__trust svg { color: #6fd19b; }
:root[data-theme="dark"] .hero .btn--on-dark { border-color: rgba(255, 255, 255, .32); color: #fff; }
:root[data-theme="dark"] .hero .btn--on-dark:hover { background: rgba(255, 255, 255, .1); border-color: #fff; color: #fff; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .hero { background: var(--deep); color: #cfdae4; }
  :root:not([data-theme="light"]) .hero::before {
    background:
      radial-gradient(60rem 30rem at 82% -10%, rgba(30, 122, 70, .38), transparent 65%),
      radial-gradient(46rem 26rem at 5% 108%, rgba(15, 61, 36, .48), transparent 62%);
  }
  :root:not([data-theme="light"]) .hero h1 { color: #fff; }
  :root:not([data-theme="light"]) .hero .eyebrow { color: #6fd19b; }
  :root:not([data-theme="light"]) .hero__lede { color: #c3d0dc; }
  :root:not([data-theme="light"]) .hero__trust { color: #a9b9c7; }
  :root:not([data-theme="light"]) .hero__trust svg { color: #6fd19b; }
  :root:not([data-theme="light"]) .hero .btn--on-dark { border-color: rgba(255, 255, 255, .32); color: #fff; }
  :root:not([data-theme="light"]) .hero .btn--on-dark:hover { background: rgba(255, 255, 255, .1); border-color: #fff; color: #fff; }
}

.hero__inner {
  position: relative;
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.hero h1 { color: var(--ink); }
.hero .eyebrow { color: var(--accent); }
.hero__lede {
  margin-top: 1.25rem;
  max-width: 34rem;
  font-size: clamp(1.0625rem, 1.7vw, 1.25rem);
  color: var(--ink-2);
}
.hero .btn-row { margin-top: 2rem; }

/* On the light hero, "on-dark" needs to read as an outline button instead
   of the translucent-white treatment it uses on the dark hero/CTA band. */
.hero .btn--on-dark {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.hero .btn--on-dark:hover { background: var(--paper-2); border-color: var(--ink-3); color: var(--ink); }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin-top: 2.25rem;
  padding: 0;
  list-style: none;
  font-size: .9375rem;
  color: var(--ink-2);
}
.hero__trust li { display: flex; align-items: center; gap: .5rem; margin: 0; }
.hero__trust svg { width: 17px; height: 17px; color: var(--accent); flex: none; }

/* Browser-chrome mock used in the hero. Pure CSS, no image request. */
.mock {
  border-radius: var(--radius-lg);
  background: #1d2c39;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .38);
  overflow: hidden;
}
.mock__bar {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .7rem .9rem;
  background: #15222d;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.mock__dot { width: 10px; height: 10px; border-radius: 50%; background: #3b4c5b; }
.mock__url {
  margin-left: .5rem;
  padding: .2rem .7rem;
  border-radius: 99px;
  background: #0f1a24;
  color: #7f93a5;
  font-size: .75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.mock__body { padding: 1.5rem 1.4rem 1.75rem; }
.mock__score {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.mock__ring {
  flex: none;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#57c98a 0 100%, transparent 0);
  color: #eafaf1;
  font-family: var(--font-body);
  font-size: 1.375rem;
  font-weight: 600;
  position: relative;
}
.mock__ring::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #1d2c39;
}
.mock__ring span { position: relative; }
.mock__score p { color: #93a6b6; font-size: .875rem; margin-top: .2rem; }
.mock__score strong { display: block; color: #e7eef4; font-size: 1rem; }
.mock__metrics { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.mock__metrics li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  font-size: .875rem;
  color: #93a6b6;
}
.mock__metrics b { color: #6fd19b; font-weight: 600; }

@media (min-width: 62rem) {
  .hero__inner {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
  }
}

/* --- Page header (interior pages) ----------------------------------------- */

.page-head {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.page-head p { margin-top: 1rem; max-width: 44rem; font-size: 1.0625rem; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: .8125rem;
  color: var(--ink-3);
}
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; color: var(--line); }
.breadcrumb a { color: var(--ink-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); text-decoration: underline; }

/* --- Grids & cards -------------------------------------------------------- */

.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.5rem), 1fr)); }

.card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .9375rem; }
.card__icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.1rem;
  border-radius: var(--radius);
  background: var(--accent-tint);
  color: var(--accent);
}
.card__icon svg { width: 22px; height: 22px; }

a.card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
a.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  color: inherit;
}
.card__more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  color: var(--accent);
  font-size: .875rem;
  font-weight: 600;
}

/* --- Steps ---------------------------------------------------------------- */

.steps { counter-reset: step; list-style: none; padding: 0; display: grid; gap: 1.25rem; }
.steps li {
  position: relative;
  margin: 0;
  padding: 1.75rem 1.75rem 1.75rem 4.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.5rem;
  top: 1.6rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
}
.steps h3 { margin-bottom: .4rem; }
.steps p { font-size: .9375rem; }

@media (min-width: 52rem) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}

/* --- Feature list --------------------------------------------------------- */

.checks { list-style: none; padding: 0; display: grid; gap: .7rem; }
.checks li {
  position: relative;
  margin: 0;
  padding-left: 1.9rem;
  font-size: .9375rem;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .38em;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--accent-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23175f37' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / .72rem no-repeat;
}
/* The tick is a data URI, so its stroke colour cannot come from a custom
   property - both dark paths need spelling out. */
:root[data-theme="dark"] .checks li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236fd19b' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .checks li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236fd19b' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  }
}

/* --- Split section -------------------------------------------------------- */

.split { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 56rem) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.15fr .85fr; }
}

.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.stat-grid div { background: var(--surface); padding: 1.5rem 1.25rem; }
.stat-grid strong {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.stat-grid span { display: block; margin-top: .5rem; font-size: .875rem; color: var(--ink-3); }

/* --- Pricing -------------------------------------------------------------- */

.plans { display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 60rem) { .plans { grid-template-columns: repeat(3, 1fr); } }

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.plan--featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}
.plan__flag {
  position: absolute;
  top: -.75rem;
  left: 1.75rem;
  padding: .25rem .7rem;
  border-radius: 99px;
  background: var(--accent);
  color: var(--on-accent);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.plan h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; letter-spacing: 0; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); }
.plan__price { margin: 1rem 0 .35rem; font-family: var(--font-body); font-size: 2.75rem; font-weight: 600; color: var(--ink); line-height: 1; }
/* Text label instead of a number - too wide at the numeral size. */
.plan__price--label { font-size: 1.75rem; }
.plan__price sub { font-family: var(--font-body); font-size: .9375rem; font-weight: 500; color: var(--ink-3); vertical-align: baseline; }
.plan__desc { font-size: .9375rem; min-height: 3rem; }
.plan .checks { margin: 1.5rem 0; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.plan .btn { margin-top: auto; width: 100%; }
.plan__note { margin-top: .9rem; font-size: .8125rem; color: var(--ink-3); text-align: center; }

/* --- Work / portfolio ----------------------------------------------------- */

.work {
  display: grid;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.work + .work { margin-top: 1.5rem; }
.work__shot {
  position: relative;
  min-height: 13rem;
  padding: 1.5rem;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--deep) 0%, #24384a 100%);
}
.work__shot span {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: #fff;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.work__body { padding: 1.75rem; }
.work__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: 1.1rem 0 0; padding: 0; list-style: none; }
.work__tags li {
  margin: 0;
  padding: .25rem .6rem;
  border-radius: 99px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  font-size: .75rem;
  color: var(--ink-3);
}
@media (min-width: 52rem) {
  .work { grid-template-columns: .9fr 1.1fr; }
  .work__shot { min-height: 100%; }
}

/* --- FAQ ------------------------------------------------------------------ */

.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 1rem;
  height: 1rem;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translate(-25%, -25%);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-15%, -15%); }
.faq details > p { padding-bottom: 1.35rem; font-size: .9375rem; max-width: 52rem; }
.faq details > p + p { margin-top: -.5rem; }

/* --- Contact / forms ------------------------------------------------------ */

.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .875rem; font-weight: 600; color: var(--ink); }
.field label .opt { font-weight: 400; color: var(--ink-3); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .75rem .875rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}
.field textarea { min-height: 9rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field__hint { font-size: .8125rem; color: var(--ink-3); }

.field-row { display: grid; gap: 1.1rem; }
@media (min-width: 40rem) { .field-row { grid-template-columns: 1fr 1fr; } }

.hp { position: absolute; left: -9999px; }

.contact-list { list-style: none; padding: 0; display: grid; gap: 1.25rem; }
.contact-list li { display: flex; gap: .9rem; margin: 0; }
.contact-list svg { flex: none; width: 20px; height: 20px; margin-top: .25rem; color: var(--accent); }
.contact-list strong { display: block; color: var(--ink); font-size: .9375rem; }
.contact-list a { font-size: 1.0625rem; font-weight: 600; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-list p { font-size: .875rem; color: var(--ink-3); }

/* --- CTA band ------------------------------------------------------------- */

.cta {
  background: var(--deep);
  color: #c3d0dc;
  text-align: center;
}
.cta h2 { color: #fff; }
.cta p { margin: 1rem auto 0; max-width: 38rem; color: #b6c5d2; }
.cta .btn-row { justify-content: center; margin-top: 2rem; }

/* --- Areas we serve ------------------------------------------------------- */

.city-links { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; }
.city-links li { margin: 0; }
.city-links a {
  display: block;
  padding: .5rem .9rem;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--surface);
  color: var(--ink-2);
  font-size: .875rem;
  text-decoration: none;
}
.city-links a:hover { border-color: var(--accent); color: var(--accent); }

/* --- Footer --------------------------------------------------------------- */

.site-footer {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: .9375rem;
}
.footer__grid { display: grid; gap: 2.5rem; }
@media (min-width: 48rem) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__grid h4 {
  margin-bottom: .9rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.footer__grid ul { list-style: none; padding: 0; margin: 0; }
.footer__grid li { margin: 0 0 .55rem; }
.footer__grid a { color: var(--ink-2); text-decoration: none; }
.footer__grid a:hover { color: var(--accent); text-decoration: underline; }
.footer__about p { margin-top: 1rem; font-size: .9375rem; color: var(--ink-3); max-width: 28rem; }
.footer__contact { margin-top: 1.25rem; display: grid; gap: .3rem; }
.footer__contact a { color: var(--ink); font-weight: 600; }

.footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .8125rem;
  color: var(--ink-3);
}

/* --- Utilities ------------------------------------------------------------ */

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
