/* ==========================================================================
   Stove Care UK Installations stylesheet
   ========================================================================== */

:root {
  --black: #0b0a0a;
  --black-soft: #141312;
  --panel: #1a1816;
  --panel-border: #2c2724;
  --gold: #c9922f;
  --gold-light: #e3a94a;
  --copper: #b0692f;
  --cream: #f5efe6;
  --white: #ffffff;
  --grey: #b9b3ab;
  --grey-dark: #6f6a63;
  --success: #4caf6a;
  --error: #d64545;

  --font-head: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body: "Work Sans", Arial, Helvetica, sans-serif;

  --container: 1180px;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold-light);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section--tight { padding: 48px 0; }

.section--alt {
  background: var(--black-soft);
  border-top: 1px solid var(--panel-border);
  border-bottom: 1px solid var(--panel-border);
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.section-head {
  max-width: 720px;
  margin: 0 0 40px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lead {
  font-size: 1.1rem;
  color: var(--grey);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.18s ease;
}

.btn:hover { text-decoration: none; }

.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--copper));
  color: var(--black);
  border-color: transparent;
}

.btn--primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
}

.btn--ghost:hover {
  background: rgba(201, 146, 47, 0.12);
  color: var(--white);
}

.btn--block { width: 100%; justify-content: center; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(11, 10, 10, 0.97);
  border-bottom: 1px solid var(--panel-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.nav__list a {
  display: block;
  padding: 10px 16px;
  color: var(--cream);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  border-radius: var(--radius);
}

.nav__list a:hover,
.nav__list a[aria-current="page"] {
  color: var(--gold-light);
  text-decoration: none;
  background: rgba(201, 146, 47, 0.1);
}

.nav__cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--panel-border);
  border-radius: var(--radius);
  width: 44px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 19px;
  height: 2px;
  background: var(--gold-light);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-light);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 80px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(201, 146, 47, 0.14), transparent 55%),
    linear-gradient(180deg, #100e0d 0%, var(--black) 100%);
  border-bottom: 1px solid var(--panel-border);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero__tag {
  color: var(--gold-light);
  font-family: var(--font-head);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.hero h1 { margin-bottom: 18px; }

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero__badges {
  display: flex;
  gap: 22px;
  margin-top: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.hero__badges img { height: 64px; width: auto; }

.hero__panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.hero__panel h3 {
  color: var(--gold-light);
  margin-bottom: 16px;
}

.hero__panel ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.hero__panel li {
  padding: 9px 0;
  border-bottom: 1px solid var(--panel-border);
  display: flex;
  gap: 10px;
}

.hero__panel li:last-child { border-bottom: none; }

.hero__panel li::before {
  content: "\2022";
  color: var(--gold);
  font-weight: bold;
}

/* ---------- stove flame icon rule ---------- */
.divider-flame {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 30px;
  color: var(--grey-dark);
}

.divider-flame::before,
.divider-flame::after {
  content: "";
  height: 1px;
  width: 60px;
  background: var(--panel-border);
}

/* ---------- cards / grids ---------- */
.grid {
  display: grid;
  gap: 24px;
}

.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  padding: 28px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 146, 47, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 1.4rem;
}

.card h3 { margin-bottom: 10px; }

.card p { color: var(--grey); margin-bottom: 0; }

/* ---------- team ---------- */
.team-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.team-card__avatar {
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--copper));
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
}

.team-card h3 { margin-bottom: 2px; }

.team-card__role {
  color: var(--gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: block;
}

/* ---------- stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--gold-light);
}

.stat span {
  color: var(--grey);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- credentials strip ---------- */
.creds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.cred__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(201, 146, 47, 0.14);
  color: var(--gold-light);
  margin-bottom: 12px;
}

.cred strong {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.cred > span:last-child {
  display: block;
  color: var(--grey);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ---------- process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  padding: 28px;
  position: relative;
}

.step__num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--grey);
  margin-bottom: 0;
  font-size: 0.94rem;
}

/* ---------- testimonials ---------- */
.testimonial {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 26px;
}

.testimonial p { font-style: italic; color: var(--cream); }
.testimonial cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  color: var(--gold-light);
  font-size: 0.9rem;
}

.stars { color: var(--gold-light); letter-spacing: 2px; margin-bottom: 10px; }

/* ---------- portfolio gallery ---------- */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:22px;
}

.shot{margin:0}

.shot__btn{
  display:block; width:100%; padding:0; cursor:zoom-in;
  background:var(--panel); border:1px solid var(--panel-border);
  border-radius:10px; overflow:hidden; line-height:0;
  transition:border-color .18s ease, transform .18s ease;
}

.shot__btn:hover{border-color:var(--gold); transform:translateY(-3px)}
.shot__btn:focus-visible{outline:2px solid var(--gold-light); outline-offset:3px}

.shot__btn img{
  width:100%; height:260px; object-fit:cover; display:block;
}

.gallery--compact .shot a{
  display:block; border:1px solid var(--panel-border); border-radius:10px;
  overflow:hidden; line-height:0;
  transition:border-color .18s ease, transform .18s ease;
}
.gallery--compact .shot a:hover{border-color:var(--gold); transform:translateY(-3px)}
.gallery--compact .shot img{width:100%; height:240px; object-fit:cover}

.shot figcaption{
  margin-top:10px; color:var(--grey); font-size:.9rem;
}

