/* AMQC Interiors */
:root {
  --bg: #F4F0E9;
  --bg-alt: #ECE7DD;
  --card: #FAF7F1;
  --ink: #191713;
  --ink-soft: #3A372F;
  --text-2: #57534B;
  --text-3: #A5A29A;
  --text-3-dark: #807C73;
  --accent: #75846C;
  --accent-dark: #5C6B54;
  --accent-light: #9BAB90;
  --line: #D9D3C7;
  --gold: #D9A93C;
  --white: #FFFFFF;
  --gutter: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Archivo", sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1680px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent-dark);
}
.eyebrow--light { color: var(--accent-light); }
.section-heading { font-size: 44px; font-weight: 500; line-height: 1.25; }

.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 1em; height: 1em; fill: currentColor; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 15px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 20px 32px; white-space: nowrap;
  transition: opacity .2s ease, background .2s ease;
}
.btn:hover { opacity: .85; }
.btn svg { width: 18px; height: 18px; stroke: currentColor; }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--stone { background: #C9C6BB; color: var(--ink); gap: 40px; }
.btn--white { background: var(--white); color: var(--ink); }
.btn--outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.5); }

/* ---------- Nav ---------- */
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; padding-bottom: 28px;
}
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  font-size: 14px; font-weight: 500; letter-spacing: .5px;
  text-transform: uppercase;
}
.nav__links a:hover { text-decoration: underline; text-underline-offset: 6px; }
.nav__links a.is-active { font-weight: 600; text-decoration: underline; text-underline-offset: 6px; }
.nav__quote { font-size: 14px; font-weight: 600; letter-spacing: 1px; padding: 16px 26px; }

