/* ============================================================
   UKUKHANYA CENTRE — MAIN STYLESHEET
   Fonts: Cormorant Garamond (headings) · Inter (body)
   ============================================================ */

/* ----------------------------------------------------------
   DESIGN TOKENS
---------------------------------------------------------- */
:root {
  --royal-blue:    #0D2C6C;
  --midnight-blue: #081B44;
  --candle-gold:   #D8A24A;
  --gold-accent:   #E5BC68;
  --cream:         #F7F4EF;
  --beige:         #EAE3D8;
  --text:          #2C2C2C;

  /* Semantic aliases */
  --bg-dark:       var(--midnight-blue);
  --bg-light:      var(--cream);
  --accent:        var(--candle-gold);

  /* Typography */
  --serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:   'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing / layout */
  --max-w:       1200px;
  --pad-x:       calc(var(--spacing) * 10);
  --section-y:   clamp(80px, 11vw, 140px);

  /* Spacing */
  --spacing:     0.25rem;

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
}

/* ----------------------------------------------------------
   RESET
---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--text);
  background-color: var(--bg-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
ul, ol { list-style: none; }
address { font-style: normal; }
blockquote { quotes: none; }

/* ----------------------------------------------------------
   TYPOGRAPHY UTILITIES
---------------------------------------------------------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--candle-gold);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  background-color: var(--candle-gold);
}
.section-label--light { color: var(--gold-accent); }

.section-headline {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section-headline--light { color: var(--cream); }
.section-headline em { font-style: italic; font-weight: 300; color: var(--candle-gold); }
.about .section-headline em { color: var(--royal-blue); }
.art-therapy .section-headline em { color: var(--royal-blue); }
.section-headline--light em { color: var(--gold-accent); }

/* ----------------------------------------------------------
   BUTTONS
---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s var(--ease),
              border-color 0.3s var(--ease),
              color 0.3s var(--ease),
              transform 0.25s var(--ease);
  white-space: nowrap;
  line-height: 1;
}

/* Gold filled */
.btn--gold {
  background: linear-gradient(to bottom, #f9bf60 0%, #d79628 100%);
  color: rgb(3, 20, 72);
  border: none;
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(232, 171, 62, 0.45);
}
.btn--gold:hover {
  background: linear-gradient(135deg, #F0C050 0%, #D9980F 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 171, 62, 0.55);
}

/* Ghost / outline (on dark bg) */
.btn--outline {
  background-color: transparent;
  color: var(--cream);
  border-color: rgba(247, 244, 239, 0.45);
}
.btn--outline:hover {
  border-color: var(--cream);
  background-color: rgba(247, 244, 239, 0.08);
}

/* Dark filled */
.btn--dark {
  background: linear-gradient(to bottom, #0b266c 0%, #04164c 100%);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(8, 22, 64, 0.45);
}
.btn--dark:hover {
  background: linear-gradient(to bottom, #0d2e80 0%, #04164c 100%);
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(8, 22, 64, 0.5);
}

/* Gold outline (on dark bg) */
.btn--gold-outline {
  background-color: transparent;
  color: var(--candle-gold);
  border-color: rgba(216, 162, 74, 0.55);
}
.btn--gold-outline:hover {
  background-color: var(--candle-gold);
  color: var(--midnight-blue);
  border-color: var(--candle-gold);
}

/* ----------------------------------------------------------
   NAVIGATION
---------------------------------------------------------- */

.nav__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav__logo-text { display: flex; flex-direction: column; gap: 3px; }

.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  padding-block: 22px;
  transition: background-color 0.4s var(--ease),
              padding-block 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
}
.nav.is-scrolled {
  background-color: #fff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-block: 14px;
  box-shadow: 0 1px 0 rgba(216, 162, 74, 0.18);
}

.nav__container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__logo-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1;
}
.nav__logo-tagline {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
}

.nav__links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}
.nav__links a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
  color: #fff;
}
.nav__links a:hover { color: oklch(0.32 0.13 264); }

/* --- SERVICES DROPDOWN --- */
.nav__dropdown { position: relative; }

.nav__chevron {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
  transition: transform 0.2s var(--ease);
}

.nav__dropdown:hover .nav__chevron {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(8, 27, 68, 0.14);
  padding: 0.375rem;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 200;
  list-style: none;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-menu li a {
  display: block;
  padding: 0.55rem 1rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text);
  border-radius: 10px;
  transition: background-color 0.15s var(--ease), color 0.15s var(--ease);
  white-space: nowrap;
}

