/* ===========================
   Otesha — Website Styles
   =========================== */

:root {
  /* Editorial palette (primary) */
  --cream: #e2ede5;
  --paper: #f3f8f4;
  --forest: #6B8F71;
  --sage: #618555;
  --sage-light: #9ab89d;
  --terracotta: #8b4a2e;
  --ink: #1e2e1f;
  --muted: #7a8c7b;
  --warm-border: rgba(44,74,46,0.12);
  --dark-forest: #1e4024;

  /* Hero-specific (from classical garden) */
  --sage-deeper: #334428;
  --sage-pale: #d4e0c8;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
/* scroll-behavior handled by JS for precise heading alignment */

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 3rem 0 1rem;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 70px; height: auto;
  background: rgba(243,248,244,0.97);
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  overflow: visible;
}
nav.scrolled {
  background: rgba(243,248,244,0.97);
  box-shadow: none;
}
/* Botanical wave divider below nav — only visible when nav has background */
.nav-botanical {
  position: absolute; top: 100%; left: 0; width: 100vw; height: 28px; display: block;
  pointer-events: none; z-index: 199;
  opacity: 1; transition: opacity 0.4s ease;
}
.nav-logo {
  display: flex; align-items: center; text-decoration: none;
}
.nav-logo img {
  height: 100px; width: auto; display: block;
  clip-path: inset(18% 0);
  margin: -18px 0;
}
.nav-links { display: flex; gap: 1.4rem; list-style: none; }
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem; letter-spacing: 0.03em; text-transform: none; white-space: nowrap;
  color: var(--forest); text-decoration: none; font-weight: 400;
  transition: color 0.4s;
}
.nav-links a:hover { color: var(--terracotta) !important; }
.nav-links a.nav-highlight {
  color: var(--forest);
}

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-sub {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%);
  list-style: none;
  background: rgba(243,248,244,0.97);
  backdrop-filter: blur(14px);
  border: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 30px rgba(44,36,22,0.1);
  padding: 0.8rem 0; min-width: 190px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  transform: translateX(-50%) translateY(6px);
  padding-top: 0.4rem;
}
.nav-sub::before {
  content: ''; position: absolute; top: -20px; left: 0; right: 0; height: 1.5rem;
  background: transparent;
}
.nav-dropdown:hover .nav-sub {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-sub li { padding: 0; list-style: none; }
.nav-sub li + li { border-top: 1px solid var(--warm-border); }
.nav-sub a {
  display: block; padding: 0.65rem 1.6rem;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.72rem !important; font-weight: 400 !important;
  text-transform: none; letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--dark-forest) !important;
  transition: color 0.3s ease;
}
.nav-sub a:hover {
  color: var(--terracotta) !important;
}