.brand { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.brand__name { font-size: 30px; font-weight: 600; letter-spacing: 10px; margin-left: 10px; }
.brand__tag {
  font-size: 11px; font-weight: 400; letter-spacing: 3px;
  border-top: 1.5px solid currentColor; padding-top: 5px;
  align-self: stretch; text-align: center;
}

.brand--inline { align-items: flex-start; gap: 3px; }
.brand--inline .brand__name { font-size: 24px; letter-spacing: 7px; margin-left: 0; }
.brand--inline .brand__tag {
  font-size: 10px; letter-spacing: 2.6px; color: var(--ink);
  border-top-width: 1px; padding-top: 4px; text-align: left;
}

/* ---------- Hero ---------- */
.hero { position: relative; height: 940px; overflow: hidden; }
.hero__image {
  position: absolute; top: 0; right: 0; bottom: 0; left: 38%;
  background: url("images/project-13.jpg") center/cover no-repeat;
}
.hero__fade {
  position: absolute; top: 0; bottom: 0; left: 38%; width: 54%;
  background: linear-gradient(to right, var(--bg) 0%, rgba(244,240,233,.95) 40%, rgba(244,240,233,0) 100%);
}
.hero__inner { position: relative; height: 100%; }
.hero .nav { position: absolute; top: 6px; right: var(--gutter); padding: 28px 0; }
.hero .brand { position: absolute; top: 40px; left: var(--gutter); }
.hero__content { position: absolute; top: 340px; left: var(--gutter); max-width: 900px; }
.hero__heading { font-size: 72px; font-weight: 500; line-height: 1.22; }
.hero__sub {
  margin-top: 36px; max-width: 660px;
  font-size: 21px; line-height: 1.55; color: var(--text-2);
}
.hero__cta-row { margin-top: 36px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.hero__rating { display: flex; align-items: center; gap: 10px; font-size: 17px; }
.hero__rating .stars { font-size: 22px; gap: 3px; }
.hero__rating strong { font-weight: 600; }
.hero__rating span { color: var(--text-2); }

/* ---------- Review marquee ---------- */
.marquee { padding: 42px 0; overflow: hidden; display: grid; gap: 16px; }
.marquee__row { display: flex; gap: 16px; width: max-content; animation: marquee 60s linear infinite; }
.marquee__row--reverse { animation-direction: reverse; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.pill {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 13px 22px 13px 14px; white-space: nowrap;
}
.avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 16px; font-weight: 600;
}
.pill__quote { font-size: 16.5px; font-weight: 600; }
.pill__meta { margin-top: 4px; display: flex; align-items: center; gap: 8px; }
.pill__meta .stars { font-size: 14px; gap: 1px; }
.pill__meta span { font-size: 13.5px; font-weight: 500; color: var(--text-2); }

/* Avatar palette */
.av-s { background: #75846C; } .av-j { background: #A98F6B; }
.av-p { background: #6B7FA9; } .av-d { background: #A96B6B; }
.av-e { background: #8A75A9; } .av-m { background: #5C8A96; }
.av-t { background: #96755C; } .av-l { background: #7C8A5C; }
.av-r { background: #5C6B8A; } .av-c { background: #8A5C6B; }
.av-n { background: #6B8A75; } .av-h { background: #8A825C; }

/* ---------- Trust strip ---------- */
.trust { background: var(--ink); color: var(--white); }
.trust__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; padding-top: 36px; padding-bottom: 36px; flex-wrap: wrap;
}
.trust__value { font-size: 26px; font-weight: 600; }
.trust__label { margin-top: 6px; font-size: 14px; color: var(--text-3); }

/* ---------- Sections ---------- */
.section { padding-top: 110px; padding-bottom: 110px; }
.section--alt { background: var(--bg-alt); }
.section__header { display: flex; justify-content: space-between; align-items: flex-end; gap: 60px; }
.section__header .section-heading { margin-top: 20px; }
.section__intro { max-width: 480px; font-size: 17px; line-height: 1.6; color: var(--text-2); }

.text-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: underline; text-underline-offset: 6px;
}
.text-link svg { width: 18px; height: 18px; stroke: currentColor; }

/* ---------- About ---------- */
.about { padding-top: 120px; padding-bottom: 120px; }
.about__inner { display: flex; align-items: center; gap: 100px; }
.about__images { position: relative; flex-shrink: 0; width: 640px; height: 600px; }
.about__img-large { width: 480px; height: 560px; object-fit: cover; }
.about__img-small {
  position: absolute; left: 400px; top: 340px;
  width: 240px; height: 260px; object-fit: cover;
  border: 8px solid var(--bg);
}
.about__text .section-heading { margin-top: 28px; }
.about__text p { margin-top: 28px; max-width: 620px; font-size: 17px; line-height: 1.7; color: var(--text-2); }
.about__points { margin-top: 28px; display: grid; gap: 14px; }
.about__points li { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 500; }
.about__points svg { width: 18px; height: 18px; stroke: var(--accent-dark); flex-shrink: 0; }

/* ---------- Services ---------- */
.services__grid {
  margin-top: 64px; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.service-card {
  background: var(--card); border: 1px solid var(--line); padding: 36px;
}
.service-card svg { width: 30px; height: 30px; stroke: var(--accent-dark); }
.service-card h3 { margin-top: 26px; font-size: 22px; font-weight: 600; }
.service-card p { margin-top: 18px; font-size: 15.5px; line-height: 1.65; color: var(--text-2); }

/* ---------- Work ---------- */
.work__grid {
  margin-top: 56px; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 32px 32px;
}
.project img { width: 100%; height: 560px; object-fit: cover; }
.project h3 { margin-top: 20px; font-size: 20px; font-weight: 600; }
.project span {
  display: block; margin-top: 6px;
  font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-2);
}
.work__strip { margin-top: 56px; }
.work__strip-images {
  margin-top: 24px; display: grid;
  grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.work__strip-images img { width: 100%; height: 240px; object-fit: cover; }

/* ---------- Process ---------- */
.process { background: var(--ink); color: var(--white); }
.process .section-heading { margin-top: 20px; max-width: 900px; }
.process__steps {
  margin-top: 70px; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 56px;
}
.step__number { font-size: 16px; font-weight: 600; letter-spacing: 2px; color: var(--accent-light); }
.step hr { margin-top: 18px; border: 0; border-top: 1px solid var(--ink-soft); }
.step h3 { margin-top: 18px; font-size: 21px; font-weight: 600; }
.step p { margin-top: 18px; font-size: 15px; line-height: 1.65; color: var(--text-3); }

/* ---------- Reviews ---------- */
.badge { display: flex; align-items: center; gap: 12px; font-size: 17px; }
.badge .stars { font-size: 22px; gap: 3px; }
.badge strong { font-weight: 600; }
.badge span { color: var(--text-2); }
.reviews__grid {
  margin-top: 56px; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.review-card { background: var(--card); border: 1px solid var(--line); padding: 36px; }
.review-card .stars { font-size: 18px; }
.review-card blockquote { margin-top: 24px; font-size: 16.5px; line-height: 1.7; }
.review-card footer { margin-top: 24px; }
.review-card footer strong { display: block; font-size: 15px; font-weight: 600; }
.review-card footer span { display: block; margin-top: 4px; font-size: 13.5px; color: var(--text-2); }

/* ---------- Service area ---------- */
.area { padding-top: 100px; padding-bottom: 100px; }
.area__inner { display: flex; align-items: center; gap: 100px; }
.area__text { flex: 1; }
.area__text .section-heading { margin-top: 28px; }
.area__text > p { margin-top: 28px; max-width: 560px; font-size: 17px; line-height: 1.7; color: var(--text-2); }
.area__tags { margin-top: 28px; max-width: 620px; display: flex; flex-wrap: wrap; gap: 12px; }
.area__tags li {
  background: var(--card); border: 1px solid var(--line); border-radius: 99px;
  padding: 10px 18px; font-size: 14px; font-weight: 500;
}
.area__map { width: 680px; height: 480px; object-fit: cover; flex-shrink: 0; }

/* ---------- CTA ---------- */
.cta { background: var(--accent-dark); color: var(--white); text-align: center; }
.cta h2 { font-size: 48px; font-weight: 500; line-height: 1.25; margin: 0 auto; max-width: 900px; }
.cta p { margin: 36px auto 0; max-width: 640px; font-size: 18px; line-height: 1.6; color: #E6EAE1; }
.cta__buttons { margin-top: 36px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--white); padding-top: 80px; padding-bottom: 40px; }
.footer__top { display: flex; justify-content: space-between; gap: 60px; flex-wrap: wrap; }
.footer__brand { max-width: 420px; }
.footer__logo { font-size: 26px; font-weight: 600; letter-spacing: 8px; }
.footer__tag {
  margin-top: 10px; padding-top: 8px; font-size: 12px; font-weight: 400;
  letter-spacing: 3px; color: var(--white);
  border-top: 1.5px solid currentColor; display: inline-block;
}
.footer__desc { margin-top: 16px; font-size: 15px; line-height: 1.7; color: var(--text-3); }
.footer h3 {
  font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
}
.footer__col ul { margin-top: 16px; display: grid; gap: 12px; }
.footer__col a { font-size: 15px; color: var(--text-3); }
.footer__col a:hover { color: var(--white); }
.footer__contact li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-3); }
.footer__contact svg { width: 16px; height: 16px; stroke: var(--accent-light); flex-shrink: 0; }
.footer hr { margin: 64px 0 0; border: 0; border-top: 1px solid var(--ink-soft); }
.footer__bottom {
  margin-top: 40px; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap; font-size: 13.5px; color: var(--text-3-dark);
}
.footer__legal { display: flex; gap: 28px; }
.footer__legal a:hover { color: var(--white); }

/* ---------- Wall of Love ---------- */
.wall-header { padding-top: 90px; padding-bottom: 64px; text-align: center; }
.wall-header h1 {
  margin: 24px auto 0; max-width: 900px;
  font-size: 60px; font-weight: 500; line-height: 1.2;
}
.wall-header .badge { margin-top: 24px; justify-content: center; font-size: 18px; }
.wall-header .badge .stars { font-size: 24px; }
.wall-grid {
  padding-bottom: 100px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  align-items: start;
}
.wall-grid__col { display: grid; gap: 28px; }
.wall-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 32px;
}
.wall-card__top { display: flex; align-items: center; gap: 14px; }
.wall-card__top .avatar { width: 44px; height: 44px; font-size: 17px; }
.wall-card__top strong { display: block; font-size: 16px; font-weight: 600; }
.wall-card__top span { display: block; margin-top: 3px; font-size: 13.5px; color: var(--text-2); }
.wall-card .stars { margin-top: 18px; font-size: 17px; }
.wall-card h2, .wall-card h3 { margin-top: 18px; font-size: 19px; font-weight: 600; line-height: 1.35; }
.wall-card blockquote { margin-top: 18px; font-size: 15.5px; line-height: 1.7; color: var(--text-2); }

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  :root { --gutter: 40px; }
  .hero__heading { font-size: 56px; }
  .about__inner, .area__inner { flex-direction: column; align-items: flex-start; gap: 60px; }
  .about__images { width: 100%; max-width: 640px; }
  .area__map { width: 100%; height: auto; }
  .trust__inner { justify-content: flex-start; }
}
@media (max-width: 960px) {
  .nav__links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-top: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(25,23,19,.08);
    padding: 8px var(--gutter) 20px;
  }
  body.nav-open .nav__links { display: flex; }
  .nav__links li { border-bottom: 1px solid var(--line); }
  .nav__links li:last-child { border-bottom: 0; padding-top: 16px; }
  .nav__links a { display: block; padding: 16px 0; font-size: 16px; }
  .nav__quote { text-align: center; }
  .site-header { position: sticky; top: 0; z-index: 60; background: var(--bg); }
  /* the homepage keeps .brand outside .nav, so both must flow, and .nav must
     stay the positioning context for the dropdown panel */
  .hero .nav { position: relative; top: auto; right: auto; padding: 4px 0 16px; }
  .hero .brand { position: static; width: max-content; }
  .hero { height: auto; padding-bottom: 80px; }
  .hero__image, .hero__fade { left: 0; width: 100%; opacity: .25; }
  .hero__content { position: static; padding-top: 260px; }
  .hero__heading { font-size: 42px; }
  .services__grid, .work__grid, .reviews__grid, .wall-grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .work__strip-images { grid-template-columns: repeat(3, 1fr); }
  .section__header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .about__images { height: auto; }
  .about__img-small { display: none; }
  .about__img-large { width: 100%; height: auto; }
  .cta h2 { font-size: 34px; }
  .wall-header h1 { font-size: 38px; }
}

/* ==========================================================
   Template pages: services index, service, locations, service+location
   ========================================================== */

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  padding-top: 24px; font-size: 13.5px; color: var(--text-2);
}
.breadcrumb a:hover { text-decoration: underline; text-underline-offset: 4px; }
.breadcrumb span[aria-hidden] { color: var(--text-3); }
.breadcrumb strong { font-weight: 600; color: var(--ink); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-top: 72px; padding-bottom: 80px; }
.page-hero h1 {
  margin-top: 24px; max-width: 980px;
  font-size: 56px; font-weight: 500; line-height: 1.2;
}
.page-hero__sub {
  margin-top: 28px; max-width: 720px;
  font-size: 19px; line-height: 1.6; color: var(--text-2);
}
.page-hero__cta-row { margin-top: 36px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }

.page-hero--center { text-align: center; }
.page-hero--center h1, .page-hero--center .page-hero__sub { margin-left: auto; margin-right: auto; }
.page-hero--center .badge { margin-top: 28px; justify-content: center; }

/* ---------- Service index cards ---------- */
.service-index-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  padding-bottom: 110px;
}
.service-tile {
  display: flex; flex-direction: column; height: 100%;
  background: var(--card); border: 1px solid var(--line);
  transition: border-color .2s ease;
}
.service-tile:hover, .service-tile:focus-within { border-color: var(--accent-dark); }
.service-tile__media { display: block; }
.service-tile h2 a, .service-tile h3 a { color: inherit; text-decoration: none; }
.service-tile h2 a:hover, .service-tile h3 a:hover { text-decoration: underline; text-underline-offset: 4px; }
.service-tile img { width: 100%; height: 300px; object-fit: cover; flex: none; }
.service-tile__body { padding: 32px; display: flex; flex-direction: column; flex: 1 1 auto; }
.service-tile h2, .service-tile h3 { font-size: 22px; font-weight: 600; }
.service-tile p { margin-top: 14px; font-size: 15.5px; line-height: 1.65; color: var(--text-2); }
.service-tile .text-link { margin-top: auto; padding-top: 22px; font-size: 14px; }

/* ---------- Service detail ---------- */
.split { display: flex; gap: 100px; align-items: flex-start; }
.split > * { min-width: 0; }
.split__main { flex: 1.2; }
.split__side { flex: 1; }

.included { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
.included li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; font-weight: 500; line-height: 1.5; }
.included svg { width: 18px; height: 18px; stroke: var(--accent-dark); flex-shrink: 0; margin-top: 3px; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery img { width: 100%; height: 300px; object-fit: cover; }
.gallery img:first-child { grid-row: span 2; height: 616px; }

.quote-block {
  margin-top: 48px; border-left: 3px solid var(--accent-dark); padding: 8px 0 8px 28px;
}
.quote-block blockquote { font-size: 19px; line-height: 1.6; font-weight: 500; }
.quote-block footer { margin-top: 14px; font-size: 14px; color: var(--text-2); }

/* ---------- Chip link lists (areas / services) ---------- */
.chip-list { display: flex; flex-wrap: wrap; gap: 12px; }
.chip-list a {
  display: inline-block; background: var(--card); border: 1px solid var(--line);
  border-radius: 99px; padding: 10px 18px; font-size: 14px; font-weight: 500;
  transition: border-color .2s ease;
}
.chip-list a:hover { border-color: var(--accent-dark); }
.chip-list a.is-current { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ---------- FAQ ---------- */
.faq { max-width: 900px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 26px 48px 26px 0; font-size: 18px; font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 24px; font-weight: 400; color: var(--accent-dark);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 48px 26px 0; font-size: 16px; line-height: 1.7; color: var(--text-2); }

/* ---------- Locations index ---------- */
.location-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  padding-bottom: 110px;
}
.location-card { background: var(--card); border: 1px solid var(--line); padding: 36px; }
.location-card svg { width: 26px; height: 26px; stroke: var(--accent-dark); }
.location-card h2, .location-card h3 { margin-top: 22px; font-size: 22px; font-weight: 600; }
.location-card .location-card__county {
  display: block; margin-top: 4px; font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-2);
}
.location-card p { margin-top: 16px; font-size: 15px; line-height: 1.65; color: var(--text-2); }
.location-card .chip-list { margin-top: 20px; }
.location-card .chip-list a { background: var(--white); font-size: 13.5px; padding: 8px 15px; }
.location-card .text-link { margin-top: 24px; font-size: 14px; }

/* ---------- Local proof strip ---------- */
.local-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.local-strip img { width: 100%; height: 260px; object-fit: cover; }

/* ---------- Template responsive ---------- */
@media (max-width: 1280px) {
  .split { flex-direction: column; gap: 60px; }
  .page-hero h1 { font-size: 44px; }
}
@media (max-width: 960px) {
  .service-index-grid, .location-grid, .gallery { grid-template-columns: 1fr; }
  .gallery img:first-child { grid-row: auto; height: 300px; }
  .included { grid-template-columns: 1fr; }
  .local-strip { grid-template-columns: 1fr 1fr; }
  .page-hero h1 { font-size: 36px; }
}

/* Fix: current chip inside location cards keeps dark styling */
.location-card .chip-list a.is-current,
.chip-list a.is-current {
  background: var(--ink); border-color: var(--ink); color: var(--white);
}

/* Gallery variant: stacked column used on generated service pages */
.gallery--row { grid-template-columns: 1fr; }
.gallery--row img:first-child { grid-row: auto; height: 380px; }
.gallery--row img { height: 300px; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: 8px; top: -48px; z-index: 100;
  background: var(--ink); color: var(--white);
  padding: 10px 18px; border-radius: 4px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 8px; }

:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
  border-radius: 2px;
}
.process :focus-visible,
.footer :focus-visible,
.cta :focus-visible { outline-color: var(--white); }

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


/* ---------- Mobile menu ---------- */
.nav { position: relative; }
.nav__toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-left: auto;
  background: none; border: 1px solid var(--line); border-radius: 4px;
  color: var(--ink); cursor: pointer;
}
.nav__toggle svg {
  width: 22px; height: 22px; fill: none; stroke: currentColor;
  stroke-width: 1.75; stroke-linecap: round;
}
@media (max-width: 960px) {
  .nav__toggle { display: inline-flex; }
}

/* ---------- HTML sitemap ---------- */
.sitemap__list { margin-top: 24px; list-style: none; }
.sitemap__list > li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
.sitemap__list > li:last-child { border-bottom: 0; }
.sitemap__list a { color: var(--ink); text-decoration: none; }
.sitemap__list a:hover { text-decoration: underline; text-underline-offset: 4px; }
.sitemap__sub {
  margin: 12px 0 4px; list-style: none;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 6px 20px;
}
.sitemap__sub li { padding: 4px 0; font-size: 15px; }
.sitemap__sub a { color: var(--text-2); }
.sitemap__list--cols {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 0 20px;
}
