/* ==========================================================================
   Nyambura's Place – Stylesheet
   Kenya-DNA Wellness · Modern Editorial · Mobile first
   ========================================================================== */

:root {
  /* Farben */
  --bg:          #f8f5ee;
  --bg-elev:    #ffffff;
  --bg-dark:    #0f0f10;
  --fg:         #1a1a1a;
  --fg-soft:    #3a3a3a;
  --muted:      #6b6760;
  --line:       rgba(26, 26, 26, 0.12);

  --kenya-red:   #c9662f;   /* Logo-Orange/Terracotta: Default-Akzent */
  --kenya-green: #3a6b47;   /* Logo-Gruen: Natur-Akzent */
  --accent-hot:  #c8102e;   /* Drama-Rot: Hero-Badge, Executive, Live-Dot */
  --gold:        #d4a940;
  --gold-soft:   #e8c374;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 28px 64px rgba(0, 0, 0, 0.14);

  /* Typo */
  --font-display: "Archivo Black", "Inter", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-ornament:"Playfair Display", Georgia, serif;

  /* Spacing */
  --s-1: .25rem; --s-2: .5rem; --s-3: .75rem; --s-4: 1rem;
  --s-5: 1.5rem; --s-6: 2rem;  --s-7: 3rem;   --s-8: 4rem;
  --s-9: 6rem;   --s-10: 8rem;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --container: 1280px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 900; letter-spacing: -0.01em; line-height: 1.05; margin: 0 0 var(--s-4); text-transform: uppercase; }
h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }

p  { margin: 0 0 var(--s-4); }
a  { color: var(--fg); text-decoration: none; transition: color .25s var(--ease), opacity .25s var(--ease); }
a:hover { color: var(--kenya-red); }

img, video { max-width: 100%; height: auto; display: block; }

