/* ================================================================
   Rosewood House — Main Stylesheet
   ================================================================
   Extracted from the original homepage HTML <style> block and kept
   as one file on purpose: premium brochure sites rarely need more.
   Organised by section so you can find things quickly.
*/

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

:root {
  --green:        #3b5c4a;
  --green-dark:   #2a4235;
  --green-deep:   #223927;
  --green-light:  #eef3f0;
  --green-mid:    #c8d8ce;
  --terra:        #9e5a22;      /* WCAG: 4.6:1 on cream/white */
  --terra-btn:    #a35f25;      /* button bg → white text 4.5:1 */
  --terra-hover:  #8a4f1e;
  --terra-light:  #e8a97a;      /* only on dark bg */
  --gold:         #c8a96e;
  --cream:        #faf8f4;
  --warm-white:   #f5f1ea;
  --text:         #1e2820;
  --text-dark:    #1e2820;
  --text-mid:     #4a5c52;
  --text-light:   #526059;      /* WCAG: 4.6:1 on white */
  --border:       #dde8e2;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --radius: 4px;
  --max-w: 1160px;
  --section-pad: 6rem 1.5rem;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

/* ── SKIP LINK (WCAG 2.4.1) ─────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--green-dark); color: #fff;
  padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500;
  border-radius: 0 0 4px 4px; z-index: 9999; text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ── FOCUS STYLES (WCAG 2.4.7) ──────────────────────────────── */
:focus-visible { outline: 3px solid var(--terra-btn); outline-offset: 3px; }

/* ── UTILITIES ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; overflow-x: hidden; }
.container--narrow { max-width: 760px; }
.section { padding: var(--section-pad); }
.section--alt  { background: var(--green-light); }
.section--dark { background: var(--green-deep); }
.section--warm { background: var(--warm-white); }
.center-cta { text-align: center; margin-top: 2.5rem; }

/* ── SECTION ALTERNATION (warm-white ↔ cream, disabled with .no-section-alternation) ── */
:not(.no-section-alternation) main section:nth-of-type(odd) { background: var(--warm-white); }
:not(.no-section-alternation) main section:nth-of-type(even) { background: var(--cream); }
/* Explicit overrides for alt/dark sections (take precedence) */
.section--alt { background: var(--green-light) !important; }
.section--dark { background: var(--green-deep) !important; }

.label {
  display: inline-block; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 0.75rem;
}
.label--light { color: var(--terra-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; line-height: 1.2;
  color: var(--green-dark); margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--terra); }
.section-title--light { color: #fff; }
.section-title--light em { color: var(--terra-light); }
.section-lead { font-size: 1.05rem; color: var(--text-mid); max-width: 600px; line-height: 1.8; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; font-family: var(--font-sans);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  border-radius: var(--radius); transition: all 0.2s ease;
  cursor: pointer; border: none;
  min-height: 44px; /* WCAG 2.5.5 - minimum touch target size */
}
.btn--primary { background: var(--terra-btn); color: #fff; }
.btn--primary:hover { background: var(--terra-hover); }
.btn--outline-dark { background: transparent; color: var(--green-dark); border: 1.5px solid var(--green-dark); }
.btn--outline-dark:hover { background: var(--green-dark); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6); }
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ── CQC ANNOUNCEMENT BAR (Outstanding only) ────────────────── */
.cqc-bar {
  background: linear-gradient(90deg, #1a2e1f 0%, #2a4a32 40%, #1a2e1f 100%);
  border-bottom: 1px solid rgba(200,169,110,0.3);
  padding: 0.55rem 1.5rem;
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; position: relative; z-index: 201;
}
.cqc-bar__inner { display: flex; align-items: center; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.cqc-bar__badge { display: inline-flex; align-items: stretch; border-radius: 4px; overflow: hidden; flex-shrink: 0; box-shadow: 0 1px 6px rgba(0,0,0,0.3); }
.cqc-bar__logo { background: #612384; padding: 0.28rem 0.55rem; display: flex; align-items: center; gap: 0.28rem; }
.cqc-bar__logo-mark { width: 18px; height: 18px; border: 1.5px solid #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: #fff; font-family: Arial, sans-serif; flex-shrink: 0; }
.cqc-bar__logo-text { font-size: 0.38rem; color: rgba(255,255,255,0.9); line-height: 1.3; text-transform: uppercase; letter-spacing: 0.04em; font-family: Arial, sans-serif; font-weight: 600; }
.cqc-bar__rating { background: #8f6c13; padding: 0.28rem 0.6rem; display: flex; align-items: center; gap: 0.3rem; }
.cqc-bar__rating-word { font-size: 0.72rem; font-weight: 800; color: #fff; font-family: Arial, sans-serif; letter-spacing: 0.05em; text-transform: uppercase; }
.cqc-bar__text { font-size: 0.72rem; color: rgba(255,255,255,0.9); letter-spacing: 0.01em; line-height: 1; }
.cqc-bar__text strong { color: var(--gold); font-weight: 600; }
.cqc-bar__link { font-size: 0.68rem; color: rgba(200,169,110,0.8); text-decoration: none; letter-spacing: 0.02em; border-bottom: 1px solid rgba(200,169,110,0.3); transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.cqc-bar__link:hover { color: var(--gold); border-color: var(--gold); }
.cqc-bar__divider { width: 1px; height: 14px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

@media (max-width: 600px) {
  .cqc-bar { padding: 0.6rem 1rem; }
  .cqc-bar__inner { justify-content: center; text-align: center; }
  .cqc-bar__divider, .cqc-bar__link { display: none; }
  .cqc-bar__text { font-size: 0.66rem; text-align: center; }
}

/* ── MAIN NAV ───────────────────────────────────────────────── */
nav[aria-label="Main navigation"] {
  background: #223927; border-bottom: 1px solid rgba(0,0,0,0.2);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.nav__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 96px; }
.nav__logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; flex-shrink: 0; }
.nav__logo-mark { width: 80px; height: 80px; flex-shrink: 0; object-fit: contain; align-self: center; display: block; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.2; padding-left: 1rem; border-left: 1.5px solid rgba(200,169,110,0.5); gap: 0.2rem; }
.nav__logo-name { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: #fff; letter-spacing: 0.02em; }
.nav__logo-sub { font-size: 0.6rem; color: rgba(200,169,110,0.65); letter-spacing: 0.14em; text-transform: uppercase; }

.nav__links { display: flex; list-style: none; gap: 0.1rem; align-items: center; }
.nav__links a { font-size: 0.82rem; color: rgba(255,255,255,0.8); text-decoration: none; padding: 0.4rem 0.7rem; border-radius: var(--radius); transition: color 0.15s, background 0.15s; white-space: nowrap; }
.nav__links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav__links a[aria-current="page"] { color: #fff; font-weight: 500; }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-btn { font-size: 0.82rem; color: rgba(255,255,255,0.8); background: none; border: none; cursor: pointer; padding: 0.4rem 0.7rem; border-radius: var(--radius); display: flex; align-items: center; gap: 0.25rem; transition: color 0.15s, background 0.15s; font-family: var(--font-sans); }
.nav__dropdown-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav__dropdown-btn svg { transition: transform 0.2s; }
.nav__dropdown-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav__dropdown-menu { display: none; position: absolute; top: calc(100% + 0.5rem); left: 0; background: #fff; border: 1px solid var(--border); border-radius: 6px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); list-style: none; min-width: 200px; padding: 0.4rem 0; z-index: 300; }
.nav__dropdown-menu.is-open { display: block; }
.nav__dropdown-menu a { display: block; padding: 0.6rem 1rem; font-size: 0.82rem; color: var(--text-mid); text-decoration: none; transition: background 0.15s, color 0.15s; }
.nav__dropdown-menu a:hover { background: var(--green-light); color: var(--green-dark); }
.nav__dropdown-menu a[aria-current="page"] { color: var(--green-dark); background: var(--green-light); font-weight: 500; }

.nav__right { display: flex; align-items: center; gap: 1rem; }
.nav__cta .btn { padding: 0.5rem 1.1rem; font-size: 0.75rem; }

.nav__burger { display: none; background: none; cursor: pointer; padding: 0.5rem 0.85rem; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); border-radius: var(--radius); font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500; align-items: center; gap: 0.4rem; }
.nav__burger svg { display: block; width: 16px; height: 16px; }

.nav__phone-btn { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--terra-btn); color: #fff; border-radius: var(--radius); text-decoration: none; flex-shrink: 0; }
.nav__phone-btn svg { width: 18px; height: 18px; }

/* ── MOBILE MENU ────────────────────────────────────────────── */
.nav__mobile { display: none; position: fixed; inset: 0; z-index: 300; }
.nav__mobile.is-open { display: block; }
.nav__mobile-backdrop { position: absolute; inset: 0; background: rgba(30,48,41,0.5); backdrop-filter: blur(2px); }
.nav__mobile-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(320px, 85vw); background: var(--cream); box-shadow: -4px 0 24px rgba(0,0,0,0.15); display: flex; flex-direction: column; overflow-y: auto; }
.nav__mobile-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); }
.nav__mobile-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--green-dark); font-weight: 600; }
.nav__mobile-close { background: none; border: none; cursor: pointer; color: var(--green-dark); padding: 0.5rem; border-radius: var(--radius); min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
.nav__mobile-links { list-style: none; padding: 1rem 0; flex: 1; }
.nav__mobile-links a { display: block; padding: 0.85rem 1.5rem; font-size: 1rem; color: var(--text-mid); text-decoration: none; border-bottom: 1px solid var(--border); }
.nav__mobile-links a:hover { background: var(--green-light); color: var(--green-dark); }
.nav__mobile-links a[aria-current="page"] { color: var(--green-dark); font-weight: 500; }

.nav__mobile-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  color: var(--text-mid);
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  font-family: var(--font-sans);
  text-align: left;
  transition: background 0.15s, color 0.15s;
}
.nav__mobile-dropdown-btn:hover { background: var(--green-light); color: var(--green-dark); }
.nav__mobile-dropdown-btn svg { transition: transform 0.2s; }
.nav__mobile-dropdown-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav__mobile-dropdown-menu {
  display: none;
  list-style: none;
  background: var(--green-light);
  padding: 0;
  margin: 0;
}
.nav__mobile-dropdown-menu.is-open { display: block; }
.nav__mobile-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem 0.75rem 3rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  transition: background 0.15s, color 0.15s;
}
.nav__mobile-dropdown-menu a:hover { background: rgba(255,255,255,0.5); color: var(--green-dark); }
.nav__mobile-dropdown-menu a[aria-current="page"] { color: var(--green-dark); font-weight: 500; background: rgba(255,255,255,0.7); }

.nav__mobile-footer { padding: 1.5rem; border-top: 1px solid var(--border); }
.nav__mobile-footer .btn { width: 100%; justify-content: center; margin-bottom: 1rem; }
.nav__mobile-contact { font-size: 0.82rem; }
.nav__mobile-contact a { display: block; color: var(--text-mid); text-decoration: none; margin-bottom: 0.3rem; }
.nav__mobile-contact a:hover { color: var(--green-dark); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; height: calc((100vh - 96px) * 0.75); min-height: 520px; max-height: 780px; display: flex; align-items: flex-end; }
.hero__photo { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 68% 35%; display: block; filter: brightness(0.72) saturate(0.82); }
.hero__photo::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, #1a3020 0%, #1e3624 28%, rgba(28,48,32,0.92) 42%, rgba(28,48,32,0.55) 58%, rgba(28,48,32,0.12) 75%, transparent 90%),
    linear-gradient(to top, rgba(10,20,12,0.72) 0%, rgba(10,20,12,0.18) 32%, transparent 55%),
    linear-gradient(to bottom, rgba(10,20,12,0.72) 0%, rgba(10,20,12,0.28) 30%, transparent 52%);
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.55;
}
.hero__inner { max-width: var(--max-w); margin: 0 auto; width: 100%; display: flex; align-items: flex-end; padding: 3rem 1.5rem 5rem; position: relative; z-index: 4; }
.hero__content { max-width: 560px; position: relative; padding-left: 0; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 0.65rem; margin-bottom: 1.4rem; }
.hero__eyebrow-line { width: 32px; height: 1px; background: var(--terra-light); opacity: 0.8; }
.hero__eyebrow-text { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terra-light); }
.hero__title { font-family: var(--font-serif); font-size: clamp(2.6rem, 4.8vw, 4.4rem); font-weight: 300; line-height: 1.06; color: #fff; margin-bottom: 1.4rem; letter-spacing: -0.015em; }
.hero__title em { font-style: italic; color: var(--terra-light); font-weight: 300; }
.hero__desc { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.82; margin-bottom: 2.2rem; max-width: 440px; }
.hero__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

@media (max-width: 860px) {
  .hero { height: auto; min-height: 390px; max-height: none; align-items: flex-end; }
  .hero__photo img { object-position: 60% 30%; }
  .hero__photo::after {
    background:
      linear-gradient(to bottom, rgba(20,38,24,0.5) 0%, rgba(14,26,16,0.96) 62%),
      linear-gradient(to right, rgba(14,26,16,0.6) 0%, transparent 60%);
  }
  .hero__inner { padding: 0 1.25rem 3rem; align-items: flex-end; }
  .hero__content { padding-left: 0; max-width: 100%; }
}
@media (max-width: 600px) {
  .hero__title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero { min-height: 360px; }
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar { background: var(--green); padding: 0.85rem 1.5rem; }
.trust-bar__inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.75rem; color: rgba(255,255,255,0.9); font-weight: 400; }
.trust-item svg { width: 13px; height: 13px; color: var(--terra-light); flex-shrink: 0; }
.trust-item--cqc { text-decoration: none; }
.trust-item__cqc-badge {
  display: inline-block;
  background: #00843d; color: #fff;
  padding: 0.2rem 0.7rem; border-radius: 3px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em;
  font-family: Arial, sans-serif;
}

/* ── INTRO ──────────────────────────────────────────────────── */
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.intro__grid--reverse .img-block { order: 2; }
.img-block {
  aspect-ratio: 4/3; background: var(--green-mid); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
}
.img-block img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.img-block:hover img { transform: scale(1.03); }
.img-block::after { content: ''; position: absolute; inset: 0; border-radius: 6px; box-shadow: inset 0 0 60px rgba(0,0,0,0.18); pointer-events: none; }
.img-block::before {
  content: ''; position: absolute;
  bottom: -1px; right: -1px; z-index: 2;
  width: 48px; height: 48px;
  border-bottom: 3px solid var(--gold); border-right: 3px solid var(--gold);
  border-radius: 0 0 6px 0; pointer-events: none; opacity: 0.6;
}
.intro__body p { color: var(--text-mid); margin-bottom: 1.25rem; font-size: 1.02rem; line-height: 1.85; }

/* ── CARE / SERVICES CARDS ──────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.card { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 2rem 1.75rem; transition: box-shadow 0.2s, transform 0.2s; }
.card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-2px); }
.card__icon { width: 44px; height: 44px; background: var(--green-light); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--terra); }
.card__icon svg { width: 20px; height: 20px; }
.card__title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.6rem; }
.card__desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }
.section__header { margin-bottom: 0; }

/* ── VALUES ─────────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.value-card { display: flex; gap: 1.25rem; padding: 1.75rem; background: #fff; border-radius: 6px; border: 1px solid var(--border); }
.value-card__icon { width: 40px; height: 40px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--terra); }
.value-card__icon svg { width: 18px; height: 18px; }
.value-card__title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.4rem; }
.value-card__desc { font-size: 0.86rem; color: var(--text-mid); line-height: 1.7; }

/* ── LIFE ───────────────────────────────────────────────────── */
.life__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.life__intro { color: rgba(255,255,255,0.88); font-size: 1.02rem; line-height: 1.8; margin-bottom: 0.5rem; }
.tick-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem; margin: 1.5rem 0 2rem; }
.tick-list li { font-size: 0.88rem; color: rgba(255,255,255,0.88); display: flex; align-items: center; gap: 0.5rem; }
.tick-list li::before { content: ''; width: 5px; height: 5px; background: var(--terra-light); border-radius: 50%; flex-shrink: 0; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section { background: var(--warm-white); }
.testimonials-header { margin-bottom: 3rem; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.t-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 1.75rem 2rem 2rem; display: flex; flex-direction: column; gap: 1.25rem; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.t-icon { color: var(--terra); flex-shrink: 0; }
.t-icon svg { display: block; width: 28px; height: 20px; }
.t-text { font-size: 1rem; color: var(--text-mid); line-height: 1.85; font-style: italic; flex: 1; }
.t-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.t-initials { width: 42px; height: 42px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 500; color: var(--green-dark); flex-shrink: 0; }
.t-name { font-size: 0.85rem; font-weight: 500; color: var(--green-dark); }
.t-role { font-size: 0.75rem; color: var(--text-light); margin-top: 0.1rem; }

@media (max-width: 860px) { .t-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .t-card { padding: 1.5rem; } .t-text { font-size: 0.95rem; } }

/* ── CQC SECTION ────────────────────────────────────────────── */
.cqc-section { background: var(--cream); border-top: 1px solid rgba(42,66,53,0.08); }
.cqc-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.cqc-section__left { display: flex; flex-direction: column; gap: 1.5rem; }
.cqc-section__badge { display: inline-flex; align-items: stretch; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.12); width: fit-content; text-decoration: none; }
.cqc-section__logo { background: #612384; padding: 1.1rem 1.25rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.35rem; }
.cqc-section__logo-mark { width: 32px; height: 32px; border: 2px solid #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; color: #fff; font-family: Arial, sans-serif; flex-shrink: 0; }
.cqc-section__logo-text { font-size: 0.48rem; color: rgba(255,255,255,0.9); line-height: 1.35; text-transform: uppercase; letter-spacing: 0.05em; font-family: Arial, sans-serif; font-weight: 600; text-align: center; }
.cqc-section__rating { background: #8f6c13; padding: 1.1rem 1.75rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem; }
.cqc-section__rating--good { background: #00843d; }
.cqc-section__rating-word { font-size: 1.5rem; font-weight: 900; color: #fff; font-family: Arial, sans-serif; letter-spacing: 0.06em; text-transform: uppercase; text-shadow: 0 1px 4px rgba(0,0,0,0.2); line-height: 1; }
.cqc-section__rating-label { font-size: 0.55rem; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.1em; font-family: Arial, sans-serif; }
.cqc-section__headline { font-family: var(--font-serif); font-size: 1.65rem; font-weight: 400; color: var(--text-dark); line-height: 1.35; }
.cqc-section__headline em { color: var(--green-dark); font-style: italic; }
.cqc-section__stat { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(42,66,53,0.06); border-radius: 4px; padding: 0.5rem 0.85rem; width: fit-content; }
.cqc-section__stat-num { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 300; color: var(--green-dark); line-height: 1; }
.cqc-section__stat-text { font-size: 0.75rem; color: var(--text-mid); line-height: 1.35; }
.cqc-section__right { display: flex; flex-direction: column; gap: 1.75rem; }
.cqc-section__right-header { display: flex; flex-direction: column; gap: 0.4rem; }
.cqc-section__right-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; color: var(--text-dark); }
.cqc-section__right-sub { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }
.cqc-section__areas { display: flex; flex-direction: column; gap: 0.65rem; }
.cqc-area { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; background: #fff; border: 1px solid rgba(42,66,53,0.1); border-radius: 6px; border-left: 3px solid var(--green-dark); }
.cqc-area__label { font-size: 0.82rem; font-weight: 500; color: var(--text-dark); }
.cqc-area__pill { font-size: 0.68rem; font-weight: 700; font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.2rem 0.6rem; border-radius: 20px; }
.cqc-area__pill--outstanding { background: #8f6c13; color: #fff; }
.cqc-area__pill--good         { background: #00843d; color: #fff; }
.cqc-area__pill--requires     { background: #b4580e; color: #fff; }
.cqc-area__pill--inadequate   { background: #9e1f1f; color: #fff; }
.cqc-section__cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 0.5rem; border-top: 1px solid rgba(42,66,53,0.08); }
.cqc-section__cta-link { font-size: 0.82rem; color: var(--green-dark); text-decoration: none; border-bottom: 1px solid rgba(42,66,53,0.3); transition: color 0.2s, border-color 0.2s; }
.cqc-section__cta-link:hover { color: var(--terra-btn); border-color: var(--terra-btn); }
.cqc-section__cta-date { font-size: 0.75rem; color: var(--text-light); }

@media (max-width: 860px) {
  .cqc-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cqc-section__headline { font-size: 1.4rem; }
}
@media (max-width: 600px) {
  .cqc-section__badge { width: 100%; }
  .cqc-section__rating { flex: 1; }
}

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner { background: var(--green); padding: 5rem 1.5rem; text-align: center; }
.cta-banner__inner { max-width: 620px; margin: 0 auto; }
.cta-banner .section-lead { color: rgba(255,255,255,0.88); margin: 0 auto 2.5rem; }
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.cta-banner__phone { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 1.1rem; font-family: var(--font-serif); color: #fff; text-decoration: none; }
.cta-banner__phone:hover { color: var(--terra-light); }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer, footer * { box-sizing: border-box; }
footer { background: var(--green-deep); }
.footer__main { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; padding: 3.5rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); align-items: flex-start; }
.footer__brand { background: transparent; display: flex; flex-direction: column; }
.footer__logo-wrap { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer__logo-mark { width: 80px; height: 80px; flex-shrink: 0; object-fit: contain; align-self: center; display: block; margin-top: 0; }
.footer__logo-text { display: flex; flex-direction: column; line-height: 1.2; padding-left: 1rem; border-left: 1.5px solid rgba(200,169,110,0.5); gap: 0.2rem; }
.footer__logo-name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: #fff; letter-spacing: 0.02em; }
.footer__logo-sub { font-size: 0.6rem; color: rgba(200,169,110,0.65); letter-spacing: 0.14em; text-transform: uppercase; }
.footer__desc { font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 1.25rem; }
.footer__contact a { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.7); text-decoration: none; margin-bottom: 0.4rem; transition: color 0.15s; }
.footer__contact a:hover { color: var(--terra-light); }
.footer__contact svg { width: 13px; height: 13px; flex-shrink: 0; }

.footer__social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer__social-link { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.15s; }
.footer__social-link:hover { color: var(--terra-light); }
.footer__social-link svg { width: 18px; height: 18px; }
.footer__nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 0 2rem; background: transparent; align-items: start; }
.footer__nav-col { display: flex; flex-direction: column; background: transparent; padding-top: 20px; }
.footer__nav-heading { font-size: 1rem; letter-spacing: 0.02em; text-transform: none; color: #c8a96e; font-weight: 500; margin-bottom: 1rem; background: transparent; }
.footer__nav-link { font-size: 0.82rem; color: rgba(255,255,255,0.75); text-decoration: none; padding: 0.25rem 0; transition: color 0.15s; background: transparent; border: none; display: block; }
.footer__nav-link:hover { color: var(--terra-light); }

.footer__cqc-line { padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); font-size: 0.78rem; }
.footer__cqc-line a { color: var(--terra-light); }

.footer__bottom-bar-wrap { background: var(--green-deep); padding: 0 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer__bottom-bar { max-width: var(--max-w); margin: 0 auto; padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer__copy { font-size: 0.72rem; color: rgba(255,255,255,0.65); }

.footer__credit { background: rgba(0,0,0,0.2); padding: 0.65rem 1.5rem; text-align: center; }
.footer__credit-inner { max-width: var(--max-w); margin: 0 auto; font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.footer__credit a { color: rgba(255,255,255,0.65); text-decoration: none; font-weight: 500; }
.footer__credit a:hover { color: var(--terra-light); }

/* ── COOKIE BANNER ──────────────────────────────────────────── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--green-deep); border-top: 3px solid var(--terra-btn); padding: 1.25rem 1.5rem; z-index: 9000; box-shadow: 0 -4px 24px rgba(0,0,0,0.2); transform: translateY(0); transition: transform 0.3s ease; }
.cookie-banner.is-hidden { transform: translateY(110%); }
.cookie-banner__inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cookie-banner__text { font-size: 0.82rem; color: rgba(255,255,255,0.85); line-height: 1.6; flex: 1; min-width: 260px; }
.cookie-banner__text a { color: var(--terra-light); text-decoration: underline; }
.cookie-banner__text a:hover { color: #fff; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; flex-shrink: 0; }
.cookie-banner__accept { background: var(--terra-btn); color: #fff; border: none; border-radius: var(--radius); padding: 0.6rem 1.25rem; font-size: 0.78rem; font-weight: 500; font-family: var(--font-sans); letter-spacing: 0.04em; cursor: pointer; transition: background 0.2s; }
.cookie-banner__accept:hover { background: var(--terra-hover); }
.cookie-banner__decline { background: transparent; color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.3); border-radius: var(--radius); padding: 0.6rem 1.25rem; font-size: 0.78rem; font-weight: 500; font-family: var(--font-sans); letter-spacing: 0.04em; cursor: pointer; transition: all 0.2s; }
.cookie-banner__decline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
@media (max-width: 600px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__accept, .cookie-banner__decline { flex: 1; text-align: center; }
}

/* ── CONTENT PAGE (legal/long-form) ─────────────────────────── */
.content-page__header { background: var(--green-light); padding: 4.5rem 0 3rem; }
.content-page__title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--green-dark); margin-bottom: 0.5rem; }
.content-page__meta { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1.25rem; }
.content-page__lead { font-size: 1.05rem; color: var(--text-mid); max-width: 680px; line-height: 1.8; }
.content-page__body { padding: 4rem 0 5rem; }
.content-page__body h2 { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 400; color: var(--green-dark); margin: 2.5rem 0 1rem; }
.content-page__body h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; color: var(--green-dark); margin: 1.75rem 0 0.75rem; }
.content-page__body p  { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.85; }
.content-page__body ul { margin: 0 0 1.25rem 1.25rem; }
.content-page__body li { color: var(--text-mid); margin-bottom: 0.4rem; line-height: 1.7; }

/* ── TEAM ───────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.75rem; margin-top: 3rem; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.team-card__photo { aspect-ratio: 4/3; background: var(--green-mid); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }
.team-card__name { font-family: var(--font-serif); font-size: 1.2rem; color: var(--green-dark); padding: 1.25rem 1.5rem 0.1rem; }
.team-card__role { font-size: 0.8rem; color: var(--terra); padding: 0 1.5rem 0.75rem; letter-spacing: 0.04em; text-transform: uppercase; }
.team-card__bio  { font-size: 0.88rem; color: var(--text-mid); padding: 0 1.5rem 1.5rem; line-height: 1.7; }

/* ── FEES INTRO (text-only) ─────────────────────────────────── */
.fees-intro {
  padding: 3.5rem 1.5rem !important;
}
.fees-intro .label { margin-bottom: 1rem; }
.fees-intro .section-title { margin-bottom: 1.75rem; }
.fees-intro__paragraph {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.fees-intro__paragraph:last-of-type { margin-bottom: 0; }

/* ── FEES PRICING (weekly rates grid) ─────────────────────────── */
.fees-pricing {
  background: var(--warm-white);
  padding: 4rem 1.5rem !important;
}
.fees-pricing__header { margin-bottom: 2.5rem; }
.fees-pricing__header .section-title { margin-bottom: 0.75rem; }
.fees-pricing__intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.fees-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.fees-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fees-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terra-btn) 0%, var(--gold) 100%);
}

.fees-card .card__icon {
  margin-bottom: 1.25rem;
}

.fees-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.fees-card__price {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--terra-btn);
  font-family: var(--font-serif);
  line-height: 1.1;
  margin-bottom: 0;
}

.fees-card__period {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: normal;
  display: block;
  margin-top: 0.25rem;
}

.fees-pricing__note {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* ── FEES WHAT'S INCLUDED ───────────────────────────────────── */
.fees-included,
.fees-additional,
.fees-funding,
.fees-commitment {
  padding: 4rem 1.5rem !important;
}

.fees-included .section-title,
.fees-additional .section-title,
.fees-funding .section-title,
.fees-commitment .section-title {
  margin-bottom: 0.85rem;
}

.fees-included__intro,
.fees-additional__intro,
.fees-funding__intro,
.fees-commitment__intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

/* ── FEES LIST ─────────────────────────────────────────────────── */
.fees-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.95rem;
  margin-bottom: 0;
}

.fees-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem;
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(200,169,110,0.2);
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.fees-list__item::before {
  content: '✓';
  font-weight: 700;
  color: var(--terra-btn);
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1.3;
}

.fees-list--commitment { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.fees-list--commitment .fees-list__item {
  background: var(--green-light);
  border-color: var(--green-mid);
}

/* ── ADDITIONAL SERVICES NOTE ──────────────────────────────────── */
.fees-additional__note,
.fees-funding__support {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* ── FUNDING OPTIONS ───────────────────────────────────────────── */
.fees-funding__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 0;
}

.fees-funding-option {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.fees-funding-option:hover {
  border-color: var(--terra-btn);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.fees-funding-option__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.fees-funding-option__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── ADDITIONAL SERVICES (horizontal cards, icon left) ────────────── */
.fees-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 0;
}

.fees-service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.fees-service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--terra-btn) 0%, var(--gold) 100%);
}

.fees-service-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  border-radius: 4px;
  color: var(--terra);
}

.fees-service-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.fees-service-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.4;
  margin: 0;
}

/* ── FUNDING YOUR CARE (vertical cards, icon top) ──────────────── */
.fees-funding__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 0;
}

.fees-funding-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fees-funding-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terra-btn) 0%, var(--gold) 100%);
}

.fees-funding-card .card__icon {
  margin-bottom: 1.25rem;
}

.fees-funding-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.fees-funding-card__desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}


/* ── FEES RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .fees-pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .fees-services__grid { grid-template-columns: repeat(2, 1fr); }
  .fees-funding__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .fees-list { grid-template-columns: 1fr; }
  .fees-funding__options { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .fees-pricing__grid { grid-template-columns: 1fr; }
  .fees-card { padding: 1.75rem 1.5rem; }
  .fees-card__price { font-size: 1.8rem; }
  .fees-list { grid-template-columns: 1fr; }
  .fees-funding__options { grid-template-columns: 1fr; }
  .fees-services__grid { grid-template-columns: 1fr; }
  .fees-funding__grid { grid-template-columns: 1fr; }
}

/* ── ADMISSIONS PAGE ────────────────────────────────────────── */
.admissions-intro {
  padding: 3.5rem 1.5rem !important;
}
.admissions-intro .label { margin-bottom: 1rem; }
.admissions-intro .section-title { margin-bottom: 1.75rem; }
.admissions-intro__paragraph {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.admissions-intro__paragraph:last-of-type { margin-bottom: 0; }

/* ── ADMISSIONS STEPS ──────────────────────────────────────── */
.admissions-steps {
  padding: 4rem 1.5rem !important;
}
.admissions-steps .section-title { margin-bottom: 2.5rem; }

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  max-width: 700px;
}

/* Vertical connecting line with fade-out */
.steps-list::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--terra-btn) 0%, var(--terra-btn) 85%, transparent 100%);
}