.nav__dropdown-menu li a:hover {
  background-color: rgba(13, 44, 108, 0.06);
  color: var(--royal-blue);
}

.nav__cta { padding: 12px 26px; font-size: 15px; }
.nav.is-scrolled .nav__links a {
  color: var(--midnight-blue);
}
.nav.is-scrolled .nav__links a:hover { color: oklch(0.32 0.13 264); }
.nav.is-scrolled .nav__logo-name { color: var(--midnight-blue); }
.nav.is-scrolled .nav__logo-tagline { color: var(--royal-blue); }
.nav.is-scrolled .nav__cta {
  background: linear-gradient(to bottom, #0b266c 0%, #04164c 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(8, 22, 64, 0.45);
}
.nav.is-scrolled .nav__cta:hover {
  background: linear-gradient(to bottom, #0d2e80 0%, #04164c 100%);
  border-color: transparent;
}
.nav.is-scrolled .nav__hamburger span {
  background-color: var(--midnight-blue);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-inline-start: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 890;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 var(--pad-x);
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease), top 0.4s var(--ease);
  pointer-events: none;
  overflow-y: auto;
}
.nav.is-scrolled ~ .mobile-menu { top: 72px; }
.mobile-menu.is-open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}
.mobile-menu ul li {
  width: 100%;
  border-bottom: 1px solid rgba(8, 27, 68, 0.07);
}
.mobile-menu ul a {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--midnight-blue);
  letter-spacing: 0.01em;
}
.mobile-menu ul a:hover { color: var(--candle-gold); }
.mobile-menu__cta { margin-top: 1.5rem; font-size: 0.82rem; }

.mobile-menu__sub-item {
  border-bottom: none !important;
}
.mobile-menu__sub-item a {
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  color: rgba(8, 27, 68, 0.5) !important;
  padding-left: 1.25rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.mobile-menu__sub-item a::before {
  content: '↳';
  margin-right: 0.4rem;
  opacity: 0.5;
  font-style: normal;
}
.mobile-menu__close { display: none; }
.mobile-menu__svc-chevron {
  display: inline-block;
  margin-left: 0.4rem;
  font-style: normal;
  transition: transform 0.2s var(--ease);
}
.mobile-menu__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 880;
  background: rgba(0,0,0,0.5);
}

/* ----------------------------------------------------------
   HERO
---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  max-height: 105vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-top: 110px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(#0314488c, #03144859 40%, #031448d9),
    radial-gradient(at 75% 30%, color(xyz 0.624 0.605 0.176 / 0.349), #0000 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding-inline: calc(var(--spacing) * 10);
  color: #fff;
  align-self: stretch;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: oklch(0.88 0.12 82);
  margin-bottom: 1.5rem;
}
.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: oklch(0.85 0.14 78);
  box-shadow: 0 0 12px oklch(0.85 0.14 78);
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.012em;
  color: rgb(255, 255, 255);
  margin-bottom: 1.75rem;
}
.hero__headline em {
  font-style: italic;
  font-weight: 300;
  color: oklch(0.88 0.12 82);
}

.hero__sub {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.85);
  max-width: 576px;
  margin-bottom: 2.25rem;
}

.hero__actions { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero__actions .btn--gold { padding: 15px 33px 15px 22px; }

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
  flex-wrap: wrap;
}
.hero__trust-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: oklch(0.88 0.14 78);
}
.hero__trust-score { font-weight: 500; color: #fff; }
.hero__trust-line {
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.20);
  flex-shrink: 0;
}

.hero__quote-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--candle-gold), transparent);
  animation: scrollDrop 2.2s var(--ease-out) infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* ----------------------------------------------------------
   HERO QUOTE CARD (floating, right side of hero)
---------------------------------------------------------- */
.hero__quote-card {
  position: absolute;
  right: var(--pad-x);
  bottom: 20px;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.40);
  padding: 28px;
  max-width: 340px;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.hero__quote-card-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.hero__quote-card-svg {
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 12px;
  color: rgba(13, 44, 108, 0.5);
}
.hero__quote-card-text {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.375;
  color: var(--text);
  margin-top: 8px;
}
.hero__quote-card-label {
  display: block;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: oklch(0.48 0.025 260);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 16px;
}

