/* ===== EOB Counselling — shared styles ===== */
:root {
  --navy: #082a5e;
  --navy-deep: #06214a;
  --blue: #3b7de0;
  --blue-soft: #6aa0ec;
  --pale-blue: #e9f1fb;
  --wash: #dbe9fb;
  --text: #19355f;
  --muted: #4b658c;
  --white: #fbfcff;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
a { color: inherit; }

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

/* ---------- Header ---------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 6vw 14px;
  background: rgba(255, 255, 255, 0.97);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(6px);
}

.brand { display: flex; align-items: center; gap: 16px; text-decoration: none; }

.logo-mark { width: 84px; height: 84px; position: relative; flex: none; }
img.logo-mark { object-fit: contain; }
.footer-brand img.logo-mark { background: #fff; border-radius: 16px; padding: 7px; }

.logo-mark .ring {
  position: absolute; inset: 0;
  border: 2px solid var(--blue);
  border-radius: 50%;
  border-bottom-color: transparent;
  transform: rotate(35deg);
}

.logo-mark .letters {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: "Cormorant Garamond", serif;
  color: var(--navy); line-height: 0.78; font-weight: 600;
}

.logo-mark .letters b { font-size: 38px; font-weight: 600; display: block; padding-left: 4px; }
.logo-mark .letters span { font-size: 30px; display: block; letter-spacing: 1px; transform: translateX(6px); }
.logo-mark .fly { position: absolute; top: -8px; left: -10px; width: 34px; height: 34px; }

.brand h1 { margin: 0; font-size: 24px; letter-spacing: 3px; font-weight: 600; color: var(--navy); }
.brand p { margin: 3px 0 0; color: var(--blue); letter-spacing: 3px; font-size: 11px; font-weight: 600; text-transform: uppercase; white-space: nowrap; overflow-wrap: normal; }

nav {
  display: flex; align-items: center; gap: 30px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}

nav a {
  color: var(--navy); text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  padding-bottom: 4px; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
nav a:hover { color: var(--blue); }
nav a.active { border-bottom-color: var(--blue); }
nav .chev { width: 11px; height: 11px; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--navy); color: #fff; text-decoration: none;
  padding: 14px 26px; border-radius: 9px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.button:hover { background: var(--blue); transform: translateY(-1px); }
..button.ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.button.ghost:hover { background: var(--navy); color: #fff; }
.button .desktop-text { display: inline; }
.button .mobile-text { display: none; }

.nav-toggle-input { position: absolute; left: -9999px; }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(8, 42, 94, .18);
  border-radius: 14px;
  color: var(--navy);
  font-size: 22px;
  cursor: pointer;
  background: #fff;
}

/* ---------- Generic layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 6vw; }
.section { padding: 72px 6vw; }
.section.tight { padding: 40px 6vw; }
.section.alt {
  position: relative;
  overflow: hidden;
  padding-bottom: 90px;
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(174,205,245,.45), transparent 55%),
    linear-gradient(180deg, #dbeafe 0%, #eaf2fd 50%, #dde9fb 100%);
}

.section.alt .botanical {
  position: absolute;
  left: 32px;
  bottom: 0;
  top: auto;
  width: auto;
  height: auto;
  max-height: 100%;
  opacity: .8;
  z-index: 0;
}

.section.alt .botanical.fern-large {
  height: 380px;
}

.section.alt .botanical.fern-small {
  height: 160px;
}

.eyebrow {
  text-transform: uppercase; letter-spacing: 2px; font-size: 13px;
  font-weight: 700; color: var(--blue); margin: 0 0 8px;
}

h2.display, h1.display {
  font-family: "Cormorant Garamond", serif;
  color: var(--navy); font-weight: 600;
  font-size: clamp(34px, 4vw, 50px); line-height: 1.05; margin: 0 0 22px;
}

.lead { font-size: 18px; color: var(--muted); max-width: 720px; }
.prose { color: var(--muted); max-width: 720px; }
.prose p { margin: 0 0 18px; }
.prose strong { color: var(--navy); }

/* ---------- Section title with rules ---------- */
.section-title {
  display: flex; align-items: center; justify-content: center; gap: 30px;
  margin: 0 auto 44px; text-align: center; color: var(--navy);
  font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 18px;
}
.section-title::before, .section-title::after {
  content: ""; width: 200px; max-width: 22vw; height: 1px; background: var(--wash);
}

/* ---------- Page banner (sub-pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(174,205,245,.5), transparent 55%),
    linear-gradient(180deg, #eef5ff, #f6f9fd);
  padding: 70px 6vw 64px; text-align: center;
}
.page-hero .botanical {
  left: -30px;
  bottom: 0;
  top: auto;
  width: 150px;
  opacity: .4;
}
.page-hero .eyebrow { color: var(--blue); }
.page-hero h1 {
  font-family: "Cormorant Garamond", serif; color: var(--navy);
  font-weight: 600; font-size: clamp(40px, 5vw, 64px); line-height: 1.02; margin: 0 0 14px;
}
.page-hero p { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 17px; }

/* ---------- Hero (home) ---------- */
.hero {
  display: grid; grid-template-columns: 1.05fr 1fr;
  padding: 28px 6vw 24px; gap: 48px; align-items: center;
  background: linear-gradient(180deg, #fff 0%, #f3f8ff 100%);
}
.hero-copy { container-type: inline-size; }
.hero h2 {
  font-family: "Cormorant Garamond", serif;
  /* sized to the text column so each sentence stays on one line */
  font-size: clamp(30px, 8.6cqw, 72px); line-height: 1.04;
  margin: 0 0 28px; color: var(--navy); font-weight: 600;
}
.hero h2 .line { display: block; white-space: nowrap; }
.hero h2 .initial { color: var(--blue); font-size: 1.14em; }
.underline { width: 250px; height: 4px; background: linear-gradient(90deg, var(--blue), transparent); border-radius: 999px; margin: 0 0 30px; }
.hero p { max-width: none; font-size: 17px; color: var(--muted); margin-bottom: 34px; }
.hero-actions { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.text-link {
  color: var(--navy); text-decoration: underline; font-weight: 600;
  text-transform: uppercase; font-size: 12px; letter-spacing: 1px;
  display: inline-flex; align-items: center; gap: 10px;
}
.text-link svg { width: 18px; height: 18px; transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }
.hero-art { width: 100%; max-width: 560px; margin-left: auto; }
.hero-art svg, .hero-art img { width: 100%; height: auto; border-radius: 0 0 0 90px; }
.hero-art img {
  border-radius: 0;
  /* feather the edges so the photo melts into the page instead of looking square */
  -webkit-mask-image: radial-gradient(ellipse 58% 82% at 50% 46%, #000 55%, transparent 100%), linear-gradient(to right, #000 55%, transparent 92%);
  -webkit-mask-composite: source-in;
  mask-image: radial-gradient(ellipse 58% 82% at 50% 46%, #000 55%, transparent 100%), linear-gradient(to right, #000 55%, transparent 92%);
  mask-composite: intersect;
}

/* ---------- Ways / feature columns ---------- */
.ways-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  max-width: 1000px; margin: auto; text-align: center;
}
.way { padding: 6px 44px; border-right: 1px solid var(--wash); }
.way:last-child { border-right: 0; }
.icon {
  width: 78px; height: 78px; margin: 0 auto 22px; border-radius: 50%;
  background: var(--pale-blue); display: grid; place-items: center; color: var(--navy);
}
.icon svg { width: 34px; height: 34px; }
.way h3 { margin: 0 0 12px; color: var(--navy); text-transform: uppercase; letter-spacing: 2px; font-size: 19px; font-weight: 700; }
.way p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- About / split layout ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.split.photo-first { grid-template-columns: 0.78fr 1.22fr; }
.botanical { position: absolute; pointer-events: none; opacity: .5; }

.photo-frame {
  position: relative; border-radius: 14px 14px 14px 90px; overflow: hidden;
  background: linear-gradient(160deg, #cfe0f7, #eaf2fd);
  aspect-ratio: 4 / 5; box-shadow: 0 24px 50px -28px rgba(8,42,94,.45);
  display: grid; place-items: center; text-align: center; color: var(--navy);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame .ph {
  padding: 24px; font-size: 14px; font-weight: 600; letter-spacing: .5px; line-height: 1.5;
}
.photo-frame .ph svg { width: 54px; height: 54px; margin: 0 auto 14px; color: var(--blue); }

.info-card { display: grid; gap: 30px; padding-left: 52px; border-left: 1px solid rgba(59, 125, 224, .35); }
.info-row { display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: start; }
.info-row .line-icon { color: var(--navy); }
.info-row .line-icon svg { width: 46px; height: 46px; }
.info-row h3 { margin: 4px 0 6px; color: var(--navy); text-transform: uppercase; letter-spacing: 1.5px; font-size: 15px; font-weight: 700; }
.info-row p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- Chips / specialisms ---------- */
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 6px 0 0; padding: 0; list-style: none; }
.chips li {
  background: var(--pale-blue); color: var(--navy);
  padding: 9px 18px; border-radius: 999px; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
}

/* ---------- Qualification / CPD lists ---------- */
.q-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.q-card {
  background: #fff; border: 1px solid var(--wash); border-radius: 14px; padding: 30px 32px;
  box-shadow: 0 18px 40px -34px rgba(8,42,94,.5);
}
.q-card h3 { margin: 0 0 16px; color: var(--navy); font-size: 16px; text-transform: uppercase; letter-spacing: 1.5px; }
.ticklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.ticklist li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; color: var(--muted); font-size: 15px; }
.ticklist li svg { width: 20px; height: 20px; color: var(--blue); margin-top: 3px; }
.ticklist li b { color: var(--navy); font-weight: 600; }

/* ---------- Issues grid ---------- */
.issues {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px;
}
.issue {
  background: #fff; border: 1px solid var(--wash); border-radius: 14px; padding: 24px 24px;
  transition: transform .2s, box-shadow .2s;
}
.issue:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -30px rgba(8,42,94,.5); }
.issue .mini {
  width: 48px; height: 48px; border-radius: 12px; background: var(--pale-blue);
  display: grid; place-items: center; color: var(--navy); margin-bottom: 16px;
}
.issue .mini svg { width: 24px; height: 24px; }
.issue h3 { margin: 0 0 6px; color: var(--navy); font-size: 16px; }
.issue p { margin: 0; color: var(--muted); font-size: 14px; }

.issue-list {
  margin: 18px 0 0;
  padding-left: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  column-count: 1;
  column-gap: 56px;
}
.issue-list li {
  margin-bottom: 12px;
  break-inside: avoid;
}
.issue-list li strong {
  color: var(--navy);
}

@media (min-width: 960px) {
  .issue-list {
    column-count: 2;
  }
}

/* ---------- Steps (how it works) ---------- */
.steps {
  display: flex; align-items: stretch; justify-content: center; gap: 24px; counter-reset: step;
}
.step {
  background: #fff; border: 1px solid var(--wash);
  border-radius: 16px; padding: 34px 28px 28px; flex: 1 1 320px; min-width: 260px;
}
.step-arrow {
  display: grid; place-items: center; color: var(--blue);
  flex: 0 0 48px;
}
.step-arrow svg { width: 28px; height: 28px; transform: rotate(0deg); }
.step h3 { margin: 8px 0 8px; color: var(--navy); font-size: 18px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

@media (max-width: 960px) {
  .steps { display: grid; grid-template-columns: 1fr; gap: 28px; }
  .step-arrow { display: none; }
}

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.svc {
  background: #fff; border: 1px solid var(--wash); border-radius: 16px;
  padding: 32px; display: flex; flex-direction: column; gap: 14px;
}
.svc h3 { margin: 0; color: var(--navy); font-size: 20px; }
.svc p { margin: 0; color: var(--muted); }
.svc .price { margin-top: auto; font-weight: 700; color: var(--navy); font-size: 15px; }

/* ---------- Testimonials ---------- */
.t-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1000px; margin: 0 auto; }
.quote {
  position: relative; background: #fff; border: 1px solid var(--wash);
  border-radius: 16px; padding: 36px 34px 28px;
  box-shadow: 0 20px 44px -34px rgba(8,42,94,.5);
}
.quote .mark {
  font-family: "Cormorant Garamond", serif; font-size: 70px; line-height: .6;
  color: var(--blue-soft); position: absolute; top: 26px; left: 28px; opacity: .5;
}
.quote p { margin: 22px 0 18px; color: var(--text); font-style: italic; font-size: 16px; }
.quote .who { font-weight: 700; color: var(--navy); letter-spacing: 1px; text-transform: uppercase; font-size: 13px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--wash); padding: 18px 4px;
}
.faq summary {
  cursor: pointer; list-style: none; font-weight: 600; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { width: 18px; height: 18px; color: var(--blue); transition: transform .2s; flex: none; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq details p { margin: 14px 0 4px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 64px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.contact-grid form.enquiry { max-width: 540px; margin: 0 auto; }
.contact-details { margin-top: 150px; }
.contact-list2 { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 20px; }
.contact-list2 li { display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: start; }
.contact-list2 .ci { width: 46px; height: 46px; border-radius: 50%; background: var(--pale-blue); display: grid; place-items: center; color: var(--navy); }
.contact-list2 .ci svg { width: 22px; height: 22px; }
.contact-list2 h3 { margin: 0 0 2px; color: var(--navy); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.contact-list2 p, .contact-list2 a { margin: 0; color: var(--muted); text-decoration: none; }
.contact-list2 a:hover { color: var(--blue); }

form.enquiry { background: transparent; border: none; border-radius: 0; padding: 32px 0 0; box-shadow: none; }
form.enquiry label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin: 0 0 6px; letter-spacing: .5px; }
form.enquiry .field { margin-bottom: 18px; }
form.enquiry input, form.enquiry textarea, form.enquiry select {
  width: 100%; padding: 13px 14px; border: 1px solid var(--wash); border-radius: 10px;
  font: inherit; color: var(--text); background: #fbfdff;
}
form.enquiry input:focus, form.enquiry textarea:focus, form.enquiry select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,125,224,.15);
}
form.enquiry textarea { min-height: 130px; resize: vertical; }
form.enquiry .consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: 13px; color: var(--muted); }
form.enquiry .consent input { width: auto; margin-top: 3px; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 14px; }

/* ---------- Crisis banner ---------- */
.crisis {
  background: var(--navy); color: #fff; border-radius: 16px;
  padding: 26px 30px; display: flex; gap: 18px; align-items: flex-start;
  max-width: var(--maxw); margin: 0 auto;
}
.crisis svg { width: 30px; height: 30px; color: var(--blue-soft); flex: none; margin-top: 2px; }
.crisis h3 { margin: 0 0 6px; color: #fff; font-size: 16px; }
.crisis p { margin: 0; color: rgba(255,255,255,.85); font-size: 14px; }
.crisis a { color: #fff; font-weight: 600; }

/* ---------- CTA band ---------- */
.cta {
  position: relative; background: linear-gradient(180deg, #eef4fd, #e4eefb);
  padding: 64px 6vw; display: grid; grid-template-columns: 1fr auto; gap: 40px;
  align-items: center; overflow: hidden;
}
.cta .botanical {
  left: 32px;
  bottom: 0;
  top: auto;
  width: auto;
  height: 160px;
  color: var(--blue);
}
.cta-copy { position: relative; z-index: 1; padding-left: 130px; }
.script {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: clamp(32px, 3.6vw, 52px); color: var(--navy); margin: 0;
  line-height: 1.15;
}
.script svg { width: 34px; height: 34px; color: var(--blue); flex: none; }
.strap { color: var(--blue); text-transform: uppercase; letter-spacing: 5px; font-weight: 700; margin-top: 16px; font-size: 14px; white-space: nowrap; overflow-wrap: normal; }
.cta-action { text-align: right; }
.cta-action p { margin: 12px 0 0; color: var(--muted); font-size: 14px; }

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; margin: 0 auto; color: var(--muted); }
.legal h2 { color: var(--navy); font-size: 22px; margin: 38px 0 12px; font-family: "Cormorant Garamond", serif; font-weight: 600; }
.legal h3 { color: var(--navy); font-size: 16px; margin: 24px 0 8px; }
.legal p, .legal li { margin: 0 0 12px; }
.legal ul { padding-left: 20px; }
.legal .updated { font-size: 13px; color: var(--muted); font-style: italic; }
.placeholder { background: #fff4d6; color: #6b4e00; padding: 1px 7px; border-radius: 5px; font-weight: 600; font-size: .92em; }

/* ---------- Footer ---------- */
footer { background: linear-gradient(135deg, var(--navy-deep), #0c3a76); color: #fff; padding: 56px 6vw 26px; }
footer a, footer p, footer li { color: rgba(255, 255, 255, .85); }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1.2fr 1fr; gap: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .18); padding-bottom: 40px; max-width: 1300px; margin: 0 auto;
}
.footer-brand .logo-mark .ring { border-color: var(--blue-soft); border-bottom-color: transparent; }
.footer-brand .logo-mark .letters { color: #fff; }
.footer-brand h3 { margin: 14px 0 4px; }
.footer-brand p { margin: 0; font-size: 14px; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); display: grid; place-items: center; transition: background .2s, border-color .2s; }
.socials a:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.socials svg { width: 16px; height: 16px; }
footer h3 { text-transform: uppercase; font-size: 13px; letter-spacing: 1.5px; margin: 0 0 18px; color: #fff; }
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; font-size: 14px; }
footer ul a { text-decoration: none; transition: color .2s; }
footer ul a:hover { color: #fff; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; }
.contact-list svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--blue-soft); }
.copyright { display: flex; justify-content: space-between; gap: 20px; font-size: 13px; margin-top: 22px; color: rgba(255, 255, 255, .7); max-width: 1300px; margin-left: auto; margin-right: auto; }
.reg-line { font-size: 13px; margin-top: 10px; color: rgba(255,255,255,.7); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  header { flex-direction: row; align-items: center; justify-content: space-between; gap: 10px; position: relative; }
  .brand { width: auto; flex: 1 1 auto; gap: 8px; }
  .logo-mark { display: none; }
  .brand h1 { font-size: 18px; letter-spacing: 1.5px; }
  .brand p { font-size: 9px; letter-spacing: .8px; line-height: 1.1; }
  .nav-toggle { display: inline-flex; position: static; order: -1; align-self: center; margin: 0; z-index: 60; padding: 0; }
  nav { display: none; position: absolute; top: 100%; right: 6vw; left: 6vw; background: #fff; border-radius: 24px; box-shadow: 0 22px 42px rgba(8, 42, 94, .12); padding: 14px; flex-direction: column; gap: 6px; margin-top: -8px; }
  nav a { flex: none; width: 100%; text-align: left; padding: 12px 22px; border-bottom: 0; }
  nav a:not(.button) { border-radius: 14px; background: rgba(8, 42, 94, .05); color: var(--navy); }
  nav .button { border-radius: 14px; }
  #nav-toggle:checked ~ nav { display: flex; }
  .button { width: 100%; }
  .hero, .split, .split.photo-first, .footer-grid, .contact-grid, .q-grid { grid-template-columns: 1fr; }
  .contact-details { margin-top: 0; }
  .hero { padding-top: 24px; gap: 28px; }
  .hero-art { margin: 0 auto; order: -1; width: 25vw; max-width: 120px; }
  .botanical.fern, .section.alt .botanical.fern-large, .section.alt .botanical.fern-small, .section.alt .botanical, .cta .botanical, .page-hero .botanical { display: none; }
  .page-hero { padding: 44px 6vw 20px; }
  .page-hero + .section { padding-top: 24px; }
  .ways-grid, .issues, .steps, .svc-grid, .t-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .button .desktop-text { display: none; }
  .button .mobile-text { display: inline; }
  .hero-actions .text-link { display: none; }
  .hero-art img {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .way { border-right: 0; border-bottom: 1px solid var(--wash); padding: 26px 10px; }
  .way:last-child { border-bottom: 0; }
  .info-card { padding-left: 0; border-left: 0; }
  .cta { grid-template-columns: 1fr; padding: 40px 6vw; }
  .cta-copy { padding-left: 0; }
  .cta-action { text-align: left; }
  .strap { white-space: normal; letter-spacing: 2px; }
  .script { font-size: clamp(28px, 4vw, 36px); }
  .cta-action p { font-size: 13px; }
  .footer-grid { gap: 32px; }
  .copyright { flex-direction: column; gap: 6px; }
  .split.photo-first .photo-frame { max-width: 360px; margin: 0 auto; }
}

@media (max-width: 620px) {
  .hero-art { max-width: 260px; }
  .logo-mark { width: 58px; height: 58px; }
  .brand h1 { font-size: 16px; }
  .brand p { font-size: 8px; letter-spacing: 0.8px; }
}
@media (max-width: 620px) {
  .issues { grid-template-columns: 1fr; }
  .brand h1 { font-size: 20px; }
}

@media (min-width: 960px) {
  .chips { flex-wrap: nowrap; }
}