.step-item {
  display: flex;
  gap: 2rem;
  position: relative;
}

.step-item__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--terra-btn);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(158, 90, 34, 0.2);
}

.step-item__content {
  flex: 1;
  padding-top: 0.5rem;
}

.step-item__heading {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.step-item__text {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.85;
  margin: 0;
}

/* ── ADMISSIONS URGENT ─────────────────────────────────────── */
.admissions-urgent {
  padding: 4rem 1.5rem !important;
}
.admissions-urgent .section-title { margin-bottom: 1.75rem; }

.admissions-urgent__text {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.admissions-urgent__text:last-of-type { margin-bottom: 0; }
.admissions-urgent__text strong { color: var(--green-dark); }

/* ── ADMISSIONS EXPECTATIONS ───────────────────────────────── */
.admissions-expectations {
  padding: 4rem 1.5rem !important;
}
.admissions-expectations .section-title { margin-bottom: 1.75rem; }

.admissions-expectations__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.admissions-expectations__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

.admissions-expectations__item::before {
  content: '✓';
  font-weight: 700;
  color: var(--terra-btn);
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1.3;
}

/* ── ADMISSIONS FUNDING ────────────────────────────────────── */
.admissions-funding {
  padding: 4rem 1.5rem !important;
}
.admissions-funding .section-title { margin-bottom: 1.75rem; }

.admissions-funding__text {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.admissions-funding__text:last-of-type { margin-bottom: 0; }

/* ── ADMISSIONS RESPONSIVE ─────────────────────────────────── */
@media (max-width: 960px) {
  .admissions-expectations__item { gap: 0.85rem; padding: 1rem; }
  .steps-list { gap: 2.5rem; }
  .steps-list::before { left: 23px; }
  .step-item__number { width: 48px; height: 48px; font-size: 1.25rem; }
  .step-item { gap: 1.5rem; }
}

@media (max-width: 600px) {
  .admissions-intro { padding: 3rem 1.25rem !important; }
  .admissions-steps { padding: 3rem 1.25rem !important; }
  .admissions-urgent { padding: 3rem 1.25rem !important; }
  .admissions-expectations { padding: 3rem 1.25rem !important; }
  .admissions-funding { padding: 3rem 1.25rem !important; }

  .admissions-intro .section-title,
  .admissions-steps .section-title,
  .admissions-urgent .section-title,
  .admissions-expectations .section-title,
  .admissions-funding .section-title {
    font-size: 1.6rem;
  }

  .steps-list { gap: 2rem; max-width: 100%; }
  .steps-list::before { left: 19px; }
  .step-item__number { width: 40px; height: 40px; font-size: 1.1rem; }
  .step-item { gap: 1.25rem; }
  .step-item__heading { font-size: 1.1rem; }
  .step-item__text { font-size: 0.95rem; }
  .admissions-urgent__text,
  .admissions-funding__text { font-size: 0.95rem; }
  .admissions-expectations__item { font-size: 0.9rem; }
}

/* ── ABOUT PAGE ────────────────────────────────────────────── */
.about-intro {
  padding: 3.5rem 1.5rem !important;
}
.about-intro .label { margin-bottom: 1rem; }
.about-intro .section-title { margin-bottom: 1.75rem; }
.about-intro__paragraph {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.about-intro__paragraph:last-of-type { margin-bottom: 0; }

.about-story,
.about-approach,
.about-who-we-care,
.about-home,
.about-team,
.about-quality,
.about-families,
.about-visit {
  padding: 4rem 1.5rem !important;
}

.about-story .section-title,
.about-approach .section-title,
.about-who-we-care .section-title,
.about-home .section-title,
.about-team .section-title,
.about-quality .section-title,
.about-families .section-title,
.about-visit .section-title {
  margin-bottom: 1.75rem;
}

.about-section__paragraph {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-section__paragraph:last-of-type { margin-bottom: 0; }

.about-section__lead {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1rem;
  font-weight: 500;
}

.about-list {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--terra-btn);
}

.about-list li {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.about-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--terra-btn);
  font-weight: bold;
}

.about-section__cta {
  margin-top: 2rem;
}

.about-section__cta .btn {
  margin-right: 0.5rem;
}

/* ── ABOUT RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 960px) {
  .about-intro { padding: 3rem 1.5rem !important; }
  .about-story,
  .about-approach,
  .about-who-we-care,
  .about-home,
  .about-team,
  .about-quality,
  .about-families,
  .about-visit {
    padding: 3rem 1.5rem !important;
  }
}

@media (max-width: 600px) {
  .about-intro { padding: 2.5rem 1.25rem !important; }
  .about-story,
  .about-approach,
  .about-who-we-care,
  .about-home,
  .about-team,
  .about-quality,
  .about-families,
  .about-visit {
    padding: 2.5rem 1.25rem !important;
  }

  .about-intro .section-title,
  .about-story .section-title,
  .about-approach .section-title,
  .about-who-we-care .section-title,
  .about-home .section-title,
  .about-team .section-title,
  .about-quality .section-title,
  .about-families .section-title,
  .about-visit .section-title {
    font-size: 1.6rem;
  }

  .about-intro__paragraph,
  .about-section__paragraph,
  .about-section__lead {
    font-size: 0.95rem;
  }

  .about-list li {
    font-size: 0.95rem;
  }
}

/* ── SAFEGUARDING PAGE ─────────────────────────────────────── */
.safeguarding-intro-lead {
  padding: 3.5rem 1.5rem !important;
}
.safeguarding-intro-lead .label { margin-bottom: 1rem; }

.safeguarding-intro-lead__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.safeguarding-intro-lead__content {
  max-width: 700px;
}

.safeguarding-intro-lead__content .section-title {
  margin-bottom: 1.75rem;
}

.safeguarding-intro-lead__name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.safeguarding-intro-lead__role {
  color: var(--terra-btn);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.safeguarding-intro-lead__contact {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 2;
}

.safeguarding-intro-lead__contact a {
  color: var(--terra-btn);
  text-decoration: none;
}

.safeguarding-intro-lead__contact a:hover {
  text-decoration: underline;
}

.safeguarding-intro-lead__image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.safeguarding-intro-lead__image img {
  width: 100%;
  height: auto;
  display: block;
}

.safeguarding-intro {
  padding: 3.5rem 1.5rem !important;
}
.safeguarding-intro .section-title { margin-bottom: 1.75rem; }
.safeguarding-intro__paragraph {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.safeguarding-intro__paragraph:last-of-type { margin-bottom: 0; }

.safeguarding-what,
.safeguarding-approach,
.safeguarding-reporting,
.safeguarding-authorities {
  padding: 4rem 1.5rem !important;
}

.safeguarding-what .section-title,
.safeguarding-approach .section-title,
.safeguarding-reporting .section-title,
.safeguarding-authorities .section-title {
  margin-bottom: 1.75rem;
}

.safeguarding-section__paragraph {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.safeguarding-section__paragraph:last-of-type { margin-bottom: 0; }

.safeguarding-section__lead {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1rem;
  font-weight: 500;
}

.safeguarding-list {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.safeguarding-list li {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.safeguarding-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--terra-btn);
  font-weight: bold;
}

.safeguarding-list a {
  color: var(--terra-btn);
  text-decoration: underline;
}

/* ── SAFEGUARDING RESPONSIVE ───────────────────────────────── */
@media (max-width: 960px) {
  .safeguarding-intro-lead { padding: 3rem 1.5rem !important; }
  .safeguarding-intro-lead__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .safeguarding-intro { padding: 3rem 1.5rem !important; }
  .safeguarding-what,
  .safeguarding-approach,
  .safeguarding-reporting,
  .safeguarding-authorities {
    padding: 3rem 1.5rem !important;
  }
}

@media (max-width: 600px) {
  .safeguarding-intro-lead { padding: 2.5rem 1.25rem !important; }
  .safeguarding-intro-lead__content .section-title { font-size: 1.6rem; }
  .safeguarding-intro-lead__name { font-size: 1.2rem; }
  .safeguarding-intro-lead__role { font-size: 0.95rem; }
  .safeguarding-intro-lead__contact { font-size: 0.9rem; }

  .safeguarding-intro { padding: 2.5rem 1.25rem !important; }
  .safeguarding-what,
  .safeguarding-approach,
  .safeguarding-reporting,
  .safeguarding-authorities {
    padding: 2.5rem 1.25rem !important;
  }

  .safeguarding-intro .section-title,
  .safeguarding-what .section-title,
  .safeguarding-approach .section-title,
  .safeguarding-reporting .section-title,
  .safeguarding-authorities .section-title {
    font-size: 1.6rem;
  }

  .safeguarding-intro__paragraph,
  .safeguarding-section__paragraph,
  .safeguarding-section__lead {
    font-size: 0.95rem;
  }

  .safeguarding-list li {
    font-size: 0.95rem;
  }
}

/* ── COMPLAINTS PROCEDURE PAGE ─────────────────────────────── */
.complaints-intro {
  padding: 3.5rem 1.5rem !important;
}
.complaints-intro .label { margin-bottom: 1rem; }
.complaints-intro .section-title { margin-bottom: 1.75rem; }
.complaints-intro__paragraph {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.complaints-intro__paragraph:last-of-type { margin-bottom: 0; }

/* ── COMPLAINTS RESPONSIVE ────────────────────────────────── */
@media (max-width: 600px) {
  .complaints-intro { padding: 2.5rem 1.25rem !important; }
  .complaints-intro .section-title { font-size: 1.6rem; }
  .complaints-intro__paragraph { font-size: 0.95rem; }
}

/* ── LEGAL PAGES (unified styling) ─────────────────────────── */
.privacy-policy-section,
.cookie-policy-section,
.accessibility-statement-section,
.terms-conditions-section,
.quality-cqc-section,
.complaints-procedure-section,
.modern-slavery-act-section {
  padding: 4rem 1.5rem !important;
}

.privacy-policy-section .label,
.cookie-policy-section .label,
.accessibility-statement-section .label,
.terms-conditions-section .label,
.quality-cqc-section .label,
.complaints-procedure-section .label,
.modern-slavery-act-section .label {
  margin-bottom: 1rem;
}

.privacy-policy-section .section-title,
.cookie-policy-section .section-title,
.accessibility-statement-section .section-title,
.terms-conditions-section .section-title,
.quality-cqc-section .section-title,
.complaints-procedure-section .section-title,
.modern-slavery-act-section .section-title {
  margin-bottom: 1.75rem;
}

.legal-section__meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  display: block;
}

.legal-section__lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Legal section headings */
.privacy-policy-section h3,
.cookie-policy-section h3,
.accessibility-statement-section h3,
.terms-conditions-section h3,
.quality-cqc-section h3,
.complaints-procedure-section h3,
.modern-slavery-act-section h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green-dark);
  margin: 2rem 0 1rem 0;
}

.privacy-policy-section h3:first-of-type,
.cookie-policy-section h3:first-of-type,
.accessibility-statement-section h3:first-of-type,
.terms-conditions-section h3:first-of-type,
.quality-cqc-section h3:first-of-type,
.complaints-procedure-section h3:first-of-type,
.modern-slavery-act-section h3:first-of-type {
  margin-top: 0;
}

/* Legal section subheadings (h4) */
.privacy-policy-section h4,
.cookie-policy-section h4,
.accessibility-statement-section h4,
.terms-conditions-section h4,
.quality-cqc-section h4,
.complaints-procedure-section h4,
.modern-slavery-act-section h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--green-dark);
  margin: 1.5rem 0 0.75rem 0;
}

/* Legal section paragraphs */
.privacy-policy-section p,
.cookie-policy-section p,
.accessibility-statement-section p,
.terms-conditions-section p,
.quality-cqc-section p,
.complaints-procedure-section p,
.modern-slavery-act-section p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* Legal section lists */
.privacy-policy-section ul,
.cookie-policy-section ul,
.accessibility-statement-section ul,
.terms-conditions-section ul,
.quality-cqc-section ul,
.complaints-procedure-section ul,
.modern-slavery-act-section ul {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.privacy-policy-section li,
.cookie-policy-section li,
.accessibility-statement-section li,
.terms-conditions-section li,
.quality-cqc-section li,
.complaints-procedure-section li,
.modern-slavery-act-section li {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.privacy-policy-section li::before,
.cookie-policy-section li::before,
.accessibility-statement-section li::before,
.terms-conditions-section li::before,
.quality-cqc-section li::before,
.complaints-procedure-section li::before,
.modern-slavery-act-section li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--terra-btn);
  font-weight: bold;
}

/* Legal page links */
.privacy-policy-section a,
.cookie-policy-section a,
.accessibility-statement-section a,
.terms-conditions-section a,
.quality-cqc-section a,
.complaints-procedure-section a,
.modern-slavery-act-section a {
  color: var(--terra-btn);
  text-decoration: underline;
}

/* ── LEGAL PAGES RESPONSIVE ────────────────────────────────── */
@media (max-width: 960px) {
  .privacy-policy-section,
  .cookie-policy-section,
  .accessibility-statement-section,
  .terms-conditions-section,
  .quality-cqc-section,
  .complaints-procedure-section,
  .modern-slavery-act-section {
    padding: 3rem 1.5rem !important;
  }
}

@media (max-width: 600px) {
  .privacy-policy-section,
  .cookie-policy-section,
  .accessibility-statement-section,
  .terms-conditions-section,
  .quality-cqc-section,
  .complaints-procedure-section,
  .modern-slavery-act-section {
    padding: 2.5rem 1.25rem !important;
  }

  .privacy-policy-section .section-title,
  .cookie-policy-section .section-title,
  .accessibility-statement-section .section-title,
  .terms-conditions-section .section-title,
  .quality-cqc-section .section-title,
  .complaints-procedure-section .section-title,
  .modern-slavery-act-section .section-title {
    font-size: 1.6rem;
  }

  .legal-section__lead,
  .privacy-policy-section p,
  .cookie-policy-section p,
  .accessibility-statement-section p,
  .terms-conditions-section p,
  .quality-cqc-section p,
  .complaints-procedure-section p,
  .modern-slavery-act-section p {
    font-size: 0.95rem;
  }

  .privacy-policy-section li,
  .cookie-policy-section li,
  .accessibility-statement-section li,
  .terms-conditions-section li,
  .quality-cqc-section li,
  .complaints-procedure-section li,
  .modern-slavery-act-section li {
    font-size: 0.95rem;
  }
}

/* ── VISITING PAGE ─────────────────────────────────────────── */
.visiting-intro {
  padding: 3.5rem 1.5rem !important;
}

.visiting-intro__content {
  max-width: 700px;
}

.visiting-intro__lead {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--terra-btn);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.visiting-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.visiting-intro__content {
  max-width: 700px;
}

.visiting-intro__paragraph {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.visiting-intro__paragraph:last-of-type {
  margin-bottom: 0;
}

.visiting-intro__image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.visiting-intro__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Visiting sections */
.visiting-expect,
.visiting-family,
.visiting-access,
.visiting-parking,
.visiting-address,
.visiting-planning,
.visiting-first,
.visiting-safety {
  padding: 4rem 1.5rem !important;
}

.visiting-expect .section-title,
.visiting-family .section-title,
.visiting-access .section-title,
.visiting-parking .section-title,
.visiting-address .section-title,
.visiting-planning .section-title,
.visiting-first .section-title,
.visiting-safety .section-title {
  margin-bottom: 1.75rem;
}

.visiting-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.visiting-text:last-of-type {
  margin-bottom: 0;
}

/* Visiting list */
.visiting-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0 0 0;
  padding: 0;
}

.visiting-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.visiting-list__item::before {
  content: '•';
  color: var(--terra-btn);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── VISITING RESPONSIVE ──────────────────────────────────── */
@media (max-width: 960px) {
  .visiting-intro { padding: 3rem 1.5rem !important; }
  .visiting-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .visiting-expect,
  .visiting-family,
  .visiting-access,
  .visiting-parking,
  .visiting-address,
  .visiting-planning,
  .visiting-first,
  .visiting-safety { padding: 3.5rem 1.5rem !important; }
}

@media (max-width: 600px) {
  .visiting-intro { padding: 3rem 1.25rem !important; }
  .visiting-expect,
  .visiting-family,
  .visiting-access,
  .visiting-parking,
  .visiting-address,
  .visiting-planning,
  .visiting-first,
  .visiting-safety {
    padding: 3rem 1.25rem !important;
  }

  .visiting-intro__lead { font-size: 1.2rem; }
  .visiting-text { font-size: 0.9rem; }
}

/* ── LIFE AT ROSEWOOD PAGE ─────────────────────────────────── */

/* ── DAY TIMETABLE: Two-column with left accent line ────────── */
.day-timetable {
  max-width: 800px;
}

.day-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--terra-btn);
  margin-left: 0;
}

.day-row:not(:last-child) {
  border-bottom: 1px solid var(--green-mid);
  padding-bottom: 1.5rem;
}

.day-time {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--terra-btn);
  line-height: 1.4;
  flex-shrink: 0;
}

