/* ── RESET & VARIABLES ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark: #1f2d3d;
  --mid: #3a5068;
  --teal: #4e8098;
  --teal-bright: #95d1d3;
  --light-teal: #e8f2f5;
  --warm: #F0EDE7;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --border: #e0e0e0;
}

html { scroll-behavior: smooth; }

/* ── SKIP NAVIGATION ── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--dark);
  color: var(--white);
  padding: 12px 24px;
  z-index: 200;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
}
.skip-nav:focus { top: 0; }

/* ── FOCUS STYLES ── */
.btn:focus-visible,
.btn-outline:focus-visible,
.form-toggle:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--teal-bright);
  outline-offset: 3px;
}
.nav-links a:focus-visible {
  outline: 2px solid var(--teal-bright);
  outline-offset: 2px;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
}

h1, h2, h3 { font-family: 'Lora', serif; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
  transition-delay: calc(var(--i, 0) * 60ms);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-reveal {
  opacity: 0;
  animation: heroReveal 600ms ease-out forwards;
}
.hero-reveal--1 { animation-delay: 0ms; }
.hero-reveal--2 { animation-delay: 200ms; }
.hero-reveal--3 { animation-delay: 400ms; }

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Remove stagger delay on mobile — cards stack single-column so each enters
   the viewport individually; a cumulative delay just feels broken */
@media (max-width: 768px) {
  .fade-up { transition-delay: 0ms; }
}

/* Respect OS-level reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-reveal {
    opacity: 1;
    animation: none;
  }
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.nav-brand {
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--white);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal-bright);
  transition: width 200ms ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a.active {
  border-bottom: 2px solid var(--teal);
  padding-bottom: 2px;
}

.nav-links a.active::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  outline: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 340px;
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(31, 45, 61, 0.78);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.page-hero-inner .eyebrow {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.page-hero-inner .eyebrow::before,
.page-hero-inner .eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--teal);
}

.page-hero-inner h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: normal;
  line-height: 1.2;
  color: var(--white);
}

/* ── HOME HERO ── */
#home {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px);
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 60px 100px 100px;
  color: var(--white);
}

.hero-text .eyebrow {
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 24px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--white);
}

.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 440px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero-image {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 60px 80px 0 0;
}

.hero-image img {
  width: clamp(260px, 55%, 420px);
  height: auto;
  border-radius: 50%;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 15px 36px;
  background: var(--teal-bright);
  color: var(--dark);
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, transform 150ms ease;
}

.btn:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
  margin-left: 14px;
}

.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); color: var(--white); }

/* ── SECTIONS ── */
section { padding: 120px 100px; }

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: normal;
  color: var(--dark);
  margin-bottom: 48px;
  line-height: 1.25;
}

/* ── DOT PATTERN — applied to all warm sections ── */

/* ── HOME INTRO ── */
#intro { background-color: var(--warm); padding-top: 160px; }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.intro-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.intro-icon {
  display: block;
  width: 130px;
  height: 120px;
  overflow: hidden;
  background-image: url('icons.png');
  background-size: 390px 220px;
  background-repeat: no-repeat;
}
.intro-icon--1 { background-position: 0px center; }
.intro-icon--2 { background-position: -130px center; }
.intro-icon--3 { background-position: -260px center; }

.intro-card h3 {
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--dark);
}

.intro-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── ABOUT ── */
#about { background-color: var(--warm); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.about-text p {
  color: var(--text);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.about-text p:last-child { margin-bottom: 0; }

.about-aside { padding-top: 8px; }

.approach-list { list-style: none; margin-top: 24px; }

