:root {
  --color-bg: #f6f8f7;
  --color-surface: #ffffff;
  --color-surface-alt: #eef4f3;
  --color-ink: #16262a;
  --color-ink-muted: #4d6367;
  --color-ink-soft: #6d8285;
  --color-primary: #0f4c5c;
  --color-primary-dark: #093440;
  --color-secondary: #3fa79b;
  --color-accent: #8b7ff5;
  --color-accent-2: #5ec9d6;
  --color-accent-3: #f2b6cf;

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(9, 52, 64, 0.06), 0 1px 1px rgba(9, 52, 64, 0.05);
  --shadow-md: 0 6px 16px rgba(9, 52, 64, 0.09), 0 2px 6px rgba(9, 52, 64, 0.06);
  --shadow-lg: 0 24px 48px rgba(9, 52, 64, 0.14), 0 10px 20px rgba(9, 52, 64, 0.08);
  --shadow-glow: 0 0 50px rgba(139, 127, 245, 0.28);

  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.85rem;
  --space-sm: 1.25rem;
  --space-md: 2rem;
  --space-lg: 3.25rem;
  --space-xl: 5rem;
  --space-2xl: 7rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Manrope', sans-serif; margin: 0; color: var(--color-ink); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: 'Inter', sans-serif; }

.space-section { padding: var(--space-xl) clamp(1.25rem, 4vw, 4rem); }

.text-display {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw + 1rem, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.text-display-sm {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3vw + 1rem, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.text-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 1.4vw + 1rem, 1.9rem);
  line-height: 1.25;
}
.text-heading-sm {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.35;
}
.text-body { font-size: 1rem; color: var(--color-ink-muted); line-height: 1.7; }
.text-caption {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-secondary);
}
.center-text { text-align: center; margin-left: auto; margin-right: auto; }
.on-dark { color: #f2f7f6; }
.on-dark-muted { color: rgba(242, 247, 246, 0.72); }

.surface { background: var(--color-surface); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: box-shadow .3s ease, transform .3s ease; }
.surface:hover { box-shadow: var(--shadow-md); }
.surface-raised { background: var(--color-surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.surface-inset { background: var(--color-surface-alt); border-radius: var(--radius-sm); }

.action-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fdfefe;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
  min-height: 44px;
}
.action-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); filter: brightness(1.05); }

.action-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(15, 76, 92, 0.25);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
  min-height: 44px;
}
.action-ghost:hover { background: rgba(15, 76, 92, 0.06); border-color: var(--color-primary); transform: translateY(-2px); }


