/* ============================================================
   Shierly Therapy — styles
   Navy & steel-blue palette · mobile-first · GSAP-friendly
   Matches shierlytherapy.com.au colour scheme
   ============================================================ */

:root {
  /* palette */
  --white:         #FFFFFF;
  --light-blue:    #C5D8E4;   /* "What is Therapy?" section bg */
  --mid-blue:      #B0C4D0;   /* areas of support bg */
  --navy:          #1E3355;   /* primary text, buttons, headings */
  --navy-deep:     #152540;   /* hover */
  --navy-soft:     #2D4A6B;   /* softer navy for body text on dark */
  --blue-accent:   #4A6898;   /* pillar headings, accent text */
  --blue-light:    #6B8EB5;   /* lighter accent */
  --grey-bg:       #F4F7F9;   /* light section bg */
  --ink:           #1E3355;   /* alias for body text */
  --ink-soft:      #4A5F78;   /* secondary body text */

  /* type */
  --serif:  "Cinzel", Georgia, "Times New Roman", serif;
  --body:   "Lato", system-ui, sans-serif;

  /* layout */
  --maxw:   1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 4px;
  --nav-h:  80px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
html, body { scrollbar-gutter: stable; }

body {
  font-family: var(--body);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.9;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.04em;
}

::selection { background: var(--navy); color: var(--white); }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* ---------- utilities ---------- */
.container { width: min(100% - 2 * var(--gutter), var(--maxw)); margin-inline: auto; }

section[id] { scroll-margin-top: var(--nav-h); }

.section-eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-accent);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.9rem, 1.3rem + 3vw, 3.4rem);
  margin-bottom: 1.4rem;
  color: var(--navy);
}

.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--navy); color: var(--white); padding: 0.6rem 1rem; border-radius: 10px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 3px solid var(--blue-accent); outline-offset: 3px; border-radius: 4px; }
main:focus, main:focus-visible { outline: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--body); font-weight: 400; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1em 2em; border-radius: 100px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.4s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--navy); color: var(--white); }
.btn--solid:hover { background: var(--navy-deep); }
.btn--ghost { border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--outline { border-color: rgba(255,255,255,0.5); color: var(--white); background: rgba(255,255,255,0.08); }
.btn--outline:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.8); }
.btn--block { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease), color 0.4s var(--ease);
  color: var(--white);
}
.nav:not(.is-scrolled) { text-shadow: 0 1px 8px rgba(10,18,30,0.6); }
.nav.is-scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(30,51,85,0.12);
  color: var(--navy);
  text-shadow: none;
}
.nav__inner {
  width: min(100% - 2 * var(--gutter), var(--maxw)); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand {
  display: inline-flex; align-items: center;
}
.nav__logo {
  height: 40px; width: auto; display: block;
}
.nav__logo--light { display: none; }
.nav:not(.is-scrolled) .nav__logo--dark { display: none; }
.nav:not(.is-scrolled) .nav__logo--light { display: block; }
.footer .nav__logo--dark { display: none; }
.footer .nav__logo--light { display: block; }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.2rem); }
.nav__links a { font-family: var(--body); font-size: 0.95rem; position: relative; }
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1.5px; width: 0;
  background: currentColor; transition: width 0.35s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after,