::selection { background: var(--kenya-red); color: #fff; }

/* ---------- Utilities ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--s-5); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--kenya-red);
  margin-bottom: var(--s-4);
  position: relative;
  padding-left: 2.4rem;
}
.eyebrow::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 2rem; height: 2px;
  background: var(--kenya-red);
  transform: translateY(-50%);
}
.eyebrow-light { color: var(--gold-soft); }
.eyebrow-light::before { background: var(--gold-soft); }

.section-head {
  text-align: left;
  margin-bottom: var(--s-8);
  max-width: 640px;
}
.section-head h2 { margin-bottom: var(--s-4); }

.lead    { font-size: clamp(1.05rem, 1.3vw, 1.2rem); color: var(--fg-soft); max-width: 54ch; }
.lead-sm { font-size: 1rem; color: var(--fg-soft); max-width: 56ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: 1.05em 1.8em;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--fg); color: #fff; }
.btn-primary:hover { background: var(--kenya-red); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--fg); }
.btn-ghost:hover { background: var(--fg); color: #fff; }
.btn-light { background: #fff; color: var(--fg); }
.btn-light:hover { background: var(--gold); color: var(--fg); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--s-3) 0;
  transition: all .35s var(--ease);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(248, 245, 238, 0.82);
  border-bottom: 1px solid transparent;
}
.nav[data-state="scrolled"] {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  padding: var(--s-2) 0;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5);
}
.logo {
  display: flex; align-items: center; line-height: .95;
  font-family: var(--font-display);
  letter-spacing: 0;
  margin-left: -5.5rem;
  transition: margin-left .35s var(--ease);
}
.nav[data-state="scrolled"] .logo { margin-left: -1rem; }
.logo-img {
  height: 384px;
  width: auto;
  display: block;
  transition: height .35s var(--ease);
}
.nav[data-state="scrolled"] .logo-img { height: 72px; }
.logo-main { font-size: 1rem; color: var(--fg); }
.logo-sub  { font-size: .78rem; color: var(--kenya-red); letter-spacing: .45em; margin-top: .1em; padding-left: .1em; }
.nav-links { display: flex; align-items: center; gap: var(--s-6); }
.nav-links a {
  font-weight: 500; font-size: .95rem;
  position: relative; padding: .4em 0;
}
.nav-links a:not(.btn-nav)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--kenya-red);
  transition: width .3s var(--ease);
}
.nav-links a:not(.btn-nav):hover::after { width: 100%; }
.btn-nav {
  padding: .7em 1.4em;
  background: var(--fg); color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.btn-nav:hover { background: var(--kenya-red); color: #fff; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 0;
  padding: 10px;
  cursor: pointer;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--fg);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--s-10) + 18rem) 0 var(--s-9);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.hero-shape-red   { width: 520px; height: 520px; background: var(--accent-hot);  top: -120px; right: -80px; }
.hero-shape-green { width: 420px; height: 420px; background: var(--kenya-green); bottom: -140px; left: 10%;  opacity: .35; }
.hero-shape-gold  { width: 360px; height: 360px; background: var(--gold);        top: 30%;   left: -140px; opacity: .45; }

.hero-grid {
  position: relative; z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--s-5);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s-9);
  align-items: center;
}
.hero-text h1 em {
  font-family: var(--font-ornament);
  font-weight: 400;
  font-style: italic;
  color: var(--kenya-red);
  text-transform: none;
  letter-spacing: 0;
  font-size: .92em;
}
.hero-cta { display: flex; gap: var(--s-4); margin: var(--s-7) 0 var(--s-7); flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: var(--s-7);
  padding-top: var(--s-6);
  border-top: 1px solid var(--line);
}
.hero-meta > div { display: flex; flex-direction: column; }
.hero-meta strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  color: var(--fg);
  line-height: 1;
}
.hero-meta span {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .4em;
}

.hero-image { position: relative; }
.hero-image-wrap {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 3/2;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.hero-image:hover .hero-image-wrap img { transform: scale(1.04); }
.hero-image-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 26, 26, 0.28));
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  bottom: -28px; left: -28px;
  width: 150px; height: 150px;
  background: var(--accent-hot);
  color: #fff;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: var(--s-4);
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
  transform: rotate(-8deg);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.hero-badge .badge-quote {
  font-family: var(--font-ornament);
  font-size: 3.4rem;
  line-height: .3;
  margin-bottom: .3em;
  opacity: .8;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 48px;
  border: 2px solid var(--fg);
  border-radius: 14px;
  display: none;
}
.scroll-hint span {
  position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--fg);
  border-radius: 2px;
  animation: scrollDot 1.6s infinite var(--ease);
}
@keyframes scrollDot {
  0%   { transform: translate(-50%, 0);    opacity: 1; }
  50%  { transform: translate(-50%, 14px); opacity: .4; }
  100% { transform: translate(-50%, 0);    opacity: 1; }
}

/* ---------- Philosophie / Quote ---------- */
.philo {
  padding: var(--s-9) 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.philo blockquote {
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
  font-family: var(--font-ornament);
  font-style: italic;
  color: var(--fg);
  position: relative;
  padding: 0 var(--s-4);
}
.philo .quote-mark {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ornament);
  font-size: 10rem;
  color: var(--kenya-red);
  opacity: .18;
  font-style: normal;
  line-height: 1;
}
.philo .quote-line-1 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); line-height: 1.2; margin-bottom: var(--s-3); }
.philo .quote-line-1 strong { color: var(--kenya-red); font-weight: 700; font-style: normal; font-family: var(--font-display); letter-spacing: -0.01em; }
.philo .quote-line-2 { font-size: 1.15rem; color: var(--fg-soft); }
.philo cite {
  display: block;
  margin-top: var(--s-6);
  font-family: var(--font-body);
  font-style: normal;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Home Visits Highlight ---------- */
.home-visit {
  padding: var(--s-9) 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.home-visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.home-visit-text h2 {
  margin-bottom: var(--s-4);
}
.home-visit-text h2 em {
  font-family: var(--font-ornament);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--kenya-red);
  letter-spacing: 0;
}
.home-visit-features {
  list-style: none;
  padding: 0;
  margin: var(--s-6) 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
.home-visit-features li {
  padding: var(--s-3) var(--s-4);
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--fg-soft);
  display: flex; align-items: center; gap: .6em;
  border-left: 3px solid var(--kenya-red);
}
.home-visit-features li::before {
  content: "✓";
  color: var(--kenya-red);
  font-weight: 700;
}
.home-visit-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/2;
  box-shadow: var(--shadow-lg);
  background: var(--bg-dark);
}
.home-visit-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.home-visit-image:hover img { transform: scale(1.03); }
.home-visit-stamp {
  position: absolute;
  top: var(--s-5); right: var(--s-5);
  background: #fff;
  color: var(--fg);
  padding: var(--s-3) var(--s-4);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: .5em;
}
.home-visit-stamp::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--kenya-red);
  border-radius: 50%;
}