.day-content {
  margin: 0;
}

.day-content strong {
  display: block;
  font-size: 1rem;
  color: var(--green-dark);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.day-content p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.day-closing {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* ── CAROUSEL GALLERY ──────────────────────────────────────── */
.carousel-section {
  padding: 4rem 1.5rem !important;
}

.carousel {
  position: relative;
  max-width: 900px;
  margin: 2rem auto 0;
}

.carousel__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel__track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

/* Carousel Buttons */
.carousel__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  color: var(--green-dark);
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
  font-weight: 300;
  line-height: 1;
}

.carousel__button:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel__button:focus-visible {
  outline: 3px solid var(--terra-btn);
  outline-offset: 2px;
}

.carousel__button--prev {
  left: 1rem;
}

.carousel__button--next {
  right: 1rem;
}

/* Carousel Indicators */
.carousel__indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--terra-btn);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel__dot:hover {
  transform: scale(1.15);
}

.carousel__dot:focus-visible {
  outline: 2px solid var(--terra-btn);
  outline-offset: 3px;
}

.carousel__dot--active {
  background: var(--terra-btn);
  transform: scale(1.2);
}

/* ── SERVICES PAGE ─────────────────────────────────────────── */
.services-intro {
  padding: 3.5rem 1.5rem !important;
}