.nav__links a:not(.nav__cta)[aria-current="true"]::after { width: 100%; }
.nav__cta {
  background: var(--navy); color: var(--white) !important;
  padding: 0.55em 1.3em; border-radius: 100px;
  font-size: 0.85rem; letter-spacing: 0.06em;
  transition: background-color 0.3s var(--ease);
}
.nav:not(.is-scrolled) .nav__cta { background: var(--navy); }
.nav__cta:hover { background: var(--navy-deep) !important; transform: none; }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem; color: inherit; -webkit-tap-highlight-color: transparent; }
.nav__toggle span {
  display: block; width: 26px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.nav__toggle span + span { margin-top: 6px; }
body.menu-open .nav { color: var(--navy); text-shadow: none; background: var(--white); }
body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: var(--white);
  display: flex; flex-direction: column; justify-content: center; gap: 2.5rem;
  padding: var(--gutter);
  transform: translateY(-100%); transition: transform 0.55s var(--ease);
  visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu__links a {
  font-family: var(--serif); font-size: clamp(2rem, 9vw, 3rem); color: var(--navy);
  letter-spacing: 0.06em;
}
.mobile-menu__cta { color: var(--blue-accent) !important; }
.mobile-menu__contact { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.7; }
.mobile-menu__contact a { text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex;
  align-items: flex-end; overflow: hidden; color: var(--white);
}
.hero__media { position: absolute; inset: -8% 0; z-index: 0; clip-path: inset(0 0 0 0); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(15,25,45,0.28) 0%,
      rgba(15,25,45,0.18) 28%,
      rgba(15,25,45,0.15) 50%,
      rgba(15,25,45,0.35) 75%,
      rgba(15,25,45,0.55) 100%),
    rgba(200,160,80,0.05);
}
.hero__content {
  position: relative; z-index: 2;
  width: min(100% - 2 * var(--gutter), var(--maxw)); margin-inline: auto;
  padding-bottom: clamp(4rem, 10vh, 8rem); padding-top: calc(var(--nav-h) + 2rem);
  text-align: center;
}
.hero__title {
  font-size: clamp(3.5rem, 2rem + 8vw, 8rem);
  font-weight: 400; letter-spacing: 0.06em; color: var(--white);
  text-shadow: 0 2px 20px rgba(10,18,30,0.5);
  margin-bottom: 1.2rem;
}
.hero__title span { display: block; }
.hero__title-img { width: clamp(280px, 60vw, 720px); height: auto; display: block; margin-inline: auto; mix-blend-mode: screen; }
.hero__eyebrow {
  font-family: var(--serif); font-size: clamp(1rem, 0.8rem + 1vw, 1.4rem);
  letter-spacing: 0.1em; color: var(--white); margin-bottom: 0.5rem;
  font-weight: 400;
}
.hero__location {
  font-family: var(--serif); font-size: clamp(1rem, 0.8rem + 1vw, 1.4rem);
  letter-spacing: 0.08em; color: rgba(255,255,255,0.9); margin-bottom: 1.6rem;
}
.hero__tagline {
  font-family: var(--body); font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
  font-style: italic; color: rgba(255,255,255,0.92);
  max-width: 48ch; margin-inline: auto; margin-bottom: 2.4rem; line-height: 1.7;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   WHAT IS THERAPY?
   ============================================================ */
.therapy {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background: var(--light-blue);
}
.therapy__grid {
  display: grid;
  gap: clamp(2rem, 6vw, 6rem);
  grid-template-columns: 1fr;
  align-items: center;
}
.therapy__heading {
  font-size: clamp(2.2rem, 1.5rem + 4vw, 4.5rem);
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 0;
}
.therapy__content p {
  color: var(--navy);
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.2rem);
  line-height: 1.75;
  max-width: 56ch;
  margin-bottom: 2rem;
}

/* ============================================================
   MY APPROACH
   ============================================================ */
.approach {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background: var(--white);
  text-align: center;
}
.approach__title {
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}
.pillars {
  display: grid; gap: 2rem; grid-template-columns: 1fr;
  max-width: 900px; margin-inline: auto;
}
.pillar { padding: clamp(1.4rem, 3vw, 2rem); }
.pillar h3 {
  font-family: var(--serif); font-size: clamp(0.85rem, 0.75rem + 0.5vw, 1rem);
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue-accent); margin-bottom: 1rem; line-height: 1.4;
}
.pillar p { color: var(--ink-soft); max-width: 32ch; margin-inline: auto; }

.approach__cta { margin-top: clamp(2.5rem, 6vh, 4rem); }

/* ============================================================
   WHAT I OFFER
   ============================================================ */
.offer {
  position: relative;
  padding: clamp(4rem, 10vh, 7rem) 0;
  color: var(--white);
  overflow: hidden;
}
.offer__media {
  position: absolute; inset: -8% 0; z-index: 0;
}
.offer__media img { width: 100%; height: 116%; object-fit: cover; }
.offer__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,25,45,0.88) 0%,
    rgba(15,25,45,0.70) 50%,
    rgba(15,25,45,0.60) 100%
  );
}
.offer__grid {
  position: relative; z-index: 2;
  display: grid; gap: clamp(3rem, 6vw, 6rem);
  grid-template-columns: 1fr;
  align-items: start;
}
.offer__intro .section-title { color: var(--white); margin-bottom: 1.2rem; }
.offer__intro p { color: rgba(255,255,255,0.85); max-width: 40ch; margin-bottom: 2rem; }

