/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest: #1C3A2E;
  --forest-light: #2A5040;
  --forest-pale: #E8F0EB;
  --gold: #D4890A;
  --gold-light: #F0A820;
  --gold-pale: #FDF6E8;
  --ivory: #F7F3EC;
  --cream: #FEFCF8;
  --stone: #8B7355;
  --stone-light: #C4B49A;
  --charcoal: #1E1E1C;
  --muted: #6B6459;
  --rule: #DDD6CD;
  --white: #ffffff;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(28,58,46,0.08);
  --shadow-md: 0 8px 32px rgba(28,58,46,0.12);
  --shadow-lg: 0 20px 60px rgba(28,58,46,0.18);
  --transition: all 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--charcoal); line-height: 1.6; overflow-x: hidden; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right.visible { opacity: 1; transform: none; }

/* ── TOPBAR ── */
.topbar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.72);
  font-size: 12.5px;
  letter-spacing: 0.025em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: inherit; transition: color 0.15s; }
.topbar a:hover { color: var(--gold-light); }
.topbar-group { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { opacity: 0.65; flex-shrink: 0; }

/* ── NAVIGATION ── */
#mainNav {
  background: rgba(254,252,248,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  position: sticky; top: 0; z-index: 200;
  transition: var(--transition);
}
#mainNav.scrolled { border-bottom-color: var(--rule); box-shadow: var(--shadow-sm); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.brand-text { line-height: 1.15; }
.brand-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--forest); }
.brand-tagline { font-size: 10.5px; color: var(--stone); letter-spacing: 0.1em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link { color: var(--charcoal); font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm); transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--forest); background: var(--forest-pale); }
.nav-cta { background: var(--forest); color: var(--white) !important; padding: 9px 20px; border-radius: var(--radius-sm); margin-left: 8px; }
.nav-cta:hover { background: var(--forest-light) !important; }

.menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-btn span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: var(--transition); }
.menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; background: var(--cream); border-top: 1px solid var(--rule); padding: 16px 32px 24px; flex-direction: column; gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 500; padding: 10px 12px; border-radius: var(--radius-sm); color: var(--charcoal); transition: var(--transition); }
.mobile-menu a:hover { background: var(--forest-pale); color: var(--forest); }

/* ── HERO ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(28,58,46,0.88) 0%, rgba(28,58,46,0.60) 60%, rgba(0,0,0,0.4) 100%); }
.hero-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 100px 32px 80px; display: grid; grid-template-columns: 1fr 440px; gap: 64px; align-items: center; width: 100%; }

.hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 1.5px; background: var(--gold-light); }
.hero h1 { font-size: clamp(38px, 5.5vw, 66px); font-weight: 700; color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-desc { font-size: 17px; color: rgba(255,255,255,0.78); line-height: 1.8; max-width: 520px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 40px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap; }
.hero-stat-val { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--gold-light); }
.hero-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; letter-spacing: 0.06em; }

/* Hero side card */
.hero-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-lg); backdrop-filter: blur(12px); overflow: hidden; }
.hero-card-head { background: rgba(212,137,10,0.15); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 24px; }
.hero-card-title { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--white); font-weight: 600; }
.hero-card-sub { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 3px; }
.hero-product-list { list-style: none; padding: 16px 0; }
.hero-product-item { display: flex; align-items: center; gap: 12px; padding: 10px 24px; transition: background 0.15s; cursor: pointer; }
.hero-product-item:hover { background: rgba(255,255,255,0.06); }
.hero-product-thumb { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.hero-product-name { font-size: 13.5px; color: rgba(255,255,255,0.88); flex: 1; font-weight: 500; }
.hero-product-price-col { text-align: right; }
.hero-product-price { font-size: 15px; font-weight: 700; color: var(--gold-light); display: block; }
.hero-product-orig { font-size: 11px; color: rgba(255,255,255,0.35); text-decoration: line-through; }
.hero-card-footer { padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.1); }