.services-intro .label { margin-bottom: 1rem; }
.services-intro .section-title { margin-bottom: 1.75rem; }

.services-intro__paragraph {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.services-intro__paragraph:last-of-type { margin-bottom: 0; }

/* All Services Section */
.services-all {
  padding: 4rem 1.5rem !important;
}

.services-group {
  margin-bottom: 3rem;
  scroll-margin-top: 120px;
}

.services-group--divider {
  padding-top: 3rem;
  border-top: 1px solid var(--green-mid);
}

.services-group__heading {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.services-group__lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--terra-btn);
  font-weight: 400;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 750px;
}

.services-list li {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  padding-left: 1.75rem;
  position: relative;
}

.services-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--terra-btn);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ── SERVICES RESPONSIVE ───────────────────────────────────── */
@media (max-width: 960px) {
  .services-intro { padding: 3rem 1.5rem !important; }
  .services-all { padding: 3.5rem 1.5rem !important; }
  .services-group__lead { font-size: 1.05rem; }
  .services-group__heading { font-size: 1.25rem; }
}

@media (max-width: 600px) {
  .services-intro { padding: 2.5rem 1.25rem !important; }
  .services-all { padding: 3rem 1.25rem !important; }

  .services-intro .section-title {
    font-size: 1.6rem;
  }

  .services-intro__paragraph { font-size: 0.95rem; }
  .services-group__heading { font-size: 1.15rem; }
  .services-group__lead { font-size: 1rem; }
  .services-list li { font-size: 0.9rem; }
  .services-group--divider { padding-top: 2rem; }
}