.offer__accordion { border-top: 1px solid rgba(255,255,255,0.25); }
.offer__item { border-bottom: 1px solid rgba(255,255,255,0.25); }
.offer__item summary {
  list-style: none; cursor: pointer;
  padding: 1.3rem 0;
  font-family: var(--body); font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
  color: var(--white);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.offer__item summary::-webkit-details-marker { display: none; }
.offer__item summary::after {
  content: "+"; font-family: var(--body); font-size: 1.4rem;
  color: rgba(255,255,255,0.7); transition: transform 0.35s var(--ease); flex-shrink: 0;
}
.offer__item[open] summary::after { transform: rotate(45deg); }
.offer__answer { overflow: hidden; }
.offer__answer p { color: rgba(255,255,255,0.8); padding-bottom: 1.4rem; max-width: 56ch; }

/* ============================================================
   AREAS OF SUPPORT
   ============================================================ */
.areas-section { background: var(--light-blue); text-align: center; }

.areas-section__banner {
  position: relative; height: clamp(180px, 28vw, 320px); overflow: hidden;
}
.areas-section__banner img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 55%;
}
.areas-section__title {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(2rem, 1.4rem + 4vw, 5rem);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy);
  /* dark-to-transparent gradient so title reads over the photo */
  background: linear-gradient(to bottom, rgba(197,216,228,0.0) 0%, rgba(197,216,228,0.55) 60%, rgba(197,216,228,1) 100%);
}
.areas-section__inner {
  padding: clamp(2.5rem, 6vh, 4rem) 0 clamp(4rem, 10vh, 7rem);
}
.areas__list {
  max-width: 760px; margin-inline: auto; text-align: left;
}
.area__item {
  border-bottom: 1px solid rgba(30,51,85,0.18);
}
.area__item:first-child {
  border-top: 1px solid rgba(30,51,85,0.18);
}
.area__item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0;
  font-family: var(--serif); font-size: clamp(0.9rem, 0.82rem + 0.35vw, 1.05rem);
  font-weight: 600; letter-spacing: 0.06em; color: var(--navy);
  cursor: pointer; list-style: none; user-select: none;
  gap: 1rem;
}
.area__item summary::-webkit-details-marker { display: none; }
.area__item summary::after {
  content: "+"; font-size: 1.25rem; line-height: 1; color: var(--blue-accent);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.area__item[open] > summary::after {
  transform: rotate(45deg);
}
.area__item summary:hover { color: var(--blue-accent); }
.area__answer {
  overflow: hidden;
}
.area__answer p {
  font-family: var(--body); font-size: clamp(0.88rem, 0.82rem + 0.3vw, 1rem);
  color: var(--navy); line-height: 1.7; opacity: 0.82;
  padding-bottom: 1.2rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: clamp(4rem, 10vh, 7rem) 0; background: var(--white); }
.about__grid { display: grid; gap: clamp(2rem, 5vw, 5rem); align-items: center; grid-template-columns: 1fr; }
.about__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: 0 30px 60px -30px rgba(30,51,85,0.3); }
.about__media img { width: 100%; height: 118%; object-fit: cover; object-position: center 38%; }
.about__text p { color: var(--ink-soft); margin-top: 1.1rem; max-width: 52ch; }
.about__text p:first-of-type { color: var(--navy); }
.about__creds { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.about__creds li { position: relative; padding-left: 1.6rem; color: var(--navy); font-weight: 700; }
.about__creds li::before { content: "—"; position: absolute; left: 0; color: var(--blue-accent); }

/* ============================================================
   PROCESS (pinned)
   ============================================================ */
.process { background: var(--navy); color: var(--white); }
.process__sticky { padding: clamp(4rem, 10vh, 7rem) 0; }
.process__inner { display: grid; gap: clamp(2.5rem, 6vw, 5rem); grid-template-columns: 1fr; align-items: start; }
.process__intro .section-eyebrow { color: rgba(255,255,255,0.6); }
.process__intro .section-title { color: var(--white); }
.process__progress { display: none; }

.process__steps { display: flex; flex-direction: column; gap: 1.2rem; }
.process__step {
  display: flex; gap: 1.3rem; align-items: flex-start;
  padding: 1.4rem 1.6rem; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
}
.process__step-num { font-family: var(--serif); font-size: 1.5rem; color: rgba(255,255,255,0.5); line-height: 1; flex-shrink: 0; }
.process__step h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 0.35rem; letter-spacing: 0.02em; }
.process__step p { color: rgba(255,255,255,0.75); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: clamp(4rem, 10vh, 7rem) 0; background: var(--grey-bg); }
.faq__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: start; }
.faq__lead { color: var(--ink-soft); margin-top: 1rem; }
.faq__lead a { color: var(--blue-accent); text-decoration: underline; text-underline-offset: 3px; }
.faq__more { padding-top: 2.5rem; }
.faq__item { border-bottom: 1px solid rgba(30,51,85,0.15); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.3rem 0;
  font-family: var(--body); font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
  color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--body); font-size: 1.4rem; color: var(--navy); transition: transform 0.35s var(--ease); flex-shrink: 0; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer { overflow: hidden; }
