/* ============================================================
   Horizon Learning Centre
   Concept: graph paper + ink. Warm paper stock, navy ink,
   one marigold accent, handwritten annotations.
   ============================================================ */

:root {
  --paper:    #FCF8F2;
  --paper-2:  #F5EEE3;
  --card:     #FFFDFA;

  --ink:      #12203C;
  --ink-2:    #2C3C5E;
  --ink-soft: #5C6883;
  --ink-mute: #8A93A8;

  --accent:   #E9A23B;
  --accent-2: #C67F1E;
  --accent-w: #FBEAC9;

  --line:     #E4DACA;
  --line-2:   #D6C9B4;

  --serif: "Fraunces", Georgia, serif;
  --sans:  "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hand:  "Caveat", cursive;

  --wrap: 1120px;
  --pad: 24px;
  --r: 4px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; margin: 0; padding: 0; }
p { margin: 0; }
a { color: inherit; }

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

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  padding: 12px 18px; background: var(--ink); color: var(--paper);
  font-size: 15px; font-weight: 600; text-decoration: none;
}
.skip:focus { left: 14px; top: 14px; }

/* ---- graph paper backdrop ---- */
.paper {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(18, 32, 60, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 32, 60, .045) 1px, transparent 1px),
    linear-gradient(rgba(18, 32, 60, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 32, 60, .028) 1px, transparent 1px);
  background-size: 120px 120px, 120px 120px, 24px 24px, 24px 24px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--pad);
}
.wrap--narrow { max-width: 760px; }

/* ============ TYPE ============ */

.display {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(44px, 7.4vw, 76px);
  line-height: 1.03;
  letter-spacing: -.028em;
  margin: 0 0 26px;
}

.h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -.022em;
  margin: 0;
}

.h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -.012em;
  margin: 0 0 8px;
}

.kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 12px;
}
.kicker--light { color: var(--accent); }

.prose {
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink-2);
  margin-bottom: 18px;
  max-width: 34em;
}
.prose--light { color: rgba(252, 248, 242, .82); }
.h2 + .prose { margin-top: 22px; }

/* handwritten annotation */
.scribble {
  font-family: var(--hand);
  font-size: 27px;
  font-weight: 600;
  color: var(--accent-2);
  line-height: 1;
}

/* underline drawn under a word */
.mark-word { position: relative; display: inline-block; white-space: nowrap; }
.underline {
  position: absolute;
  left: -1%; bottom: -.16em;
  width: 102%; height: .28em;
  color: var(--accent);
  overflow: visible;
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border: 1.5px solid transparent;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .005em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background-color .14s ease;
}
.btn--accent {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.btn--accent:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
.btn--accent:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }

.btn--quiet {
  border-color: var(--line-2);
  color: var(--ink);
  background: transparent;
}
.btn--quiet:hover { background: var(--paper-2); border-color: var(--ink); }

.btn--sm { padding: 10px 18px; font-size: 15px; box-shadow: 2px 2px 0 var(--ink); }
.btn--sm:hover { box-shadow: 3px 3px 0 var(--ink); }
.btn--full { width: 100%; }

/* ============ NAV ============ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 248, 242, .93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}

.mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: none;
}
.mark__glyph { width: 26px; height: 26px; color: var(--accent-2); flex: none; }
.mark__text {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -.02em;
}
.mark__sub {
  display: block;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 3px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__menu > a:not(.btn) {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .14s ease, border-color .14s ease;
}
.nav__menu > a:not(.btn):hover { color: var(--ink); border-bottom-color: var(--accent); }

.nav__toggle {
  display: none;
  padding: 10px;
  background: none;
  border: 1.5px solid var(--line-2);
  border-radius: 2px;
  cursor: pointer;
}
.nav__bars { display: block; width: 20px; }
.nav__bars i {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.nav__bars i + i { margin-top: 5px; }

/* ============ HERO ============ */

.hero { padding: clamp(48px, 8vw, 92px) 0 clamp(52px, 8vw, 96px); }

