:root {
  --bg: #0e0e0f;
  --bg-alt: #151516;
  --panel: #1a1a1b;
  --cream: #f7f5f1;
  --cream-panel: #ffffff;
  --ink: #17171a;
  --muted: #a3a3a8;
  --muted-dark: #5c5c63;
  --orange-1: #ffab5c;
  --orange-2: #ff8a3d;
  --orange-3: #ff5f3d;
  --brown-blob: #3a2015;
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1180px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-2);
  background: rgba(255, 138, 61, 0.12);
  border: 1px solid rgba(255, 138, 61, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(120deg, var(--orange-1), var(--orange-3));
  color: #1a0d05;
  box-shadow: 0 12px 30px rgba(255, 95, 61, 0.35);
}
.btn-primary:hover { box-shadow: 0 16px 36px rgba(255, 95, 61, 0.5); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

.btn-light {
  background: var(--cream-panel);
  color: var(--ink);
}

/* ---------- NAV ---------- */
header.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(14, 14, 15, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 1;
}

.brand-logo {
  height: clamp(35px, 3.4vw, 60px);
  width: auto;
  max-width: 100%;
  flex-shrink: 1;
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  flex-shrink: 0;
}
.nav-links a:hover { color: var(--cream); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.icon-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.2s ease, transform 0.2s ease;
}
.icon-link:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }
.icon-link svg { width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 168px 0 120px;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.55;
  z-index: 0;
}
.blob-1 {
  width: 620px; height: 620px;
  background: radial-gradient(circle at 30% 30%, #4a2415, transparent 70%);
  top: -220px; right: -180px;
}
.blob-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle at 60% 40%, #35190f, transparent 70%);
  bottom: -160px; right: 220px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-logo {
  width: clamp(260px, 30vw, 420px);
  height: auto;
  margin-bottom: 22px;
}

.hero-italic {
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  color: #f0ded0;
  margin-bottom: 18px;
  display: block;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 38px;
  line-height: 1.65;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  font-size: 22px;
  font-weight: 700;
  display: block;
}
.hero-stats div span {
  font-size: 13px;
  color: var(--muted);
}

/* phone mock */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone {
  width: 300px;
  height: 620px;
  border-radius: 44px;
  background: #08080a;
  border: 8px solid #08080a;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 22px;
  background: #08080a;
  border-radius: 14px;
  z-index: 5;
}

.phone-screen {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(160deg, var(--orange-1), var(--orange-3));
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-logo {
  width: 62%;
  max-width: 190px;
  height: auto;
}

.float-card {
  position: absolute;
  background: rgba(20, 20, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 5s ease-in-out infinite;
}
.float-card svg { width: 18px; height: 18px; color: var(--orange-2); flex-shrink: 0; }
.float-1 { top: 60px; left: -30px; animation-delay: 0s; }
.float-2 { bottom: 100px; right: -36px; animation-delay: 1.4s; }
.float-3 { bottom: 20px; left: -10px; animation-delay: 2.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- SECTION generic ---------- */
section { position: relative; padding: 110px 0; }
.section-head { max-width: 640px; margin-bottom: 60px; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 16.5px; line-height: 1.6; }

.light-section {
  background: var(--cream);
  color: var(--ink);
}
.light-section .section-head p { color: var(--muted-dark); }

/* ---------- WHAT IS ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.pillar {
  background: var(--cream-panel);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: 0 10px 30px rgba(20, 20, 20, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(20,20,20,0.1); }
.pillar-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-1), var(--orange-3));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.pillar-icon svg { width: 26px; height: 26px; color: #fff; }
.pillar h3 { font-size: 20px; margin-bottom: 12px; }
.pillar p { color: var(--muted-dark); font-size: 15px; line-height: 1.65; }

/* ---------- EXPERIENCE ---------- */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.exp-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.35s ease;
}
.exp-card:hover { transform: translateY(-8px); }

.exp-visual {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.exp-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.exp-card:hover .exp-visual img { transform: scale(1.06); }

.exp-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 5%, rgba(10,10,10,0.1) 55%, transparent 75%);
}

.exp-chip {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.exp-chip span {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
}
.exp-chip span.active { background: var(--orange-2); border-color: transparent; color: #1a0d05; }

.exp-pin {
  position: absolute;
  z-index: 2;
  bottom: 90px;
  right: 20px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.exp-pin svg { width: 14px; height: 14px; color: var(--orange-2); }

.exp-stats {
  position: absolute;
  bottom: 14px; left: 16px; right: 16px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.exp-stats .likes { display: flex; gap: 14px; font-size: 12px; color: #eee; }
.exp-stats .likes span { display: flex; align-items: center; gap: 4px; }
.exp-stats svg { width: 14px; height: 14px; }
.exp-loc { font-size: 12px; color: #f3d9c4; display: flex; align-items: center; gap: 4px; }

.exp-body { padding: 24px 26px 30px; }
.exp-body .exp-eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.exp-body .exp-eyebrow .dot {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-1), var(--orange-3));
  display: flex; align-items: center; justify-content: center;
}
.exp-body .exp-eyebrow .dot svg { width: 15px; height: 15px; color: #fff; }
.exp-body h3 { font-size: 18px; margin-bottom: 8px; }
.exp-body p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* profile grid mini */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  height: 100%;
}
.mini-grid img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- MISSION ---------- */
.mission {
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
}
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.mission-globe {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: rgba(255, 138, 61, 0.14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
}
.mission-globe svg { width: 30px; height: 30px; color: var(--orange-2); }
.mission h2 { font-size: clamp(30px, 3.6vw, 42px); font-weight: 800; margin-bottom: 24px; }
.mission-text {
  font-style: italic;
  font-size: 18px;
  line-height: 1.75;
  color: #d9d3ca;
  margin-bottom: 36px;
  max-width: 520px;
}
.bubble-list { display: flex; flex-direction: column; gap: 14px; }
.bubble {
  border: 1px solid rgba(255, 138, 61, 0.35);
  background: rgba(255, 138, 61, 0.06);
  padding: 16px 22px;
  border-radius: 999px;
  font-size: 15px;
  color: #f2e5d8;
  max-width: 460px;
}

.map-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.map-frame img { width: 100%; height: 620px; object-fit: cover; }

.map-topbar {
  position: absolute;
  top: 20px; left: 24px; right: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.map-title {
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.map-search-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  z-index: 3;
}
.map-search-btn svg { width: 16px; height: 16px; }

.map-pin-card {
  position: absolute;
  top: 66px; left: 30px;
  width: 130px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.5);
  border: 2px solid rgba(255,255,255,0.85);
  z-index: 2;
}
.map-pin-card.small { width: 96px; top: 16px; left: 16px; }
.map-pin-card img { height: 90px; }
.map-pin-card.small img { height: 64px; }
.map-pin-label {
  background: #fff;
  color: #111;
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 6px;
  text-align: center;
}
.map-pin-card.small .map-pin-label { font-size: 9px; padding: 4px; }

.meet-up-btn {
  position: absolute;
  left: 24px; right: 24px;
  bottom: 92px;
  z-index: 3;
  background: linear-gradient(120deg, var(--orange-1), var(--orange-3));
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  padding: 15px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(255, 95, 61, 0.4);
}
.meet-up-btn span { margin-left: 4px; }
.meet-up-btn.small {
  bottom: 16px; left: 16px; right: 16px;
  padding: 10px;
  font-size: 12.5px;
}

.map-navbar {
  position: absolute;
  bottom: 20px; left: 24px; right: 24px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.map-navbar span {
  flex: 1;
  height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--orange-3);
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  color: #fff;
}
.map-navbar span svg { width: 18px; height: 18px; }
.map-navbar span.active {
  background: linear-gradient(135deg, var(--orange-2), var(--orange-3));
  border-color: transparent;
}

.exp-visual-map .map-search-btn { position: absolute; top: 16px; right: 16px; z-index: 3; }
.exp-visual-map::after { display: none; }

/* ---------- WHO ITS FOR ---------- */
.who-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
}
.audience-card {
  background: #e7efec;
  border-radius: var(--radius);
  padding: 40px;
}
.audience-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.audience-icon svg { width: 26px; height: 26px; color: var(--orange-3); }
.audience-card h3 { font-size: 22px; margin-bottom: 18px; color: #1c3b34; }
.audience-card ul { padding-left: 20px; margin: 0 0 26px; color: #33463f; font-size: 15px; line-height: 1.8; }
.audience-quote {
  font-style: italic;
  color: #33463f;
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid rgba(28,59,52,0.15);
  padding-top: 20px;
}

.identity-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.identity-tags span {
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.identity-tags span:nth-child(odd) { background: #2a2a2c; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 190px;
}
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease;}
.category-card:hover img { transform: scale(1.08); }
.category-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 60%);
}
.category-card span {
  position: absolute; bottom: 14px; left: 16px; z-index: 2;
  font-weight: 700; color: #fff; font-size: 15px;
}

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent 55%);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-caption {
  position: absolute; bottom: 12px; left: 14px; right: 10px; z-index: 2;
  font-size: 12.5px; font-weight: 600;
  display: flex; align-items: center; gap: 5px;
  opacity: 0;
  transform: translateY(6px);
  transition: all .3s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-caption svg { width: 13px; height: 13px; color: var(--orange-2); flex-shrink: 0; }

/* ---------- BRAND VOICE ---------- */
.voice-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}
.voice-card {
  border-radius: var(--radius);
  padding: 34px;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  display: flex;
  align-items: center;
}
.voice-card.primary {
  grid-row: span 2;
  background: linear-gradient(135deg, var(--orange-1), var(--orange-3));
  color: #200f04;
  font-size: 28px;
}
.voice-card.alt {
  background: var(--cream-panel);
  color: var(--ink);
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  overflow: hidden;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 50px;
  align-items: center;
}
.cta h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; margin-bottom: 14px; }
.cta .accent { color: var(--orange-2); font-style: italic; font-weight: 600; font-size: clamp(18px,2vw,24px); display:block; margin-bottom: 18px; }
.cta p.desc { color: var(--muted); font-size: 16px; margin-bottom: 34px; max-width: 420px; }
.store-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cream-panel);
  color: var(--ink);
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 600;
  opacity: 0.55;
  cursor: default;
}
.store-badge small { display: block; font-weight: 500; font-size: 11px; color: #777; }
.store-badge strong { font-size: 15px; }
.store-badge svg { width: 26px; height: 26px; }

.cta-phone-wrap { display: flex; justify-content: center; }

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 50px 0 34px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand { display: flex; align-items: center; }
.footer-brand .brand-logo { height: 22px; }
.footer-tagline { color: var(--muted); font-size: 13.5px; margin-top: 6px; }
.footer-links { display: flex; gap: 26px; font-size: 14px; color: var(--muted); }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12.5px;
  color: #6b6b70;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .phone-stage { margin-top: 40px; }
  .pillars { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .mission-inner { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .voice-grid { grid-template-columns: 1fr; }
  .voice-card.primary { grid-row: span 1; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-phone-wrap { order: -1; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .hero { padding: 140px 0 80px; }
  section { padding: 80px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .category-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .float-card { display: none; }
  .phone { width: 260px; height: 540px; }
  .nav-inner { padding: 12px 20px; }
  .nav-actions .btn-primary { display: none; }
}

@media (max-width: 400px) {
  .nav-actions a.icon-link:nth-of-type(2) { display: none; }
}