.nav-shell {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: padding .35s ease, background .35s ease, box-shadow .35s ease;
  padding: 1.6rem clamp(1.25rem, 4vw, 4rem);
}
.nav-shell.is-scrolled {
  padding: 0.7rem clamp(1.25rem, 4vw, 4rem);
  background: rgba(246, 248, 247, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1360px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo-img { width: 42px; height: 42px; transition: width .35s ease, height .35s ease; }
.nav-shell.is-scrolled .nav-logo-img { width: 32px; height: 32px; }
.nav-logo-text { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--color-ink); }
.nav-shell:not(.is-scrolled) .nav-logo-text,
.nav-shell:not(.is-scrolled) .nav-links a { color: #fdfefe; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-weight: 500; font-size: 0.95rem; position: relative; padding: 0.3rem 0; transition: color .3s ease; }
.nav-links a::after { content:''; position: absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--color-accent); transition: width .3s ease; }
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }
.nav-shell.is-scrolled .nav-links a { color: var(--color-ink); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: currentColor; border-radius: 2px; transition: all .3s ease; }
.nav-shell:not(.is-scrolled) .nav-toggle { color: #fdfefe; }
.nav-shell.is-scrolled .nav-toggle { color: var(--color-ink); }

.mobile-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: linear-gradient(150deg, var(--color-primary-dark), var(--color-primary) 55%, var(--color-secondary));
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.mobile-overlay.is-active { opacity: 1; visibility: visible; }
.mobile-overlay-close {
  position: absolute; top: 1.75rem; right: 1.75rem;
  font-size: 2rem; color: #fdfefe; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-overlay-links { display: flex; flex-direction: column; align-items: center; gap: 1.9rem; }
.mobile-overlay-links a { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: clamp(1.6rem, 6vw, 2.4rem); color: #fdfefe; transition: opacity .3s ease; }
.mobile-overlay-links a:hover { opacity: 0.7; }


.aurora-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.aurora-blob { position: absolute; border-radius: 50%; filter: blur(70px); will-change: transform; }
.aurora-blob--1 { width: 560px; height: 560px; top: -12%; left: -8%; background: radial-gradient(circle at 30% 30%, var(--color-accent), transparent 70%); opacity: .5; animation: auroraDrift1 34s ease-in-out infinite; }
.aurora-blob--2 { width: 480px; height: 480px; top: 20%; right: -10%; background: radial-gradient(circle at 60% 40%, var(--color-accent-2), transparent 70%); opacity: .45; animation: auroraDrift2 40s ease-in-out infinite; }
.aurora-blob--3 { width: 420px; height: 420px; bottom: -15%; left: 30%; background: radial-gradient(circle at 40% 60%, var(--color-accent-3), transparent 70%); opacity: .4; animation: auroraDrift3 27s ease-in-out infinite; }
.aurora-bg--soft .aurora-blob { opacity: .22; filter: blur(90px); }

@keyframes auroraDrift1 { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(8%,12%) scale(1.15);} }
@keyframes auroraDrift2 { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(-10%,8%) scale(1.1);} }
@keyframes auroraDrift3 { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(6%,-10%) scale(1.2);} }


.hero-section { position: relative; background: linear-gradient(160deg, var(--color-primary-dark), var(--color-primary) 60%, var(--color-secondary)); padding-top: 8.5rem; overflow: hidden; }
.hero-inner { position: relative; z-index: 2; max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1.25fr 0.9fr; gap: var(--space-lg); align-items: center; padding-bottom: var(--space-xl); }
.hero-eyebrow { color: var(--color-accent-3); }
.hero-title { color: #fdfefe; margin-top: 1rem; }
.hero-lead { color: rgba(253,254,254,0.82); margin-top: 1.4rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }
.hero-quote { padding: 2rem; max-width: 380px; margin-left: auto; position: relative; }
.hero-quote-icon { color: var(--color-accent); font-size: 1.5rem; opacity: 0.5; }
.hero-quote-text { margin-top: 1rem; font-style: italic; }
.hero-quote-author { margin-top: 1.4rem; border-top: 1px solid var(--color-surface-alt); padding-top: 1rem; }
.hero-quote-author .text-caption { color: var(--color-ink-soft); }


.intro-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; max-width: 1200px; margin: 0 auto; }
.intro-strip-item { padding: 1.6rem 1.2rem; display: flex; align-items: center; gap: 0.9rem; }
.intro-strip-item i { font-size: 1.4rem; color: var(--color-secondary); }
.intro-strip-item .text-caption { color: var(--color-ink); font-weight: 600; }


.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-lg); align-items: center; max-width: 1300px; margin: 0 auto; }
.about-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 420px; object-fit: cover; }
.section-eyebrow { color: var(--color-secondary); margin-bottom: 0.6rem; }
.about-copy h2 { margin-bottom: 1.1rem; }
.about-copy p { margin-bottom: 1rem; }