/* ─── HERO (full-bleed slideshow) ─── */
.hero {
  position: relative; height: calc(100vh - 66px); min-height: 514px;
  margin-top: 66px;
  overflow: hidden; background: #1e2e1f;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  transform: scale(1.05); transition: transform 9s ease;
  filter: brightness(0.75) saturate(0.8);
}
.hero-slide.active img { transform: scale(1.02); }
.hero-slide img.hero-bottom { object-position: center 80%; }
.hero-tint {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(160deg,
    rgba(44,74,46,0.15) 0%,
    rgba(30,46,31,0.08) 50%,
    rgba(30,46,31,0.40) 100%);
}
.hero-content {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 5rem 6rem; pointer-events: none;
  opacity: 0;
  transition: opacity 0s ease;
}
.hero-content.hero-text-visible {
  opacity: 1;
  transition: opacity 2.5s ease;
}
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(253,250,245,0.9); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.9rem; opacity: 0.85;
}
.hero-eyebrow-line { width: 28px; height: 1px; background: rgba(253,250,245,0.6); opacity: 0.6; }
.hero-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 300; font-style: italic;
  color: rgba(253,250,245,0.94); line-height: 1.18;
  max-width: 760px; overflow: hidden;
}
.hero-big span {
  display: block;
  transition: transform 0.65s cubic-bezier(0.77,0,0.18,1), opacity 0.55s ease;
}
.hero-big span.txt-out { transform: translateY(-110%); opacity: 0; }
.hero-big span.txt-in  { transform: translateY(110%);  opacity: 0; }
.hero-controls {
  position: absolute; bottom: 2.5rem; left: 5rem; right: 5rem; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
}
.hero-dots { display: flex; gap: 6px; }
.hdot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(253,250,245,0.28); border: 1px solid rgba(253,250,245,0.45);
  cursor: pointer; pointer-events: all;
  transition: background 0.3s, transform 0.3s;
}
.hdot.on { background: rgba(253,250,245,0.9); transform: scale(1.35); }
.hero-nav { display: flex; gap: 0.5rem; }
.hero-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(253,250,245,0.18);
  background: rgba(253,250,245,0.07); backdrop-filter: blur(8px);
  color: rgba(253,250,245,0.65);
  border-radius: 50%; cursor: pointer; pointer-events: all; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.hero-btn:hover {
  background: rgba(253,250,245,0.15);
  border-color: rgba(253,250,245,0.4);
  color: rgba(253,250,245,0.95);
}
.hero-scroll {
  position: absolute; bottom: 2.8rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  pointer-events: none;
}
.hero-scroll span {
  font-size: 0.58rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(253,250,245,0.35);
}
.hero-scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(253,250,245,0.4), transparent);
  animation: sdrop 1.8s ease-in-out infinite;
}
@keyframes sdrop {
  0%,100% { opacity: 0; transform: scaleY(0.1); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ─── WELCOME SECTION ─── */
.welcome-section {
  padding: 6rem 3rem 2rem;
  text-align: center;
  background: transparent;
}
.welcome-section > .section-label {
  text-align: left;
  max-width: 1160px;
  margin: 0 auto 2.5rem;
}
.welcome-inner {
  max-width: 820px;
  margin: 0 auto;
}
.welcome-label {
  display: block;
  font-family: 'Jost', sans-serif;
  text-transform: none;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  color: var(--terracotta);
  font-weight: 400;
  margin-bottom: 1.2rem;
}
.welcome-logo {
  display: block;
  margin: 0 auto 0.5rem;
  width: 200px;
  height: auto;
}
.welcome-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem auto;
}
.wd-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--sage);
  opacity: 0.35;
}
.wd-diamond {
  color: var(--sage);
  font-size: 0.7rem;
  opacity: 0.45;
}
.welcome-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.55rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.82;
  max-width: 700px;
  margin: 0 auto;
}
.welcome-body {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--ink);
  opacity: 0.78;
  max-width: 780px;
  margin: 0 auto;
}

/* ─── SECTION BASE ─── */
.section { padding: 7rem 3rem; background: var(--paper); position: relative; }
.section-alt {
  background: var(--paper);
  position: relative;
}
.section-alt::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/watercolor-background-green.jpg') center / cover;
  opacity: 0.25;
  pointer-events: none;
}

/* Wrapper to make watercolor seamless across welcome + first section-alt */
.watercolor-group {
  position: relative;
  background: var(--paper);
}
.watercolor-group::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/watercolor-background-green.jpg') center / cover;
  opacity: 0.25;
  pointer-events: none;
}
.watercolor-group .welcome-section {
  background: transparent; position: relative; z-index: 1;
}
.watercolor-group .section-alt {
  background: transparent;
}
.watercolor-group .section-alt::before {
  display: none;
}
.inner { max-width: 1160px; margin: 0 auto; position: relative; z-index: 1; }
.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem); letter-spacing: 0.04em; text-transform: none;
  color: var(--terracotta); font-weight: 300; font-style: italic;
  margin-bottom: 2.5rem; display: block;
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400;
  color: var(--forest); line-height: 1.15; margin-bottom: 1.6rem;
}
h2 em { font-style: italic; }
.sub-label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 400;
  color: var(--sage); line-height: 1.15; margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.sub-label em { font-style: italic; }
