/* ── VARIABLES ── */
:root {
  --saffron: #E07B39;
  --saffron-light: #F5A462;
  --saffron-lighter: #FDECD9;
  --saffron-dark: #B85A1A;
  --saffron-deep: #8C3F08;
  --gold: #C9912A;
  --gold-light: #E8BC5A;
  --cream: #FDF6EC;
  --cream-deep: #F5E8D0;
  --warm-white: #FFFBF5;
  --parchment: #F8EFE1;
  --deep-brown: #3D2008;
  --mid-brown: #6B3A1F;
  --warm-brown: #8B4A25;
  --sage: #6B8F6E;
  --text-dark: #2C1A0E;
  --text-mid: #5C3D20;
  --text-light: #8B6347;
  --text-lighter: #A68060;

  --shadow-xs: 0 1px 4px rgba(61,32,8,0.06);
  --shadow-sm: 0 2px 10px rgba(61,32,8,0.07), 0 1px 3px rgba(61,32,8,0.04);
  --shadow-md: 0 8px 28px rgba(61,32,8,0.10), 0 3px 8px rgba(61,32,8,0.05);
  --shadow-lg: 0 20px 60px rgba(61,32,8,0.14), 0 8px 20px rgba(61,32,8,0.07);
  --shadow-saffron: 0 6px 24px rgba(224,123,57,0.30), 0 2px 6px rgba(224,123,57,0.15);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET & BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* Top accent bar */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--saffron-deep) 0%,
    var(--saffron) 25%,
    var(--gold-light) 50%,
    var(--saffron) 75%,
    var(--saffron-deep) 100%);
  z-index: 9999;
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Section anchor offset */
section[id] { scroll-margin-top: 76px; }

/* ── NAV ── */
nav {
  position: fixed; top: 3px; left: 0; right: 0; z-index: 1000;
  background: rgba(253,246,236,0.97);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid rgba(224,123,57,0.10);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  box-shadow: 0 1px 0 rgba(224,123,57,0.07), 0 4px 20px rgba(61,32,8,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.nav-logo img { height: 46px; width: auto; }
.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--deep-brown); font-weight: 700;
  letter-spacing: -0.01em;
}
.nav-links { display: flex; gap: 0.2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-mid);
  font-size: 0.875rem; font-weight: 600;
  padding: 0.45rem 0.9rem; border-radius: 20px;
  transition: all 0.2s var(--ease-out);
  letter-spacing: 0.01em;
}
.nav-links a:hover { background: rgba(224,123,57,0.09); color: var(--saffron-dark); }
.nav-links a.active { background: var(--saffron); color: white; }
.nav-cta {
  background: var(--saffron) !important;
  color: white !important;
  box-shadow: var(--shadow-saffron);
}
.nav-cta:hover { background: var(--saffron-dark) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--deep-brown); border-radius: 2px; transition: all 0.2s; }