/* ── BUTTONS ── */
.btn-primary { display: inline-flex; align-items: center; gap: 9px; background: var(--gold); color: var(--white); border: none; border-radius: var(--radius-sm); padding: 14px 28px; font-size: 14px; font-weight: 600; letter-spacing: 0.02em; cursor: pointer; transition: var(--transition); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,137,10,0.3); }
.btn-ghost { display: inline-flex; align-items: center; gap: 9px; background: transparent; color: rgba(255,255,255,0.85); border: 1.5px solid rgba(255,255,255,0.3); border-radius: var(--radius-sm); padding: 13px 24px; font-size: 14px; font-weight: 500; cursor: pointer; transition: var(--transition); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn-forest { display: inline-flex; align-items: center; gap: 9px; background: var(--forest); color: var(--white); border: none; border-radius: var(--radius-sm); padding: 13px 24px; font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.btn-forest:hover { background: var(--forest-light); transform: translateY(-1px); }
.btn-outline { display: inline-flex; align-items: center; gap: 9px; background: transparent; color: var(--forest); border: 1.5px solid var(--forest); border-radius: var(--radius-sm); padding: 12px 22px; font-size: 14px; font-weight: 500; cursor: pointer; transition: var(--transition); }
.btn-outline:hover { background: var(--forest-pale); }
.btn-whatsapp { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; background: #25D366; color: var(--white); border: none; border-radius: var(--radius-sm); padding: 12px; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.btn-whatsapp:hover { background: #1ebe59; transform: translateY(-1px); }
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION STRUCTURE ── */
.section { padding: 96px 0; }
.section-alt { background: var(--ivory); }
.section-dark { background: var(--forest); color: var(--white); }
.section-charcoal { background: var(--charcoal); color: var(--white); }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--gold); }
.section-dark .section-label, .section-charcoal .section-label { color: var(--gold-light); }
.section-dark .section-label::before, .section-charcoal .section-label::before { background: var(--gold-light); }
.section-title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; margin-bottom: 16px; color: var(--charcoal); }
.section-dark .section-title, .section-charcoal .section-title { color: var(--white); }
.section-subtitle { font-size: 16px; color: var(--muted); max-width: 580px; line-height: 1.75; }
.section-dark .section-subtitle, .section-charcoal .section-subtitle { color: rgba(255,255,255,0.58); }
.section-head { margin-bottom: 60px; }
.section-head-center { text-align: center; }
.section-head-center .section-label { justify-content: center; }
.section-head-center .section-subtitle { margin: 0 auto; }

/* ── MARQUEE STRIP ── */
.strip { background: var(--gold); padding: 12px 0; overflow: hidden; }
.strip-track { display: flex; gap: 0; animation: marquee 22s linear infinite; white-space: nowrap; }
.strip-item { font-size: 12.5px; font-weight: 700; color: var(--white); letter-spacing: 0.12em; text-transform: uppercase; padding: 0 32px; display: flex; align-items: center; gap: 10px; }
.strip-item::after { content: '✦'; opacity: 0.6; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── PRODUCT CARDS ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
.product-card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); position: relative; }
.product-card:hover { border-color: var(--stone-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--forest-pale); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--forest); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 99px; }
.product-badge-sale { background: #C0392B; }
.product-body { padding: 22px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.product-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.product-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.product-price { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--forest); }
.product-price-orig { font-size: 14px; color: var(--stone-light); text-decoration: line-through; }
.product-discount { font-size: 11px; font-weight: 700; color: var(--gold); background: var(--gold-pale); padding: 3px 8px; border-radius: 99px; }
.product-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.product-tag { font-size: 10.5px; font-weight: 600; color: var(--forest); background: var(--forest-pale); padding: 3px 10px; border-radius: 99px; letter-spacing: 0.04em; }

/* ── FOUNDER / ABOUT ── */
.founder-grid { display: grid; grid-template-columns: 1fr 520px; gap: 72px; align-items: start; }
.founder-poster { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); position: sticky; top: 100px; }
.founder-poster img { width: 100%; display: block; }

