/* =============================================
   FONTS
   ============================================= */
@font-face {
  font-family: 'Bespoke Serif';
  src: url('assets/fonts/BespokeSerif-Variable.woff2') format('woff2'),
       url('assets/fonts/BespokeSerif-Variable.woff') format('woff');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bespoke Serif';
  src: url('assets/fonts/BespokeSerif-Regular.woff2') format('woff2'),
       url('assets/fonts/BespokeSerif-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bespoke Serif';
  src: url('assets/fonts/BespokeSerif-Medium.woff2') format('woff2'),
       url('assets/fonts/BespokeSerif-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bespoke Serif';
  src: url('assets/fonts/BespokeSerif-Bold.woff2') format('woff2'),
       url('assets/fonts/BespokeSerif-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --color-bg: #FFFFFF;
  --color-bg-cream: #EEEDE3;
  --color-bg-cream-light: #F5F4EE;
  --color-bg-warm: #E3DDD0;
  --color-text: #000000;
  --color-text-light: #6B6B6B;
  --color-text-muted: #7A7268;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-accent: #C8BAA2;

  --brand-yellow: #F3D59D;
  --brand-pink: #D5C1C3;
  --brand-ocher: #C8BAA2;
  --brand-gray: #D6D3CF;
  --brand-green: #B5D3C7;
  --brand-salmon: #FABBA3;
  --brand-offwhite: #EEEDE3;

  --brand-light-yellow: #F0E5CF;
  --brand-light-green: #DEE4DB;
  --brand-light-pink: #E7DFDA;
  --brand-light-salmon: #F2DDD0;
  --brand-light-ocher: #E3DDD0;

  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Bespoke Serif', Georgia, 'Times New Roman', serif;

  --max-width: 1400px;
  --nav-height: 72px;
  --section-padding: 120px;
  --side-padding: 64px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  margin: 12px 24px;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.nav-header.scrolled {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

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

.nav-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: 12px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 24px;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  background-color: var(--color-bg-cream);
}

.nav-link.active {
  border: 1px solid var(--color-text);
  background-color: transparent;
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 12px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 24px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.nav-lang:hover {
  background-color: var(--color-bg-cream);
}

.lang-select {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231A1A1A' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  min-width: 36px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 16px 36px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-primary {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease, padding 0.3s ease;
}

.btn-arrow {
  opacity: 0;
  width: 0;
  transition: opacity 0.3s ease, width 0.3s ease;
}

.btn-hero:hover {
  background-color: var(--brand-yellow);
  color: var(--color-black);
  padding: 16px 44px;
  transform: none;
  box-shadow: none;
}

.btn-hero:hover .btn-arrow {
  opacity: 1;
  width: 18px;
}

.btn-sm {
  font-size: 12px;
  padding: 14px 28px;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  padding: calc(var(--nav-height) + 60px) var(--side-padding) 80px;
  text-align: center;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-subtitle {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.015em;
  color: var(--color-text);
  margin-bottom: 44px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   FROM USERS TO CITIZENS
   ============================================= */
.citizens-section {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin: 0 24px;
}

.citizens-bg {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--color-bg-cream);
  overflow: hidden;
}

.citizens-grafismo {
  position: absolute;
  right: 5%;
  bottom: 50%;
  transform: translateY(50%);
  width: 220px;
  opacity: 0.4;
  pointer-events: none;
}

.citizens-content {
  position: relative;
  z-index: 2;
  padding: var(--section-padding) var(--side-padding);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.citizens-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
}

.citizens-line-1,
.citizens-line-2 {
  display: block;
  transform: translateY(40px);
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

.citizens-line-1 {
  opacity: 0;
}

.citizens-line-2 {
  opacity: 0;
  transition-delay: 0.5s;
}

.citizens-section.animate .citizens-line-1 {
  opacity: 1;
  transform: translateY(0);
}

.citizens-section.animate .citizens-line-2 {
  opacity: 0.4;
  transform: translateY(0);
}

/* =============================================
   ACTION SECTION
   ============================================= */
.action-section {
  padding: var(--section-padding) var(--side-padding);
}

.action-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: start;
}

.action-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  max-width: 320px;
}

.action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-star {
  width: 180px;
  height: 180px;
  transition: transform 0.6s ease;
}

.action-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.action-item {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.3;
  color: var(--color-text-muted);
  transition: color 0.5s ease;
  cursor: default;
}

.action-item.active {
  color: var(--color-text);
}

/* =============================================
   AI SECTION
   ============================================= */
.ai-section {
  background-color: var(--color-bg-cream);
  border-radius: 24px;
  margin: 0 24px;
  padding: 80px var(--side-padding);
}

.ai-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ai-illustration-img {
  max-width: 400px;
  margin: 0 auto;
}

.ai-heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.ai-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
}

/* =============================================
   SECTION TITLES
   ============================================= */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  will-change: opacity, transform;
}

/* =============================================
   OUR APPROACH - HERO + CARDS
   ============================================= */
.approach-section {
  padding: 0;
}

.approach-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-start;
  padding: var(--section-padding) var(--side-padding);
  overflow: hidden;
}

.approach-hero-bg {
  display: none;
}

.approach-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.approach-hero-text {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

.approach-container {
  max-width: var(--max-width);
  margin: -80px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 var(--side-padding) var(--section-padding);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.approach-card {
  padding: 36px;
  background-color: var(--color-white);
  border-radius: 20px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.08);
}

.approach-card:hover {
  transform: translateY(-4px);
}

.approach-card-bullet {
  display: none;
}

.approach-card-illustration {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
}

.approach-card-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin: 20px 0;
}

.approach-card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.3;
  min-height: 2.6em;
}

.approach-card-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
}

