
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --p: #ee2b6c;
  --p-dim: rgba(238,43,108,.12);
  --p-glow: rgba(238,43,108,.28);
  --bg: #f7f5f5;
  --dark: #0e0e0e;
  --muted: #7a7a8a;
  --border: rgba(0,0,0,.07);
  --font: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
@media(min-width:768px){ .container { padding: 0 40px; } }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(247,245,245,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 20px;
  max-width: 1160px; margin: 0 auto;
}
@media(min-width:768px){ .nav { height: 72px; padding: 0 40px; } }

.logo { display:flex; align-items:center; gap:6px; text-decoration:none; }
.logo-icon { font-size:30px; color:var(--p); }
.logo-text { font-size:22px; font-weight:900; color:var(--dark); letter-spacing:-1px; }

.nav-links { display:none; gap:32px; align-items:center; }
@media(min-width:768px){ .nav-links { display:flex; } }
.nav-links a { font-size:13px; font-weight:600; color:var(--dark); text-decoration:none; transition:color .2s; }
.nav-links a:hover { color:var(--p); }
.nav-links a.active { color:var(--p); }

.btn-pill {
  background:var(--p); color:#fff; border:none; border-radius:999px;
  padding:10px 22px; font-family:var(--font); font-weight:700; font-size:13px;
  cursor:pointer; white-space:nowrap;
  box-shadow: 0 4px 18px var(--p-glow);
  transition: transform .15s, box-shadow .15s;
  text-decoration:none; display:inline-block;
}
.btn-pill:hover { transform:translateY(-1px); box-shadow:0 8px 28px var(--p-glow); }

