:root,
[data-theme="light"] {
  --yellow: #FFD400;
  --yellow-dark: #E6BF00;
  --yellow-light: #FFF8CC;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --gray-50: #F8F8F6;
  --gray-100: #F0EFE8;
  --gray-200: #D8D6CC;
  --gray-400: #9C9A8E;
  --gray-600: #5A5850;
  --gray-800: #2C2B26;
  --bg-body: #FFFFFF;
  --bg-surface: #F8F8F6;
  --bg-surface-alt: #F0EFE8;
  --bg-card: #FFFFFF;
  --text-primary: #0A0A0A;
  --text-secondary: #5A5850;
  --text-muted: #9C9A8E;
  --border-color: #D8D6CC;
  --nav-scrolled-bg: rgba(255, 255, 255, 0.96);
  --font-display: 'ITC Avant Garde Gothic Std', 'ITC Avant Garde Gothic Pro', 'Avant Garde', 'Century Gothic', sans-serif;
  --font-body: 'ITC Avant Garde Gothic Std', 'ITC Avant Garde Gothic Pro', 'Avant Garde', 'Century Gothic', sans-serif;
  --nav-h: 72px;
  --section-pad: clamp(60px, 8vw, 120px);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-theme="dark"] {
  --bg-body: #0A0A0A;
  --bg-surface: #111111;
  --bg-surface-alt: #1A1A1A;
  --bg-card: #141414;
  --text-primary: #F5F5F0;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.45);
  --border-color: #2C2B26;
  --gray-50: #111111;
  --gray-100: #1A1A1A;
  --gray-200: #333330;
  --gray-600: rgba(255, 255, 255, 0.65);
  --gray-400: rgba(255, 255, 255, 0.45);
  --nav-scrolled-bg: rgba(10, 10, 10, 0.96);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
}

/* ──────────────────── INTRO VIDEO ──────────────────── */
.intro-video {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.intro-video__wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.intro-video__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.intro-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.85) 85%);
}

.intro-video__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 0 24px;
}

.intro-video__title {
  color: white;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 900;
}

.intro-video__subtitle {
  color: rgba(255,255,255,0.8);
  max-width: 740px;
  margin: 0 auto 28px;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.7;
}

/* ──────────────────── TYPOGRAPHY ──────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.text-xl { font-size: clamp(18px, 2vw, 24px); line-height: 1.55; font-weight: 300; }
.text-lg { font-size: clamp(16px, 1.5vw, 20px); line-height: 1.6; }
.text-base { font-size: 16px; line-height: 1.7; }
.text-sm { font-size: 14px; line-height: 1.6; }
.text-xs { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.italic { font-style: italic; }
.font-light { font-weight: 300; }
.muted { color: var(--text-secondary); }

/* ──────────────────── LAYOUT ──────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }
.section { padding: var(--section-pad) 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.story-section .grid-2 { align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ──────────────────── BUTTONS ──────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 100px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  cursor: pointer; border: none; text-decoration: none;
  transition: all 0.25s var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,212,0,0.35); }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: var(--white); color: var(--black); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ──────────────────── TAGS ──────────────────── */