/* Hero-Badge: Hausbesuch-Variante */
.hero-pin {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .5em 1em;
  background: var(--kenya-red);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.hero-pin::before {
  content: "";
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: livePulse 2s infinite var(--ease);
}

/* ---------- Atmosphere / Video ---------- */
.atmosphere {
  padding: var(--s-8) 0;
  background: var(--bg);
  overflow: hidden;
}
.atmosphere .section-head {
  text-align: center;
  margin: 0 auto var(--s-6);
}
.atmosphere .section-head .eyebrow { display: inline-block; }
.atmosphere-video {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-dark);
  position: relative;
}
.atmosphere-video video {
  width: 100%;
  height: auto;
  display: block;
}
.atmosphere-video::after {
  content: "";
  position: absolute;
  bottom: 14px; right: 14px;
  width: 10px; height: 10px;
  background: var(--accent-hot);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.25);
  animation: livePulse 2s infinite var(--ease);
}
@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.7); opacity: .6; }
}

/* ---------- Services ---------- */
.services {
  padding: var(--s-10) 0;
  background: var(--bg);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--s-7) var(--s-6);
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 4px;
  background: var(--kenya-red);
  transition: width .4s var(--ease);
}
.service-card:nth-child(2)::before { background: var(--gold); }
.service-card:nth-child(3)::before { background: var(--kenya-green); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { width: 100%; }
.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--fg);
  opacity: .08;
  line-height: 1;
  margin-bottom: var(--s-4);
}
.service-card h3 { margin-bottom: var(--s-3); }
.service-card p  { color: var(--fg-soft); margin-bottom: var(--s-5); }
.service-card ul { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); padding-top: var(--s-4); }
.service-card li {
  padding: .4em 0; font-size: .95rem; color: var(--fg-soft);
  padding-left: 1.4em; position: relative;
}
.service-card li::before {
  content: ""; position: absolute; left: 0; top: .9em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--kenya-red);
}
.service-card:nth-child(2) li::before { background: var(--gold); }
.service-card:nth-child(3) li::before { background: var(--kenya-green); }