/* ── HERO ── */
#home {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 70% 60% at 78% 35%, rgba(245,164,98,0.15) 0%, transparent 58%),
    radial-gradient(ellipse 50% 45% at 15% 80%, rgba(201,145,42,0.08) 0%, transparent 55%),
    linear-gradient(160deg, #FDF6EC 0%, #FFF4E6 45%, #FDF0DC 100%);
  display: flex; align-items: center;
  padding: 112px 2.5rem 80px;
  position: relative; overflow: hidden;
}
#home::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(224,123,57,0.07) 0%, rgba(245,164,98,0.04) 40%, transparent 68%);
  border-radius: 50%; pointer-events: none;
}
#home::after {
  content: '';
  position: absolute; bottom: -80px; left: -60px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(201,145,42,0.06) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-text { animation: fadeUp 0.75s var(--ease-out) both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: linear-gradient(135deg, rgba(224,123,57,0.09), rgba(201,145,42,0.07));
  color: var(--saffron-dark);
  font-size: 0.71rem; font-weight: 800;
  padding: 0.38rem 1.1rem; border-radius: 50px;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(224,123,57,0.20);
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 3.9rem);
  line-height: 1.1; color: var(--deep-brown);
  margin-bottom: 1.4rem;
  letter-spacing: -0.025em; font-weight: 700;
}
.hero-text h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text p {
  font-size: 1.08rem; line-height: 1.85;
  color: var(--text-mid); margin-bottom: 1.5rem; max-width: 460px;
}
.hero-desc {
  font-size: 0.95rem !important;
  color: var(--text-light) !important;
  font-style: italic; margin-bottom: 2.5rem !important;
  padding-left: 0.9rem;
  border-left: 2px solid rgba(224,123,57,0.30);
  line-height: 1.7 !important;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
  color: white;
  padding: 0.9rem 2.1rem; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 0.92rem;
  transition: all 0.25s var(--ease-out);
  box-shadow: var(--shadow-saffron);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(224,123,57,0.42), 0 4px 10px rgba(224,123,57,0.2);
  background: linear-gradient(135deg, var(--saffron-dark) 0%, var(--saffron-deep) 100%);
}
.btn-secondary {
  background: transparent; color: var(--saffron-dark);
  padding: 0.9rem 2.1rem; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 0.92rem;
  transition: all 0.25s var(--ease-out);
  border: 1.5px solid rgba(224,123,57,0.45);
  letter-spacing: 0.02em;
}
.btn-secondary:hover {
  background: var(--saffron); color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-saffron);
}
.hero-image {
  animation: fadeUp 0.75s 0.15s var(--ease-out) both;
  position: relative;
}
/* Offset decorative backing */
.hero-image::before {
  content: '';
  position: absolute;
  top: 14px; right: -14px; bottom: -14px; left: 14px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(224,123,57,0.18), rgba(201,145,42,0.10));
  z-index: 0;
}
.hero-image img {
  width: 100%; border-radius: 24px;
  box-shadow: var(--shadow-lg);
  object-fit: cover; max-height: 520px;
  position: relative; z-index: 1; display: block;
}
.hero-float {
  position: absolute; top: -18px; right: -18px;
  background: white; border-radius: 18px; padding: 0.95rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.75rem;
  animation: float 3.5s ease-in-out infinite;
  z-index: 2;
  border: 1px solid rgba(224,123,57,0.07);
}
.hero-float-icon { font-size: 1.7rem; }
.hero-float > span:last-child { font-size: 0.77rem; color: var(--text-mid); font-weight: 600; line-height: 1.4; }
.hero-float strong { color: var(--deep-brown); display: block; font-size: 0.83rem; }