/* ----------------------------------------------------------
   TAGLINE / QUOTE
---------------------------------------------------------- */
.tagline {
  position: relative;
  height: clamp(380px, 55vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tagline__bg { position: absolute; inset: 0; z-index: 0; }
.tagline__image { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.tagline__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 27, 68, 0.88) 0%,
    rgba(8, 27, 68, 0.60) 60%,
    rgba(8, 27, 68, 0.50) 100%
  );
}
.tagline__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--pad-x);
}
.tagline__label {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--candle-gold);
  margin-bottom: 1.5rem;
}
.tagline__quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.22;
  color: var(--cream);
  max-width: 860px;
  margin: 0 auto;
}

/* ----------------------------------------------------------
   ABOUT
---------------------------------------------------------- */
.about {
  padding-block: var(--section-y);
  padding-inline: var(--pad-x);
  background:
    radial-gradient(ellipse at 90% 0%, oklch(0.88 0.1 82 / 0.30) 0%, transparent 55%),
    oklch(0.995 0.004 85);
  overflow: hidden;
}
.about__container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

/* Visual / image side */
.about__visual { position: relative; }
.about__image-frame {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}
.about__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Floating stat card */
.about__stat-card {
  position: absolute;
  bottom: -20px;
  right: max(-7.5rem, calc(-1 * clamp(3rem, 7vw, 8rem) + 1rem));
  background: #fff;
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.about__stat-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--midnight-blue);
  line-height: 1;
}
.about__stat-unit {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--midnight-blue);
}
.about__stat-lbl {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(44, 44, 44, 0.45);
  margin-top: 6px;
}

/* Text side */
.about__body {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(44, 44, 44, 0.75);
  margin-bottom: 0;
}
.about__body em { font-style: italic; color: var(--royal-blue); }

/* Attribute pills — 2-column grid */
.about__attrs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-block: 2rem;
  list-style: none;
  padding: 0;
}
.about__attrs li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.87rem;
  font-weight: 400;
  color: var(--text);
  background: rgba(247, 244, 239, 0.8);
  border: 1px solid rgba(216, 162, 74, 0.25);
  border-radius: 50px;
  padding: 10px 18px;
  white-space: nowrap;
}
.about__attrs li::before {
  content: '';
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  background-color: var(--candle-gold);
}

/* CTA text link */
.about__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--royal-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(13, 44, 108, 0.3);
  padding-bottom: 3px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.about__cta-link:hover {
  color: var(--candle-gold);
  border-color: var(--candle-gold);
}

/* ----------------------------------------------------------
   SERVICES
---------------------------------------------------------- */
.services {
  padding-block: var(--section-y);
  padding-inline: var(--pad-x);
  background-color: #fbf6ee;
}
.services__container { max-width: var(--max-w); margin: 0 auto; }
.services .section-label { color: var(--royal-blue); }
.services .section-label::before { background-color: oklch(0.78 0.14 78); }
.services .section-headline em { color: var(--royal-blue); }
.services .section-headline { font-weight: 500; }

.services__header { max-width: 620px; margin-bottom: clamp(3rem, 5vw, 5rem); }
.services__intro {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: #5a6270;
  margin-top: 0.5rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  border: none;
}

.service-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.service-card__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: oklch(0.93 0.07 80);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--royal-blue);
  flex-shrink: 0;
}

.service-card__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.service-card__body {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(44, 44, 44, 0.72);
  flex: 1;
  margin-bottom: 1.5rem;
}
.service-card__link {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--royal-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 1.25rem;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.service-card__link:hover { gap: 11px; color: var(--candle-gold); }

.services__footer {
  text-align: center;
  margin-top: clamp(2.5rem, 4vw, 4.5rem);
}

.btn--border {
  background-color: #fff;
  color: var(--text);
  border-color: rgba(44, 44, 44, 0.22);
  gap: 8px;
}
.btn--border:hover {
  border-color: rgba(44, 44, 44, 0.5);
  background-color: transparent;
  color: var(--text);
}

/* ----------------------------------------------------------
   ART THERAPY  (two-column: text LEFT, image RIGHT)
---------------------------------------------------------- */
.art-therapy .section-label { color: var(--royal-blue); }
.art-therapy .section-label::before { background-color: oklch(0.78 0.14 78); }
.art-therapy .section-headline { font-weight: 500; }
.art-therapy {
  background-color: #fffdfa;
  padding-block: var(--section-y);
  padding-inline: var(--pad-x);
}

.art-therapy__container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.art-therapy__body {
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.82;
  color: rgba(44, 44, 44, 0.7);
  margin-bottom: 1.75rem;
}

.art-therapy__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.art-therapy__list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fbf6ee;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 1rem 1.25rem;
}
.art-therapy__list-icon {
  color: var(--royal-blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.art-therapy__feature-name {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  display: block;
}
.art-therapy__feature-desc {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 400;
  color: rgba(44, 44, 44, 0.65);
  margin-top: 2px;
  display: block;
}

.art-therapy__visual {
  margin-top: 3.5rem;
}
.art-therapy__image-frame {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}
.art-therapy__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease);
}
.art-therapy__image-frame:hover .art-therapy__image { transform: scale(1.03); }