.faq__answer p { color: var(--ink-soft); padding-bottom: 1.4rem; max-width: 60ch; }
.faq__answer a { color: var(--blue-accent); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background: var(--white);
}
.contact__grid { display: grid; gap: clamp(2.5rem, 6vw, 5rem); grid-template-columns: 1fr; }
.contact__intro .section-eyebrow { color: var(--blue-accent); }
.contact__intro .section-title { color: var(--navy); }
.contact__intro p { color: var(--ink-soft); max-width: 44ch; margin-top: 1rem; }
.contact__details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact__details li { display: flex; flex-direction: column; gap: 0.15rem; }
.contact__details span { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-accent); font-weight: 700; }
.contact__details a { font-size: 1.05rem; text-decoration: underline; text-underline-offset: 4px; color: var(--navy); }

.contact__form {
  background: var(--grey-bg); color: var(--navy); border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem); display: flex; flex-direction: column; gap: 1.1rem;
  box-shadow: 0 20px 50px -20px rgba(30,51,85,0.15);
}
.contact__form label { display: flex; flex-direction: column; gap: 0.45rem; font-size: 0.9rem; font-weight: 700; font-family: var(--body); letter-spacing: 0.02em; }
.contact__form small { color: var(--ink-soft); font-weight: 400; }
.contact__form input, .contact__form textarea {
  font-family: var(--body); font-size: 1rem; color: var(--navy); background: var(--white);
  border: 1.5px solid rgba(30,51,85,0.2); border-radius: var(--radius);
  padding: 0.8em 0.95em; transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.contact__form input:focus, .contact__form textarea:focus {
  outline: none; border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(74,104,152,0.18);
}
.contact__form textarea { resize: vertical; min-height: 110px; }
.contact__form-note { font-size: 0.82rem; color: var(--ink-soft); text-align: center; }
.contact__form-consent { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.6; }
.contact__form-consent a { color: var(--blue-accent); text-decoration: underline; text-underline-offset: 3px; }
.contact__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact__fieldset {
  border: 1.5px solid rgba(30,51,85,0.2); border-radius: var(--radius);
  padding: 0.8em 1em; background: var(--white);
}
.contact__fieldset legend {
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.02em; padding: 0 0.4em;
  color: var(--navy);
}
.contact__radio { flex-direction: row !important; align-items: center !important; gap: 0.5rem !important; font-weight: 400 !important; }
.contact__radio input[type="radio"] { width: 16px; height: 16px; accent-color: var(--navy); flex-shrink: 0; }
.areas-section__cta { text-align: center; padding: clamp(2rem, 4vh, 3rem) 0 clamp(0.5rem, 2vh, 1rem); }
@media (max-width: 480px) {
  .contact__form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: clamp(3rem, 8vh, 5rem) 0 2rem; }
.footer__inner { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
.footer .nav__brand { color: var(--white); line-height: 0; }
.footer__acknowledgement { margin-top: 1.2rem; max-width: 44ch; font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.6); font-style: italic; }
.footer__nav { display: flex; flex-wrap: wrap; column-gap: 1.2rem; row-gap: 0.9rem; align-content: flex-start; align-items: flex-start; }
.footer__nav a { font-size: 0.92rem; line-height: 1; opacity: 0.75; transition: opacity 0.25s var(--ease); }
.footer__nav a:hover { opacity: 1; }
.footer__meta { font-size: 0.85rem; line-height: 1.9; opacity: 0.6; }

/* ============================================================
   REVEAL (GSAP enhances; visible by default if JS off)
   ============================================================ */
.js .reveal, .js .reveal-line, .js .reveal-word { opacity: 0; }
.js .reveal { transform: translateY(28px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 760px) {
  .therapy__grid { grid-template-columns: 0.7fr 1.3fr; }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .offer__grid { grid-template-columns: 0.8fr 1.2fr; }
  .about__grid { grid-template-columns: 0.9fr 1.1fr; }
  .faq__grid { grid-template-columns: 0.8fr 1.2fr; }
  .process__inner { grid-template-columns: 0.9fr 1.1fr; }
  .contact__grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer__inner { grid-template-columns: 1.4fr 1fr auto; }
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
}

@media (max-width: 700px) {
  .hero__actions { justify-content: center; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .js .reveal, .js .reveal-line { transform: none !important; }
  .js .reveal-word { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   PAGE HEADER — text-only heading for inner pages
   ============================================================ */
.page-header {
  background: var(--navy);
  padding: calc(var(--nav-h) + clamp(3rem, 6vh, 5rem)) 0 clamp(3rem, 6vh, 5rem);
  text-align: center;
}
.page-header__inner { max-width: 720px; }
.page-header .section-eyebrow { color: var(--light-blue); }
.page-header__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 2rem + 2.5vw, 4rem);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.page-header__sub {
  font-family: var(--body);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 54ch;
  margin-inline: auto;
}

/* ============================================================
   PAGE HERO — photo-based hero for /about/ page
   ============================================================ */
.page-hero {
  position: relative;
  height: clamp(55vh, 65vh, 75vh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; will-change: transform; }
.page-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  display: block;
}
.page-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(15,25,45,0.15) 0%,
    rgba(15,25,45,0.25) 40%,
    rgba(15,25,45,0.65) 100%);
}
.page-hero__content { position: relative; z-index: 1; padding-bottom: clamp(2rem, 5vh, 4rem); }
.page-hero__eyebrow {
  font-family: var(--body); font-size: 0.78rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--light-blue); font-weight: 700; margin-bottom: 0.75rem;
}
.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  color: var(--white); letter-spacing: 0.04em; line-height: 1.05;
}