/* ── ACTIVITIES INTRO WITH IMAGE ───────────────────────────── */
.activities-intro {
  padding: 4rem 1.5rem !important;
}

.activities-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.activities-intro__content {
  max-width: 700px;
}

.activities-intro__image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.activities-intro__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Activities list */
.life-activities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.life-activities-list li {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.life-activities-list li::before {
  content: '•';
  position: absolute;
  left: 0.5rem;
  color: var(--terra-btn);
  font-weight: 700;
}

/* Meal times section */
.meals-times {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
  margin: 2rem 0;
}

.meal-item {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

.meal-item strong {
  color: var(--green-dark);
  font-weight: 500;
}

/* Life page section intro styling */
.section-intro {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.75rem;
  max-width: none;
}

/* ── DAY TIMETABLE RESPONSIVE ──────────────────────────────── */
@media (max-width: 960px) {
  .day-row {
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 1.25rem 0 1.25rem 1.25rem;
  }

  .day-time {
    font-size: 0.85rem;
  }

  .day-content strong {
    font-size: 0.95rem;
  }

  .day-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .day-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem 0 1rem 1rem;
  }

  .day-time {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }

  .day-content strong {
    font-size: 0.9rem;
  }

  .day-content p {
    font-size: 0.8rem;
  }
}

/* ── CAROUSEL RESPONSIVE ───────────────────────────────────── */
@media (max-width: 960px) {
  .carousel__button {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }

  .carousel__button--prev {
    left: 0.75rem;
  }

  .carousel__button--next {
    right: 0.75rem;
  }
}

@media (max-width: 600px) {
  .carousel-section {
    padding: 3rem 1.25rem !important;
  }

  .carousel__viewport {
    border-radius: 8px;
  }

  .carousel__button {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .carousel__button--prev {
    left: 0.5rem;
  }

  .carousel__button--next {
    right: 0.5rem;
  }

  .carousel__indicators {
    gap: 0.5rem;
    margin-top: 1.25rem;
  }

  .carousel__dot {
    width: 8px;
    height: 8px;
  }
}

/* ── ACTIVITIES RESPONSIVE ─────────────────────────────────── */
@media (max-width: 960px) {
  .activities-intro { padding: 3.5rem 1.5rem !important; }
  .activities-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .activities-intro { padding: 3rem 1.25rem !important; }
  .activities-intro__grid { grid-template-columns: 1fr; gap: 2rem; }
  .life-activities-list li { font-size: 0.9rem; }
  .day-closing { margin-top: 1.5rem; padding-top: 1rem; }
}

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-page { background: var(--cream); }
.contact-page__header { max-width: 720px; margin: 0 auto 3.25rem; text-align: center; }
.contact-page__header .section-lead { margin-left: auto; margin-right: auto; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Left column — info */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 120px; }
.contact-info__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.5rem;
  box-shadow: 0 2px 16px rgba(34,57,39,0.06);
  overflow: hidden;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease;
  position: relative;
}
.contact-method + .contact-method { border-top: 1px solid var(--border); }
.contact-method:hover { background: var(--green-light); }
.contact-method:hover .contact-method__icon { background: var(--terra-btn); color: #fff; }

.contact-method__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--terra);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.contact-method__icon svg { width: 20px; height: 20px; }
.contact-method__body { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.contact-method__label {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terra);
}
.contact-method__value {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 500;
  color: var(--green-dark);
  line-height: 1.35;
  word-break: break-word;
}
.contact-method__meta {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.contact-info__hours {
  background: var(--green-light);
  color: var(--text-dark);
  border-radius: 8px;
  padding: 1.75rem 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.contact-info__hours::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle at top right, rgba(200,169,110,0.18), transparent 65%);
  pointer-events: none;
}
.contact-info__hours-title {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 1rem;
  position: relative;
}
.contact-hours { display: flex; flex-direction: column; gap: 0.4rem; position: relative; }
.contact-hours > div {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(42,66,53,0.15);
  font-size: 0.88rem;
}
.contact-hours > div:last-child { border-bottom: none; }
.contact-hours dt { color: var(--text-mid); }
.contact-hours dd { color: var(--green-dark); font-weight: 500; letter-spacing: 0.02em; }
.contact-info__note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
  position: relative;
}