.approach-list li {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

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

.approach-icon {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background-image: url('about_icons.png');
  background-size: 56px 240px;
  background-repeat: no-repeat;
}
.approach-icon--1 { background-position: center 0px; }
.approach-icon--2 { background-position: center -40px; }
.approach-icon--3 { background-position: center -80px; }
.approach-icon--4 { background-position: center -120px; }
.approach-icon--5 { background-position: center -160px; }
.approach-icon--6 { background-position: center -200px; }
.approach-icon--em {
  background-image: url('Embodiment_mindfulness.png');
  background-size: contain;
  background-position: center center;
}

.approach-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.approach-text strong {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
}

.approach-text span {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── ABOUT STORY ── */
#about-story {
  background-color: var(--white);
}

.about-story-block {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.about-story-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.about-story-block h3 {
  font-size: 1.2rem;
  font-weight: normal;
  color: var(--dark);
  margin-bottom: 24px;
}

.about-story-block p {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 18px;
}

.about-story-block p:last-child {
  margin-bottom: 0;
}

.about-story-block--portrait {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: none;
}

.about-portrait-col {
  display: flex;
  justify-content: center;
}

.about-portrait-col img {
  width: 400px;
  max-width: 100%;
}

/* ── IMAGE BAND ── */
.img-band {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.img-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.img-band--natural {
  height: auto;
}

.img-band--natural img {
  display: block;
  height: auto;
  object-fit: initial;
}

.quals-cta {
  padding: 64px 100px;
  text-align: left;
}

.img-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 45, 61, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-band-quote {
  max-width: 680px;
  text-align: center;
  color: var(--white);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.6;
  padding: 0 48px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

/* ── QUALIFICATIONS ── */

.quals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.quals-block h3 {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
}

.quals-list { list-style: none; }

.quals-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}

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

.quals-list li .fa-solid {
  color: var(--teal);
  font-size: 0.75rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ── AREAS OF SUPPORT ── */
#areas { background-color: var(--white); }

.areas-intro {
  max-width: 640px;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 48px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.area-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.area-card:hover {
  border-color: var(--teal-bright);
  box-shadow: 0 2px 12px rgba(149,209,211,0.2);
}

.area-icon {
  display: block;
  width: 80px;
  height: 80px;
  overflow: hidden;
  background-image: url('help_icons.png');
  background-repeat: no-repeat;
  /* Scale so each row (180px) fits the 80px container height: 976×1082 → 434×481 */
  background-size: 434px 481px;
  flex-shrink: 0;
}

/* Positions calculated from exact icon bounding boxes in each sprite cell */
.area-icon--1  { background-position:  -72px  -15px; } /* Anxiety */
.area-icon--2  { background-position: -282px  -15px; } /* Depression */
.area-icon--3  { background-position:  -72px  -99px; } /* Stress */
.area-icon--4  { background-position: -281px -102px; } /* Trauma */
.area-icon--5  { background-position:  -72px -175px; } /* Eating — extra offset clears top cell decoration */
.area-icon--6  { background-position: -282px -168px; } /* Self-esteem */
.area-icon--7  { background-position:  -72px -240px; } /* Bereavement */
.area-icon--8  { background-position: -281px -241px; } /* Life transitions */
.area-icon--9  { background-position:  -72px -306px; } /* Relationship */
.area-icon--10 { background-position: -281px -306px; } /* ADHD */
.area-icon--11 { background-position:  -72px -387px; } /* Young people */
.area-icon--12 { background-position: -281px -389px; } /* Workplace */

.area-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
}

.area-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.areas-footer {
  font-size: 0.92rem;
  color: var(--text-light);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  max-width: 640px;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background-color: var(--dark);
}

#testimonials .section-label {
  color: var(--teal-bright);
}

#testimonials h2 {
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 28px;
  font-size: 4rem;
  line-height: 1;
  color: var(--teal-bright);
  font-family: 'Lora', serif;
  opacity: 0.6;
}

.testimonial-quote {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.85;
  font-style: italic;
  padding-top: 24px;
  margin: 0;
}

.testimonial-attr {
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--teal);
  margin-top: auto;
}

/* ── CTA STRIP ── */
#cta-strip {
  background-color: var(--teal);
  padding: 72px 100px;
}

.cta-strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-strip-text {
  font-family: 'Lora', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--white);
  font-weight: normal;
  margin: 0;
}

.cta-strip-btn {
  background: var(--white);
  color: var(--teal);
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-strip-btn:hover {
  background: var(--dark);
  color: var(--white);
}

/* ── FAQ ── */
#faq {
  background-color: var(--white);
  padding-top: 80px;
  padding-bottom: 80px;
}