/* ----------------------------------------------------------
   TESTIMONIALS  (single-column stacked list)
---------------------------------------------------------- */
.testimonials {
  padding-block: var(--section-y);
  padding-inline: var(--pad-x);
  background-color: #fbf6ee;
}
.testimonials__container { max-width: var(--max-w); margin: 0 auto; }

.testimonials__header {
  text-align: left;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}
.testimonials .section-label { color: var(--royal-blue); }
.testimonials .section-label::before { background-color: oklch(0.78 0.14 78); }
.testimonials .section-headline em { color: var(--royal-blue); }
.testimonials .section-headline { font-weight: 500; }

.testimonials__overall {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
}
.testimonials__score-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonials__score {
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  color: var(--royal-blue);
}
.testimonials__stars { color: var(--candle-gold); font-size: 1.5rem; letter-spacing: 3px; }
.testimonials__count {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: rgba(44, 44, 44, 0.55);
}

.testimonials__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--royal-blue);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.testimonials__link:hover { gap: 0.65rem; color: var(--candle-gold); }

/* Single-column stacked cards */
.testimonials__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 16px rgba(44, 44, 44, 0.05);
}
.testimonial-item__mark {
  display: block;
  color: rgba(13, 44, 108, 0.42);
  margin-bottom: 0.75rem;
  width: 24px;
  height: 24px;
}
.testimonial-item__quote {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.72;
  color: var(--royal-blue);
  margin-bottom: 0.75rem;
  display: block;
}
.testimonial-item__author {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(44, 44, 44, 0.5);
  display: block;
}

/* ----------------------------------------------------------
   ENVIRONMENT / THE SPACE
---------------------------------------------------------- */
.environment {
  padding-block: var(--section-y);
  padding-inline: var(--pad-x);
  background-color: #fffdfa;
}
.environment__container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.environment .section-label { color: var(--royal-blue); }
.environment .section-label::before { background-color: oklch(0.78 0.14 78); }
.environment .section-headline em { color: var(--royal-blue); }
.environment .section-headline { font-weight: 500; }

.environment__body {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.82;
  color: rgba(44, 44, 44, 0.65);
  margin-bottom: 3rem;
}

.environment__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.environment__stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 400;
  color: var(--midnight-blue);
  line-height: 1;
}
.environment__stat-lbl {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(44, 44, 44, 0.62);
  margin-top: 0.55rem;
}

.environment__visual { position: relative; }
.environment__image-frame {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.environment__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease);
}
.environment__image-frame:hover .environment__image { transform: scale(1.03); }

/* ----------------------------------------------------------
   CTA BAND
---------------------------------------------------------- */
.cta-band {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-block: var(--section-y);
  background-color: oklch(0.22 0.1 264);
}

.cta-band__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, color(xyz 0.624 0.605 0.176 / 0.25), #0000 70%);
  pointer-events: none;
}

.cta-band__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-inline: var(--pad-x);
  max-width: 760px;
}

.cta-band__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 2rem;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.cta-band__headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 1.14;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.cta-band__headline em { font-style: italic; font-weight: 300; color: var(--gold-accent); }

.cta-band__body {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(247, 244, 239, 0.82);
  margin-bottom: 2.5rem;
}

.cta-band__actions { display: flex; align-items: center; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.cta-band__btn { border-radius: 50px; gap: 8px; }
.cta-band__btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 400;
  transition: background-color 0.3s var(--ease);
}
.cta-band__btn--outline:hover { background-color: rgba(255, 255, 255, 0.1); }

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */
.footer {
  background-color: #0d1f52;
  background-color: oklch(0.22 0.1 264);
  margin-top: 4rem;
}
.footer__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.5rem) var(--pad-x) clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.footer__logo { display: flex; align-items: center; gap: 14px; margin-bottom: 1.25rem; }
.footer__logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer__logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer__logo-text { display: flex; flex-direction: column; gap: 4px; }
.footer__logo-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
}
.footer__logo-tagline {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.45);
}