.tag {
  display: inline-block; padding: 6px 16px;
  border-radius: 100px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.tag-yellow { background: var(--yellow); color: var(--black); }
.tag-black { background: var(--black); color: var(--white); }
.tag-outline { border: 1px solid var(--gray-200); color: var(--gray-600); }

/* ──────────────────── NAVIGATION ──────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s, box-shadow 0.4s;
}
#nav.scrolled {
  background: var(--nav-scrolled-bg);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
#nav.dark-mode {
  background: rgba(0, 0, 0, 0.55);
  color: white;
}
#nav.dark-mode .nav-logo { color: white; }
#nav.dark-mode .nav-link { color: rgba(255,255,255,0.9); }
#nav.dark-mode .nav-link:hover,
#nav.dark-mode .nav-link.active { color: var(--yellow); }
#nav.dark-mode .btn-outline { border-color: rgba(255,255,255,0.65); color: white; }
#nav.dark-mode .btn-outline:hover { background: white; color: var(--black); }
#nav.dark-mode.scrolled {
  color: var(--black);
  background: rgba(255, 255, 255, 0.96);
}
#nav.dark-mode.scrolled .nav-logo { color: var(--black); }
#nav.dark-mode.scrolled .nav-link { color: var(--gray-600); }
#nav.dark-mode.scrolled .nav-link:hover { color: var(--black); }
#nav.dark-mode.scrolled .btn-outline { border-color: var(--black); color: var(--black); }
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(168px, 42vw);
  object-fit: contain;
  filter: brightness(0);
  transition: filter 0.3s ease;
}

#nav.dark-mode:not(.scrolled) .nav-logo-img,
[data-theme="dark"] #nav.scrolled .nav-logo-img {
  filter: none;
}

.footer-logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-link {
  text-decoration: none; font-size: 15px; font-weight: 400;
  color: var(--gray-600); transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--black); }
.nav-link.active { font-weight: 500; }
.nav-actions { display: flex; gap: 12px; align-items: center; }

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--gray-50);
  transform: scale(1.05);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
}
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
#nav.dark-mode:not(.scrolled) .theme-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
}
#nav.dark-mode:not(.scrolled) .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger { display: none; cursor: pointer; background: none; border: none; padding: 8px; color: inherit; }
.hamburger span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px 0; transition: all 0.3s; }

/* ──────────────────── MOBILE NAV ──────────────────── */
.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--bg-body); z-index: 999;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  padding: 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  text-decoration: none; color: var(--text-primary);
  font-size: 18px; font-weight: 400;
}
.mobile-nav-theme {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 16px;
  color: var(--text-primary);
}

/* ──────────────────── PAGES ──────────────────── */
.page { display: none; }
.page.active { display: block; }

/* ──────────────────── HERO ──────────────────── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--black);
  padding-bottom: clamp(60px, 8vh, 100px);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A0A 40%, #0A1A0A 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: radial-gradient(circle at 2px 2px, var(--yellow) 1px, transparent 0);
  background-size: 40px 40px;
}
.hero-glow {
  position: absolute; top: 20%; right: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,212,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute; bottom: 20%; left: 5%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,212,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite reverse;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}
.hero-content { position: relative; z-index: 2; color: white; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px; opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--transition) forwards;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--yellow); }
.hero-headline {
  color: white; margin-bottom: 12px;
  opacity: 0; animation: fadeUp 0.9s 0.4s var(--transition) forwards;
}
.hero-headline .yellow { color: var(--yellow); }
.hero-subheadline {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(18px, 2.5vw, 28px); font-weight: 300;
  color: rgba(255,255,255,0.7); margin-bottom: 28px;
  max-width: 700px;
  opacity: 0; animation: fadeUp 0.9s 0.55s var(--transition) forwards;
}
.hero-body {
  max-width: 600px; color: rgba(255,255,255,0.6);
  font-size: clamp(15px, 1.3vw, 17px); line-height: 1.7;
  margin-bottom: 44px;
  opacity: 0; animation: fadeUp 0.9s 0.7s var(--transition) forwards;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 0.85s var(--transition) forwards;
}
.hero-stats {
  position: absolute; bottom: 0; right: 0;
  display: flex; gap: 0;
  opacity: 0; animation: fadeUp 0.9s 1s var(--transition) forwards;
}
.hero-stat {
  padding: 28px 36px;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--yellow); line-height: 1;
}
.hero-stat-label {
  font-size: 12px; color: rgba(255,255,255,0.5);
  margin-top: 6px; letter-spacing: 0.05em; text-transform: uppercase;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ──────────────────── SECTION HEADERS ──────────────────── */