.bento-section { max-width: 1300px; margin: 0 auto; }
.bento-section h2 { margin-top: 0.7rem; margin-bottom: 2.6rem; }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(140px, auto); gap: 1.4rem; }
.bento-card { padding: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.bento-card--2x2 { grid-column: span 2; grid-row: span 2; }
.bento-card--1x1 { grid-column: span 2; }
.bento-card--2x1 { grid-column: span 2; grid-row: span 2; }
.bento-card-icon { width: 46px; height: 46px; border-radius: var(--radius-sm); background: linear-gradient(135deg, var(--color-accent), var(--color-secondary)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.bento-list { margin-top: 0.4rem; display: flex; flex-direction: column; gap: 0.55rem; }
.bento-list li { position: relative; padding-left: 1.2rem; color: var(--color-ink-muted); font-size: 0.96rem; }
.bento-list li::before { content: '→'; position: absolute; left: 0; color: var(--color-secondary); }


.process-section { background: linear-gradient(150deg, var(--color-primary-dark), var(--color-primary)); position: relative; }
.process-inner { max-width: 1240px; margin: 0 auto; }
.process-inner h2 { margin: 0.7rem 0 3rem; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 34px; left: 8%; right: 8%; height: 2px; background: rgba(255,255,255,0.18); z-index: 0; }
.process-step { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.7rem; }
.process-number { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--color-accent-3); width: 66px; height: 66px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; border: 1.5px solid rgba(255,255,255,0.2); }
.process-icon { font-size: 1.3rem; color: var(--color-accent-2); margin-top: 0.3rem; }


.parallax-section { position: relative; min-height: 520px; overflow: hidden; display: flex; align-items: center; }
.parallax-media { position: absolute; inset: -10% -5%; background-size: cover; background-position: center; will-change: transform; }
.parallax-overlay { position: absolute; inset: 0; background: linear-gradient(150deg, rgba(9,52,64,0.88), rgba(15,76,92,0.72)); }
.parallax-content { position: relative; z-index: 2; max-width: 620px; margin: 0 clamp(1.25rem, 8vw, 8rem); padding: 2.4rem; }
.parallax-content h2 { margin: 0.6rem 0 1rem; }
.parallax-content p { margin-bottom: 0.9rem; }


.journey-section { max-width: 1300px; margin: 0 auto; }
.journey-section h2 { margin: 0.7rem 0 2.8rem; }
.journey-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.3rem; }
.journey-step { padding: 1.9rem 1.4rem; text-align: center; }
.journey-icon { width: 54px; height: 54px; border-radius: 50%; background: var(--color-surface-alt); color: var(--color-primary); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin: 0 auto 1rem; }
.journey-step h3 { margin-bottom: 0.5rem; }


.interviews-section { position: relative; background: var(--color-surface-alt); overflow: hidden; }
.interviews-lead { max-width: 60ch; margin: 0.9rem auto 2.6rem; }
.interviews-splide { position: relative; z-index: 1; max-width: 1300px; margin: 0 auto; }
.interview-card { padding: 2rem; min-height: 220px; display: flex; flex-direction: column; gap: 1rem; }
.interview-card i { color: var(--color-accent); font-size: 1.3rem; opacity: 0.5; }
.interview-card span.text-caption { color: var(--color-ink-soft); }


.faq-section { max-width: 900px; margin: 0 auto; }
.faq-section h2 { margin: 0.7rem 0 2.4rem; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 1.6rem; text-align: left; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1.02rem; color: var(--color-ink); }
.faq-question i { transition: transform .35s ease; color: var(--color-secondary); }
.faq-item.is-open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; padding: 0 1.6rem; }
.faq-item.is-open .faq-answer { max-height: 300px; padding: 0 1.6rem 1.6rem; }


.cta-section { position: relative; background: linear-gradient(145deg, var(--color-primary-dark), var(--color-secondary)); overflow: hidden; }
.cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; padding: 3rem 2.4rem; }
.cta-inner h2 { margin-bottom: 1rem; }
.cta-inner p { margin-bottom: 1.8rem; }


