/* =========================================================
   KIKAWA — Kikao Cha Wanaume
   Design tokens — modern, clean, single-typeface (Poppins) system
   navy   — primary ink / headline colour (from the logo outline)
   teal   — brand colour (from the logo background)
   sky    — secondary blue (decorative blobs)
   gold   — accent / CTA colour (from the wordmark gradient)
   coral  — small accent colour
   paper  — soft off-white background
   ========================================================= */
:root{
  --navy:       #10222E;
  --navy-soft:  #56646D;
  --paper:      #FBFBF9;
  --paper-dim:  #F4F4F0;
  --teal:       #2FC6BD;
  --teal-deep:  #1E9E96;
  --teal-tint:  #E8FAF8;
  --sky:        #5AA9D6;
  --sky-deep:   #2E6FA3;
  --sky-tint:   #EDF6FB;
  --gold:       #D6A339;
  --gold-deep:  #A67722;
  --gold-tint:  #FBF3E1;
  --coral:      #E8637A;
  --sand:       #F3EEE0;
  --line:       #E9E6DF;
  --line-soft:  #F0EEE8;
  --white:      #FFFFFF;

  --font-display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:    "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 48px);

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  --shadow-xs: 0 2px 8px rgba(16,34,46,.05);
  --shadow-sm: 0 8px 24px rgba(16,34,46,.07);
  --shadow-md: 0 16px 40px rgba(16,34,46,.10);
  --shadow-lg: 0 28px 64px rgba(16,34,46,.16);
  --shadow-glow-teal: 0 16px 40px rgba(30,158,150,.22);
  --shadow-glow-gold: 0 16px 40px rgba(166,119,34,.22);
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; max-width: 100%; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg{ max-width:100%; display:block; }
a{ color: inherit; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin:0;
  line-height:1.15;
}
p{ margin: 0 0 1em; }
ul, ol{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; }
input, textarea{ font: inherit; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.skip-link{
  position:absolute; left:-9999px; top:auto; background: var(--navy); color:#fff;
  padding: 12px 18px; z-index: 1200; text-decoration:none; font-size:13px; border-radius: 0 0 10px 0;
}
.skip-link:focus{ left: 0; top: 0; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--teal-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.eyebrow{
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before{
  content:"";
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background: var(--gold);
  display:inline-block;
  flex-shrink: 0;
}
.eyebrow.on-dark{ color: #fff; }
.eyebrow.on-dark::before{ background: var(--gold); }

/* =========================================================
   NAV
   ========================================================= */
.site-header{
  position: sticky; top:0; z-index: 1000;
  background: rgba(251,251,249,.82);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between; gap: 20px;
  padding: 10px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  min-height: 76px;
}
.nav-brand{ display:flex; align-items:center; gap:11px; text-decoration:none; min-width:0; }
.nav-brand img{ height: 44px; width:44px; border-radius: 50%; object-fit:cover; flex-shrink:0; box-shadow: var(--shadow-xs); }
.nav-brand-text{ font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy); line-height:1; letter-spacing:-.01em; }
.nav-brand-text small{ display:block; font-family: var(--font-body); font-weight:500; font-size:9.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--navy-soft); margin-top:5px; }

.nav-links{ display:flex; align-items:center; gap: 8px; }
.nav-links a{
  text-decoration:none; font-size: 14px; font-weight:500; color: #3A464E;
  position:relative; padding: 9px 14px; white-space: nowrap;
  border-radius: var(--radius-pill);
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover, .nav-links a:focus-visible{ background: var(--paper-dim); color: var(--navy); }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family: var(--font-body); font-weight:600; font-size:14px;
  padding: 13px 24px; border-radius: var(--radius-pill); text-decoration:none;
  border: 1px solid transparent; cursor:pointer; white-space:nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease, box-shadow .2s ease;
}
.btn-primary{ background: var(--gold); color:#fff; box-shadow: var(--shadow-glow-gold); }
.btn-primary:hover{ background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 20px 44px rgba(166,119,34,.28); }
.btn-ghost{ background: var(--white); color: var(--navy); border-color: var(--line); }
.btn-ghost:hover{ background: var(--navy); color:#fff; border-color: var(--navy); }
.btn:active{ transform: translateY(0); }
.btn-sm{ padding: 10px 18px; font-size:13.5px; }

.nav-cta{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.nav-toggle{
  display:none; background:none; border:none; cursor:pointer; padding:8px;
  width: 40px; height: 40px; align-items:center; justify-content:center; flex-direction:column;
  border-radius: var(--radius-sm);
}
.nav-toggle:hover{ background: var(--paper-dim); }
.nav-toggle span{ display:block; width:22px; height:2px; background:var(--navy); margin:3px 0; border-radius:2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 960px){
  .nav-links{
    position:fixed; top: 68px; left:0; right:0; bottom:0;
    z-index: 500;
    background:#fff;
    flex-direction:column; align-items:stretch; gap:2px;
    padding: 14px var(--gutter) 28px;
    transform: translateY(-8px); opacity:0; pointer-events:none; visibility:hidden;
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
    border-top: 1px solid var(--line);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: calc(100vh - 68px);
    height: calc(100dvh - 68px);
  }
  .nav-links.open{
    opacity:1; transform:none; pointer-events:auto; visibility:visible;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links a{ width:100%; padding: 16px 14px; border-radius: var(--radius-sm); font-size:15.5px; }
  .nav-toggle{ display:inline-flex; }
  .nav-cta .btn-ghost, .nav-cta .btn-primary{ display:none; }
}
@media (max-width: 420px){
  .nav-brand-text{ display:none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  display:grid; grid-template-columns: 1.15fr .85fr; align-items:stretch;
  gap: 0;
  min-height: clamp(560px, 48vw, 760px);
  overflow: hidden;
  background:
    radial-gradient(720px 420px at 14% -6%, var(--teal-tint) 0%, rgba(232,250,248,0) 68%),
    radial-gradient(560px 360px at 96% 10%, var(--gold-tint) 0%, rgba(251,243,225,0) 70%);
}
.hero-copy{ padding: 72px var(--gutter) 72px calc(var(--gutter) + 4px); display:flex; flex-direction:column; justify-content:center; min-width:0; position: relative; z-index: 2; }
.hero-copy h1{
  font-size: clamp(42px, 5.6vw, 80px);
  max-width: 12ch;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.04;
  font-weight: 700;
}
.hero-copy h1 em{ font-style:normal; color: var(--teal-deep); }
.hero-lede{
  margin-top: 26px; font-size: clamp(15px, 1.6vw, 17.5px); color: var(--navy-soft);
  max-width: 46ch; line-height:1.75;
  border-left: 3px solid var(--gold); padding-left: 18px;
}
.hero-event-line{
  margin-top: 24px; font-family: var(--font-body); font-weight:600; font-size: 13px;
  letter-spacing:.03em; text-transform:uppercase; color: var(--navy);
  display: inline-flex; align-items:center; gap:8px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 9px 18px; width: fit-content; box-shadow: var(--shadow-xs);
}
.hero-actions{ display:flex; align-items:center; gap:22px; margin-top:36px; flex-wrap:wrap; }
.hero-link{ font-size:14.5px; font-weight:600; text-decoration:none; color: var(--navy); border-bottom:1px solid var(--navy); padding-bottom:2px; transition: opacity .2s ease; }
.hero-link:hover{ opacity:.65; }

.hero-visual{
  position:relative; overflow:hidden;
  background: linear-gradient(155deg, var(--teal) 0%, var(--teal-deep) 100%);
  display:flex; align-items:center; justify-content:center;
  padding: 12%;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  margin: 20px 0 20px -1px;
}
.hero-visual img{ width:100%; height:100%; object-fit:contain; filter: drop-shadow(0 20px 34px rgba(16,34,46,.28)); }

@media (max-width: 860px){
  .hero{ grid-template-columns: 1fr; min-height: auto; }
  .hero-visual{ order:-1; aspect-ratio: 16/9; padding: 10%; border-radius: 0 0 var(--radius-xl) var(--radius-xl); margin: 0; }
  .hero-copy{ padding: 44px var(--gutter) 52px; text-align:left; }
  .hero-lede{ margin-left:0; }
}
@media (max-width: 480px){
  .hero-copy{ padding: 36px 18px 44px; }
  .hero-copy h1{ font-size: clamp(34px, 10vw, 48px); }
  .hero-lede{ font-size:15px; }
  .hero-visual{ aspect-ratio: 4/3; }
  .hero-actions{ flex-direction:column; align-items:stretch; gap:14px; }
  .hero-actions .btn, .hero-actions .hero-link{ text-align:center; justify-content:center; }
}

/* =========================================================
   SECTION SHELLS
   ========================================================= */
section{ padding: 108px 0; }
section.tight{ padding: 76px 0; }
.section-head{ max-width: 720px; margin-bottom: 52px; }
.section-head h2{ font-size: clamp(26px, 3.4vw, 42px); line-height:1.18; font-weight: 700; letter-spacing:-.02em; }
.section-head p{ margin-top:16px; font-size: clamp(14.5px, 1.4vw, 16.5px); color: var(--navy-soft); max-width: 60ch; line-height:1.8; }
.bg-sand{ background: var(--sand); }
.bg-ink{ background: var(--navy); color: #DCE3E6; }
.bg-ink h2, .bg-ink h3, .bg-ink h4{ color:#fff; }
.bg-ink .section-head p{ color: #B7C0C5; }
.bg-violet{ background: var(--sky-deep); color:#EAF2F8; }
.bg-violet h2{ color:#fff; }
.bg-violet .section-head p{ color:#CFE1EE; }

@media (max-width: 720px){
  section{ padding: 68px 0; }
  section.tight{ padding: 52px 0; }
  .section-head{ margin-bottom: 36px; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid{ display:grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items:start; }
.about-text p{ font-size: 15.5px; line-height:1.85; color: var(--navy-soft); }
.about-text strong{ color: var(--navy); font-weight:700; }
.about-panel{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.about-panel h3{ font-family: var(--font-body); font-size:12.5px; font-weight:700; letter-spacing:.06em; text-transform: uppercase; color: var(--teal-deep); margin-bottom:20px; }
.idx-list li{ display:grid; grid-template-columns: 32px 1fr; gap:14px; padding: 14px 0; border-bottom:1px solid var(--line-soft); font-size:14.5px; line-height:1.7; color: var(--navy-soft); }
.idx-list li:last-child{ border-bottom:none; padding-bottom: 0; }
.idx-list li:first-child{ padding-top: 0; }
.idx-num{
  font-family: var(--font-display); font-weight: 700; font-size:13px; color: var(--gold-deep);
  background: var(--gold-tint); width: 28px; height: 28px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}

.pull{ margin-top:56px; }
.pull blockquote{
  margin:0; font-family: var(--font-display); font-weight:600;
  font-size: clamp(22px, 2.8vw, 34px); line-height:1.4; color: var(--navy);
  max-width: 26ch; letter-spacing:-.01em;
  background: var(--teal-tint);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  position: relative;
}
.pull blockquote::before{ content:"\201C"; color: var(--teal-deep); font-size: 1.3em; }
.pull blockquote::after{ content:"\201D"; color: var(--teal-deep); font-size: 1.3em; }
@media (max-width: 860px){
  .about-grid{ grid-template-columns: 1fr; gap:28px; }
  .pull blockquote{ padding: 30px 26px; }
}

/* =========================================================
   EXPERIENCE
   ========================================================= */
.experience-grid{ display:grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items:start; }
.feature-list li{
  display:grid; grid-template-columns: 52px 1fr; gap:18px; align-items:flex-start;
  padding: 22px; border-radius: var(--radius-md);
  background: var(--white); border: 1px solid var(--line);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.feature-list li + li{ margin-top: 14px; }
.feature-list li:hover{ box-shadow: var(--shadow-sm); transform: translateY(-2px); border-color: var(--teal-tint); }
.feature-list .num{
  font-family: var(--font-display); font-weight:700; font-size:15px; color: var(--teal-deep);
  background: var(--teal-tint); width: 40px; height: 40px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.feature-list h3{ font-family: var(--font-body); font-weight:700; font-size:16.5px; letter-spacing:-.01em; }
.feature-list p{ margin-top:6px; font-size:14px; color: var(--navy-soft); line-height:1.7; }

.callout-panel{
  background: var(--navy); color:#fff; padding: 40px 36px;
  position: relative; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  height: 100%;
}
.callout-mark{
  font-family: var(--font-display); font-size:20px; font-weight:700; color: var(--gold);
  display:flex; align-items:center; justify-content:center;
  width: 40px; height: 40px; border-radius: 50%; background: rgba(214,163,57,.15);
  margin-bottom:18px;
}
.callout-panel p{ font-size:15.5px; line-height:1.8; margin:0; max-width:56ch; color:#DDE3E5; }
.callout-panel.gold{ background: linear-gradient(155deg, var(--gold) 0%, var(--gold-deep) 100%); box-shadow: var(--shadow-glow-gold); }
.callout-panel.gold .callout-mark{ color: var(--gold-deep); background: rgba(255,255,255,.25); }
.callout-panel.gold p{ color:#fff; font-weight:500; }

@media (max-width: 860px){ .experience-grid{ grid-template-columns: 1fr; gap:20px; } }

/* =========================================================
   EVENT FLOW
   ========================================================= */
.flow-grid{ display:grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
.timeline{ position:relative; padding-left: 30px; }
.timeline::before{ content:""; position:absolute; left:5px; top:6px; bottom:6px; width:2px; background: var(--line); border-radius:2px; }
.timeline li{ position:relative; padding-bottom: 32px; }
.timeline li:last-child{ padding-bottom:0; }
.timeline li::before{
  content:""; position:absolute; left:-30px; top:2px; width:12px; height:12px; border-radius:50%;
  background: var(--gold); border: 3px solid var(--paper); box-shadow: 0 0 0 2px var(--gold);
}
.tl-when{ display:block; font-size:11.5px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color: var(--teal-deep); }
.tl-what{ display:block; margin-top:5px; font-family: var(--font-body); font-weight:700; font-size:17px; color: var(--navy); }

.phases{ background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.phases h3{ font-family: var(--font-body); font-size:12.5px; font-weight:700; letter-spacing:.08em; text-transform: uppercase; color: var(--navy-soft); margin-bottom:20px; }
.phase-row{ padding: 18px 0; border-bottom:1px solid var(--line-soft); }
.phase-row:first-of-type{ padding-top: 0; }
.phase-row:last-child{ border-bottom:none; padding-bottom:0; }
.phase-label{ display:block; font-family: var(--font-body); font-weight:700; font-size:15px; color: var(--navy); letter-spacing:-.005em; }
.phase-label small{ font-weight:500; color: var(--navy-soft); font-size:12px; margin-left:6px; }
.phase-row p{ margin-top:6px; font-size:14px; color: var(--navy-soft); line-height:1.7; }

@media (max-width: 860px){ .flow-grid{ grid-template-columns: 1fr; gap:32px; } }

/* =========================================================
   AUDIENCE & REACH
   ========================================================= */
.bg-teal-block{
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
}
.bg-teal-block h2{ color:#fff; }
.bg-teal-block .section-head p{ color: rgba(255,255,255,.85); }
.audience-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.audience-col{ background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); padding: 30px; }
.audience-icon{
  width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.22);
  display:flex; align-items:center; justify-content:center; margin-bottom: 20px;
}
.audience-icon svg{ width: 24px; height: 24px; stroke: #fff; fill: none; }
.audience-col h3{ font-family: var(--font-body); font-size:16px; font-weight:700; letter-spacing:-.005em; color: #fff; margin-bottom:16px; }
.audience-col ul li{ position:relative; padding-left:18px; margin-bottom:13px; font-size:14px; line-height:1.7; color: rgba(255,255,255,.88); }
.audience-col ul li:last-child{ margin-bottom: 0; }
.audience-col ul li::before{ content:""; position:absolute; left:0; top:9px; width:5px; height:5px; border-radius:50%; background: var(--gold); }
.audience-note{ margin-top:44px; padding-top:28px; border-top:1px solid rgba(255,255,255,.2); font-size:14.5px; color: rgba(255,255,255,.85); max-width:74ch; line-height:1.8; }
@media (max-width: 860px){ .audience-grid{ grid-template-columns: 1fr; gap:16px; } }

/* =========================================================
   SPONSORSHIP TIERS
   ========================================================= */
.tier-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.tier-card{
  padding: 34px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tier-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier-card.featured{
  background: var(--navy); color: #fff; border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.tier-card.featured:hover{ transform: scale(1.03) translateY(-4px); }
.tier-name{ display:block; font-family: var(--font-display); font-weight:700; font-size:20px; letter-spacing:-.01em; color: var(--navy); }
.tier-card.featured .tier-name{ color:#fff; }
.tier-name small{ display:block; font-family: var(--font-body); font-weight:600; font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--gold-deep); margin-top:8px; }
.tier-card.featured .tier-name small{ color: var(--gold); }
.tier-price{ display:inline-block; font-family: var(--font-body); font-weight:700; font-size:15.5px; color: var(--teal-deep); background: var(--teal-tint); border-radius: var(--radius-pill); padding: 8px 16px; margin-top:14px; margin-bottom:26px; }
.tier-card.featured .tier-price{ color: var(--gold); background: rgba(214,163,57,.15); }
.tier-card h4{ font-family: var(--font-body); font-size:10.5px; font-weight:700; letter-spacing:.1em; text-transform: uppercase; color: var(--navy-soft); margin: 22px 0 12px; }
.tier-card.featured h4{ color:#9AA7AC; }
.tier-card h4:first-of-type{ margin-top:0; }
.tier-card ul li{ position:relative; padding: 9px 0 9px 20px; border-bottom: 1px solid var(--line-soft); font-size:13.5px; line-height:1.6; color: var(--navy-soft); }
.tier-card ul li::before{ content:""; position:absolute; left:0; top:16px; width:5px; height:5px; border-radius:50%; background: var(--teal-deep); }
.tier-card.featured ul li::before{ background: var(--gold); }
.tier-card ul li:last-child{ border-bottom:none; }
.tier-card.featured ul li{ border-bottom-color: rgba(255,255,255,.08); color:#C7D0D3; }
.tier-note{ margin-top:36px; font-size:13.5px; color: var(--navy-soft); max-width:80ch; line-height:1.75; }

@media (max-width: 960px){
  .tier-grid{ grid-template-columns: 1fr; gap: 18px; }
  .tier-card.featured{ order:-1; transform: none; }
  .tier-card.featured:hover{ transform: translateY(-4px); }
}

/* =========================================================
   IMPACT / OUTCOMES
   ========================================================= */
.impact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.impact-grid > div{ background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-xs); }
.impact-grid h3{ font-family: var(--font-body); font-size:12.5px; font-weight:700; letter-spacing:.06em; text-transform: uppercase; color: var(--navy-soft); margin-bottom:20px; }
.dash-list li{ position:relative; padding-left:20px; margin-bottom:13px; font-size:14.5px; color: var(--navy-soft); line-height:1.7; }
.dash-list li:last-child{ margin-bottom: 0; }
.dash-list li::before{ content:""; position:absolute; left:0; top:8px; width:6px; height:6px; border-radius:50%; background: var(--teal-deep); }
.stat-list{ display:flex; flex-direction:column; }
.stat-list li{ display:flex; align-items:baseline; gap:18px; padding: 14px 0; border-bottom:1px solid var(--line-soft); }
.stat-list li:first-child{ padding-top: 0; }
.stat-list li:last-child{ border-bottom:none; padding-bottom: 0; }
.stat-list strong{ font-family: var(--font-display); font-weight:700; font-size:30px; color: var(--teal-deep); min-width: 3.5ch; letter-spacing: -.02em; }
.stat-list span{ font-size:13px; color: var(--navy-soft); }
.impact-note{ margin-top:36px; font-size:13.5px; color: var(--navy-soft); }
@media (max-width: 860px){ .impact-grid{ grid-template-columns: 1fr; gap:18px; } }

/* =========================================================
   THE CAUSE
   ========================================================= */
.cause-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 24px; }
.cause-cell{ background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); padding: 26px; }
.cause-cell h4{ font-family: var(--font-display); font-weight:700; font-size:18px; color:#fff; letter-spacing:-.01em; }
.cause-cell p{ margin-top:8px; font-size:13.5px; color:#CFE1EE; }
.cause-note{ margin-top:32px; font-size:13.5px; color:#B9CEDF; max-width:78ch; line-height: 1.75; }
@media (max-width: 780px){
  .cause-grid{ grid-template-columns: 1fr; gap: 14px; }
}

/* =========================================================
   PARTNERS (chip grid)
   ========================================================= */
.partners-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:16px;
}
.partner-cell{
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  min-height: 96px; display:flex; align-items:center; justify-content:center;
  text-align:center; padding: 16px 14px; font-family: var(--font-body); font-weight:600;
  font-size: 14.5px; color: var(--navy-soft);
  transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.partner-cell:hover{ color: var(--teal-deep); background: var(--teal-tint); border-color: var(--teal-tint); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
@media (max-width: 720px){ .partners-grid{ grid-template-columns: repeat(2,1fr); } }

/* =========================================================
   COMMUNITY PHOTO
   ========================================================= */
.community-photo{ position:relative; overflow:hidden; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }
.community-photo img{ width:100%; max-height:560px; object-fit:cover; }
.community-cap{
  position:absolute; left:0; right:0; bottom:0; padding: 44px 26px 20px;
  background: linear-gradient(0deg, rgba(16,34,46,.86), rgba(16,34,46,0));
  color:#fff; font-size:13px; font-weight:500;
}
@media (max-width: 560px){ .community-photo img{ max-height:340px; } }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid{ display:grid; grid-template-columns: .85fr 1.15fr; gap: 32px; }
.contact-info{
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm); height: fit-content;
}
.contact-info dt{ font-family: var(--font-body); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color: var(--navy-soft); margin-top:22px; }
.contact-info dt:first-child{ margin-top:0; }
.contact-info dd{ margin:7px 0 0; font-size: 16px; font-weight:600; }
.contact-info a{ text-decoration:none; border-bottom: 1px solid var(--line); transition: border-color .2s ease, color .2s ease; }
.contact-info a:hover{ border-color: var(--teal-deep); color: var(--teal-deep); }

.contact-grid form{ background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row{ margin-bottom: 20px; }
.form-row label{ display:block; font-size:11.5px; font-weight:600; text-transform:uppercase; letter-spacing:.06em; color: var(--navy-soft); margin-bottom:9px; }
.form-row input, .form-row textarea{
  width:100%; border:1.5px solid var(--line); background: var(--paper-dim); padding: 14px 16px;
  font-size:15px; color: var(--navy); border-radius: var(--radius-sm);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-row textarea{ min-height: 130px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus{ border-color: var(--teal-deep); background: var(--white); box-shadow: 0 0 0 4px rgba(47,198,189,.14); outline:none; }
.hp-field{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.form-status{ margin-top:18px; padding: 13px 18px; font-size:14px; border-radius: var(--radius-sm); display:none; }
.form-status.ok{ display:block; background:#E8F3E8; color:#2A5B2A; }
.form-status.err{ display:block; background:#FBEAEA; color:#7A2323; }
@media (max-width: 820px){ .contact-grid{ grid-template-columns:1fr; gap:20px; } .contact-info, .contact-grid form{ padding: 28px; } }

/* =========================================================
   CONTACT STRIP
   ========================================================= */
.contact-strip{ background: var(--gold); padding: 22px 0; }
.contact-strip-inner{ display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap: 14px 40px; }
.contact-strip-item{
  display:inline-flex; align-items:center; gap:10px; color:#fff;
  font-size:14px; font-weight:600; text-decoration:none; letter-spacing:-.005em;
}
.contact-strip-item svg{ width:18px; height:18px; stroke:#fff; fill:none; flex-shrink:0; }
a.contact-strip-item:hover{ opacity:.85; }
@media (max-width: 640px){
  .contact-strip-inner{ flex-direction:column; gap:12px; text-align:center; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: var(--paper-dim); color: var(--navy-soft); padding: 64px 0 44px; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr .8fr .9fr; gap: 40px; }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-brand img{ height:36px; width:36px; border-radius:50%; object-fit:cover; }
.footer-brand span{ font-family: var(--font-display); font-weight: 700; font-size:19px; color: var(--navy); letter-spacing:-.01em; }
.footer-desc{ font-size:13.5px; line-height:1.8; color: var(--navy-soft); max-width: 42ch; }
.footer-desc a{ color: var(--teal-deep); text-decoration:underline; }
.footer-col h4{ font-family: var(--font-body); font-size:11px; font-weight:700; letter-spacing:.1em; text-transform: uppercase; color: var(--navy); margin-bottom:18px; }
.footer-col ul li{ margin-bottom:11px; }
.footer-col a{ color: var(--navy-soft); text-decoration:none; font-size:14px; transition: color .2s ease; }
.footer-col a:hover{ color: var(--teal-deep); }
.footer-bottom-bar{ background: var(--navy); }
.footer-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; padding: 18px 0; font-size:12.5px; color:#8C979D; }
@media (max-width: 780px){
  .site-footer{ padding: 48px 0 32px; }
  .footer-grid{ grid-template-columns:1fr; gap:32px; }
}
@media (max-width: 480px){ .footer-bottom{ flex-direction:column; gap:8px; text-align:center; } }

/* fade-in on scroll */
.reveal{ opacity:0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.whatsapp-float{
  position:fixed; right:22px; bottom:22px; width:58px; height:58px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:#25D366; color:#fff;
  box-shadow:0 12px 30px rgba(16,34,46,.24),0 0 0 4px rgba(255,255,255,.9);
  z-index:900; text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float svg{ width:29px; height:29px; fill:currentColor; }
.whatsapp-float:hover{ transform:translateY(-3px) scale(1.05); box-shadow:0 16px 36px rgba(16,34,46,.28),0 0 0 4px rgba(255,255,255,.95); }
.whatsapp-float:focus-visible{ outline:3px solid var(--teal-deep); outline-offset:4px; }
@media (max-width: 560px){
  .whatsapp-float{ right:14px; bottom:14px; width:50px; height:50px; }
  .whatsapp-float svg{ width:25px; height:25px; }
}

@media (max-width: 480px){
  .container{ padding: 0 18px; }
  .btn{ padding: 13px 20px; }
}