.sub-label-spaced { margin-top: 5rem; }
.section-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 300; font-style: italic;
  color: var(--forest); line-height: 1.45;
  margin-bottom: 1.8rem; opacity: 0.8;
}
.lead {
  font-size: 1.05rem; line-height: 1.9;
  color: var(--ink); opacity: 0.78; max-width: 640px;
}
p { font-size: 0.93rem; line-height: 1.9; opacity: 0.78; }
.areas-intro {
  font-size: 0.93rem; line-height: 1.9; opacity: 0.78;
  margin-bottom: 0.5rem;
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem; align-items: start; margin-top: 1.5rem;
}
.about-body p { margin-bottom: 1.1rem; }
.pull-card {
  background: var(--paper); border: 1px solid var(--warm-border);
  padding: 2.8rem; position: relative;
}
.pull-card::before {
  content: '\201C'; font-family: 'Cormorant Garamond', serif;
  font-size: 6rem; color: var(--sage-light);
  position: absolute; top: -1rem; left: 1.5rem; line-height: 1;
}
.pull-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-style: italic; line-height: 1.5;
  color: var(--forest); font-weight: 300; margin-top: 2rem;
}

/* ─── PEOPLE ─── */
.people-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem; margin-top: 3.5rem;
  background: none; border: none;
}
.person {
  background: none;
  padding: 0;
  text-align: center;
  border-radius: 0;
  border: none;
}
.section-alt .person { background: none; }
.person-photo {
  width: 100%; height: 240px;
  margin: 0 0 1.2rem;
  border-radius: 10px;
  overflow: hidden;
  border: none;
}
.person-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
/* Per-person face centering */
.person:nth-child(1) .person-photo img { object-position: 50% 30%; transform: scale(1.5) translate(16%, 6%); }
.person:nth-child(2) .person-photo img { object-position: center 15%; transform: scale(1.3); }
.person:nth-child(3) .person-photo img { object-position: center 10%; transform: scale(1.65) translateY(-14%); }
.person:nth-child(4) .person-photo img { object-position: center 10%; transform: scale(1.35) translateY(-8%); }
.person-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--dark-forest); margin-bottom: 0.5rem; font-weight: 400;
}
.person-aka {
  font-size: 0.75rem; color: var(--sage); letter-spacing: 0.08em;
  margin-bottom: 0.8rem; font-style: italic;
}
.person p { font-size: 0.85rem; line-height: 1.75; }

/* ─── APPROACH ─── */
.approach-wrap {
  display: grid; grid-template-columns: 0.7fr 1.3fr;
  gap: 2.5rem; align-items: center;
}
.approach-wrap .approach-img { order: 1; }
.approach-wrap .approach-body { order: 2; }
.approach-body {
  text-align: left;
}
.approach-body .sub-label {
  text-align: left;
  margin-bottom: 0.6rem;
}
.approach-body p { margin-bottom: 0.6rem; }
.approach-img {
  border-radius: 10px;
  overflow: hidden;
}
.approach-img img {
  width: 100%; height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}
.approach-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-style: italic; color: var(--forest);
  border-left: none; padding-left: 0;
  margin: 0.8rem auto; line-height: 1.45; font-weight: 300;
}
.further-link {
  display: inline-block; margin-top: 0.5rem; font-size: 0.8rem;
  color: var(--sage); text-decoration: none;
  border-bottom: 1px solid var(--sage-light); padding-bottom: 2px;
  letter-spacing: 0.06em; transition: color 0.2s;
}
.further-link:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ─── AREAS OF LEARNING ─── */
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  margin-top: 2rem;
}
.areas-grid {
  display: flex; flex-direction: column;
  border: none;
  max-width: 100%;
}
.areas-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}
.areas-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
  opacity: 0;
  transition: opacity 1.2s ease;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 55%, rgba(0,0,0,0) 95%);
          mask-image: radial-gradient(ellipse at center, #000 55%, rgba(0,0,0,0) 95%);
}
.areas-slide.active { opacity: 1; }
@media (max-width: 900px) {
  .areas-layout { grid-template-columns: 1fr; }
  .areas-slideshow { height: auto; aspect-ratio: 3 / 2; }
}
.area {
  padding: 0;
  border: none;
  border-bottom: 1px solid var(--warm-border);
  cursor: pointer;
  border-radius: 0;
}
.area:hover { background: none; }
.area:nth-child(3n) { border-right: none; }
.area-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--forest); font-weight: 400;
  margin-bottom: 0;
  padding: 1.4rem 0 1.4rem 1.8rem;
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.3s;
}
.area-title::before {
  content: '+';
  font-size: 1.4rem; color: var(--terracotta);
  font-weight: 300;
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
}
.area-title::after { content: ''; }
.area-title:hover { color: var(--terracotta); }
.area.area-open .area-title { color: var(--terracotta); }
.area.area-open .area-title::before { content: '−'; }
.area p {
  font-size: 0.85rem; line-height: 1.8;
  max-height: 0; overflow: hidden;
  padding: 0; margin: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: none;
}
.area.area-open p {
  max-height: 400px;
  padding: 0 0 1.4rem 1.8rem;
}