.site-footer { background: var(--color-primary-dark); color: #fdfefe; }
.footer-top { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.4rem; }
.footer-brand { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-logo { width: 44px; }
.footer-col { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col h4 { color: var(--color-accent-3); margin-bottom: 0.3rem; }
.footer-col a { color: rgba(253,254,254,0.78); font-size: 0.95rem; transition: color .3s ease; }
.footer-col a:hover { color: #fdfefe; }
.footer-contact p { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; }
.footer-sep { height: 1px; background: rgba(253,254,254,0.12); max-width: 1300px; margin: 0 auto; }
.footer-bottom { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding: 1.6rem clamp(1.25rem, 4vw, 4rem); }
.footer-legal-links { display: flex; gap: 1.4rem; }
.footer-legal-links a { color: rgba(253,254,254,0.7); font-size: 0.85rem; transition: color .3s ease; }
.footer-legal-links a:hover { color: #fdfefe; }


.page-hero { position: relative; padding: 9.5rem clamp(1.25rem, 4vw, 4rem) 4rem; background: linear-gradient(160deg, var(--color-primary-dark), var(--color-primary) 65%, var(--color-secondary)); overflow: hidden; }
.page-hero--alt { background: linear-gradient(160deg, var(--color-primary-dark), var(--color-secondary) 70%, var(--color-accent-2)); }
.page-hero--compact { padding-bottom: 3rem; }
.page-hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; text-align: center; }
.page-hero-inner h1 { color: #fdfefe; margin: 0.8rem 0 1.2rem; }
.page-hero-lead { color: rgba(253,254,254,0.85); max-width: 60ch; margin: 0 auto; }


.story-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-lg); max-width: 1300px; margin: 0 auto; align-items: center; }
.story-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 460px; object-fit: cover; }
.story-copy h2 { margin-bottom: 1rem; }
.story-copy p { margin-bottom: 1rem; }
.story-values { background: linear-gradient(150deg, var(--color-primary-dark), var(--color-primary)); }
.story-values h2 { margin: 0.7rem 0 2.8rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; max-width: 1300px; margin: 0 auto; }
.value-card { padding: 2rem 1.6rem; text-align: center; }
.value-card i { font-size: 1.6rem; color: var(--color-secondary); margin-bottom: 0.9rem; display: block; }
.value-card h3 { margin-bottom: 0.6rem; }
.story-timeline { max-width: 900px; margin: 0 auto; }
.story-timeline h2 { margin: 0.7rem 0 2.6rem; }
.timeline { display: flex; flex-direction: column; gap: 1.6rem; position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px; background: var(--color-surface-alt); }
.timeline-item { position: relative; display: flex; gap: 1.4rem; }
.timeline-dot { position: absolute; left: -2rem; top: 6px; width: 18px; height: 18px; border-radius: 50%; background: var(--color-secondary); box-shadow: 0 0 0 5px var(--color-surface-alt); }
.timeline-content { padding: 1.5rem 1.7rem; flex: 1; }
.timeline-content h3 { margin-bottom: 0.5rem; }
.story-note-inner { max-width: 900px; margin: 0 auto; display: flex; gap: 1.2rem; align-items: flex-start; padding: 2rem 2.2rem; }
.story-note-inner i { color: var(--color-secondary); font-size: 1.4rem; margin-top: 0.2rem; }


.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1300px; margin: 0 auto; }
.video-card--wide { grid-column: span 2; }
.video-thumb { position: relative; border-radius: var(--radius-md) var(--radius-md) 0 0; overflow: hidden; height: 220px; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.video-card:hover .video-thumb img { transform: scale(1.06); }
.video-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 56px; height: 56px; border-radius: 50%; background: rgba(253,254,254,0.9); color: var(--color-primary); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: var(--shadow-md); }
.video-duration { position: absolute; bottom: 0.7rem; right: 0.7rem; background: rgba(9,52,64,0.75); color: #fff; font-size: 0.78rem; padding: 0.2rem 0.6rem; border-radius: var(--radius-full); }
.video-info { padding: 1.4rem 1.5rem 1.7rem; }
.video-info h3 { margin-bottom: 0.5rem; }
.video-note-inner { max-width: 900px; margin: 0 auto; display: flex; gap: 1.2rem; align-items: flex-start; padding: 2rem 2.2rem; }
.video-note-inner i { color: var(--color-secondary); font-size: 1.4rem; margin-top: 0.2rem; }


.newsletter-hero { position: relative; padding: 9.5rem clamp(1.25rem, 4vw, 4rem) var(--space-xl); background: linear-gradient(160deg, var(--color-primary-dark), var(--color-primary) 55%, var(--color-accent)); overflow: hidden; }
.newsletter-hero-inner { position: relative; z-index: 1; max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-lg); align-items: center; }
.newsletter-copy h1 { color: #fdfefe; margin: 0.8rem 0 1.2rem; }
.newsletter-copy p { color: rgba(253,254,254,0.85); }
.newsletter-points { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; }
.newsletter-points li { display: flex; gap: 0.7rem; color: rgba(253,254,254,0.9); font-size: 0.96rem; }
.newsletter-points i { color: var(--color-accent-3); }
.newsletter-form-card { padding: 2rem; }
.newsletter-form-img { border-radius: var(--radius-sm); height: 160px; width: 100%; object-fit: cover; margin-bottom: 1.4rem; }
.newsletter-form-card form { display: flex; flex-direction: column; gap: 0.4rem; }
.newsletter-form-card input[type="text"], .newsletter-form-card input[type="email"] {
  padding: 0.85rem 1rem; border-radius: var(--radius-xs); border: 1.5px solid var(--color-surface-alt); margin-bottom: 1rem; font-size: 0.95rem; min-height: 44px;
  transition: border-color .3s ease;
}
.newsletter-form-card input:focus { outline: none; border-color: var(--color-secondary); }
.newsletter-check { display: flex; gap: 0.6rem; align-items: flex-start; margin: 0.5rem 0 1.2rem; }
.newsletter-check input { margin-top: 0.25rem; width: 18px; height: 18px; }
.newsletter-check a { color: var(--color-primary); text-decoration: underline; }
.newsletter-submit { width: 100%; justify-content: center; }
.newsletter-info { max-width: 1300px; margin: 0 auto; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.info-card { padding: 2rem; text-align: center; }
.info-card i { font-size: 1.5rem; color: var(--color-secondary); margin-bottom: 0.9rem; display: block; }
.info-card h3 { margin-bottom: 0.6rem; }


.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-lg); max-width: 1300px; margin: 0 auto; align-items: start; }
.contact-form-wrap { padding: 2.4rem; }
.contact-form-wrap h2 { margin-bottom: 1.6rem; }
.accordion-field { border: 1.5px solid var(--color-surface-alt); border-radius: var(--radius-sm); margin-bottom: 1rem; overflow: hidden; }
.accordion-field-head { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 1.4rem; font-weight: 600; font-size: 0.98rem; }
.accordion-field-head i { transition: transform .35s ease; color: var(--color-secondary); }
.accordion-field.is-open .accordion-field-head i { transform: rotate(180deg); }
.accordion-field-body { max-height: 0; overflow: hidden; padding: 0 1.4rem; transition: max-height .45s ease, padding .45s ease; display: flex; flex-direction: column; }
.accordion-field.is-open .accordion-field-body { max-height: 600px; padding: 0 1.4rem 1.5rem; }
.accordion-field-body label { margin-bottom: 0.35rem; }
.accordion-field-body input, .accordion-field-body textarea {
  padding: 0.85rem 1rem; border-radius: var(--radius-xs); border: 1.5px solid var(--color-surface-alt); margin-bottom: 1.1rem; font-size: 0.95rem; resize: vertical; min-height: 44px;
  transition: border-color .3s ease;
}
.accordion-field-body input:focus, .accordion-field-body textarea:focus { outline: none; border-color: var(--color-secondary); }
.contact-submit { width: 100%; justify-content: center; margin-top: 0.4rem; }
.contact-side { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-info-card { padding: 2rem; }
.contact-info-card h3 { margin-bottom: 1rem; }
.contact-info-card p { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.8rem; }
.contact-info-card i { color: var(--color-secondary); margin-top: 0.2rem; }
.contact-map-card { overflow: hidden; padding: 0; }
.contact-map-card iframe { display: block; }


.team-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-lg); max-width: 1300px; margin: 0 auto; align-items: center; }
.team-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 420px; object-fit: cover; }
.team-copy h2 { margin-bottom: 1rem; }
.team-copy p { margin-bottom: 1rem; }