/* Coming-Soon Service-Card */
.service-card--soon {
  background: linear-gradient(160deg, #fbf7ee 0%, #fff 65%);
  opacity: .95;
}
.service-card--soon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 18px,
    rgba(58, 107, 71, 0.025) 18px,
    rgba(58, 107, 71, 0.025) 36px
  );
  pointer-events: none;
}
.service-card--soon > * { position: relative; z-index: 1; }
.service-card--soon h3,
.service-card--soon p,
.service-card--soon ul,
.service-card--soon li { opacity: .72; }
.service-card--soon:hover h3,
.service-card--soon:hover p,
.service-card--soon:hover ul,
.service-card--soon:hover li { opacity: .92; }
.service-badge {
  position: absolute;
  top: var(--s-5);
  right: var(--s-5);
  background: var(--kenya-green, #3a6b47);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35em .8em;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(58, 107, 71, 0.25);
}
.service-soon-note {
  margin-top: var(--s-5) !important;
  padding-top: var(--s-4);
  border-top: 1px dashed rgba(58, 107, 71, 0.3);
  font-size: .85rem !important;
  font-style: italic;
  color: var(--kenya-green, #3a6b47) !important;
  opacity: 1 !important;
}

/* ---------- Memberships ---------- */
.memberships {
  padding: var(--s-10) 0;
  background: var(--bg-dark);
  color: #fff;
  position: relative;
}
.memberships .section-head h2, .memberships .lead-sm { color: #fff; }
.memberships .lead-sm { opacity: .8; }

.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-5);
  margin-bottom: var(--s-6);
}
.m-card {
  background: #1a1a1c;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all .4s var(--ease);
  display: flex; flex-direction: column;
  position: relative;
}
.m-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 24px 48px rgba(212, 169, 64, 0.18); }
.m-card.is-featured { border-color: var(--gold); box-shadow: 0 10px 30px rgba(212, 169, 64, 0.2); }
.m-ribbon {
  position: absolute;
  top: 14px; right: -28px;
  background: var(--gold);
  color: var(--fg);
  font-family: var(--font-display);
  font-size: .74rem;
  letter-spacing: .15em;
  padding: .45em 2.5em;
  transform: rotate(35deg);
  z-index: 2;
}
.m-visual { aspect-ratio: 1 / 1; overflow: hidden; background: #fff; }
.m-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.m-card:hover .m-visual img { transform: scale(1.03); }
.m-body { padding: var(--s-5) var(--s-5) var(--s-6); display: flex; flex-direction: column; flex: 1; }
.m-body h3 { color: #fff; margin-bottom: var(--s-2); }
.m-price {
  display: flex; align-items: baseline; gap: .3em;
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.m-price .amount {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}
.m-price .per { font-size: .85rem; color: rgba(255, 255, 255, 0.6); }
.m-card[data-tier="bronze"]    .m-price .amount { color: #cd7f32; }
.m-card[data-tier="silver"]    .m-price .amount { color: #c0c0c0; }
.m-card[data-tier="gold"]      .m-price .amount { color: var(--gold); }
.m-card[data-tier="premium"]   .m-price .amount { color: #4a7fd4; }
.m-card[data-tier="executive"] .m-price .amount { color: var(--accent-hot); }

.m-body ul { list-style: none; padding: 0; margin: 0 0 var(--s-5); flex: 1; }
.m-body li {
  font-size: .9rem; color: rgba(255, 255, 255, 0.78);
  padding: .4em 0 .4em 1.4em;
  position: relative;
}
.m-body li::before {
  content: "✓";
  position: absolute; left: 0; top: .4em;
  color: var(--gold);
  font-weight: 700;
}
.m-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9em 1.4em;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .25s var(--ease);
}
.m-cta:hover { background: var(--gold); color: var(--fg); }
.m-card.is-featured .m-cta { background: var(--gold); color: var(--fg); }
.m-card.is-featured .m-cta:hover { background: #fff; }

.memberships-note {
  text-align: center; color: rgba(255, 255, 255, 0.55);
  font-size: .9rem;
  margin-top: var(--s-6);
}

/* ---------- FOYOW ---------- */
.foyow {
  position: relative;
  padding: var(--s-10) 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.foyow-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 20% 30%, rgba(212, 169, 64, 0.35), transparent 60%),
    radial-gradient(500px 400px at 80% 70%, rgba(58, 107, 71, 0.55), transparent 60%),
    linear-gradient(135deg, #152e20 0%, #1e3d2a 100%);
}
.foyow-content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.foyow-content h2 {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--gold);
  margin-bottom: var(--s-4);
  letter-spacing: -0.02em;
}
.foyow-claim {
  font-family: var(--font-ornament);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: #fff;
  margin-bottom: var(--s-6);
}
.foyow-claim em { color: var(--gold-soft); font-style: italic; }
.foyow-claim span { color: rgba(255, 255, 255, 0.6); }
.foyow-text { color: rgba(255, 255, 255, 0.82); font-size: 1.05rem; margin-bottom: var(--s-7); }

/* ---------- About ---------- */
.about { padding: var(--s-10) 0; background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-8);
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-caption {
  position: absolute;
  bottom: var(--s-5); left: var(--s-5);
  background: rgba(26, 26, 26, 0.92);
  color: #fff;
  padding: var(--s-4) var(--s-5);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column; gap: .3em;
}
.about-image-caption .eyebrow { color: var(--gold); margin: 0; }
.about-image-caption span:last-child {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.lang-toggle {
  display: flex; gap: .5em;
  margin-bottom: var(--s-5);
  padding: .3em;
  background: rgba(26, 26, 26, 0.06);
  border-radius: 999px;
  width: max-content;
}
.lang-toggle button {
  padding: .5em 1.2em;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .05em;
  cursor: pointer;
  color: var(--muted);
  transition: all .25s var(--ease);
}
.lang-toggle button.active { background: var(--fg); color: #fff; }

.bio p { color: var(--fg-soft); margin-bottom: var(--s-4); font-size: 1.02rem; }
.bio[hidden] { display: none; }

/* ---------- Gallery ---------- */
.gallery { padding: var(--s-10) 0; background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  align-items: start;
}
.gallery figure {
  margin: 0;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transform: none;
}
.gallery figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery figure:hover img { transform: scale(1.05); }

/* ---------- Contact ---------- */
.contact { padding: var(--s-10) 0; background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-8);
  align-items: flex-start;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.contact-form label {
  display: flex; flex-direction: column; gap: .4em;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.contact-form label.full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .9em 1em;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--kenya-red);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form button { grid-column: 1 / -1; justify-self: start; margin-top: var(--s-3); }
.form-note { grid-column: 1 / -1; font-size: .78rem; color: var(--muted); letter-spacing: normal; text-transform: none; font-weight: 400; margin: 0; }
.form-note a { color: var(--kenya-red); text-decoration: underline; }

.contact-info {
  background: var(--bg);
  padding: var(--s-6);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  display: grid;
  gap: var(--s-5);
}
.ci-block { display: flex; flex-direction: column; gap: .3em; }
.ci-label {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.ci-block a, .ci-block address {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--fg);
}
.ci-block a:hover { color: var(--kenya-red); }
.ci-socials {
  display: flex; gap: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
}
.ci-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--fg); color: #fff;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: .8rem;
  transition: all .25s var(--ease);
}
.ci-socials a:hover { background: var(--kenya-red); transform: translateY(-3px); }

/* ---------- Footer ---------- */
.foot { background: var(--bg-dark); color: rgba(255, 255, 255, 0.72); padding: var(--s-8) 0 var(--s-5); }
.foot-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--s-6);
  align-items: start;
}
.foot-brand .logo-main { color: #fff; font-size: 1.3rem; }
.foot-brand .logo-sub  { color: var(--gold); font-size: .9rem; }
.foot-brand p { margin-top: var(--s-3); font-size: .95rem; opacity: .6; }
.foot-nav { display: flex; flex-direction: column; gap: var(--s-3); }
.foot-nav a { color: rgba(255, 255, 255, 0.72); font-size: .95rem; }
.foot-nav a:hover { color: var(--gold); }
.foot-legal {
  display: flex; flex-direction: column; gap: var(--s-3);
  font-size: .85rem;
}
.foot-legal a { color: rgba(255, 255, 255, 0.72); }
.foot-legal a:hover { color: var(--gold); }
.foot-legal span { color: rgba(255, 255, 255, 0.4); font-size: .8rem; padding-top: var(--s-3); border-top: 1px solid rgba(255, 255, 255, 0.08); }
.foot-credit { padding-top: var(--s-2) !important; border-top: none !important; font-size: .75rem !important; }
.foot-credit a { color: rgba(255, 255, 255, 0.6); text-decoration: none; border-bottom: 1px dotted rgba(255, 255, 255, 0.25); transition: color .2s, border-color .2s; }
.foot-credit a:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- Legal Page ---------- */
.page-legal { background: #fff; }
.legal { padding: calc(var(--s-10) + 2rem) 0 var(--s-9); background: #fff; }
.legal-inner { max-width: 820px; }
.legal h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: var(--s-6); }
.legal h2 { font-size: 1.2rem; margin: var(--s-7) 0 var(--s-3); color: var(--kenya-red); text-transform: uppercase; letter-spacing: .05em; }
.legal p  { color: var(--fg-soft); margin-bottom: var(--s-4); }
.legal a  { color: var(--kenya-red); text-decoration: underline; }
.legal-updated { font-size: .85rem; color: var(--muted); margin-top: var(--s-7); }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .hero-image { max-width: 440px; margin: 0 auto; }
  .service-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery figure:nth-child(2) { transform: none; }
  .foot-inner { grid-template-columns: 1fr; gap: var(--s-5); }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 120px; }
  body { font-size: 16px; }
  .logo { margin-left: -3rem; }
  .nav[data-state="scrolled"] .logo { margin-left: -.5rem; }
  .logo-img { height: 224px; }
  .nav[data-state="scrolled"] .logo-img { height: 56px; }
  .nav-links { display: none; position: fixed; top: 240px; left: 0; right: 0; background: #fff; flex-direction: column; padding: var(--s-5); gap: var(--s-4); box-shadow: var(--shadow-md); border-bottom: 1px solid var(--line); }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero { min-height: auto; padding: 17rem 0 var(--s-8); }
  .hero-meta { flex-direction: column; gap: var(--s-3); }
  .hero-badge { width: 120px; height: 120px; bottom: -20px; left: -15px; font-size: .72rem; }
  .philo { padding: var(--s-8) 0; }
  .philo .quote-mark { top: -40px; font-size: 6rem; }
  .services, .memberships, .foyow, .about, .gallery, .contact { padding: var(--s-8) 0; }
  .contact-form { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}
