@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #111; background: #fff; line-height: 1.6; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 56px;
  background: rgba(18,18,18,0.72); backdrop-filter: blur(10px);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.55rem;
  color: #fff; text-decoration: none; font-size: 0.88rem; letter-spacing: 0.01em;
}
.nav-logo-circle {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.85); flex-shrink: 0;
}
.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 0.88rem; transition: color 0.15s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; font-weight: 600; }

/* ── HOME HERO ── */
.hero {
  min-height: 100vh;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.25) 100%),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1920&auto=format&fit=crop');
  background-size: cover; background-position: center bottom;
  display: flex; align-items: flex-end;
  padding: 0 5vw 10vh;
}
.hero-content { max-width: 860px; }
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 400; color: #fff; line-height: 1.12; margin-bottom: 1.6rem;
}
.hero p {
  color: rgba(255,255,255,0.9); font-size: 0.97rem;
  max-width: 520px; margin-bottom: 2rem; line-height: 1.7;
}
.hero-scroll {
  display: flex; justify-content: center; margin-top: 2rem;
  color: rgba(255,255,255,0.6); font-size: 1.4rem;
}

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  min-height: 48vh;
  background-image: linear-gradient(to bottom, rgba(240,210,200,0.3) 0%, rgba(200,170,160,0.4) 100%),
    url('https://images.unsplash.com/photo-1505118380757-91f5f5632de0?q=80&w=1920&auto=format&fit=crop');
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  padding: 0 5vw 7vh;
}
.page-hero-content {}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400; color: #1a1a1a; margin-bottom: 1rem;
}
.page-hero p { color: #333; font-size: 0.97rem; max-width: 500px; line-height: 1.65; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; border: 1.5px solid currentColor;
  padding: 0.62rem 1.4rem; font-size: 0.88rem;
  text-decoration: none; cursor: pointer; background: transparent;
  font-family: inherit; transition: background 0.18s, color 0.18s;
}
.btn-white { color: #fff; border-color: rgba(255,255,255,0.85); }
.btn-white:hover { background: #fff; color: #111; }
.btn-black { color: #111; border-color: #111; }
.btn-black:hover { background: #111; color: #fff; }

/* ── STATS SECTION ── */
.stats-section { background: #f8f8f7; padding: 5rem 5vw 5rem; }
.stats-header { text-align: right; font-size: 0.72rem; letter-spacing: 0.1em; color: #999; margin-bottom: 4rem; }
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem 5rem; max-width: 820px;
  margin: 0 auto 0 auto; padding-left: 5vw;
}
.stat-num { font-size: 0.72rem; color: #bbb; margin-bottom: 0.6rem; letter-spacing: 0.05em; }
.stat-item h3 { font-size: 1.45rem; font-weight: 700; margin-bottom: 0.65rem; }
.stat-item p { font-size: 0.88rem; color: #555; line-height: 1.7; }

/* ── FAQ / HELP SECTION ── */
.faq-section { padding: 5.5rem 5vw; }
.faq-wrapper {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.faq-intro h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.15; }
.faq-intro p { font-size: 0.9rem; color: #555; line-height: 1.7; }

.faq-list { border-top: 1px solid #ddd; }
details { border-bottom: 1px solid #ddd; }
details summary {
  padding: 1.15rem 0; font-size: 1rem; font-weight: 600;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '⌄'; font-size: 1.1rem; color: #666;
  transition: transform 0.2s; flex-shrink: 0; margin-left: 1rem;
}
details[open] summary::after { transform: rotate(180deg); }
details .faq-answer { padding: 0.25rem 0 1.2rem; font-size: 0.9rem; color: #444; line-height: 1.7; }
details a { color: #111; }

/* ── MISSION SECTION ── */
.mission-section {
  padding: 5rem 5vw;
  border-top: 1px solid #e8e8e8;
}
.mission-section h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800; margin-bottom: 1.2rem; line-height: 1.2;
}
.mission-section p { font-size: 0.93rem; color: #444; max-width: 480px; line-height: 1.75; margin-bottom: 2rem; }

/* ── DROPOFF SECTION ── */
.dropoff-section { padding: 5rem 5vw; }
.dropoff-section h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800; margin-bottom: 1.2rem; line-height: 1.2;
}
.dropoff-section p { font-size: 0.93rem; color: #444; max-width: 480px; line-height: 1.75; margin-bottom: 2rem; }

/* ── CTA BANNER ── */
.cta-banner {
  text-align: center; padding: 5rem 2rem;
  border-top: 1px solid #e8e8e8;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800; max-width: 680px; margin: 0 auto; line-height: 1.25;
}

/* ── CONTENT SECTION (labelled two-col) ── */
.content-section { padding: 5rem 5vw; }
.content-section + .content-section { padding-top: 0; }
.content-inner {
  display: grid; grid-template-columns: 180px 1fr;
  gap: 4rem; align-items: start;
  border-top: 1px solid #e8e8e8; padding-top: 3rem;
}
.section-label {
  font-size: 0.7rem; letter-spacing: 0.12em;
  font-weight: 600; color: #888; padding-top: 0.4rem; text-transform: uppercase;
}
.content-body h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 1.4rem; }
.content-body p { font-size: 0.93rem; color: #333; margin-bottom: 0.7rem; line-height: 1.72; }

/* ── TEAM ── */
.team-card {
  text-align: left; margin-top: 2rem;
}
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: #ddd; margin: 0 auto 0.75rem;
  overflow: hidden; display: flex; align-items: left; justify-content: center;
  font-size: 1.5rem; color: #999;
}
.team-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.team-card p { font-size: 0.85rem; color: #666; }

/* ── QUOTE SECTION ── */
.quote-section {
  background: #f2f1ef; padding: 6rem 5vw;
  position: relative; overflow: hidden;
}
.quote-section blockquote {
  max-width: 640px;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 700; line-height: 1.35; color: #111; margin-bottom: 1.25rem;
}
.quote-section cite {
  font-style: normal; font-size: 0.9rem;
  color: #666; display: block; margin-bottom: 2.5rem;
}
.quote-bg-icon {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  width: 220px; height: 220px; border-radius: 50%;
  border: 1.5px solid #ddd; opacity: 0.5;
}

/* ── CONTACT PAGE ── */
.contact-section { padding: 5rem 5vw; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info-block { margin-bottom: 3rem; }
.contact-info-block .clabel {
  font-size: 0.7rem; letter-spacing: 0.12em; font-weight: 600;
  color: #888; text-transform: uppercase; margin-bottom: 1.2rem;
}
.contact-info-block h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 1rem; }
.contact-info-block p { font-size: 0.93rem; color: #333; line-height: 1.7; }
.contact-info-block a { color: #111; }
.map-wrapper {
  width: 100%; height: 300px; background: #eee;
  border: none; border-radius: 2px; overflow: hidden;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }
.visit-block { margin-top: 1.5rem; }
.visit-block .clabel { font-size: 0.7rem; letter-spacing: 0.12em; font-weight: 600; color: #888; text-transform: uppercase; margin-bottom: 0.75rem; }
.visit-block p { font-size: 0.93rem; color: #333; line-height: 1.7; }
.visit-block strong { font-weight: 700; }

/* ── FOOTER ── */
footer { background: #111; color: #fff; padding: 4rem 5vw 2.5rem; }
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 3rem;
}
.footer-brand {}
.footer-logo {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.9rem;
}
.footer-logo-circle {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.88); flex-shrink: 0;
}
.footer-logo span { font-size: 1.05rem; font-weight: 500; }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.5); }
.footer-nav-col {}
.footer-nav-col h4 {
  font-size: 0.7rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.4);
  margin-bottom: 1rem; text-transform: uppercase;
}
.footer-nav-col ul { list-style: none; }
.footer-nav-col li { margin-bottom: 0.5rem; }
.footer-nav-col a { color: #fff; text-decoration: none; font-size: 0.88rem; }
.footer-nav-col a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem; font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  nav { padding: 0 1.25rem; }
  .nav-links { gap: 1.25rem; }
  .stats-grid { grid-template-columns: 1fr; padding-left: 0; }
  .faq-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .content-inner { grid-template-columns: 1fr; gap: 0.75rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .quote-bg-icon { display: none; }
}