/* Right column — form card */
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem 2.5rem 2.25rem;
  box-shadow: 0 8px 40px rgba(34,57,39,0.08), 0 2px 8px rgba(34,57,39,0.04);
  position: relative;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 2.5rem; right: 2.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--terra-btn) 0%, var(--gold) 100%);
  border-radius: 10px 10px 0 0;
}
.contact-form-card__header { margin-bottom: 2rem; }
.contact-form-card__title {
  font-family: var(--font-serif);
  font-size: 1.9rem; font-weight: 400; line-height: 1.2;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}
.contact-form-card__title em { font-style: italic; color: var(--terra); }
.contact-form-card__lead {
  font-size: 0.95rem; color: var(--text-mid); line-height: 1.75;
}

/* Form fields */
.contact-form__row + .contact-form__row { margin-top: 1.1rem; }
.contact-form__row--split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
}
.contact-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-form__field label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--green-dark);
}
.contact-form__field label span { color: var(--terra); margin-left: 0.15rem; }
.contact-form__field input,
.contact-form__field textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 0.85rem 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 100%;
  line-height: 1.5;
  min-height: 44px; /* WCAG 2.5.5 - minimum touch target size */
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #96a39b;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--green-dark);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(59,92,74,0.12);
}
.contact-form__field textarea { resize: vertical; min-height: 130px; }