/* ─── HOW CHILDREN LEARN ─── */
.learn-principles {
  margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border: 1px solid var(--warm-border);
}
.principle {
  padding: 2rem 2.2rem;
  border-right: 1px solid var(--warm-border);
  border-bottom: 1px solid var(--warm-border);
}
.principle:nth-child(2n) { border-right: none; }
.principle-key {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--forest); margin-bottom: 0.5rem; font-weight: 400;
}
.principle p { font-size: 0.85rem; line-height: 1.75; }

/* ─── DEV TABLE ─── */
.dev-table { width: 100%; border-collapse: collapse; margin-top: 2.5rem; }
.dev-table th {
  background: var(--forest); color: var(--cream);
  padding: 0.9rem 1.4rem; text-align: left;
  font-family: 'Jost', sans-serif; font-weight: 400;
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: none;
}
.dev-table td {
  padding: 1rem 1.4rem; border-bottom: 1px solid var(--warm-border);
  font-size: 0.88rem; line-height: 1.7; vertical-align: top;
}
.dev-table td:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: var(--forest); font-weight: 400; white-space: nowrap;
}

/* ─── DAILY RHYTHM ─── */
/* Timeline accordion */
.rhythm-sections {
  margin-top: 3.5rem; position: relative; padding-left: 40px;
}
.rhythm-sections::before {
  content: ''; position: absolute; left: 11px; top: 0; bottom: 0;
  width: 2px; background: var(--sage-light);
}
.rhythm-block {
  display: block; position: relative;
  padding: 0; margin-bottom: 0.5rem;
  border-bottom: none;
}
.rhythm-block::before {
  content: ''; position: absolute; left: -33px; top: 1.15rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--sage);
  z-index: 2; transition: background 0.3s, border-color 0.3s;
}
.rhythm-block.rhythm-open::before {
  background: var(--terracotta); border-color: var(--terracotta);
}
.rhythm-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--dark-forest); font-weight: 400;
  font-style: italic; padding: 0.9rem 0;
  cursor: pointer; transition: color 0.3s;
}
.rhythm-label:hover { color: var(--terracotta); }
.rhythm-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0;
}
.rhythm-body p { font-size: 0.9rem; line-height: 1.85; margin-bottom: 0.6rem; }
.rhythm-body p:last-child { margin-bottom: 0; }
.rhythm-block.rhythm-open .rhythm-body {
  max-height: 1200px; padding: 0 0 1.5rem 0;
}
.rhythm-sub {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 1rem;
}
.rhythm-sub-block {
  background: var(--cream); padding: 1.4rem 1.6rem;
  border-left: 2px solid var(--sage-light);
}
.rhythm-sub-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: var(--dark-forest); margin-bottom: 0.4rem;
  font-weight: 400; font-style: italic;
}
.rhythm-sub-block p { font-size: 0.83rem; line-height: 1.7; }

/* ─── PRACTICAL ─── */
.practical-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.pblock { margin-top: 2.5rem; }
.pblock h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem); color: var(--sage); font-weight: 400;
  margin-bottom: 0.7rem; letter-spacing: 0.03em;
  border-bottom: 1px solid var(--warm-border); padding-bottom: 0.6rem;
}
.pblock p { font-size: 0.88rem; line-height: 1.85; margin-bottom: 0.5rem; }
.timing-table { width: 100%; border-collapse: collapse; margin-top: 0.8rem; }
.timing-table thead tr { background: var(--forest); }
.timing-table th {
  color: var(--cream); padding: 0.75rem 1.2rem; text-align: left;
  font-weight: 400; font-size: 0.75rem; letter-spacing: 0.07em; text-transform: none;
}
.timing-table td {
  padding: 0.8rem 1.2rem; border-bottom: 1px solid var(--warm-border); font-size: 0.88rem;
}