.section-header { margin-bottom: clamp(40px, 5vw, 72px); }
.section-header.center { text-align: center; }
.section-tag { margin-bottom: 16px; }
.section-title { margin-bottom: 20px; }
.section-subtitle { color: var(--gray-600); max-width: 600px; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ──────────────────── VISION / MISSION ──────────────────── */
.vision-section {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: clamp(80px, 10vw, 120px) 0 80px;
  display: flex;
  align-items: center;
}
.vision-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background: linear-gradient(180deg, rgba(12,11,8,0.65), rgba(12,11,8,0.92)), #14120e;
}
.vision-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,212,0,0.25) 1px, transparent 0);
  background-size: 44px 44px;
}
.vision-glow {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255,212,0,0.15) 0%, transparent 68%);
  border-radius: 50%;
}
.vision-glow-2 {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.vision-content {
  position: relative;
  z-index: 2;
}
.vision-intro {
  max-width: 780px;
  margin-bottom: clamp(32px, 5vw, 52px);
}
.vision-intro .tag {
  background: rgba(255,212,0,0.12);
  color: var(--yellow);
}

/* Vision & Mission statements */
.vision-statements-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 2.5rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 3rem 3.5rem;
  margin-top: 2.5rem;
}

.vision-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  align-self: stretch;
}

.vision-statement {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vision-statement-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0;
}

.vision-statement-title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 900;
  font-family: var(--font-display);
  color: #ffffff;
  margin: 0;
  line-height: 1.15;
}

.vision-statement-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin: 0;
}

/* Header inside vision section (kept for compatibility) */
.vision-header { display: none; }

/* ──────────────────── STORY ──────────────────── */
.story-section { overflow: hidden; }

.story-founder-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.story-founder-visual {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.story-founder-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gray-100);
}

.story-founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: var(--gray-100);
}

.story-founder-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px 24px;
  background: linear-gradient(to top, rgba(10,10,10,0.82) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.story-founder-badge-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.2;
}

.story-founder-badge-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}

.story-founder-content {
  padding-top: 8px;
}

.story-founder-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.85;
  font-size: clamp(15px, 1.15vw, 17px);
}

.story-pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-primary);
  border-left: 4px solid var(--yellow);
  border-radius: 0;
  padding: 16px 0 16px 28px;
  margin: 36px 0;
}

.story-signature {
  margin: 36px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.story-signature-line {
  width: 48px;
  height: 3px;
  background: var(--yellow);
  margin-bottom: 10px;
}

.story-signature-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

.story-signature-role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin: 0;
}

.story-links { display: flex; gap: 16px; align-items: center; margin-top: 0; flex-wrap: wrap; }
.story-links .btn-outline {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  box-shadow: 0 12px 32px rgba(255,212,0,0.25);
}
.story-links .btn-outline svg { color: var(--black); }
.story-links .btn-outline:hover {
  background: #f7d100;
  color: var(--black);
  transform: translateY(-1px);
}