/* ── VALUES STRIP ── */
.values-strip {
  background: linear-gradient(135deg, var(--saffron-dark) 0%, var(--saffron) 50%, #CF8520 100%);
  padding: 1.1rem 0; overflow: hidden; position: relative;
}
.values-strip::before,
.values-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 1; pointer-events: none;
}
.values-strip::before { left: 0; background: linear-gradient(90deg, var(--saffron-dark), transparent); }
.values-strip::after  { right: 0; background: linear-gradient(-90deg, #CF8520, transparent); }
.values-scroll {
  display: flex; gap: 2.75rem;
  animation: scroll-x 25s linear infinite;
  white-space: nowrap; padding: 0 1rem;
}
.values-scroll span {
  color: rgba(255,255,255,0.93);
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.10em; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.55rem;
}
.values-scroll span::before { content: '✦'; opacity: 0.5; font-size: 0.58rem; }

/* ── SECTION COMMONS ── */
section { padding: 6rem 2.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.70rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 0.85rem;
  display: flex; align-items: center; gap: 0.55rem;
}
.section-label::before {
  content: ''; display: block; width: 22px; height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px; flex-shrink: 0;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  color: var(--deep-brown); line-height: 1.2;
  margin-bottom: 1.25rem; letter-spacing: -0.025em; font-weight: 700;
}
.section-subtitle {
  font-size: 1.02rem; color: var(--text-light); line-height: 1.85; max-width: 580px;
}

/* ── PHILOSOPHY ── */
#philosophy { background: var(--warm-white); }
.philosophy-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3.5rem;
}
.principles-list { list-style: none; margin-top: 1.75rem; }
.principles-list li {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 0.72rem 0; border-bottom: 1px solid rgba(224,123,57,0.08);
  color: var(--text-mid); font-size: 0.92rem; line-height: 1.55;
  transition: color 0.2s var(--ease-out);
}
.principles-list li:last-child { border-bottom: none; }
.principles-list li::before {
  content: '◈'; color: var(--saffron); flex-shrink: 0; margin-top: 2px; font-size: 0.78rem; opacity: 0.75;
}
.principles-list li:hover { color: var(--text-dark); }
.principles-list strong { color: var(--deep-brown); font-weight: 700; }

.values-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.val-card {
  background: var(--cream); border-radius: 18px; padding: 1.55rem;
  text-align: center; border: 1px solid rgba(224,123,57,0.10);
  transition: all 0.3s var(--ease-out);
  position: relative; overflow: hidden;
}
.val-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  opacity: 0; transition: opacity 0.3s var(--ease-out);
}
.val-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(224,123,57,0.18); }
.val-card:hover::before { opacity: 1; }
.val-card img { width: 58px; height: 58px; margin-bottom: 0.85rem; object-fit: contain; border-radius: 10px; }
.val-emoji { font-size: 2.4rem; margin-bottom: 0.85rem; display: block; }
.val-card h4 { font-family: 'Playfair Display', serif; color: var(--deep-brown); margin-bottom: 0.45rem; font-size: 1.02rem; font-weight: 700; }
.val-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.65; }