/* ─── ADMISSIONS ─── */
.admissions-wrap { max-width: 680px; }
.admissions-wrap p { margin-bottom: 1rem; }
.contact-btn {
  display: inline-block; margin-top: 1rem;
  padding: 0.85rem 2.4rem; background: var(--forest); color: var(--cream);
  text-decoration: none; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: none;
  font-weight: 400; transition: background 0.3s;
}
.contact-btn:hover { background: var(--sage); }
.contact-or {
  display: inline-block; margin: 1rem 1rem 0;
  font-size: 0.85rem; color: var(--muted);
  font-style: italic; vertical-align: middle;
}

/* ─── FURTHER READING (link list) ─── */
.further-list { margin-top: 3rem; }
.fr-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.8rem 0; text-decoration: none;
  border-top: 1px solid var(--warm-border);
  transition: padding-left 0.3s;
}
.fr-link:last-child { border-bottom: 1px solid var(--warm-border); }
.fr-link:hover { padding-left: 0.5rem; }
.fr-link:hover .fr-title { color: var(--sage); }
.fr-link:hover .fr-arrow { color: var(--terracotta); }
.fr-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--dark-forest); font-weight: 400;
  transition: color 0.3s;
}
.fr-arrow {
  font-size: 1.2rem; color: var(--sage);
  transition: color 0.3s; flex-shrink: 0;
}

/* ─── ARTICLE PAGES ─── */
.article-page {
  margin-top: 66px; padding: 4rem 3rem 5rem;
  max-width: 820px; margin-left: auto; margin-right: auto;
}
.article-back {
  display: inline-block; margin-bottom: 2.5rem;
  font-size: 0.82rem; letter-spacing: 0.06em; text-transform: none;
  color: var(--sage); text-decoration: none; font-weight: 400;
  transition: color 0.2s;
}
.article-back:hover { color: var(--terracotta); }
.article-page .section-label { margin-bottom: 0.5rem; }
.article-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem); letter-spacing: 0.04em;
  color: var(--terracotta); font-weight: 300; font-style: italic;
  line-height: 1.15; margin-bottom: 2.5rem;
}
.article-content p { font-size: 0.95rem; line-height: 1.9; margin-bottom: 1.2rem; }
.article-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--forest);
  margin: 2rem 0 0.8rem; font-weight: 400; font-style: italic;
}
.article-content ul { padding-left: 1.3rem; margin-bottom: 1.2rem; }
.article-content li { font-size: 0.95rem; line-height: 1.8; margin-bottom: 0.4rem; }
.article-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.article-content th {
  background: var(--forest); color: var(--cream);
  padding: 0.7rem 1.1rem; text-align: left;
  font-size: 0.75rem; letter-spacing: 0.06em; text-transform: none; font-weight: 400;
}
.article-content td {
  padding: 0.75rem 1.1rem; border-bottom: 1px solid var(--warm-border);
  font-size: 0.9rem; vertical-align: top;
}
.article-content td:first-child { color: var(--forest); font-weight: 400; }
.article-bottom-back {
  display: inline-block; margin-top: 3rem;
  font-size: 0.82rem; letter-spacing: 0.06em; text-transform: none;
  color: var(--sage); text-decoration: none; font-weight: 400;
  transition: color 0.2s;
}
.article-bottom-back:hover { color: var(--terracotta); }

/* ─── FOOTER ─── */
footer {
  background:
    linear-gradient(to bottom, rgba(154,184,157,0.55) 0%, rgba(30,64,36,0.55) 45%, rgba(30,64,36,0.75) 100%),
    url('../images/watercolor-footer-green.png') center / cover no-repeat,
    var(--dark-forest);
  color: var(--cream); padding: calc(2rem + 70px) 3rem 2rem;
  position: relative;
  margin-top: -70px;
  clip-path: url(#footer-wave-clip);
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem;
  align-items: start;
}
.footer-center {
  text-align: center;
}
.footer-col a.ig-link { display: inline-flex; align-items: center; justify-content: flex-end; gap: 0.5rem; width: auto; overflow: visible; }
.footer-col a.ig-link + a.ig-link { margin-left: 0.7rem; }
.ig-icon { flex-shrink: 0; overflow: visible; }
.footer-logo {
  width: 260px; height: auto; display: block;
  margin: -32px auto 0.4rem;
  opacity: 1;
  clip-path: inset(18% 0);
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.05rem;
  opacity: 0.75; line-height: 1.6; max-width: 260px;
  margin: 0 auto;
}
.footer-col h4 {
  font-size: 1.1rem; letter-spacing: 0.2em; text-transform: none;
  opacity: 0.85; margin-bottom: 1.2rem; font-weight: 600;
}
.footer-col p, .footer-col a {
  font-size: 1rem; opacity: 0.8; line-height: 1.9;
  color: var(--cream); text-decoration: none; display: block;
}
.footer-col a:hover { opacity: 1; }
.footer-col:last-child { text-align: right; }
.footer-copyright {
  margin-top: 1.5rem; font-size: 0.72rem; opacity: 0.35;
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1; transform: translateY(0);
}

/* ─── NAV TOGGLE (hamburger) ─── */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; padding: 6px;
  flex-direction: column; justify-content: space-between;
  z-index: 210;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--forest); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