.about-tabs .tab-group { }
.tab-btns { display: flex; gap: 0; border-bottom: 2px solid var(--rule); margin-bottom: 32px; }
.tab-btn { background: none; border: none; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: var(--muted); padding: 10px 20px; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--transition); }
.tab-btn:hover { color: var(--forest); }
.tab-btn.active { color: var(--forest); border-bottom-color: var(--forest); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.about-text p { font-size: 15.5px; color: var(--muted); line-height: 1.85; margin-bottom: 18px; }
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--charcoal); }

.mission-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.mission-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.mission-icon { width: 28px; height: 28px; background: var(--forest-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; margin-top: 1px; }

.awards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.award-card { background: var(--ivory); border: 1px solid var(--rule); border-radius: var(--radius-md); overflow: hidden; cursor: pointer; transition: var(--transition); }
.award-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.award-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.award-card-label { padding: 12px 14px; font-size: 12.5px; font-weight: 600; color: var(--forest); }

/* ── PILLARS ── */
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: var(--radius-md); overflow: hidden; }
.pillar { background: var(--white); padding: 40px 28px; }
.pillar-icon { width: 52px; height: 52px; background: var(--forest-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.pillar-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; }
.pillar-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── STATS BAND ── */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); }
.stat-item { padding: 40px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.12); }
.stat-item:last-child { border-right: none; }
.stat-val { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; color: var(--gold-light); display: block; }
.stat-lbl { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.06em; }