/* ──────────────────── WHAT WE DO ──────────────────── */
.services-section { background: var(--black); color: white; overflow: hidden; }
.services-section .section-subtitle { color: rgba(255,255,255,0.5); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}
.service-card {
  background: var(--black); padding: clamp(32px, 3vw, 48px);
  transition: background 0.3s; position: relative;
  overflow: hidden; cursor: default;
}
.service-card--media {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.service-card__media-trigger,
.service-card__media-static {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}
.service-card__media-static { cursor: default; pointer-events: none; }
.service-card__thumb,
.service-panel__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: #1a1a00;
}
.service-card__media-trigger::after,
.service-card__media-static::after,
.service-panel__media-trigger::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.service-card__play,
.service-panel__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 212, 0, 0.95);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transition: transform 0.25s var(--transition), background 0.25s;
  pointer-events: none;
}
.service-card__play svg,
.service-panel__play svg { width: 22px; height: 22px; margin-left: 3px; }
.service-card__media-trigger:hover .service-card__play,
.service-panel__media-trigger:hover .service-panel__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--yellow);
}
.service-card__body,
.service-panel__body {
  padding: clamp(28px, 3vw, 40px);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.service-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.service-panel--alt { background: rgba(255,212,0,0.04); }
.service-panel:last-child { border-right: none; }
.service-panel__media-trigger {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}
.service-panel__title {
  font-size: clamp(22px, 2.5vw, 32px);
  color: white;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-panel__desc {
  margin-bottom: 24px;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.service-panel__link {
  color: var(--yellow);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-panel__link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.service-panel:hover .service-panel__link svg { transform: translateX(4px); }
.service-icon--lg {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255,212,0,0.12);
  margin-bottom: 28px;
}
.service-icon--lg svg {
  width: 32px;
  height: 32px;
  color: var(--yellow);
  transition: color 0.3s;
}
.service-panel:hover .service-icon {
  background: var(--yellow);
}
.service-panel:hover .service-icon svg {
  color: var(--black);
}
.service-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
}
.service-video-modal[hidden] { display: none !important; }
.service-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
}
.service-video-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  z-index: 1;
}
.service-video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.service-video-modal__close:hover { background: rgba(255,255,255,0.22); }
.service-video-modal__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.service-video-modal__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--yellow);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--transition);
}
.service-card:hover { background: #111100; }
.service-card:hover::after { transform: scaleX(1); }
.service-card:not(.services-featured):hover .service-icon { background: var(--yellow); }
.service-card:not(.services-featured):hover .service-icon svg { color: var(--black); }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,212,0,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s;
}
.service-icon svg { width: 26px; height: 26px; color: var(--yellow); transition: color 0.3s; }
.service-card h3 { color: white; font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.service-card .service-tagline { color: var(--yellow); font-size: 13px; font-weight: 500; letter-spacing: 0.04em; margin-bottom: 16px; }
.service-card p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.service-card a { color: var(--yellow); text-decoration: none; font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 6px; }
.service-card a svg { width: 14px; height: 14px; transition: transform 0.2s; }
.service-card:hover a svg { transform: translateX(4px); }
.services-featured {
  grid-column: span 2; background: #111100;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

/* ──────────────────── IMPACT ──────────────────── */
.impact-section { background: var(--yellow); overflow: hidden; position: relative; }
.impact-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(120px, 20vw, 280px);
  color: rgba(0,0,0,0.04); white-space: nowrap;
  pointer-events: none; user-select: none;
  letter-spacing: -0.05em;
}
.impact-header { position: relative; }
.impact-header .section-title { color: var(--black); }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.impact-card {
  background: rgba(0,0,0,0.04); padding: clamp(28px, 3vw, 44px);
  position: relative;
}
.impact-card:hover { background: rgba(0,0,0,0.08); }
.impact-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  color: var(--black); line-height: 1; margin-bottom: 8px;
}
.impact-num .counter { display: inline; }
.impact-label { font-size: 13px; font-weight: 500; color: rgba(0,0,0,0.6); line-height: 1.4; }
.impact-divider { width: 32px; height: 3px; background: var(--black); margin-bottom: 20px; }