/* ── ABOUT ── */
#about { background: var(--parchment); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; margin-top: 3.5rem; }
.about-image-wrap { position: relative; }
/* Offset border frame */
.about-image-wrap::before {
  content: ''; position: absolute;
  top: 14px; right: -14px; bottom: -14px; left: 14px;
  border-radius: 24px;
  border: 1.5px solid rgba(224,123,57,0.22);
  z-index: 0;
}
.about-image-wrap img {
  width: 100%; border-radius: 20px;
  box-shadow: var(--shadow-lg);
  object-fit: cover; max-height: 480px;
  position: relative; z-index: 1; display: block;
}
.about-badge {
  position: absolute; bottom: -22px; left: 28px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white; border-radius: 14px; padding: 1rem 1.5rem;
  box-shadow: var(--shadow-saffron);
  z-index: 2; border: 2px solid rgba(255,255,255,0.15);
}
.about-badge strong { display: block; font-size: 1.5rem; font-weight: 700; line-height: 1.1; }
.about-badge span { font-size: 0.77rem; opacity: 0.88; font-weight: 600; letter-spacing: 0.02em; }
.mission-box {
  background: white; border-radius: 18px; padding: 1.85rem; margin-top: 1.75rem;
  border-left: 3px solid var(--saffron); box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.mission-box::before {
  content: ''; position: absolute;
  top: -30px; right: -30px; width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(224,123,57,0.05) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.mission-box h4 { font-family: 'Playfair Display', serif; color: var(--deep-brown); margin-bottom: 0.85rem; font-size: 1.08rem; font-weight: 700; }
.mission-box ul { list-style: none; }
.mission-box li {
  padding: 0.5rem 0; color: var(--text-mid); font-size: 0.90rem;
  line-height: 1.6; display: flex; gap: 0.65rem;
  border-bottom: 1px solid rgba(224,123,57,0.07);
}
.mission-box li:last-child { border-bottom: none; }
.mission-box li::before { content: '🌱'; flex-shrink: 0; }

/* ── CURRICULUM ── */
#curriculum { background: var(--warm-white); }
.curriculum-tabs { display: flex; gap: 0.5rem; margin: 2.25rem 0; flex-wrap: wrap; }
.tab-btn {
  padding: 0.58rem 1.45rem; border-radius: 50px;
  border: 1.5px solid rgba(224,123,57,0.18);
  cursor: pointer; font-family: 'Nunito', sans-serif;
  font-size: 0.87rem; font-weight: 700;
  transition: all 0.22s var(--ease-out);
  background: white; color: var(--text-mid);
  letter-spacing: 0.01em;
}
.tab-btn:hover { background: rgba(224,123,57,0.07); color: var(--saffron-dark); border-color: rgba(224,123,57,0.30); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white; border-color: transparent;
  box-shadow: var(--shadow-saffron);
}
.tab-content { display: none; }
.tab-content.active { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; animation: fadeUp 0.35s var(--ease-out); }
.curric-card {
  background: white; border-radius: 18px; padding: 1.6rem;
  border: 1px solid rgba(224,123,57,0.08);
  transition: all 0.28s var(--ease-out);
  box-shadow: var(--shadow-xs);
  position: relative; overflow: hidden;
}
.curric-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.curric-card:hover { border-color: rgba(224,123,57,0.15); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.curric-card:hover::after { transform: scaleX(1); }
.curric-icon {
  font-size: 1.7rem; margin-bottom: 1rem;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--saffron-lighter), rgba(248,239,225,0.8));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.curric-card h4 { font-family: 'Playfair Display', serif; color: var(--deep-brown); margin-bottom: 0.5rem; font-size: 1rem; font-weight: 700; }
.curric-card p { font-size: 0.84rem; color: var(--text-light); line-height: 1.7; }

/* ── PEOPLE ── */
#people { background: var(--parchment); }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-top: 3.5rem; }
.team-card {
  background: white; border-radius: 20px; padding: 1.85rem;
  display: flex; align-items: center; gap: 1.4rem;
  border: 1px solid rgba(224,123,57,0.08);
  transition: all 0.28s var(--ease-out);
  box-shadow: var(--shadow-xs);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(224,123,57,0.15); }
.team-avatar {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0; color: white; font-weight: 700;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 0 0 3px rgba(224,123,57,0.15), 0 0 0 6px rgba(224,123,57,0.05);
}
.team-info h4 { font-family: 'Playfair Display', serif; color: var(--deep-brown); margin-bottom: 0.35rem; font-size: 1.05rem; font-weight: 700; }
.team-info a { font-size: 0.82rem; color: var(--saffron); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.team-info a:hover { color: var(--saffron-dark); text-decoration: underline; }

/* ── COMMUNITY ── */
#community {
  background: linear-gradient(150deg, #2A1305 0%, #3E1C08 25%, #572E10 55%, #6B3A1F 80%, #7A4025 100%);
  color: white; position: relative; overflow: hidden;
}
#community::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(224,123,57,0.10) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.022'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
#community .section-title { color: white; }
#community .section-label { color: var(--saffron-light); }
#community .section-label::before { background: var(--saffron-light); }
.community-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; margin-top: 3.5rem; position: relative; z-index: 1;
}
.community-img-wrap img {
  width: 100%; border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.50), 0 10px 28px rgba(0,0,0,0.30);
  object-fit: cover; max-height: 420px; display: block;
}
.community-text p { color: rgba(255,255,255,0.76); line-height: 1.95; font-size: 1rem; margin-bottom: 2rem; }
.prayer-box {
  background: rgba(255,255,255,0.055);
  border-radius: 18px; padding: 1.85rem;
  border: 1px solid rgba(255,255,255,0.09);
  border-left: 3px solid rgba(245,164,98,0.45);
  backdrop-filter: blur(12px);
}
.prayer-box h4 { font-family: 'Playfair Display', serif; color: var(--saffron-light); margin-bottom: 1.1rem; font-size: 1rem; font-style: italic; font-weight: 700; }
.prayer-box p { font-size: 0.87rem; color: rgba(255,255,255,0.63); font-style: italic; line-height: 2.1; }

/* ── LOCATION ── */
#location { background: var(--warm-white); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-top: 3.5rem; }
.location-info { background: white; border-radius: 22px; padding: 2.5rem; border: 1px solid rgba(224,123,57,0.09); box-shadow: var(--shadow-sm); }
.location-detail {
  display: flex; gap: 1.1rem; padding: 1.05rem 0;
  border-bottom: 1px solid rgba(224,123,57,0.07);
  transition: padding-left 0.2s var(--ease-out);
}
.location-detail:last-child { border-bottom: none; padding-bottom: 0; }
.location-detail:hover { padding-left: 4px; }
.loc-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 3px; }
.loc-label { font-size: 0.70rem; font-weight: 800; color: var(--saffron); letter-spacing: 0.10em; text-transform: uppercase; margin-bottom: 0.25rem; }
.loc-value { color: var(--text-dark); font-size: 0.92rem; font-weight: 600; }
.loc-sub { font-size: 0.82rem; color: var(--text-lighter); margin-top: 0.2rem; }
.map-placeholder {
  background: var(--cream); border-radius: 22px; overflow: hidden;
  height: 380px; border: 1px solid rgba(224,123,57,0.10);
  position: relative; box-shadow: var(--shadow-sm);
}
.map-placeholder iframe { width: 100%; height: 100%; border: none; }
.map-overlay {
  position: absolute; top: 1rem; left: 1rem;
  background: white; border-radius: 10px; padding: 0.5rem 0.95rem;
  box-shadow: var(--shadow-md);
  font-size: 0.80rem; font-weight: 700; color: var(--deep-brown);
  pointer-events: none; z-index: 1;
  border: 1px solid rgba(224,123,57,0.10);
}