/* =============================================
   APPROACH DETAIL (Learn / Test / Deliberate / Advocate)
   ============================================= */
.approach-detail-section {
  padding: var(--section-padding) 0 var(--section-padding);
}

.approach-detail-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

.approach-detail-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.approach-detail-text {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.3;
  max-width: 900px;
  margin-bottom: 48px;
}

.approach-detail-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 calc(var(--side-padding) * -1);
  padding: 0 var(--side-padding);
}

.approach-detail-scroll::-webkit-scrollbar {
  display: none;
}

.approach-detail-cards {
  display: flex;
  gap: 24px;
  min-width: min-content;
}

.approach-detail-card {
  width: 300px;
  min-width: 300px;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

.approach-detail-card--learn {
  background-color: var(--brand-yellow);
}

.approach-detail-card--test {
  background-color: var(--brand-green);
}

.approach-detail-card--deliberate {
  background-color: var(--brand-pink);
}

.approach-detail-card--advocate {
  background-color: var(--brand-light-green);
}

.approach-detail-card-illustration {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-detail-card-img {
  max-width: 180px;
  max-height: 180px;
  object-fit: contain;
}

.approach-detail-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-top: auto;
}

/* =============================================
   PARTNERS
   ============================================= */
.partners-section {
  padding: var(--section-padding) var(--side-padding) 0;
  background-color: var(--color-bg-cream-light);
  border-radius: 24px 24px 0 0;
  margin: 24px 24px 0;
}

.partners-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.partner-card {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.partner-photo-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
}

.partner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.partner-card-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 24px;
  flex: 1;
}

/* =============================================
   CTA + PARTNER LOGOS
   ============================================= */
.cta-logos-section {
  padding: var(--section-padding) var(--side-padding);
  background-color: var(--color-bg-cream-light);
  border-radius: 0 0 24px 24px;
  margin: 0 24px;
}

.cta-logos-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-logos-text {
  font-family: var(--font-body);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  margin-bottom: 64px;
  max-width: 900px;
}

.partner-logos-label {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.partner-logos-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
}

.partner-logo-card {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background-color: var(--brand-light-ocher);
  border-radius: 12px;
}

.partner-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.partner-logo-wide {
  height: 32px;
}

.partner-logo-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
}

/* =============================================
   TEAM
   ============================================= */
.team-section {
  padding: var(--section-padding) var(--side-padding);
  background-color: var(--color-bg-cream-light);
  border-radius: 24px;
  margin: 24px 24px 0;
}

.team-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.team-left {
  position: sticky;
  top: calc(var(--nav-height) + 40px);
}

.approach-label,
.team-label {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.team-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
}

.team-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 440px;
}

.team-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.team-member {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.team-member:hover {
  opacity: 0.8;
}

.team-photo-wrapper {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-photo-headshot {
  object-fit: cover;
  object-position: center center;
}

.team-member:hover .team-photo {
  transform: scale(1.05);
}

.team-info {
  padding-top: 4px;
}

.team-info-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-expand-icon {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}

.team-linkedin {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 16px;
  display: block;
}

.team-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.12);
  margin: 0;
}

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 40px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--color-white);
  border-radius: 24px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  padding: 48px;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--color-text);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.modal-close:hover {
  background-color: var(--color-bg-cream);
}

.modal-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.modal-photo-img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.modal-name {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
}

.modal-role {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.modal-social-links {
  display: flex;
  gap: 8px;
}

.modal-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-text);
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.modal-social-links a:hover {
  background-color: var(--color-bg-cream);
}

.modal-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin: 20px 0;
}

.modal-bio {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-light);
}

.modal-bio p {
  margin-bottom: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  position: relative;
  margin: 24px 24px 0;
}

.footer-photo-bleed {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 30%;
  max-width: 400px;
  z-index: 1;
  overflow: hidden;
  border-radius: 24px 0 0 0;
}