.ham { display:flex; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.ham span { display:block; width:22px; height:2.5px; background:var(--dark); border-radius:3px; }
@media(min-width:768px){ .ham { display:none; } }

.mob-menu {
  position:fixed; inset:0; background:rgba(247,245,245,.97);
  backdrop-filter:blur(16px); z-index:300;
  display:none; flex-direction:column; align-items:center; justify-content:center; gap:28px;
}
.mob-menu.open { display:flex; }
.mob-close { position:absolute; top:22px; right:22px; background:none; border:none; font-size:28px; cursor:pointer; color:var(--dark); line-height:1; }
.mob-menu a { font-size:30px; font-weight:800; color:var(--dark); text-decoration:none; transition:color .2s; }
.mob-menu a:hover { color:var(--p); }
.mob-menu .btn-pill { font-size:17px; padding:14px 36px; margin-top:8px; }

/* ── PAGE HERO ── */
.page-hero {
  overflow: hidden;
  background: linear-gradient(160deg, #fff 0%, var(--bg) 60%);
  position: relative;
  padding: clamp(56px,10vw,112px) 20px clamp(48px,8vw,96px);
  text-align: center;
}
.page-hero::before {
  content:''; position:absolute;
  top:-200px; right:-200px;
  width:700px; height:700px;
  background:radial-gradient(circle, rgba(238,43,108,.09) 0%, transparent 65%);
  border-radius:50%; pointer-events:none;
}
.page-hero::after {
  content:''; position:absolute;
  bottom:-150px; left:-150px;
  width:500px; height:500px;
  background:radial-gradient(circle, rgba(238,43,108,.06) 0%, transparent 65%);
  border-radius:50%; pointer-events:none;
}

.page-hero-inner { position:relative; z-index:1; max-width:760px; margin:0 auto; }

.ph-eyebrow {
  display:inline-flex; align-items:center; gap:6px;
  background:var(--p-dim); color:var(--p);
  padding:6px 14px; border-radius:999px;
  font-size:11px; font-weight:700; letter-spacing:.07em; text-transform:uppercase;
  margin-bottom:24px;
}
.ph-eyebrow .material-symbols-outlined { font-size:13px; }

.page-hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight:900; line-height:1.06; letter-spacing:-2px;
  margin-bottom:20px;
}
.page-hero h1 .accent { color:var(--p); font-style:italic; }

.page-hero p {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* ── MISSION ── */
.section-mission {
  padding: clamp(64px,8vw,112px) 20px;
  background: #fff;
}
@media(min-width:768px){ .section-mission { padding-left:40px; padding-right:40px; } }

.mission-grid {
  max-width:1160px; margin:0 auto;
  display:grid; grid-template-columns:1fr;
  gap:clamp(40px,6vw,80px);
  align-items:center;
}
@media(min-width:768px){ .mission-grid { grid-template-columns:1fr 1fr; } }

.mission-text { display:flex; flex-direction:column; gap:20px; }

.sec-eyebrow { color:var(--p); font-weight:700; font-size:11px; letter-spacing:.12em; text-transform:uppercase; display:block; margin-bottom:4px; }

.mission-title {
  font-size: clamp(28px,4.5vw,52px);
  font-weight:900; letter-spacing:-1.5px; line-height:1.1;
}
.mission-body {
  font-size: clamp(14px,1.6vw,17px);
  color:var(--muted); line-height:1.8;
}
.mission-body strong { color:var(--dark); font-weight:700; }

.mission-visual {
  display:grid; grid-template-columns:1fr 1fr;
  gap:16px;
}

.mv-card {
  background:var(--bg); border-radius:20px; padding:24px 20px;
  border:1.5px solid var(--border);
  display:flex; flex-direction:column; gap:10px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.mv-card:hover { border-color:rgba(238,43,108,.25); transform:translateY(-4px); box-shadow:0 20px 50px rgba(0,0,0,.07); }
.mv-card:first-child { grid-column:1/-1; }

.mv-icon {
  width:44px; height:44px; border-radius:12px;
  background:var(--p-dim); color:var(--p);
  display:flex; align-items:center; justify-content:center;
}
.mv-icon .material-symbols-outlined { font-size:22px; }
.mv-card h4 { font-size:15px; font-weight:800; }
.mv-card p { font-size:12px; color:var(--muted); line-height:1.6; }

/* ── VALUES ── */
.section-values {
  padding: clamp(64px,8vw,112px) 20px;
}
@media(min-width:768px){ .section-values { padding-left:40px; padding-right:40px; } }

.section-head {
  max-width:1160px; margin:0 auto 52px;
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:12px;
}
.section-head h2 { font-size:clamp(26px,4vw,50px); font-weight:900; letter-spacing:-1.5px; line-height:1.1; }
.section-head p { font-size:clamp(14px,1.5vw,17px); color:var(--muted); line-height:1.7; max-width:520px; }

.values-grid {
  max-width:1160px; margin:0 auto;
  display:grid; grid-template-columns:1fr;
  gap:16px;
}
@media(min-width:480px){ .values-grid { grid-template-columns:1fr 1fr; } }
@media(min-width:768px){ .values-grid { grid-template-columns:repeat(3,1fr); } }

.val-card {
  background:#fff; border-radius:24px; padding:28px 24px;
  border:1.5px solid var(--border);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.val-card:hover { border-color:rgba(238,43,108,.3); transform:translateY(-5px); box-shadow:0 24px 60px rgba(0,0,0,.08); }

.val-icon {
  width:52px; height:52px; border-radius:15px;
  background:var(--p-dim); color:var(--p);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
  transition: background .3s, color .3s;
}
.val-card:hover .val-icon { background:var(--p); color:#fff; }
.val-icon .material-symbols-outlined { font-size:24px; }
.val-card h3 { font-size:16px; font-weight:800; margin-bottom:8px; }
.val-card p { font-size:13px; color:var(--muted); line-height:1.65; }

/* ── TEAM ── */
.section-team {
  padding: clamp(64px,8vw,112px) 20px;
  background:#fff;
}
@media(min-width:768px){ .section-team { padding-left:40px; padding-right:40px; } }

.team-grid {
  max-width:1160px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr;
  gap:16px;
}
@media(min-width:768px){ .team-grid { grid-template-columns:repeat(4,1fr); gap:24px; } }

.team-card {
  background:var(--bg); border-radius:24px; padding:24px 20px;
  border:1.5px solid var(--border); text-align:center;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.team-card:hover { border-color:rgba(238,43,108,.25); transform:translateY(-4px); box-shadow:0 20px 50px rgba(0,0,0,.07); }

.team-avatar {
  width: clamp(60px,12vw,80px);
  height: clamp(60px,12vw,80px);
  border-radius:50%; margin:0 auto 14px;
  display:flex; align-items:center; justify-content:center;
  font-size:clamp(22px,5vw,30px); font-weight:900; color:#fff;
  font-style:italic;
}
.team-card h4 { font-size:clamp(13px,1.8vw,15px); font-weight:800; margin-bottom:4px; }
.team-card .role { font-size:11px; color:var(--p); font-weight:700; letter-spacing:.05em; text-transform:uppercase; margin-bottom:10px; display:block; }
.team-card p { font-size:12px; color:var(--muted); line-height:1.6; }

/* ── STORY TIMELINE ── */
.section-story {
  padding: clamp(64px,8vw,112px) 20px;
}
@media(min-width:768px){ .section-story { padding-left:40px; padding-right:40px; } }

.timeline {
  max-width:720px; margin:0 auto;
  display:flex; flex-direction:column; gap:0;
}
.tl-item {
  display:grid; grid-template-columns:80px 1fr;
  gap:0 24px; position:relative;
}
@media(min-width:480px){ .tl-item { grid-template-columns:100px 1fr; } }

.tl-item:not(:last-child)::after {
  content:''; position:absolute;
  left:39px; top:44px; bottom:-8px;
  width:2px; background:var(--border);
}
@media(min-width:480px){ .tl-item:not(:last-child)::after { left:49px; } }

.tl-year {
  font-size:clamp(11px,2vw,13px); font-weight:800; color:var(--p);
  padding-top:14px; text-align:right; line-height:1; letter-spacing:.03em;
}

.tl-body {
  padding: 0 0 40px 24px;
  border-left: 2px solid var(--border);
  position: relative;
}
.tl-body::before {
  content:''; position:absolute;
  left:-7px; top:14px;
  width:12px; height:12px; border-radius:50%;
  background:var(--p); border:2px solid #fff;
  box-shadow:0 0 0 3px var(--p-dim);
}
.tl-body h4 { font-size:clamp(15px,2vw,18px); font-weight:800; margin-bottom:6px; padding-top:10px; }
.tl-body p { font-size:clamp(13px,1.5vw,15px); color:var(--muted); line-height:1.7; }

/* ── CTA ── */
.section-cta { padding:48px 20px 72px; }
@media(min-width:768px){ .section-cta { padding:80px 40px; } }

.cta-inner {
  background:var(--p); border-radius:clamp(24px,6vw,48px);
  padding:clamp(44px,8vw,96px) clamp(24px,5vw,80px);
  text-align:center; color:#fff; position:relative; overflow:hidden;
  max-width:1160px; margin:0 auto;
}
.cta-blob1,.cta-blob2 { position:absolute; border-radius:50%; background:rgba(255,255,255,.12); filter:blur(60px); pointer-events:none; }
.cta-blob1 { width:320px; height:320px; top:-100px; right:-100px; }
.cta-blob2 { width:320px; height:320px; bottom:-100px; left:-100px; }
.cta-inner h3 { position:relative; font-size:clamp(26px,5vw,58px); font-weight:900; letter-spacing:-1.5px; line-height:1.08; max-width:680px; margin:0 auto 18px; }
.cta-inner p { position:relative; color:rgba(255,255,255,.8); font-size:clamp(14px,1.8vw,18px); max-width:460px; margin:0 auto 36px; line-height:1.7; }

.cta-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.cta-btn-white {
  position:relative; background:#fff; color:var(--p);
  border:none; border-radius:14px;
  padding:clamp(12px,2vw,16px) clamp(24px,3.5vw,40px);
  font-family:var(--font); font-weight:900;
  font-size:clamp(14px,1.8vw,17px);
  cursor:pointer;
  box-shadow:0 8px 32px rgba(0,0,0,.18);
  transition:transform .15s, box-shadow .15s;
  text-decoration:none; display:inline-block;
}
.cta-btn-white:hover { transform:translateY(-2px); box-shadow:0 16px 40px rgba(0,0,0,.22); }
.cta-btn-outline {
  position:relative; background:transparent; color:#fff;
  border:2px solid rgba(255,255,255,.45); border-radius:14px;
  padding:clamp(12px,2vw,16px) clamp(24px,3.5vw,40px);
  font-family:var(--font); font-weight:700;
  font-size:clamp(14px,1.8vw,17px);
  cursor:pointer;
  transition:background .2s, border-color .2s;
  text-decoration:none; display:inline-block;
}
.cta-btn-outline:hover { background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.7); }

/* ── FOOTER ── */
footer { background:#f0eeee; border-top:1px solid var(--border); padding:clamp(48px,7vw,80px) 20px clamp(24px,3vw,40px); }
@media(min-width:768px){ footer { padding-left:40px; padding-right:40px; } }
.footer-inner { max-width:1160px; margin:0 auto; }
.footer-grid { display:grid; grid-template-columns:1fr 1fr; gap:32px 24px; margin-bottom:40px; }
@media(min-width:768px){ .footer-grid { grid-template-columns:2fr 1fr 1fr; } }
.footer-brand { grid-column:1/-1; }
@media(min-width:768px){ .footer-brand { grid-column:auto; } }
.footer-logo { display:flex; align-items:center; gap:6px; text-decoration:none; margin-bottom:12px; }
.footer-logo .material-symbols-outlined { font-size:26px; color:var(--p); }
.footer-logo-text { font-size:19px; font-weight:900; color:var(--dark); }
.footer-brand p { color:var(--muted); font-size:13px; line-height:1.65; max-width:260px; }
.footer-col h6 { font-weight:700; font-size:11px; letter-spacing:.1em; text-transform:uppercase; margin-bottom:16px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul a { text-decoration:none; color:var(--muted); font-size:13px; transition:color .2s; }
.footer-col ul a:hover { color:var(--p); }
.footer-bottom { border-top:1px solid var(--border); padding-top:24px; display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:14px; color:var(--muted); font-size:12px; }
.socials { display:flex; gap:16px; }
.socials a { color:var(--muted); transition:color .2s; }
.socials a:hover { color:var(--p); }
.socials .material-symbols-outlined { font-size:21px; }

/* ── MOBILE BOTTOM NAV ── */
.bottom-nav {
  position:fixed; bottom:0; left:0; right:0; z-index:150;
  background:rgba(255,255,255,.92); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-top:1px solid var(--border);
  display:flex; justify-content:space-around; align-items:center;
  height:64px; padding-bottom:env(safe-area-inset-bottom);
}
@media(min-width:768px){ .bottom-nav { display:none; } }
@media(max-width:767px){ body { padding-bottom:72px; } }
.bnav-item { display:flex; flex-direction:column; align-items:center; gap:2px; text-decoration:none; color:var(--muted); font-size:10px; font-weight:600; padding:8px 16px; border-radius:12px; transition:color .2s; }
.bnav-item .material-symbols-outlined { font-size:22px; font-variation-settings:'FILL' 0; }
.bnav-item.active { color:var(--p); }
.bnav-item.active .material-symbols-outlined { font-variation-settings:'FILL' 1; }