/* ── FOOTER ── */
footer {
  background: linear-gradient(155deg, #2A1305 0%, #3D2008 50%, #4A2810 100%);
  color: rgba(255,255,255,0.72); padding: 4rem 2.5rem 2.5rem;
  position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(224,123,57,0.40) 25%,
    rgba(201,145,42,0.50) 50%,
    rgba(224,123,57,0.40) 75%,
    transparent 100%);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3.5rem;
  position: relative; z-index: 1;
}
.footer-brand img { height: 50px; margin-bottom: 1.1rem; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand p { font-size: 0.87rem; line-height: 1.85; color: rgba(255,255,255,0.48); max-width: 270px; }
.footer-col h5 {
  font-family: 'Playfair Display', serif; color: white; margin-bottom: 1.25rem; font-size: 1rem;
  padding-bottom: 0.65rem; position: relative;
}
.footer-col h5::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: rgba(255,255,255,0.52); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--saffron-light); }
.footer-address { color: rgba(255,255,255,0.35); font-size: 0.84rem; margin-top: 0.55rem; line-height: 1.7; }
.footer-bottom {
  max-width: 1100px; margin: 2.5rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.80rem; color: rgba(255,255,255,0.32);
  position: relative; z-index: 1;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.fade-in {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  section { padding: 4rem 1.5rem; }
  nav { padding: 0 1.5rem; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--cream); padding: 1rem 1.5rem;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(224,123,57,0.10);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-inner,
  .philosophy-grid,
  .about-grid,
  .community-grid,
  .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image::before,
  .about-image-wrap::before { display: none; }
  .hero-float { display: none; }
  .tab-content.active { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .values-cards { grid-template-columns: 1fr 1fr; }
  .about-badge { bottom: -12px; left: 18px; padding: 0.8rem 1.2rem; }
  .philosophy-grid { margin-top: 2rem; }
}
