/* ==========================================================================
   GTC Construction — site styles
   Single stylesheet, no build step. Organized: tokens, base, layout,
   components, page blocks, responsive.
   Palette: graphite + warm clay accent, chosen to sit with the black logo.
   ========================================================================== */

/* --- Design tokens ------------------------------------------------------- */
:root {
  --ink: #14191e;
  --slate: #454f59;
  --muted: #6c7681;
  --line: #e4e7ea;
  --line-soft: #eef0f2;
  --surface: #ffffff;
  --bg: #f6f7f8;
  --bg-deep: #14191e;

  --brand: #1f2a33;
  --brand-dark: #0f161c;
  --brand-tint: #eef1f3;
  --accent: #bf5a20;
  --accent-dark: #9c4718;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(16, 31, 45, .06), 0 1px 3px rgba(16, 31, 45, .04);
  --shadow: 0 4px 16px rgba(16, 31, 45, .08);
  --shadow-lg: 0 18px 48px rgba(16, 31, 45, .14);

  --container: 1180px;
  --gutter: 24px;

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Inter Tight", var(--sans);

  --header-h: 76px;
}

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

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

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .6em;
  font-weight: 700;
  color: var(--ink);
}

h1 { font-size: clamp(2.15rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.24rem; letter-spacing: -0.01em; }
h4 { font-size: 1.02rem; letter-spacing: 0; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand-dark); }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li + li { margin-top: .4em; }

strong { font-weight: 650; }

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

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: top .15s ease;
}
.skip-link:focus { top: 14px; color: #fff; }

.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;
}

/* --- Layout ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tint { background: var(--bg); }
.section--brand-tint { background: var(--brand-tint); }
.section--tight { padding-top: clamp(40px, 5vw, 64px); }

.section-head { max-width: 660px; margin-bottom: 48px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--slate); font-size: 1.06rem; margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: .76rem;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.lead { font-size: 1.16rem; color: var(--slate); }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }

.stack > * + * { margin-top: clamp(56px, 8vw, 96px); }

.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.anchor-nav a {
  font-size: .92rem;
  font-weight: 550;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--slate);
  text-decoration: none;
}
.anchor-nav a:hover { border-color: #cfd4d9; color: var(--ink); background: var(--bg); }

/* Offset anchor targets so the sticky header doesn't cover headings */
[id] { scroll-margin-top: calc(var(--header-h) + 20px); }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font: inherit;
  font-weight: 600;
  font-size: .98rem;
  line-height: 1;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); color: #fff; }

.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-dark); color: #fff; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--bg); color: var(--ink); border-color: #cfd8e1; }

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

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

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: .96rem;
  text-decoration: none;
}
.text-link svg { transition: transform .16s ease; }
.text-link:hover svg { transform: translateX(3px); }

/* --- Header / nav ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand__mark { width: auto; height: 36px; flex: none; }
.brand__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.brand__sub {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav li { margin: 0; }
.nav a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-weight: 550;
  font-size: .97rem;
  color: var(--slate);
  text-decoration: none;
}
.nav a:hover { background: var(--bg); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 650; }

.nav__cta { display: none; } /* drawer-only; revealed in the mobile breakpoint */

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: inline-flex;
  flex-direction: column;
  text-align: right;
  text-decoration: none;
  line-height: 1.2;
}
.header-phone span { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.header-phone strong { font-size: 1.02rem; color: var(--ink); font-weight: 650; }
.header-phone:hover strong { color: var(--brand); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--ink);
}

/* --- Hero --------------------------------------------------------------- */
.hero { position: relative; background: var(--bg-deep); color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,27,38,.94) 8%, rgba(15,27,38,.72) 52%, rgba(15,27,38,.4) 100%);
}
.hero__inner {
  position: relative;
  padding: clamp(72px, 11vw, 148px) 0 clamp(64px, 9vw, 120px);
  max-width: 720px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,.82); font-size: 1.16rem; max-width: 560px; }
.hero .eyebrow { color: #f0a868; }
.hero .btn-row { margin-top: 32px; }

.hero__note {
  margin-top: 28px;
  font-size: .92rem;
  color: rgba(255,255,255,.64);
}

/* --- Page hero (subpages) ---------------------------------------------- */
.page-hero {
  background: var(--brand);
  color: #fff;
  padding: clamp(52px, 7vw, 88px) 0;
}
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.12rem; max-width: 620px; margin-bottom: 0; }
.page-hero .eyebrow { color: #f3b981; }

.breadcrumb {
  font-size: .88rem;
  color: rgba(255,255,255,.62);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb span { padding: 0 6px; }

/* --- Trust strip -------------------------------------------------------- */
.trust {
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
}
.trust__item {
  background: var(--surface);
  padding: 28px 24px;
  text-align: center;
}
.trust__item strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand);
  line-height: 1.15;
}
.trust__item span { display: block; font-size: .9rem; color: var(--muted); margin-top: 6px; }