.faq-list {
  max-width: 780px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  line-height: 1;
  color: var(--teal-bright);
  flex-shrink: 0;
}

details[open] .faq-question::after {
  content: '×';
}

.faq-answer {
  padding: 0 0 22px;
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.85;
  max-width: 680px;
  margin: 0;
}

/* ── ACCREDITATIONS ── */
#accreditations {
  background-color: var(--white);
  padding: 72px 100px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.accred-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.accred-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

.accred-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.accred-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
}

.accred-badge img {
  height: 96px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.accred-placeholder {
  height: 96px;
  min-width: 150px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  gap: 6px;
}

.accred-placeholder .ap-title {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  text-align: center;
}

.accred-placeholder .ap-sub {
  font-family: 'Arial', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--text-light);
  text-align: center;
}

.dbs-tile {
  height: 96px;
  min-width: 150px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  gap: 8px;
}

.dbs-tile .fa-circle-check {
  color: #3a9e5f;
  font-size: 1.6rem;
}

.dbs-tile .dbs-title {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
}

/* ── HOW IT WORKS ── */
#qualifications { background-color: var(--warm); }
#how-it-works { background-color: var(--warm); }
#how-it-works-home { background-color: var(--warm); padding-top: 80px; padding-bottom: 80px; }
#how-it-works-home .steps-grid { margin-top: 32px; }

.hiw-fee {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.step-number {
  font-family: 'Lora', serif;
  font-size: 4rem;
  font-weight: normal;
  color: var(--teal-bright);
  line-height: 1;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--dark);
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── FEES QUOTE ── */
.fees-quote {
  border-top: 1px solid var(--border);
  margin-top: 80px;
  padding-top: 72px;
  text-align: center;
}

.fees-quote blockquote {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--text);
  max-width: 680px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.fees-quote cite {
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-style: normal;
}

/* ── FEES CTA ── */
#fees-cta {
  background-color: var(--warm);
  padding: 80px 100px;
  text-align: center;
}

#fees-cta h2 {
  color: var(--dark);
  margin-bottom: 16px;
}

#fees-cta p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

#fees-cta .btn {
  background: var(--teal-bright);
  color: var(--dark);
  font-size: 0.9rem;
  padding: 16px 40px;
}

#fees-cta .btn:hover { background: var(--teal); color: var(--white); }

#fees-cta .phone {
  display: block;
  margin-top: 24px;
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

#fees-cta .phone a {
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--teal);
}

@media (max-width: 960px) {
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  #fees-cta { padding: 60px 24px; }
}

/* ── FEES ── */
#fees { background-color: var(--white); color: var(--text); }
#fees h2 { color: var(--dark); }