/* ---------- lightbox ---------- */
.lightbox{
  position:fixed; inset:0; z-index:960; display:none;
  align-items:center; justify-content:center; flex-direction:column;
  background:rgba(0,0,0,.92); padding:28px;
}
.lightbox.is-open{display:flex}
.lightbox img{
  max-width:min(1100px,94vw); max-height:82vh;
  width:auto; height:auto; border-radius:8px;
}
.lightbox__cap{
  color:var(--grey); margin:16px 0 0; font-size:.92rem; text-align:center;
}
.lightbox__close{
  position:absolute; top:18px; right:22px;
  width:46px; height:46px; border-radius:50%;
  background:var(--panel); color:var(--cream);
  border:1px solid var(--panel-border); font-size:1.6rem; line-height:1;
  cursor:pointer;
}
.lightbox__close:hover{border-color:var(--gold); color:var(--gold-light)}

@media (max-width:720px){
  .gallery{grid-template-columns:1fr; gap:18px}
  .shot__btn img{height:230px}
  .lightbox{padding:16px}
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, #1c1712, #100d0b);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 46px;
  text-align: center;
}

.cta-band h2 { margin-bottom: 10px; }
.cta-band p { color: var(--grey); margin-bottom: 24px; }

/* ---------- forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field { margin-bottom: 20px; }

.field--full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 8px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--black-soft);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
}

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

.field-hint {
  font-size: 0.82rem;
  color: var(--grey-dark);
  margin-top: 6px;
}

.field--consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.field--consent input { width: auto; margin-top: 4px; }
.field--consent label { text-transform: none; font-family: var(--font-body); font-size: 0.92rem; color: var(--grey); }

/* honeypot field - hidden from real users, visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-note {
  background: rgba(201, 146, 47, 0.08);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 24px;
}

.alert {
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.alert--success {
  background: rgba(76, 175, 106, 0.12);
  border: 1px solid var(--success);
  color: #b7ecc4;
}

.alert--error {
  background: rgba(214, 69, 69, 0.12);
  border: 1px solid var(--error);
  color: #f3b8b8;
}

/* ---------- contact info blocks ---------- */
.contact-info {
  display: grid;
  gap: 18px;
}

.contact-info__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info__icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 146, 47, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

/* ---------- areas list ---------- */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tag-list li {
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.88rem;
  color: var(--grey);
}

/* ---------- breadcrumb / page header ---------- */
.page-header {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, #100e0d 0%, var(--black) 100%);
  border-bottom: 1px solid var(--panel-border);
}

.page-header p { color: var(--grey); max-width: 640px; }

.breadcrumb {
  font-size: 0.85rem;
  color: var(--grey-dark);
  margin-bottom: 14px;
}

.breadcrumb a { color: var(--grey-dark); }

/* ---------- legal content ---------- */
.legal-content h2 {
  margin-top: 2.2em;
  text-transform: none;
  font-size: 1.4rem;
  color: var(--gold-light);
}

.legal-content h3 {
  text-transform: none;
  margin-top: 1.6em;
  color: var(--white);
  font-size: 1.1rem;
}

.legal-content p, .legal-content li { color: var(--grey); }
.legal-content ul { padding-left: 22px; }
.legal-content a { text-decoration: underline; }
.legal-content .updated {
  color: var(--grey-dark);
  font-size: 0.85rem;
  margin-bottom: 2em;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid var(--panel-border);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-grid img { height: 44px; margin-bottom: 14px; }

.footer-grid p { color: var(--grey-dark); font-size: 0.92rem; }

.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--grey); font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold-light); }

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--panel-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid var(--panel-border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--grey-dark);
}

.footer-bottom a { color: var(--grey-dark); }
.footer-bottom nav a { margin-left: 16px; }

/* ---------- cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: var(--panel);
  border-top: 1px solid var(--gold);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
  padding: 20px 0;
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

.cookie-banner.is-visible { transform: translateY(0); }

.cookie-banner__inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner__text { max-width: 640px; font-size: 0.92rem; color: var(--grey); }
.cookie-banner__text a { text-decoration: underline; }

.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.cookie-banner .btn { padding: 11px 20px; font-size: 0.85rem; }

/* ---------- cookie preferences modal ---------- */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
}

.cookie-modal.is-visible { display: flex; }

.cookie-modal__box {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  max-width: 560px;
  width: 100%;
  padding: 30px;
  max-height: 86vh;
  overflow-y: auto;
}

.cookie-modal__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--panel-border);
}

.cookie-modal__row:last-of-type { border-bottom: none; }

.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex: none;
}

.switch input { opacity: 0; width: 0; height: 0; }

.switch__track {
  position: absolute;
  inset: 0;
  background: #3a342d;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.switch__track::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  top: 3px;
  background: var(--cream);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.switch input:checked + .switch__track { background: var(--gold); }
.switch input:checked + .switch__track::before { transform: translateX(20px); }
.switch input:disabled + .switch__track { opacity: 0.5; cursor: not-allowed; }

.cookie-modal__actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ---------- back to top / floating call ---------- */
.float-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 400;
  background: linear-gradient(135deg, var(--gold-light), var(--copper));
  color: var(--black);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  font-size: 1.3rem;
}

.float-call:hover { text-decoration: none; filter: brightness(1.08); }

/* ---------- 404 ---------- */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
}

/* ---------- utility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--black);
  padding: 12px 18px;
  z-index: 1000;
  border-radius: 0 0 6px 0;
}

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

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .creds { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: var(--header-height, 73px);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }

  .nav.is-open { transform: translateX(0); }

  .nav__list {
    flex-direction: column;
    gap: 4px;
  }

  .nav__list a { padding: 16px 8px; font-size: 1.05rem; border-bottom: 1px solid var(--panel-border); }
  .nav__cta { margin: 18px 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }

  .nav-toggle { display: block; }

  .grid--3, .grid--2, .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .creds { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .cta-band { padding: 32px 22px; }
  .team-card { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom nav a { margin-left: 0; margin-right: 16px; }
}