/* ============================================================
   ABOUT PAGE — bio section
   ============================================================ */
.about-page { background: var(--white); padding: clamp(4rem, 8vh, 7rem) 0; }
.about-page__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
  max-width: 1060px;
}
@media (max-width: 860px) {
  .about-page__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-page__img { order: -1; }
}
.about-page__text { display: flex; flex-direction: column; gap: 1.6rem; }
.about-page__text p { font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem); line-height: 1.9; color: var(--navy); }
.about-page__img img { width: 100%; border-radius: 12px; object-fit: cover; }

/* About photo full-width strip */
.about-photo { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--light-blue); }
.about-photo__img { width: 100%; max-width: 860px; margin-inline: auto; border-radius: 12px; object-fit: cover; max-height: 520px; }
.about__creds {
  margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.6rem;
  padding-left: 0; list-style: none;
}
.about__creds li { padding-left: 1.5em; position: relative; font-size: 0.96rem; color: var(--ink-soft); }
.about__creds li::before { content: "—"; position: absolute; left: 0; color: var(--blue-accent); }

/* ============================================================
   HOW I CAN HELP — bottom CTA
   ============================================================ */
.hich-cta { background: var(--light-blue); padding: clamp(4rem, 8vh, 7rem) 0; text-align: center; }
.hich-cta__inner {
  max-width: 640px; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.hich-cta .section-title { color: var(--navy); }
.hich-cta p { font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem); color: var(--navy); opacity: 0.8; }

/* ============================================================
   HOW I CAN HELP — areas section (standalone page version)
   ============================================================ */
.hich-areas { background: var(--white); padding: clamp(4rem, 8vh, 7rem) 0; }
.hich-areas__inner { max-width: 720px; display: flex; flex-direction: column; gap: 2.5rem; }

/* ============================================================
   HOW I CAN HELP — services section
   ============================================================ */