.footer__brand-desc {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 20px;
  color: #ffffffb3;
  margin-bottom: 1.5rem;
}

.footer__divider { display: block; }
.footer__divider-img { display: block; max-width: 100%; height: auto; margin-left: -16px; margin-top: -10px; }
.footer__divider-line {
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(247, 244, 239, 0.55) 50%, transparent);
  border-radius: 2px;
}
.footer__divider-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #e8ab3e;
  box-shadow: 0 0 8px 3px rgba(232, 171, 62, 0.55);
}

.footer__col-title {
  font-family: var(--serif);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.4);
  margin-bottom: 1.5rem;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  line-height: 20px;
}
.footer__nav-list a {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: #fff;
}
.footer__nav-list a:hover { color: var(--candle-gold); }

.footer__address {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  line-height: 18px;
}
.footer__address p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
}
.footer__address a { color: #fff; }
.footer__address a:hover { color: var(--candle-gold); }

.footer__bottom {
  border-top: 1px solid rgba(247, 244, 239, 0.08);
}
.footer__bottom-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.5rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer__bottom p {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 300;
  color: rgba(247, 244, 239, 0.3);
}
.footer__bottom em {
  font-style: italic;
  font-family: var(--serif);
  font-size: 0.88rem;
  color: var(--candle-gold);
}

/* ----------------------------------------------------------
   RESPONSIVE — 1024px
---------------------------------------------------------- */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* ----------------------------------------------------------
   RESPONSIVE — 1016px (nav collapse)
---------------------------------------------------------- */
@media (max-width: 1016px) {
  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* ----------------------------------------------------------
   RESPONSIVE — 768px
---------------------------------------------------------- */
@media (max-width: 768px) {
  /* Hero */
  .hero { max-height: none; }
  .hero__headline { font-size: clamp(2.8rem, 9vw, 3.6rem); }
  .hero__sub { font-size: 16px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .hero__trust { margin-bottom: 2rem; }

  /* Tagline */
  .tagline__quote { font-size: clamp(1.7rem, 6vw, 2.6rem); }

  /* About */
  .about__container { grid-template-columns: 1fr; gap: 3rem; }
  .about__image-frame { height: clamp(320px, 80vw, 440px); }
  .about__stat-card { right: 12px; bottom: 16px; }
  .about__attrs { grid-template-columns: 1fr; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Testimonials — already single column, no override needed */
  .hero__quote-card { display: none; }

  /* Environment */
  .environment__container { grid-template-columns: 1fr; gap: 3rem; }
  .environment__container > * { min-width: 0; }
  .environment__text { text-align: center; margin-inline: auto; }
  .environment__text .section-label { justify-content: center; }
  .environment__body { text-align: left; }
  .environment__stats { grid-template-columns: repeat(3, minmax(0, 1fr)); text-align: center; }

  /* CTA */
  .cta-band__actions { flex-direction: column; align-items: center; }
  .cta-band__actions .btn { width: 100%; max-width: 320px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ----------------------------------------------------------
   RESPONSIVE — 480px
---------------------------------------------------------- */
@media (max-width: 480px) {
  .environment__stats { gap: 1rem; }
  .environment__stat-num { font-size: 1.6rem; }
  .about__image-border { display: none; }
  .section-headline { font-size: clamp(1.8rem, 7vw, 2.6rem); }
}

/* ----------------------------------------------------------
   RESPONSIVE — 1440px+ (large desktop screens)
---------------------------------------------------------- */
@media (min-width: 1440px) {
  .hero__content { max-width: 92rem; }
  .hero__headline { font-size: 5rem; }
  .hero__sub { font-size: 21px; max-width: 640px; }
}

/* ----------------------------------------------------------
   SCROLL REVEAL UTILITY (JS enhanced)
---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  will-change: opacity, transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ----------------------------------------------------------
   FOOTER LEGAL + AGENCY CREDIT (designed-by-avily.html)
---------------------------------------------------------- */
.footer-legal-links,
.avily-credit {
  font-size: 0.85em;
  opacity: 0.85;
}
.avily-credit .avily-link { text-decoration: none; }
.avily-credit .avily-link:hover { text-decoration: underline; }
.avily-credit img {
  height: 1em;
  width: auto;
  vertical-align: middle;
  margin: 0 4px;
}
.reveal-delay-4 { transition-delay: 0.4s; }