/* --- Cards -------------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.card h3 { margin-bottom: .45em; }
.card p { color: var(--slate); font-size: .99rem; margin-bottom: 0; }
.card--link:hover { border-color: #cfd9e2; box-shadow: var(--shadow); transform: translateY(-2px); }

.card__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: var(--brand-tint);
  color: var(--brand);
  margin-bottom: 20px;
}
.card__icon svg { width: 23px; height: 23px; }

.card__foot { margin-top: 20px; }

/* --- Process steps ------------------------------------------------------ */
.steps { counter-reset: step; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.step { background: var(--surface); padding: 32px 26px; counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: .4em; }
.step p { color: var(--slate); font-size: .96rem; margin-bottom: 0; }

/* --- Feature list ------------------------------------------------------- */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  position: relative;
  padding-left: 32px;
  margin-top: 14px;
  color: var(--slate);
}
.checklist li:first-child { margin-top: 0; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: .36em;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--brand-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23bf5a20' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.checklist li strong { color: var(--ink); }

/* --- Media frame -------------------------------------------------------- */
.frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--tall { aspect-ratio: 4 / 5; }
.frame--wide { aspect-ratio: 3 / 2; }

/* --- Projects ----------------------------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.filter {
  font: inherit;
  font-size: .93rem;
  font-weight: 550;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--slate);
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.filter:hover { border-color: #cfd9e2; color: var(--ink); }
.filter[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }

.project {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.project:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: #cfd9e2; }
.project__media { aspect-ratio: 3 / 2; background: var(--bg); }
.project__media img { width: 100%; height: 100%; object-fit: cover; }
.project__body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.project__tag {
  font-size: .76rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
}
.project__body h3 { font-size: 1.14rem; margin-bottom: .4em; }
.project__body p { color: var(--slate); font-size: .96rem; margin-bottom: 0; }
.project__meta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: .88rem;
  color: var(--muted);
}

/* --- Testimonials ------------------------------------------------------- */
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
}
.quote blockquote {
  margin: 0 0 22px;
  font-size: 1.04rem;
  color: var(--ink);
  line-height: 1.6;
}
.quote__stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 18px; font-size: .95rem; }
.quote figcaption { margin-top: auto; font-size: .92rem; color: var(--muted); }
.quote figcaption strong { display: block; color: var(--ink); font-size: .98rem; }

/* --- CTA band ----------------------------------------------------------- */
.cta-band {
  background: var(--bg-deep);
  color: #fff;
  padding: clamp(52px, 7vw, 88px) 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: .4em; max-width: 620px; }
.cta-band p { color: rgba(255,255,255,.76); margin-bottom: 0; max-width: 560px; }

/* --- Forms -------------------------------------------------------------- */
.form-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .92rem; font-weight: 600; color: var(--ink); }
.field .hint { font-size: .85rem; color: var(--muted); font-weight: 400; }

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 148px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #cfd9e2; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(29, 78, 111, .14);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, .12);
}
.field .error { font-size: .85rem; color: #c0392b; min-height: 0; }

.form-note { font-size: .88rem; color: var(--muted); }

.form-status {
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: .95rem;
  background: var(--brand-tint);
  color: var(--brand-dark);
  border: 1px solid #cddfe9;
}

/* --- Info list (contact sidebar) --------------------------------------- */
.info-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.info-card + .info-card { margin-top: 20px; }
.info-card h3 { font-size: 1.08rem; }
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { margin: 0; padding: 13px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; font-size: .96rem; }
.info-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.info-list li:first-child { padding-top: 0; }
.info-list dt, .info-list .label { color: var(--muted); }
.info-list .value { color: var(--ink); font-weight: 550; text-align: right; }
.info-list a { text-decoration: none; }

.map-embed {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--muted);
  font-size: .94rem;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* --- Accordion (FAQ) ---------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--display);
  font-weight: 650;
  font-size: 1.06rem;
  letter-spacing: -0.01em;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute; right: 6px; top: 50%;
  width: 13px; height: 13px;
  margin-top: -6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d7987' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq details > div { padding-bottom: 24px; color: var(--slate); max-width: 780px; }

/* --- Footer ------------------------------------------------------------- */
.site-footer {
  background: var(--bg-deep);
  color: rgba(255,255,255,.72);
  padding: clamp(48px, 6vw, 76px) 0 0;
  font-size: .96rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.site-footer h4 {
  color: #fff;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 650;
  margin-bottom: 18px;
}
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0 0 10px; }
.footer-brand .brand { color: #fff; margin-right: 0; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__sub { color: rgba(255,255,255,.55); }
.footer-brand p { margin-top: 18px; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  font-size: .88rem;
  color: rgba(255,255,255,.56);
}

/* --- Reveal animation --------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .header-phone { display: none; }
  .header-cta .btn { display: none; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 12px var(--gutter) 24px;
    display: none;
  }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav a { padding: 14px 12px; font-size: 1.04rem; border-radius: var(--radius-sm); }
  .nav .nav__cta { margin-top: 14px; display: grid; gap: 10px; }
  .nav .nav__cta .btn { width: 100%; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  :root { --gutter: 18px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .info-list li { flex-direction: column; gap: 4px; }
  .info-list .value { text-align: left; }
}

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

@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle { display: none !important; }
  body { font-size: 12pt; color: #000; }
  .hero__media { display: none; }
  .hero, .page-hero { background: #fff; color: #000; }
  .hero h1, .page-hero h1, .hero p, .page-hero p { color: #000; }
}