/* ──────────────────── GALLERY ──────────────────── */
.gallery-section { background: var(--bg-surface); }
.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 20px; border-radius: 100px;
  border: 1.5px solid var(--border-color);
  background: var(--bg-card); cursor: pointer;
  font-size: 13px; font-weight: 500;
  font-family: var(--font-body);
  transition: all 0.2s; color: var(--text-secondary);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--black); border-color: var(--black); color: white;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  grid-auto-rows: 200px;
}
.gallery-item[hidden] { display: none !important; }
.gallery-more { display: flex; justify-content: center; margin-top: 32px; }
.gallery-more__button {
  padding: 12px 24px;
  border: 1.5px solid var(--yellow);
  border-radius: 100px;
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  font: 600 14px/1 var(--font-body);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.gallery-more__button:hover,
.gallery-more__button:focus-visible {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.gallery-more__button:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.gallery-more__button:active { transform: scale(0.98); }
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; position: relative;
  background: var(--gray-200);
  transition: transform 0.3s;
  background-size: cover;
  background-position: center;
  content-visibility: auto;
  contain-intrinsic-size: 200px;
}
.gallery-item.is-loading {
  background: linear-gradient(145deg, var(--gray-100), var(--gray-200));
}
.gallery-item.is-loaded .gallery-item-inner { opacity: 0; }
.gallery-item[data-image] { background-image: var(--gallery-bg-image); }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #e8e6dc, #d4d2c8);
  font-size: clamp(32px, 4vw, 56px);
  transition: transform 0.4s;
}
.gallery-item[data-image] .gallery-item-inner {
  background: transparent;
  font-size: 0;
}
.gallery-item:hover .gallery-item-inner { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.gallery-item:focus-visible .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-size: 13px; font-weight: 500; }
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 5vw, 64px);
}
.gallery-lightbox[hidden] { display: none !important; }
.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.86);
  backdrop-filter: blur(6px);
}
.gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 100%);
  max-height: 100%;
}
.gallery-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 150px);
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
}
.gallery-lightbox__caption {
  margin-top: 14px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.gallery-lightbox__close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible { background: var(--yellow); color: var(--black); }

/* ──────────────────── PARTNERS ──────────────────── */
.partners-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  overflow: hidden;
  padding-bottom: clamp(48px, 6vw, 88px);
}

.partners-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.partners-title {
  margin: 16px 0 12px;
  color: var(--text-primary);
}

.partners-subtitle {
  color: var(--text-secondary);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.75;
}