.fees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ── CLEAN AVAILABILITY ── */
.avail-clean {
  margin-top: 48px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.avail-clean-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.avail-clean-days {
  font-size: 1.2rem;
  font-weight: normal;
  color: var(--dark);
  margin-bottom: 36px;
}

.avail-slots {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.avail-slot {
  padding: 0 0 0 20px;
  border-left: 2px solid var(--teal-bright);
}

.avail-slot .slot-time {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.avail-slot .slot-name {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 6px;
}

.avail-slot .slot-note {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

@media (max-width: 960px) {
  .avail-slots { grid-template-columns: 1fr; }
}

.fee-card {
  border: none;
  border-top: 3px solid var(--teal-bright);
  border-radius: 12px;
  padding: 48px;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.fee-card .fa-solid {
  color: var(--teal);
  font-size: 1.4rem;
  margin-bottom: 20px;
  display: block;
}

.fee-card .amount {
  font-size: 3.2rem;
  font-weight: normal;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 10px;
}

.fee-card .amount sup { font-size: 1.4rem; vertical-align: super; }

.fee-card .label {
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.fee-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

.fee-free { background: var(--light-teal); border-top-color: var(--teal-bright); }
.fee-free .fa-solid { color: var(--teal); }

/* availability table */
.avail-wrap { overflow-x: auto; }

.avail-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
}

.avail-table th {
  color: rgba(255,255,255,0.45);
  font-weight: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 8px;
  text-align: center;
}

.avail-table th:first-child { text-align: left; padding-left: 0; }

.avail-table td { padding: 10px 8px; text-align: center; }

.avail-table td:first-child {
  text-align: left;
  padding-left: 0;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}

.avail-check {
  width: 30px;
  height: 30px;
  background: var(--teal);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
}

.avail-empty {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  display: inline-block;
}

/* ── CONTACT FORM ── */
.form-toggle {
  display: inline-block;
  margin-top: 32px;
  padding: 13px 32px;
  background: transparent;
  border: 1px solid var(--teal-bright);
  color: var(--teal);
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.form-toggle:hover { background: var(--teal-bright); color: var(--dark); }

.contact-form-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding-top: 0;
}
.contact-form-panel.open {
  max-height: 1400px;
  padding-top: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  border-top: 3px solid var(--teal-bright);
}

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

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field--half { max-width: 50%; }
@media (max-width: 960px) { .form-field--half { max-width: 100%; } }

.form-field label {
  font-family: 'Arial', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-field input {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--warm);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-field input:focus {
  border-color: var(--teal-bright);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(149,209,211,0.18);
}

.form-intro {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.form-signature {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 4px 0 0;
}
.form-signature span {
  font-size: 0.95rem;
  color: var(--text-light);
}
.form-sig-img {
  max-width: 180px;
  height: auto;
  display: block;
}

.form-field select {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--warm);
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234e8098' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.form-field select:focus {
  border-color: var(--teal-bright);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(149,209,211,0.18);
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: #bbb; }

.form-field textarea {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--warm);
  outline: none;
  resize: vertical;
  min-height: 110px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-field textarea:focus {
  border-color: var(--teal-bright);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(149,209,211,0.18);
}

.form-error {
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  color: #c0392b;
  margin: 0;
}

.form-consent { border-top: 1px solid var(--border); padding-top: 20px; }

.consent-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
}

.consent-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--teal-bright);
  cursor: pointer;
}

.consent-label a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid var(--teal-bright);
}

.consent-label a:hover { color: var(--teal-bright); }

.form-submit { margin-top: 8px; align-self: flex-start; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success { padding-top: 32px; }
.form-success-inner {
  background: var(--white);
  border-top: 3px solid var(--teal-bright);
  border-radius: 12px;
  padding: 48px 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  text-align: center;
}
.form-success-inner .fa-circle-check {
  color: var(--teal-bright);
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}
.form-success-inner h3 {
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--dark);
  margin-bottom: 12px;
}
.form-success-inner p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.form-success-inner .form-signature {
  margin-top: 16px;
}

@media (max-width: 960px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .form-submit { align-self: stretch; }
}

/* ── CONTACT ── */
#contact { background-color: var(--warm); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-info p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-item .fa-solid {
  color: var(--teal);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item .ci-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 4px;
}

.contact-item .ci-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact-item .ci-value { font-size: 1rem; color: var(--dark); }

.contact-item a {
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--teal);
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--teal); }

.contact-note {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  overflow: hidden;
}

.contact-image {
  width: 100%;
  max-width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
}

.contact-note-body { padding: 52px; }