.footer-photo-bleed-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3a5a3a 0%, #2a4a2a 100%);
  opacity: 0.9;
}

.footer-main {
  position: relative;
  z-index: 2;
  background-color: var(--brand-yellow);
  border-radius: 24px 24px 0 0;
  padding: 80px var(--side-padding) 40px;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 40px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
}

.footer-illustration-img {
  max-width: 300px;
}

.footer-cta-text {
  font-family: var(--font-body);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 32px;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--color-text);
  color: var(--color-text);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-social-link:hover {
  background-color: var(--color-text);
  color: var(--color-white);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 60px auto 0;
  padding-top: 24px;
  display: flex;
  justify-content: flex-end;
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-text-light);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --side-padding: 40px;
    --section-padding: 80px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(var(--nav-height) + 8px);
    left: 0;
    right: 0;
    background: var(--color-white);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 16px;
    width: 100%;
    text-align: left;
  }

  .nav-lang {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .action-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .action-icon {
    display: none;
  }

  .ai-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ai-illustration-img {
    max-width: 280px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .partner-logos-row {
    flex-direction: column;
    gap: 12px;
  }

  .approach-hero {
    min-height: 300px;
    padding: 80px var(--side-padding);
  }

  .approach-container {
    margin-top: -40px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-photo-bleed {
    display: none;
  }

  .modal-content {
    grid-template-columns: 1fr;
  }

  .modal-photo-img {
    max-width: 280px;
    margin: 0 auto;
  }

  .team-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-left {
    position: static;
  }

  .team-section,
  .citizens-section,
  .partners-section,
  .cta-logos-section {
    margin: 0 12px;
  }
}

@media (max-width: 640px) {
  :root {
    --side-padding: 20px;
    --section-padding: 60px;
  }

  .nav-header {
    margin: 8px 12px;
    border-radius: 12px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .hero {
    min-height: 70vh;
  }

  .citizens-bg {
    min-height: 50vh;
  }

  .ai-section {
    margin: 0 12px;
    border-radius: 16px;
    padding: 48px var(--side-padding);
  }

  .team-photo-wrapper {
    width: 140px;
    height: 140px;
  }

  .team-section,
  .citizens-section,
  .partners-section,
  .cta-logos-section {
    margin: 0 12px;
    border-radius: 16px;
  }

  .team-member {
    gap: 20px;
  }

  .footer {
    margin: 0 12px;
  }

  .footer-main {
    padding: 48px var(--side-padding) 24px;
  }

  .modal {
    padding: 24px;
    margin: 16px;
    border-radius: 16px;
  }

  .approach-detail-card {
    width: 220px;
    min-width: 220px;
  }

  .partner-photo-wrapper {
    aspect-ratio: 3 / 2;
  }
}

/* =============================================
   LARGE SCREENS (1600px+)
   ============================================= */
@media (min-width: 1600px) {
  :root {
    --max-width: 1600px;
    --side-padding: 80px;
    --section-padding: 140px;
  }

  .hero-title {
    font-size: 72px;
  }

  .hero-subtitle {
    font-size: 28px;
    max-width: 1000px;
  }

  .approach-hero-content {
    max-width: 1100px;
  }

  .approach-hero-text {
    font-size: 54px;
  }

  .approach-card {
    padding: 44px;
  }

  .approach-card-title {
    font-size: 28px;
  }

  .approach-card-text {
    font-size: 16px;
  }

  .action-heading {
    max-width: 420px;
    font-size: 48px;
  }

  .action-item {
    font-size: 34px;
  }

  .action-star {
    width: 220px;
    height: 220px;
  }

  .ai-container {
    gap: 100px;
  }

  .ai-illustration-img {
    max-width: 500px;
  }

  .ai-heading {
    font-size: 44px;
  }

  .ai-text {
    font-size: 19px;
  }

  .cta-logos-text {
    font-size: 42px;
    max-width: 1100px;
  }

  .partner-logo-img {
    height: 96px;
  }

  .partner-logo-wide {
    height: 40px;
  }

  .team-heading {
    font-size: 48px;
  }

  .team-name {
    font-size: 32px;
  }

  .team-photo-wrapper {
    width: 240px;
    height: 240px;
  }

  .citizens-title {
    font-size: 110px;
  }

  .footer-cta-text {
    font-size: 32px;
  }

  .approach-detail-text {
    font-size: 42px;
    max-width: 1100px;
  }

  .approach-detail-card {
    width: 340px;
    min-width: 340px;
  }

  .section-title {
    font-size: 64px;
  }
}

/* =============================================
   EXTRA LARGE SCREENS (1920px+)
   ============================================= */
@media (min-width: 1920px) {
  :root {
    --max-width: 1800px;
    --side-padding: 100px;
  }

  .approach-hero-content {
    max-width: 1300px;
  }

  .ai-illustration-img {
    max-width: 560px;
  }
}