.partners-marquee {
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.partners-track {
  overflow: hidden;
  padding: 4px 0 12px;
}

.partners-inner {
  display: flex;
  gap: 16px;
  align-items: stretch;
  width: max-content;
  animation: partners-marquee 50s linear infinite;
}

.partners-marquee:hover .partners-inner {
  animation-play-state: paused;
}

@keyframes partners-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.partner-card {
  flex-shrink: 0;
  width: 168px;
  height: 92px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 8px 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: border-color 0.25s var(--transition), box-shadow 0.25s var(--transition), transform 0.25s var(--transition);
}

.partner-card:hover {
  border-color: rgba(255, 212, 0, 0.45);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.partner-card.is-loading {
  background: linear-gradient(110deg, var(--bg-card) 30%, var(--bg-surface-alt) 50%, var(--bg-card) 70%);
  background-size: 200% 100%;
  animation: partner-shimmer 1.4s ease-in-out infinite;
}

.partner-card.is-loading .partner-card__img {
  opacity: 0;
}

@keyframes partner-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.partner-card__img {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  transition: transform 0.25s var(--transition);
}

.partner-card:hover .partner-card__img {
  transform: scale(1.03);
}

.partners-footnote {
  text-align: center;
  margin-top: clamp(28px, 4vw, 40px);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

[data-theme="dark"] .partner-card {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .partner-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* ──────────────────── CONTACT PREVIEW ──────────────────── */
.contact-section { background: var(--black); color: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); }
.contact-form-group { margin-bottom: 20px; }
.contact-form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.contact-input, .contact-textarea {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm);
  padding: 14px 18px; color: white; font-family: var(--font-body); font-size: 15px;
  transition: border-color 0.2s;
}
.contact-input:focus, .contact-textarea:focus {
  outline: none; border-color: var(--yellow);
}
.contact-input::placeholder, .contact-textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-textarea { height: 140px; resize: vertical; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 32px; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,212,0,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--yellow); }
.contact-info-label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.contact-info-value { color: white; font-size: 15px; }
.social-links { display: flex; gap: 12px; margin-top: 40px; }
.social-link {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,212,0,0.1); border: 1px solid rgba(255,212,0,0.55);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.2s; color: var(--yellow);
}
.social-link:hover,
.social-link:focus-visible { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.social-link:focus-visible { outline: 3px solid white; outline-offset: 3px; }
.social-link svg { width: 18px; height: 18px; }
.contact-page-socials { margin-top: 0; }
.social-link--whatsapp { background: #25D366; border-color: #25D366; color: white; }
.social-link--whatsapp:hover,
.social-link--whatsapp:focus-visible { background: #1ebe5d; border-color: #1ebe5d; color: white; }
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  text-decoration: none; transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ──────────────────── FOOTER ──────────────────── */
footer {
  background: var(--black); color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo-text { font-family: var(--font-display); font-weight: 900; font-size: 20px; color: white; }
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-heading { color: white; font-size: 14px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; }

/* ──────────────────── ABOUT PAGE ──────────────────── */
.about-hero { padding-top: var(--nav-h); background: var(--bg-surface); }
.about-hero-inner { min-height: 60vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; padding: 80px 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  padding: 36px 32px; background: var(--bg-surface);
  border-radius: var(--radius-md); position: relative;
  overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--yellow);
}
.value-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.value-title { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.value-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.belief-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.58) 0%, rgba(10,10,10,0.9) 100%),
    url('https://res.cloudinary.com/dj2ciluyx/image/upload/f_auto,q_auto:good,w_1800,c_limit/v1784547747/photo_6_oydccn.jpg') center/cover no-repeat;
  color: white;
}
.belief-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.belief-kicker {
  position: static;
}
.belief-content {
  max-width: 980px;
}
.belief-lead {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.15;
  font-weight: 700;
  color: white;
  margin-bottom: 32px;
}
.belief-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 32px;
  margin-bottom: 48px;
}
.belief-copy p {
  color: rgba(255,255,255,0.74);
  font-size: 15px;
  line-height: 1.8;
}
.belief-commitment {
  border-top: 1.5px solid rgba(255,255,255,0.18);
  padding-top: 36px;
}
.belief-commitment h2 {
  color: white;
  margin-bottom: 24px;
}
.belief-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.belief-item {
  min-height: 150px;
  padding: 24px;
  border: 1.5px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s var(--transition), border-color 0.25s, box-shadow 0.25s;
}
.belief-item:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}
.belief-item-num {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.belief-item p {
  color: white;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}
.journey-image-card {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--gray-50);
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}
.journey-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 2px; background: var(--gray-200);
}
.timeline-item { position: relative; margin-bottom: 48px; }
.timeline-item::before {
  content: ''; position: absolute; left: -48px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--yellow); border: 3px solid var(--bg-body);
  box-shadow: 0 0 0 3px var(--yellow);
}
.timeline-year { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 6px; }
.timeline-title { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.timeline-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.page-hero {
  padding-top: var(--nav-h);
  background: var(--black); color: white;
  min-height: 65vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
#page-about .page-hero .container {
  z-index: 3;
}
.page-hero-bg > .intro-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.8) 100%);
  z-index: 1;
}
.page-hero-pattern {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 32px 32px;
  z-index: 2;
}
.page-hero-glow {
  position: absolute; top: -20%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,212,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
}

/* ──────────────────── ONEPLASTIC PAGE ──────────────────── */
.oneplastic-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(40px, 7vw, 112px);
}
.oneplastic-split--reverse > :first-child { order: 2; }
.oneplastic-split--reverse > :last-child { order: 1; }
.oneplastic-growth-block { margin-top: clamp(72px, 10vw, 140px); }
.oneplastic-split .tag { display: inline-flex; }
.oneplastic-copy {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 20px;
}
.oneplastic-copy--dark { color: rgba(255,255,255,0.62); }
.oneplastic-list {
  display: grid;
  gap: 14px;
  padding-left: 22px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
}
.oneplastic-list li::marker { color: var(--yellow-dark); font-weight: 700; }
.oneplastic-list strong { color: var(--text-primary); }
.oneplastic-list--dark { color: rgba(255,255,255,0.62); }
.oneplastic-list--dark strong { color: white; }
.oneplastic-list--dark li::marker { color: var(--yellow); }
.oneplastic-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  height: clamp(320px, 34vw, 480px);
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  box-shadow: 0 18px 48px rgba(10,10,10,0.12);
}
.oneplastic-image::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(0,0,0,0.18));
}
.oneplastic-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--transition);
}
.oneplastic-image:hover img { transform: scale(1.04); }
.oneplastic-image--dark { box-shadow: 0 22px 54px rgba(0,0,0,0.42); }