.contact-form__privacy {
  margin-top: 1.25rem;
  font-size: 0.78rem; color: var(--text-light); line-height: 1.6;
}
.contact-form__privacy a {
  color: var(--terra); text-decoration: none;
  border-bottom: 1px solid rgba(158,90,34,0.3);
}
.contact-form__privacy a:hover { color: var(--terra-hover); border-color: currentColor; }

.contact-form__actions {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 1.75rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.contact-form__phone-alt {
  font-size: 0.88rem; color: var(--text-mid); text-decoration: none;
  transition: color 0.15s;
}
.contact-form__phone-alt strong {
  color: var(--green-dark);
  border-bottom: 1px dotted rgba(42,66,53,0.3);
}
.contact-form__phone-alt:hover strong { color: var(--terra-hover); border-color: currentColor; }

/* Map */
.contact-map { background: var(--green-deep); position: relative; }
.contact-map__frame {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  background: var(--green-mid);
  filter: saturate(0.92);
}
.contact-map__frame iframe {
  width: 100%; height: 100%; border: 0; display: block;
}
.contact-map__caption {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  padding: 1.75rem 1.5rem;
  color: rgba(255,255,255,0.88);
}
.contact-map__caption h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem; font-weight: 500; color: #fff;
  margin: 0 0 0.25rem;
}
.contact-map__caption p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin: 0; }
.contact-map__caption .btn--outline-dark {
  color: #fff; border-color: rgba(255,255,255,0.6);
}
.contact-map__caption .btn--outline-dark:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