nav.open .nav-toggle span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.open .nav-toggle span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 0 1rem 0 0.25rem; height: 66px; flex-wrap: nowrap; background: rgba(243,248,244,1); overflow: visible; }
  .nav-botanical { display: block; height: 28px; }
  nav.open .nav-botanical { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 66px; left: 0; right: 0; bottom: 0;
    flex-direction: column; flex-wrap: nowrap; gap: 0;
    background: rgba(250,247,242,0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--warm-border);
    padding: 1rem 1.5rem 1.5rem;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    box-shadow: 0 8px 24px rgba(44,36,22,0.08);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    visibility: hidden;
  }
  nav.open .nav-links { transform: translateY(0); visibility: visible; }
  .nav-links > li { width: 100%; padding: 0.7rem 0; border-bottom: 1px solid var(--warm-border); }
  .nav-links > li:last-child { border-bottom: none; }
  .nav-links a { font-size: 0.95rem; }
  .nav-sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: none; padding: 0; display: none; pointer-events: auto; overflow: hidden; }
  .nav-sub::before { display: none; }
  .nav-dropdown.sub-open .nav-sub { display: block; padding: 0.5rem 0 0 1rem; }
  .nav-dropdown:hover .nav-sub { transform: none; opacity: 1; visibility: visible; }
  .hero { height: calc(100svh - 66px); min-height: 400px; }
  .hero-slide img { object-position: center center; }
  .hero-content { padding: 0 2rem 3.5rem; }
  .hero-controls { left: 2rem; right: 2rem; bottom: 1rem; }
  .section { padding: 4.5rem 1.5rem; }
  .about-grid, .approach-wrap, .practical-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .practical-grid > div > .pblock:first-child { margin-top: 0; }
  .people-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { max-width: 100%; }
  .rhythm-sub { grid-template-columns: 1fr; }
  .learn-principles { grid-template-columns: 1fr; }
  .principle:nth-child(2n) { border-right: 1px solid var(--warm-border); }
  .principle { border-right: none !important; }
  .welcome-section { padding: 4rem 1.5rem 3.5rem; }
  .welcome-logo { width: 160px; }
  .welcome-tagline { font-size: 1.35rem; }
  .sub-label { font-size: 1.55rem; }
  .approach-highlight { font-size: 1.25rem; }
  /* Footer mobile */
  footer { padding: calc(2.5rem + 40px) 1.5rem 3rem; clip-path: none !important; margin-top: 0; position: relative; overflow: visible; }
  footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 375 50' preserveAspectRatio='none'%3E%3Cpath d='M0 0 L375 0 L375 12 C330 26 260 2 190 16 C120 34 60 8 0 20Z' fill='%23f3f8f4'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: top;
    z-index: 2;
    pointer-events: none;
  }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-col:first-child { order: 1; }
  .footer-col:last-child { order: 2; text-align: center; }
  .footer-center { order: 3; text-align: center; }
  .footer-col:first-child { text-align: center; }
  .footer-logo { display: none; }
  .footer-copyright { margin-top: 1rem; }
  .footer-col a.ig-link { justify-content: center; }
  .footer-tagline { margin: 0; }
}

@media (max-width: 600px) {
  .people-grid { grid-template-columns: 1fr; }
  .areas-grid { max-width: 100%; }
  .hero-big { font-size: 1.2rem; }
}