/* ──────────────────── STORIES PAGE ──────────────────── */
.story-hero-section {
  padding-top: var(--nav-h);
  min-height: 80vh; position: relative;
  display: flex; align-items: flex-end;
  background: var(--black); overflow: hidden;
  padding-bottom: 80px;
}
.stories-video-section {
  background: var(--bg-surface);
  padding: var(--section-pad) 0;
}
.stories-video-intro {
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.stories-video-intro .tag {
  margin-bottom: 18px;
}
.stories-video-intro h2 {
  margin-bottom: 16px;
}
.stories-video-intro p {
  color: var(--text-secondary);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
}
.stories-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.story-video-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1.1fr;
  min-height: 460px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0,0,0,0.08);
}
.story-video-card:nth-child(even) {
  grid-template-columns: 1.1fr minmax(320px, 0.9fr);
}
.story-video-card:nth-child(even) .story-video-card__media {
  order: 2;
}
.story-video-card__media {
  position: relative;
  min-height: 360px;
  border: 0;
  cursor: pointer;
  color: white;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.12) 0%, rgba(10,10,10,0.86) 100%),
    linear-gradient(135deg, #111111 0%, #4a3f05 100%);
}
.story-video-card__media--yellow {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.08) 0%, rgba(10,10,10,0.78) 100%),
    linear-gradient(135deg, #ffd400 0%, #1f1a00 100%);
}
.story-video-card__media--image {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.18) 0%, rgba(10,10,10,0.84) 100%),
    url('https://res.cloudinary.com/dj2ciluyx/image/upload/f_auto,q_auto:good,w_900,c_limit/v1784549132/IMG_0836_iyves8.jpg') center/cover no-repeat;
}
.story-video-card__media--dark {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.16) 0%, rgba(10,10,10,0.86) 100%),
    linear-gradient(135deg, #0a0a0a 0%, #24301d 100%);
}
.story-video-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.18) 1px, transparent 0);
  background-size: 34px 34px;
  opacity: 0.22;
}
.story-video-card__eyebrow,
.story-video-card__watch {
  position: absolute;
  z-index: 2;
  left: 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.story-video-card__eyebrow {
  top: 28px;
  color: var(--yellow);
}
.story-video-card__watch {
  bottom: 28px;
  color: rgba(255,255,255,0.78);
}
.story-video-card__play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  transition: transform 0.25s var(--transition), background 0.25s;
}
.story-video-card__play svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}
.story-video-card__media:hover .story-video-card__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: white;
}
.story-video-card__body {
  padding: clamp(32px, 4.5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-video-card__body h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.story-card-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px); line-height: 1.4;
  color: var(--text-primary); margin-bottom: 24px;
  border-left: 4px solid var(--yellow); padding-left: 24px;
}
.story-card-body { color: var(--text-secondary); font-size: 15px; line-height: 1.8; margin-bottom: 0; }
.story-impact { display: flex; gap: 18px; flex-wrap: wrap; background: var(--bg-surface); padding: 20px; border-radius: var(--radius-md); margin-top: 28px; }
.story-impact-item { text-align: center; flex: 1; min-width: 80px; }
.story-impact-num { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--text-primary); }
.story-impact-label { font-size: 12px; color: var(--text-muted); }

/* ──────────────────── CONTACT PAGE ──────────────────── */
.contact-page-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
}
.map-placeholder {
  background: var(--gray-100); border-radius: var(--radius-md);
  height: 320px; display: flex; align-items: center;
  justify-content: center; font-size: 48px;
  overflow: hidden;
}
.map-embed { width: 100%; height: 100%; border: 0; border-radius: var(--radius-md); }
.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-surface-alt);
  color: var(--text-primary);
}
.contact-detail-email {
  color: var(--text-primary);
  font-size: 15px;
  text-decoration: none;
}
.contact-detail-email:hover { color: var(--yellow-dark); }