.hero__in {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.eyebrow__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

.lede {
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.68;
  color: var(--ink-2);
  max-width: 33em;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 30px;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust li { display: flex; align-items: center; gap: 9px; }
.trust li::before {
  content: "✓";
  color: var(--accent-2);
  font-weight: 700;
}

/* hero art: two notebook cards + stamp */
.hero__art {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.notes {
  position: relative;
  width: min(340px, 100%);
  display: grid;
  gap: 16px;
}

.note {
  position: relative;
  width: 100%;
  padding: 22px 24px 26px;
  background: var(--card);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r);
  box-shadow: 8px 10px 0 rgba(18, 32, 60, .07);
  background-image:
    linear-gradient(rgba(18, 32, 60, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 32, 60, .05) 1px, transparent 1px);
  background-size: 22px 22px;
}
.note--math { transform: rotate(-2deg); }
.note--eng  { transform: rotate(1.6deg); }

.note__label {
  font-family: var(--hand);
  font-size: 20px;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.note__work {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -.01em;
}
.note__work i { font-style: italic; }
.note__work .dim { color: var(--ink-mute); font-size: 18px; }
.note__work .hit { color: var(--accent-2); font-weight: 600; }
.note__work .tick { font-family: var(--sans); font-size: 20px; }

/* English note: struck word + handwritten correction */
.note__work--eng { font-size: 20px; line-height: 1.45; }
.note__work--eng .strike {
  text-decoration: line-through;
  text-decoration-color: var(--accent-2);
  text-decoration-thickness: 2px;
  color: var(--ink-mute);
}
.note__work--eng .corr {
  font-family: var(--hand);
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-2);
  margin-top: 6px;
}

.scribble--1 {
  position: absolute;
  right: -26px;
  bottom: -22px;
  transform: rotate(-8deg);
}

.stamp {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 88px; height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  transform: rotate(9deg);
}
.stamp__n {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.02em;
}
.stamp__l {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3px;
}

/* ============ PAIN BAND ============ */

.band {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(44px, 6vw, 68px) 0;
}
.band__title {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: -.018em;
  margin-bottom: 28px;
}
.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;
  margin-bottom: 28px;
}
.quotes li {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(252, 248, 242, .9);
  padding-left: 20px;
  border-left: 2px solid var(--accent);
}
.band__foot {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
}

/* ============ SECTIONS ============ */

.sec {
  padding: clamp(56px, 8vw, 104px) 0;
  scroll-margin-top: 72px;
}
.sec--alt { background: var(--paper-2); border-block: 1px solid var(--line); }
.sec--ink { background: var(--ink); color: var(--paper); }
.sec--ink .h2 { color: var(--paper); }
.sec--ink .sec__sub { color: rgba(252, 248, 242, .68); }

.sec__head { margin-bottom: clamp(36px, 5vw, 56px); max-width: 42em; }
.sec__head--center { margin-inline: auto; text-align: center; }
.sec__sub {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-top: 16px;
}

/* ---- numbered list ---- */
.list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
}
.list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}
.list__n {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: .9;
  color: var(--accent);
  letter-spacing: -.03em;
}
.list__item p {
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--ink-2);
}

/* ---- grade bands ---- */
.bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gband {
  padding: 28px 26px 30px;
  background: var(--card);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r);
  box-shadow: 5px 6px 0 rgba(18, 32, 60, .06);
}
.gband__top {
  display: flex;
  align-items: baseline;
  gap: 14px;
  min-height: 78px;            /* clears a two-line title so the rule stays level */
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.gband__n {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--accent-2);
  flex: none;
}
.gband__h {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.015em;
  margin: 0;
}
.gband__p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.chipgroup + .chipgroup { margin-top: 18px; }
.chipgroup__k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 9px;
}
.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chips li {
  padding: 5px 11px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* ---- about: two tutors ---- */
.tutors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.tutor {
  padding: 26px 26px 28px;
  background: var(--card);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r);
  box-shadow: 6px 7px 0 rgba(18, 32, 60, .06);
}
.tutor__top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.tutor__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.018em;
  margin: 0;
}
.tutor__role {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-top: 5px;
}
.tutor__bio {
  font-size: 16px;
  line-height: 1.68;
  color: var(--ink-2);
}

/* illustrated ink avatars (swap for photos when there are any) */
.avatar { flex: none; display: block; width: 74px; height: 74px; }
.avatar svg { width: 100%; height: 100%; display: block; }
.avatar .a-bg  { fill: var(--paper-2); }
.avatar .a-ink {
  fill: none;
  stroke: var(--ink);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.avatar .a-acc {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.facts {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 2px solid var(--ink);
}
.facts li {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  padding-left: 20px;
  position: relative;
}
.facts li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 1px;
  transform: rotate(45deg);
}
.facts strong { font-weight: 700; color: var(--ink); }

/* ---- steps ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.step { padding-top: 22px; border-top: 2px solid rgba(233, 162, 59, .45); }
.step__n {
  display: block;
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--accent);
  margin-bottom: 14px;
}
.step__h {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -.015em;
  margin: 0 0 10px;
  min-height: 2.56em;          /* two lines, so the copy below stays level */
  color: var(--paper);
}
.step p {
  font-size: 15.5px;
  line-height: 1.68;
  color: rgba(252, 248, 242, .74);
}
.steps__foot { margin-top: 48px; text-align: center; }