.legal-main { background: var(--color-bg); }
.legal-wrap { max-width: 880px; margin: 0 auto; padding-top: 3rem; }
.legal-wrap h1 { margin: 0.5rem 0 1.6rem; }
.legal-wrap h2 { margin: 2rem 0 0.9rem; }
.legal-wrap p { color: var(--color-ink-muted); margin-bottom: 1rem; line-height: 1.75; }
.legal-table { width: 100%; border-collapse: collapse; margin: 1.2rem 0 1.8rem; font-size: 0.92rem; }
.legal-table th, .legal-table td { border: 1px solid var(--color-surface-alt); padding: 0.8rem 1rem; text-align: left; color: var(--color-ink-muted); }
.legal-table th { background: var(--color-surface-alt); color: var(--color-ink); font-family: 'Manrope', sans-serif; }
.legal-dl { margin: 1.2rem 0 1.8rem; }
.legal-dl dt { font-family: 'Manrope', sans-serif; font-weight: 700; color: var(--color-ink); margin-top: 1rem; }
.legal-dl dd { margin: 0.3rem 0 0; color: var(--color-ink-muted); }


.thanks-body { background: linear-gradient(160deg, var(--color-surface-alt), #fdfaf5); }
.thanks-main { position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center; padding: 9rem 1.5rem 4rem; overflow: hidden; }
.thanks-card { position: relative; z-index: 1; max-width: 480px; text-align: center; padding: 3rem 2.4rem; }
.thanks-icon { font-size: 2.6rem; color: var(--color-secondary); margin-bottom: 1.2rem; }
.thanks-card h1 { margin-bottom: 1rem; }
.thanks-card p { margin-bottom: 1.8rem; }


.cookie-link {
  position: fixed; bottom: 1.2rem; left: 1.2rem; z-index: 700;
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--color-surface); color: var(--color-ink-muted);
  font-size: 0.8rem; padding: 0.55rem 1rem; border-radius: var(--radius-full);
  box-shadow: var(--shadow-md); transition: color .3s ease, transform .3s ease;
}
.cookie-link:hover { color: var(--color-primary); transform: translateY(-2px); }
.cookie-link.pulse { animation: cookiePulse 2.4s ease-in-out 3; }
@keyframes cookiePulse { 0%,100% { box-shadow: var(--shadow-md);} 50% { box-shadow: 0 0 0 8px rgba(139,127,245,0.18), var(--shadow-md);} }

.cookie-modal-backdrop {
  position: fixed; inset: 0; z-index: 950; background: rgba(9,52,64,0.55);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease;
}
.cookie-modal-backdrop.is-active { opacity: 1; visibility: visible; }
.cookie-modal { max-width: 520px; width: 100%; padding: 2.2rem; max-height: 88vh; overflow-y: auto; position: relative; }
.cookie-modal-close { position: absolute; top: 1.2rem; right: 1.2rem; font-size: 1.5rem; color: var(--color-ink-muted); width: 36px; height: 36px; }
.cookie-modal h3 { margin-bottom: 0.8rem; }
.cookie-modal p { margin-bottom: 1.2rem; }
.cookie-category { padding: 1rem 0; border-top: 1px solid var(--color-surface-alt); }
.cookie-category-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.4rem; }
.cookie-category input[type="checkbox"] { width: 20px; height: 20px; }
.cookie-modal-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }
.cookie-modal-actions button { flex: 1; min-width: 140px; text-align: center; justify-content: center; }


@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-quote { margin-left: 0; max-width: 100%; }
  .about-grid, .story-grid, .team-grid { grid-template-columns: 1fr; }
  .about-img, .story-img, .team-img { height: 320px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--2x2, .bento-card--1x1, .bento-card--2x1 { grid-column: span 2; grid-row: auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .journey-track { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .video-card--wide { grid-column: span 2; }
  .newsletter-hero-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .intro-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-section { padding-top: 7.5rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--2x2, .bento-card--1x1, .bento-card--2x1 { grid-column: span 1; }
  .process-grid { grid-template-columns: 1fr; }
  .journey-track { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card--wide { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .intro-strip-grid { grid-template-columns: 1fr; }
  .page-hero { padding-top: 8rem; }
  .parallax-content { margin: 0 1.25rem; padding: 1.8rem; }
}