/* ──────────────────── ANIMATIONS ──────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ──────────────────── RESPONSIVE ──────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-featured { grid-column: span 2; }
  .story-founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-founder-visual { position: static; }
  .journey-image-card { position: static; }
  .belief-shell { grid-template-columns: 1fr; gap: 28px; }
  .belief-kicker { position: static; }
  .story-video-card,
  .story-video-card:nth-child(even) { grid-template-columns: 1fr; }
  .story-video-card:nth-child(even) .story-video-card__media { order: 0; }
}
@media (max-width: 768px) {
  :root { --section-pad: 60px; --nav-h: 64px; }
  .intro-video { min-height: 55vh; }
  .intro-video__title { font-size: clamp(32px, 8vw, 48px); }
  .grid-2, .contact-grid, .contact-page-grid, .about-hero-inner,
  .story-card, .gallery-grid, .story-founder-grid, .oneplastic-split { grid-template-columns: 1fr; }
  .oneplastic-split--reverse > :first-child,
  .oneplastic-split--reverse > :last-child { order: initial; }
  .oneplastic-image { height: 300px; }
  .values-grid, .grid-3 { grid-template-columns: 1fr; }
  .belief-copy, .belief-list { grid-template-columns: 1fr; }
  .belief-lead { margin-bottom: 24px; }
  .belief-item { min-height: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .services-featured { grid-column: span 1; grid-template-columns: 1fr; }
  .service-panel { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .service-panel:last-child { border-bottom: none; }
  .story-video-card { min-height: auto; border-radius: var(--radius-md); }
  .story-video-card__media { min-height: 260px; }
  .story-impact { gap: 12px; }
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 40px); }
  .hero-stats { position: static; display: none; }
  .nav-links, .nav-actions .btn { display: none; }
  .nav-actions { display: flex; }
  .hamburger { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .vision-section {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .vision-statements-grid {
    grid-template-columns: 1fr;
    padding: 2rem 1.75rem;
    gap: 2rem 0;
  }
  .vision-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
  }
  .story-links { flex-direction: column; align-items: stretch; }
  .story-links .btn { justify-content: center; }
  .page-hero { min-height: auto; }
  .page-hero .container { padding-top: calc(var(--nav-h) + 24px) !important; padding-bottom: 48px !important; }
  .story-hero-section { min-height: auto; padding-bottom: 48px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .contact-name-row { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .impact-grid { grid-template-columns: 1fr; }
  .gallery-filters { gap: 6px; }
  .filter-btn { padding: 6px 14px; font-size: 12px; }
  .display-xl { font-size: clamp(36px, 10vw, 52px); }
  .partner-card { width: 140px; height: 80px; padding: 8px 10px; }
  .nav-logo-img { height: 34px; max-width: 130px; }
  .partners-inner { gap: 12px; }
}

/* ──────────────────── DARK THEME OVERRIDES ──────────────────── */
[data-theme="dark"] .section:not(.services-section):not(.impact-section):not(.contact-section) {
  color: var(--text-primary);
}
[data-theme="dark"] .section-subtitle,
[data-theme="dark"] .section p:not(.vision-statement-desc):not(.story-card-body) {
  color: var(--text-secondary);
}
[data-theme="dark"] #nav:not(.dark-mode):not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.75);
}
[data-theme="dark"] #nav.scrolled .nav-logo,
[data-theme="dark"] #nav.scrolled .nav-link {
  color: var(--text-secondary);
}
[data-theme="dark"] #nav.scrolled .nav-link:hover,
[data-theme="dark"] #nav.scrolled .nav-link.active {
  color: var(--text-primary);
}
[data-theme="dark"] .tag-outline {
  border-color: var(--border-color);
  color: var(--text-secondary);
}
[data-theme="dark"] .map-placeholder {
  background: var(--bg-surface-alt);
}
@media (prefers-reduced-motion: reduce) {
  .partners-inner { animation: none; }
  .partner-card.is-loading { animation: none; }
  .hero-glow, .hero-glow-2 { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}