/* ── GALLERY ── */
.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn { background: none; border: 1.5px solid var(--rule); border-radius: 99px; padding: 8px 20px; font-size: 13px; font-weight: 600; color: var(--muted); cursor: pointer; transition: var(--transition); }
.filter-btn:hover { border-color: var(--stone); color: var(--charcoal); }
.filter-btn.active { background: var(--forest); border-color: var(--forest); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; transition: var(--transition); opacity: 0; transform: scale(0.96); }
.gallery-item.visible { opacity: 1; transform: none; }
.gallery-item:hover { box-shadow: var(--shadow-md); transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── CATERING / INFO ── */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md); overflow: hidden; background: rgba(255,255,255,0.12); gap: 1px; }
.info-block { background: rgba(255,255,255,0.04); padding: 40px 32px; }
.info-icon { font-size: 32px; margin-bottom: 16px; }
.info-title { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 10px; }
.info-value { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--white); line-height: 1.4; }
.info-sub { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 6px; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--gold-pale); border: 1px solid rgba(212,137,10,0.2); border-radius: var(--radius-md); padding: 56px 52px; display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--forest); margin-bottom: 10px; }
.cta-banner p { font-size: 16px; color: var(--muted); max-width: 520px; line-height: 1.7; }
.cta-banner-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: #161614; color: rgba(255,255,255,0.65); padding: 72px 0 32px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.footer-top { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1.2fr; gap: 56px; margin-bottom: 56px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.footer-brand-desc { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.45); margin-bottom: 24px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 17px; transition: var(--transition); }
.social-link:hover { border-color: var(--gold-light); color: var(--gold-light); }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.15s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.footer-contact-item svg { color: var(--gold-light); flex-shrink: 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-made { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ── LIGHTBOX ── */
#lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 24px; }
#lightbox.open { display: flex; }
#lightboxImg { max-width: 90vw; max-height: 90vh; border-radius: var(--radius-md); object-fit: contain; box-shadow: 0 32px 80px rgba(0,0,0,0.6); }
#lightboxClose { position: absolute; top: 20px; right: 24px; background: rgba(255,255,255,0.1); border: none; color: var(--white); font-size: 28px; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
#lightboxClose:hover { background: rgba(255,255,255,0.2); }

/* ── BACK TO TOP ── */
#backTop { position: fixed; bottom: 28px; right: 28px; width: 48px; height: 48px; background: var(--forest); color: var(--white); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: var(--shadow-md); opacity: 0; transform: translateY(20px); pointer-events: none; transition: var(--transition); z-index: 500; }
#backTop.show { opacity: 1; transform: none; pointer-events: all; }
#backTop:hover { background: var(--forest-light); transform: translateY(-3px); }

/* ── TESTIMONIAL ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 32px; transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-family: 'Playfair Display', serif; font-size: 15.5px; font-style: italic; color: var(--charcoal); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--forest-pale); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.testimonial-name { font-size: 13.5px; font-weight: 600; color: var(--charcoal); }
.testimonial-loc { font-size: 12px; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-poster { position: static; max-width: 480px; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stats-band .stat-item:nth-child(2) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .info-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { flex-direction: column; padding: 40px 32px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .section { padding: 64px 0; }
  .section-inner { padding: 0 20px; }
  .nav-inner, .topbar-inner, .hero-inner, .footer-inner { padding-left: 20px; padding-right: 20px; }
  .hero-inner { padding-top: 80px; padding-bottom: 60px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .topbar-group:first-child { display: none; }
}


.logo{
  height: 70px;
}





/*======================
PRELOADER
=======================*/

#preloader{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:#fff;
z-index:999999;
display:flex;
justify-content:center;
align-items:center;
overflow:hidden;
}

.loader{
text-align:center;
}

.scene{
position:relative;
width:300px;
height:180px;
margin:auto;
overflow:hidden;
}

/* SUN */

.sun{
position:absolute;
width:70px;
height:70px;
background:#FFD54F;
border-radius:50%;
left:50%;
transform:translateX(-50%);
bottom:-50px;
animation:sunrise 2.5s ease forwards;
}

/* CLOUD */

.cloud{
position:absolute;
background:#fff;
width:70px;
height:22px;
border-radius:40px;
box-shadow:
20px -10px #fff,
40px 0 #fff;
opacity:.9;
}

.cloud1{
top:30px;
left:-100px;
animation:cloudMove 8s linear infinite;
}

.cloud2{
top:60px;
right:-120px;
animation:cloudMove2 10s linear infinite;
}

/* MOUNTAINS */

.mountain{
position:absolute;
bottom:30px;
width:0;
height:0;
border-left:90px solid transparent;
border-right:90px solid transparent;
}

.mountain-back{
left:20px;
border-bottom:120px solid #4CAF50;
animation:mountainUp 1.5s ease;
}

.mountain-front{
left:120px;
border-bottom:140px solid #2E7D32;
animation:mountainUp 2s ease;
}

/* FIELD */

.field{
position:absolute;
bottom:0;
width:100%;
height:45px;
background:linear-gradient(90deg,#FFD54F,#FFC107,#FFD54F);
border-radius:100% 100% 0 0;
animation:wave 2s ease-in-out infinite;
}

/* LOGO */

.logo-circle{
margin-top:-20px;
animation:logoZoom 1.5s ease;
}

.logo-circle img{
width:120px;
height:120px;
border-radius:50%;
background:#fff;
padding:10px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* TEXT */

.loading-text{
margin-top:20px;
font-size:18px;
font-weight:600;
color:#2E7D32;
letter-spacing:3px;
}

/* BAR */

.progress{
width:220px;
height:7px;
background:#eee;
margin:20px auto;
border-radius:20px;
overflow:hidden;
}

.progress-bar{
height:100%;
background:linear-gradient(90deg,#2E7D32,#FFD54F);
width:0;
animation:loading 3s linear forwards;
}

/*====================
ANIMATION
====================*/

@keyframes sunrise{

0%{
bottom:-50px;
}

100%{
bottom:70px;
}

}

@keyframes mountainUp{

0%{
transform:translateY(100px);
opacity:0;
}

100%{
transform:translateY(0);
opacity:1;
}

}

@keyframes wave{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(6px);
}

}

@keyframes logoZoom{

0%{
transform:scale(.5);
opacity:0;
}

100%{
transform:scale(1);
opacity:1;
}

}

@keyframes loading{

100%{
width:100%;
}

}

@keyframes cloudMove{

0%{
transform:translateX(0);
}

100%{
transform:translateX(420px);
}

}

@keyframes cloudMove2{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-420px);
}

}