.hich-services { background: var(--grey-bg); padding: clamp(4rem, 8vh, 7rem) 0; }
.hich-services__inner { max-width: 720px; display: flex; flex-direction: column; gap: 3.5rem; }
.hich-service { display: flex; flex-direction: column; gap: 1rem; }
.hich-service__title {
  font-family: var(--serif); font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem);
  font-weight: 400; letter-spacing: 0.05em; color: var(--navy);
  padding-bottom: 0.75rem; border-bottom: 1px solid rgba(30,51,85,0.15);
}
.hich-service p { font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem); line-height: 1.8; color: var(--navy); }
.hich-service__list {
  list-style: none; padding: 0; margin-top: 0.25rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.hich-service__list li {
  padding-left: 1.5em; position: relative;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem); color: var(--navy); line-height: 1.7;
}
.hich-service__list li::before { content: "–"; position: absolute; left: 0; color: var(--blue-accent); }

/* ============================================================
   FAQ PAGE — standalone /faq/ page
   ============================================================ */
.faq-page { background: var(--white); padding: clamp(4rem, 8vh, 7rem) 0; }
.faq-page__inner { max-width: 720px; }

.faq__fees {
  list-style: none; padding: 0;
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(30,51,85,0.12);
  margin-bottom: 1.2rem;
}
.faq__fees li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; padding: 0.75rem 0;
  border-bottom: 1px solid rgba(30,51,85,0.12);
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem); color: var(--navy);
}
.faq__fees li span:last-child { font-weight: 700; white-space: nowrap; }
.faq__fees-concession span:first-child::after {
  content: " — for students or those experiencing financial hardship";
  font-size: 0.85em; font-weight: 400; color: var(--ink-soft);
}

/* ============================================================
   ABOUT PAGE — professional experience section
   ============================================================ */
.about-experience {
  background: var(--grey-bg);
  padding: clamp(4rem, 8vh, 7rem) 0;
}
.about-experience__inner { max-width: 720px; display: flex; flex-direction: column; gap: 1.4rem; }
.about-experience__inner p { font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem); line-height: 1.8; color: var(--navy); }
.about-experience__list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 0.75rem;
  margin: 0.5rem 0;
}
.about-experience__list li {
  padding-left: 1.5em; position: relative;
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  color: var(--navy); line-height: 1.65;
}
.about-experience__list li::before {
  content: "–"; position: absolute; left: 0; color: var(--blue-accent);
}

/* ============================================================
   ABOUT PAGE — qualifications section
   ============================================================ */
.about-quals {
  background: var(--white);
  padding: clamp(4rem, 8vh, 7rem) 0;
}
.about-quals__inner { max-width: 720px; display: flex; flex-direction: column; gap: 3rem; }
.about-quals__group { display: flex; flex-direction: column; gap: 1.2rem; }
.about-quals__heading {
  font-family: var(--serif); font-size: clamp(1rem, 0.9rem + 0.4vw, 1.2rem);
  font-weight: 400; letter-spacing: 0.06em; color: var(--navy);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(30,51,85,0.15);
}
.about-quals__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.about-quals__list li { display: flex; flex-direction: column; gap: 0.15rem; }
.about-quals__degree {
  font-family: var(--body); font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  color: var(--navy); font-weight: 700; line-height: 1.4;
}
.about-quals__institution {
  font-size: 0.9rem; color: var(--ink-soft); font-style: italic;
}

/* ============================================================
   ABOUT PAGE — enquiry form section
   ============================================================ */
.about-enquiry {
  background: var(--grey-bg);
  padding: clamp(4rem, 8vh, 7rem) 0;
}
.about-enquiry__inner {
  display: grid; gap: clamp(2.5rem, 5vw, 5rem);
  grid-template-columns: 1fr;
}
.about-enquiry__intro { display: flex; flex-direction: column; gap: 1rem; }
.about-enquiry__intro p { font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem); color: var(--navy); max-width: 38ch; }
@media (min-width: 760px) {
  .about-enquiry__inner { grid-template-columns: 1fr 1.6fr; align-items: start; }
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 3rem));
  background: var(--navy);
  color: var(--white);
  padding: 0.9rem 1rem 0.9rem 1.25rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  max-width: min(92vw, 440px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
  z-index: 9999;
  user-select: none;
  -webkit-user-select: none;
}
.toast.is-visible {
  transform: translateX(-50%) translateY(0);
}
.toast.is-hiding {
  opacity: 0;
  transform: translateX(-50%) translateY(calc(100% + 3rem));
}
.toast__msg {
  font-family: var(--body);
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
}
.toast__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.3rem;
  flex-shrink: 0;
  transition: color 0.2s;
  border-radius: 4px;
}
.toast__close:hover, .toast__close:focus-visible { color: var(--white); outline: none; }