.contact-note h3 {
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-note p { margin-bottom: 18px; font-size: 0.95rem; line-height: 1.8; }
.contact-note p:last-child { margin-bottom: 0; }

@keyframes shimmer-border {
  0%, 100% { box-shadow: inset 0 0 18px rgba(149, 209, 211, 0.06); border-top-color: rgba(149, 209, 211, 0.6); border-left-color: rgba(149, 209, 211, 0.6); border-right-color: rgba(149, 209, 211, 0.6); }
  50%       { box-shadow: inset 0 0 28px rgba(149, 209, 211, 0.12); border-top-color: rgba(149, 209, 211, 0.9); border-left-color: rgba(149, 209, 211, 0.9); border-right-color: rgba(149, 209, 211, 0.9); }
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.whatsapp-float .fa-whatsapp {
  color: var(--white);
  font-size: 1.8rem;
}

@media (max-width: 960px) {
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .whatsapp-float .fa-whatsapp { font-size: 1.5rem; }
}

/* ── FOOTER BADGES ── */
.footer-badges {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-badges img {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  mix-blend-mode: screen;
}

.footer-badges img:hover { opacity: 1; }

.footer-badge-placeholder {
  font-family: 'Arial', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 10px;
}

/* ── PRIVACY PAGE ── */
#privacy { background-color: var(--warm); }
.privacy-content { max-width: 780px; }
.privacy-intro { font-size: 1.05rem; color: var(--text-light); line-height: 1.8; margin-bottom: 8px; }
.privacy-updated { font-size: 0.82rem; color: var(--text-light); margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.privacy-section { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.privacy-section:last-child { border-bottom: none; }
.privacy-section h2 { font-size: 1.2rem; margin-bottom: 16px; }
.privacy-section p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 12px; }
.privacy-section ul { padding-left: 20px; margin-bottom: 12px; }
.privacy-section ul li { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 6px; }
.privacy-callout { background: var(--warm); border-left: 3px solid var(--teal-bright); padding: 16px 20px; border-radius: 0 6px 6px 0; margin: 16px 0; }
.privacy-callout p { margin-bottom: 0; }
.privacy-contact-block { background: var(--warm); border: 1px solid var(--border); border-radius: 8px; padding: 20px 24px; margin: 16px 0; }
.privacy-contact-block p { margin-bottom: 4px; }
.privacy-contact-block a { color: var(--teal); text-decoration: none; }
.privacy-contact-block a:hover { text-decoration: underline; }
.rights-grid { margin-top: 12px; }
.right-item { display: grid; grid-template-columns: 180px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); align-items: start; }
.right-item:last-child { border-bottom: none; }
.right-label { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal); font-weight: 500; padding-top: 2px; }
.right-desc { font-size: 0.93rem; color: var(--text-light); line-height: 1.7; }

/* ── FOOTER ── */
footer {
  background: #111c26;
  color: rgba(255,255,255,0.4);
  padding: 32px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

footer a { color: rgba(255,255,255,0.4); text-decoration: none; }
footer a:hover { color: rgba(255,255,255,0.7); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0;
    width: 100%;
    background: var(--dark);
    border-top: 1px solid rgba(149, 209, 211, 0.6);
    border-left: 1px solid rgba(149, 209, 211, 0.6);
    border-right: 1px solid rgba(149, 209, 211, 0.6);
    border-bottom: none;
    box-shadow: inset 0 0 18px rgba(149, 209, 211, 0.06);
    animation: shimmer-border 3s ease-in-out infinite;
    padding: 20px 24px;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 1rem; font-weight: 700; color: var(--white); text-shadow: 0 0 8px rgba(255,255,255,0.4); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a.active,
  .nav-links a:hover { color: var(--teal-bright); text-shadow: 0 0 16px rgba(149,209,211,1); border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 0; }
  .nav-toggle { display: flex; }

  #home { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 64px 24px; order: 2; }
  .hero-image { padding: 48px 24px 32px; order: 1; }

  .page-hero { height: 240px; }
  .hero-norwich { background-position: center 75% !important; }

  .accred-badges { gap: 24px; }
  .accred-badge { flex: 0 0 100%; justify-content: center; height: auto; }
  .accred-badge img { height: 120px; max-width: none; }
  .accred-badge--feature { height: auto; }
  .accred-badge--feature img { height: 216px; }

  .img-band { height: 280px; }
  .img-band--natural { height: 280px; }
  .img-band--natural img { height: 100%; object-fit: cover; object-position: center 40%; }
  .quals-cta { padding: 48px 24px; }

  section { padding: 80px 24px; }
  #accreditations { padding: 56px 24px; }

  .intro-grid,
  .about-grid,
  .quals-grid,
  .fees-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .about-story-block--portrait { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait-col { order: -1; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .faq-list { max-width: 100%; }
  #cta-strip { padding: 56px 24px; }
  .cta-strip-inner { flex-direction: column; text-align: center; gap: 24px; }

  footer { flex-direction: column; gap: 12px; text-align: center; padding: 28px 24px; }

  .btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    box-sizing: border-box;
  }
  .btn-outline { margin-left: 0; margin-top: 12px; }
  .hero-text > div { display: flex; flex-direction: column; }
}