/* ---- testimonials ---- */
.says {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.say {
  margin: 0;
  padding: 30px 26px 26px;
  background: var(--card);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r);
  box-shadow: 5px 6px 0 rgba(18, 32, 60, .06);
  position: relative;
}
.say::before {
  content: "“";
  position: absolute;
  top: 6px; left: 20px;
  font-family: var(--serif);
  font-size: 62px;
  line-height: 1;
  color: var(--accent-w);
}
.say blockquote {
  position: relative;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.52;
  letter-spacing: -.01em;
  color: var(--ink);
}
.say figcaption {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---- rates ---- */
.rates {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.rates .btn { margin-top: 8px; }
.incl {
  display: grid;
  gap: 2px;
  padding: 26px 26px 28px;
  background: var(--card);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r);
  box-shadow: 5px 6px 0 rgba(18, 32, 60, .06);
}
.incl li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 11px 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.incl li:last-child { border-bottom: 0; }
.incl li span { color: var(--accent-2); font-weight: 700; flex: none; }

/* ---- faq ---- */
.faq { border-top: 2px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line-2); }
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.015em;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  color: var(--accent-2);
  transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--accent-2); }
.faq__a { padding: 0 40px 24px 0; }
.faq__a p {
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--ink-2);
}

/* ---- contact ---- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.cinfo {
  display: grid;
  gap: 18px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(252, 248, 242, .2);
}
.cinfo li { display: grid; gap: 3px; }
.cinfo__k {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--accent);
}
.cinfo a, .cinfo li > span:not(.cinfo__k) {
  font-size: 18px;
  font-weight: 600;
  color: var(--paper);
  text-decoration: none;
  overflow-wrap: break-word;
}
.cinfo a { border-bottom: 1.5px solid rgba(233, 162, 59, .55); }
.cinfo a:hover { border-bottom-color: var(--accent); }

.form {
  padding: 30px 28px 32px;
  background: var(--paper);
  border-radius: var(--r);
  box-shadow: 8px 9px 0 rgba(233, 162, 59, .35);
}
.form__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.018em;
  color: var(--ink);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--ink);
}
.field { margin-bottom: 16px; }
.field--split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.opt { font-weight: 500; color: var(--ink-mute); text-transform: none; letter-spacing: 0; }

.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 13px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--card);
  border: 1.5px solid var(--line-2);
  border-radius: 2px;
  transition: border-color .14s ease, box-shadow .14s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(233, 162, 59, .22);
}
.field ::placeholder { color: var(--ink-mute); }

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

.form__note {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-mute);
  text-align: center;
}
.form__status {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
.form__status.is-ok  { color: #1E6B43; }
.form__status.is-err { color: #A8341F; }

/* ============ FOOTER ============ */

.foot {
  padding: 40px 0 52px;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.foot__in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px 40px;
}
.foot__name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.018em;
}
.foot__sub { font-size: 14.5px; color: var(--ink-soft); margin-top: 4px; }
.foot__links { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.foot__links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
}
.foot__links a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ============ RESPONSIVE ============ */

@media (max-width: 980px) {
  .list, .bands, .says, .steps { grid-template-columns: repeat(2, 1fr); }
  .hero__in, .rates, .contact { grid-template-columns: 1fr; }
  .hero__art { justify-content: flex-start; margin-top: 12px; }
  .sec__head { max-width: none; }
}

@media (max-width: 760px) {
  body { font-size: 16.5px; }

  .nav__toggle { display: block; }
  .nav__menu {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--pad) 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 24px -18px rgba(18, 32, 60, .5);
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu > a:not(.btn) {
    padding: 14px 0;
    font-size: 17px;
    border-bottom: 1px solid var(--line);
  }
  .nav__menu > a:not(.btn):hover { border-bottom-color: var(--line); }
  .nav__menu .btn { margin-top: 16px; }

  .list, .bands, .says, .steps, .quotes, .tutors, .field--split { grid-template-columns: 1fr; }
  .list { gap: 30px; }
  .steps { gap: 30px; }
  .step__h, .gband__top { min-height: 0; }   /* stacked: nothing to align to */
  .scribble--1 { right: -8px; bottom: -14px; }
  .stamp { width: 74px; height: 74px; }
  .stamp__n { font-size: 20px; }
  .note { width: 100%; }
  .faq summary { font-size: 18px; }
  .faq__a { padding-right: 0; }
  .foot__in { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .btn:hover, .btn:active { transform: none; }
}

@media print {
  .nav, .paper, .form, .scribble { display: none; }
  body { background: #fff; }
}