/* Contact page responsive */
@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-info { position: static; }
  .contact-form-card { padding: 2rem 1.75rem 1.75rem; }
  .contact-form-card::before { left: 1.75rem; right: 1.75rem; }
}
@media (max-width: 600px) {
  .contact-page__header { margin-bottom: 2.25rem; }
  .contact-form__row--split { grid-template-columns: 1fr; }
  .contact-form-card { padding: 1.75rem 1.25rem 1.5rem; }
  .contact-form-card::before { left: 1.25rem; right: 1.25rem; }
  .contact-method { padding: 1rem; gap: 0.85rem; }
  .contact-method__value { font-size: 1.05rem; }
  .contact-map__frame { height: 340px; }
  .contact-map__caption { padding: 1.25rem; }
}

/* ── FAQs ───────────────────────────────────────────────────── */
.faq-list { margin-top: 2.5rem; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 1.1rem 1.5rem; margin-bottom: 0.75rem; }
.faq-item[open] { box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.faq-item__q { font-family: var(--font-serif); font-size: 1.1rem; color: var(--green-dark); cursor: pointer; font-weight: 500; list-style: none; }
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after { content: '+'; float: right; color: var(--terra); font-size: 1.25rem; line-height: 1; }
.faq-item[open] .faq-item__q::after { content: '−'; }
.faq-item__a { padding-top: 0.75rem; color: var(--text-mid); line-height: 1.8; font-size: 0.95rem; }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.hero__content > * { animation: fadeUp 0.7s ease both; }
.hero__content > *:nth-child(1) { animation-delay: 0.1s; }
.hero__content > *:nth-child(2) { animation-delay: 0.2s; }
.hero__content > *:nth-child(3) { animation-delay: 0.3s; }
.hero__content > *:nth-child(4) { animation-delay: 0.42s; }
.hero__content > *:nth-child(5) { animation-delay: 0.54s; }
.hero__photo img { animation: fadeIn 1s 0s ease both; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__phone-btn { display: flex; }
  /* Shrink logo on mobile to make room for burger + phone buttons */
  .nav__logo-mark { width: 60px; height: 60px; }
  .nav__logo-text { padding-left: 0.75rem; }
  .nav__logo-name { font-size: 1.05rem; }
  .nav__right { gap: 0.75rem; }
  .nav__burger { padding: 0.4rem 0.6rem; font-size: 0.7rem; }
  .hero__inner { max-width: 780px; }
  .intro__grid, .life__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__nav { grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
  .tick-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  :root { --section-pad: 4rem 1.25rem; }
  .footer__bottom-bar { flex-direction: column; align-items: flex-start; }
  .trust-bar__inner { justify-content: flex-start; gap: 1.25rem; }
  .footer__nav { grid-template-columns: 1fr; }
}

/* ── EXTRA SMALL PHONES (iPhone SE, etc) ───────────────────────── */
@media (max-width: 400px) {
  /* Ensure header stays readable on very small screens */
  .nav__inner { height: 80px; padding: 0 0.75rem; }
  .nav__logo-mark { width: 50px; height: 50px; }
  .nav__logo-name { font-size: 0.95rem; }
  .nav__logo-sub { font-size: 0.55rem; }
  .nav__logo-text { padding-left: 0.5rem; gap: 0.15rem; }
  /* Ensure touch targets meet 44px minimum */
  .nav__phone-btn { width: 44px; height: 44px; }
  .nav__burger { padding: 0.5rem 0.5rem; min-height: 44px; font-size: 0.65rem; }
  /* Tighten gaps on small screens */
  .nav__right { gap: 0.5rem; }
  /* Improve readability */
  .hero__title { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.5rem); }
  /* Contact form adjustments for tiny screens */
  .contact-form__row--split { grid-template-columns: 1fr; gap: 1rem; }
  .contact-layout { flex-direction: column; gap: 2rem; }
}

/* ── REDUCED MOTION (WCAG 2.3.3) ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

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