:root {
  --teal: #1B6B5E;
  --teal-dark: #134d44;
  --teal-light: #e8f4f2;
  --teal-mid: #2d8c7c;
  --green: #4a9b6f;
  --green-light: #edf7f1;
  --amber: #d4845a;
  --amber-light: #fdf1eb;
  --off-white: #F7F5F0;
  --warm-gray: #8c8680;
  --dark: #1a1916;
  --text: #2d2b28;
  --text-light: #6b6760;
  --border: #e2ddd8;
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247,245,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 96px;
}

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

.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--amber);
}

.nav-links {
  display: flex; gap: 2rem; list-style: none;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--teal); }

.nav-links a.active { color: var(--teal); font-weight: 700; }

.nav-cta {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-light);
  border: 1.5px solid var(--teal);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--teal);
  color: white;
}

/* ── HERO ── */
#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 130px 8% 80px;
  gap: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(27,107,94,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(74,155,111,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  border: 1px solid rgba(27,107,94,0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.eu-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 1.5rem;
  text-align: left;
}

.hero-title .accent { color: var(--teal); }

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  text-align: left;
}

.hero-actions {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-primary {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  background: var(--teal);
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(27,107,94,0.25);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(27,107,94,0.32);
}

.btn-secondary {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--teal);
  text-decoration: none;
  display: flex; align-items: center; gap: 0.4rem;
  transition: gap 0.2s;
}

.btn-secondary:hover { gap: 0.7rem; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  width: 100%;
  max-width: 360px;
  position: relative;
}

.hero-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem;
}

.hero-card-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--teal);
  letter-spacing: -0.02em;
}

.hero-card-badge {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
  padding: 0.5rem 1rem;
  border-radius: 100px;
}

.checkin-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.checkin-question {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.mood-scale {
  display: flex; gap: 0.5rem; margin-bottom: 1.5rem;
}

.mood-btn {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  border: 2px solid transparent;
  background: var(--off-white);
  transition: all 0.15s;
  user-select: none;
}

.mood-btn:hover {
  background: var(--teal-light);
  border-color: rgba(27,107,94,0.2);
}

.mood-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(27,107,94,0.25);
}

.categories-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.chips {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.8rem;
}

.chip {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}

.chip:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.chip.active {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal);
}

.chip.esg {
  border-color: rgba(74,155,111,0.3);
  color: var(--green);
  background: var(--green-light);
}

.chip.esg.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.submit-btn {
  width: 100%;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  background: var(--teal);
  border: none;
  padding: 0.85rem;
  border-radius: 12px;
  cursor: default;
  margin-top: 1rem;
  opacity: 0.85;
}

.hero-card-note {
  font-family: var(--font-head);
  font-size: 0.68rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.75rem;
}

.hero-card-preview-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.hero-card-preview-tag:hover {
  background: var(--teal);
  color: white;
}

.floating-badge {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem;
  z-index: 10;
}

.floating-badge.top-right {
  top: -26px; right: 16px;
  color: var(--green);
  box-shadow: 0 4px 16px rgba(74,155,111,0.18);
}

.floating-badge.bottom-left {
  bottom: -26px; left: 16px;
  color: var(--teal);
  box-shadow: 0 4px 16px rgba(27,107,94,0.15);
}

.badge-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}

.badge-icon.green { background: var(--green-light); }
.badge-icon.teal { background: var(--teal-light); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--teal);
  padding: 2rem 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  display: block;
  letter-spacing: -0.03em;
}

.stat-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.2);
}

/* ── SECTIONS ── */
section {
  padding: 100px 5%;
}

.section-eyebrow {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 3.5rem;
}

/* ── ABOUT (homepage section) ── */
#about {
  background: white;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.about-inner .section-eyebrow,
.about-inner .section-title {
  text-align: center;
}

.about-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.focus-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.focus-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 40px rgba(27,107,94,0.08);
  transform: translateY(-3px);
}

.focus-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.focus-icon-g {
  background: var(--teal-light);
  color: var(--teal);
}

.focus-icon-w {
  background: var(--green-light);
  color: var(--green);
}

.focus-icon-s {
  background: var(--amber-light);
  color: var(--amber);
}

.focus-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.focus-card-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.focus-card-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}

.focus-card:hover .focus-card-link {
  gap: 0.6rem;
}

/* ── WHO IT'S FOR ── */
#who {
  background: var(--off-white);
}

.who-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.who-inner .section-eyebrow,
.who-inner .section-title {
  text-align: center;
}

.who-intro {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.who-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.who-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  min-height: 200px;
}

.who-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 30px rgba(27,107,94,0.08);
  transform: translateY(-3px);
}

.who-card-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 1rem;
}

.who-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.who-card-line {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.who-card-arrow {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal);
  align-self: flex-end;
  transition: transform 0.2s;
}

.who-card:hover .who-card-arrow {
  transform: translateX(4px);
}

.who-detail {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  scroll-margin-top: 120px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  align-items: start;
}

.who-detail:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.who-detail-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.02em;
  line-height: 1;
}

.who-detail-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.who-detail-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.who-detail-cta {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}

.who-detail-cta:hover {
  gap: 0.6rem;
}

/* ── HOW IT WORKS ── */
#how {
  background: var(--off-white);
  padding-top: 60px;
}

.how-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.how-disclaimer {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  max-width: 560px;
  margin: 0.75rem auto 0;
  line-height: 1.6;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-light), var(--teal), var(--teal-light));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  position: relative; z-index: 1;
  transition: transform 0.2s, box-shadow 0.2s;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27,107,94,0.1);
}

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative; z-index: 1;
  flex-shrink: 0;
}

.step-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── PROJECT JOURNEY (timeline) ── */
#work {
  background: white;
}

.journey-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.journey-inner .section-eyebrow,
.journey-inner .section-title {
  text-align: center;
}

.journey-intro {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 4rem;
}

.timeline-container {
  position: relative;
  padding-top: 60px;
  margin: 0 4%;
}

.timeline-track {
  display: flex;
  gap: 4px;
  position: relative;
  min-height: 92px;
}

.timeline-phase {
  position: relative;
  background: var(--teal-light);
  border-radius: 8px;
  padding: 1rem 0.6rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.phase-listening { flex: 8; }
.phase-designing { flex: 6; }
.phase-building  { flex: 8; }
.phase-testing   { flex: 10; }
.phase-sharing   { flex: 7; }

.timeline-phase:hover {
  background: var(--teal);
  z-index: 15;
}

.timeline-phase:hover .timeline-phase-label,
.timeline-phase:hover .timeline-phase-dates {
  color: white;
}

.timeline-phase.is-current {
  background: var(--teal);
  box-shadow: 0 6px 24px rgba(27,107,94,0.18);
}

.timeline-phase.is-current .timeline-phase-label,
.timeline-phase.is-current .timeline-phase-dates {
  color: white;
}

.timeline-phase.is-past {
  opacity: 0.55;
}

.timeline-phase-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--teal-dark);
  margin-bottom: 0.3rem;
  line-height: 1.2;
  transition: color 0.2s;
}

.timeline-phase-dates {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--teal-dark);
  opacity: 0.7;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.timeline-phase-tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--dark);
  color: white;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.55;
  width: 280px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 12;
  font-family: var(--font-body);
  text-align: left;
  font-weight: 400;
}

.timeline-phase-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: var(--dark);
}

.timeline-phase:hover .timeline-phase-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.timeline-marker {
  position: absolute;
  top: 0;
  bottom: 32px;
  left: 0;
  z-index: 6;
  pointer-events: none;
  transition: left 0.6s ease;
}

.timeline-marker-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: white;
  padding: 0.45rem 0.95rem;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(212,132,90,0.4);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.timeline-marker-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  animation: timelinePulse 2s ease-in-out infinite;
}

@keyframes timelinePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.timeline-marker-line {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--amber);
  height: calc(100% - 40px);
}

.timeline-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.timeline-axis-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.journey-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── PARTNERS ── */
#partners {
  background: var(--off-white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.partner-card-link {
  text-decoration: none;
  color: inherit;
  display: contents;
}

.partner-card {
  background: white;
  border-radius: 18px;
  cursor: pointer;
  padding: 1.75rem 1.25rem;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.partner-card:hover {
  border-color: var(--teal);
  box-shadow: 0 6px 24px rgba(27,107,94,0.07);
}

.partner-logo {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 4px 0;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-logo-placeholder {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.4;
}

.partner-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.partner-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.45rem;
  line-height: 1.35;
  text-align: center;
}

.partner-country {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.02em;
  text-align: center;
}

/* ── UPDATES (homepage preview) ── */
#updates {
  background: white;
}

.news-carousel {
  position: relative;
  margin-top: 3rem;
}

.news-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.news-carousel-viewport::-webkit-scrollbar { display: none; }

.news-card-link {
  flex: 0 0 calc((100vw - 10vw - 3rem) / 3);
  min-width: 0;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-grid {
  display: flex;
  gap: 1.5rem;
  cursor: grab;
}

.news-grid.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.news-card {
  border-radius: 18px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s;
  cursor: pointer;
  height: 100%;
  background: white;
}

.news-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.news-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: white;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  color: var(--teal);
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  padding: 0 0 4px 0;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.news-nav:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-50%) scale(1.05);
}

.news-nav-prev { left: -22px; }
.news-nav-next { right: -22px; }
.news-nav[hidden] { display: none; }

.news-card-img {
  height: 160px;
  background: var(--teal-light);
  display: flex; align-items: flex-start; justify-content: flex-start;
  padding: 1rem;
  position: relative;
}

.news-card-tag {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  background: var(--teal);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  align-self: flex-start;
}

.news-card-body {
  padding: 1.5rem;
}

.news-date {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.news-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.news-excerpt {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.news-read {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  display: flex; align-items: center; gap: 0.3rem;
  transition: gap 0.2s;
}

.news-read:hover { gap: 0.55rem; }

/* ── CONTACT ── */
#contact {
  background: var(--teal);
  padding: 80px 5%;
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner .section-eyebrow {
  color: rgba(255,255,255,0.6);
}

.contact-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.contact-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-cards {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

.contact-card {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 1.5rem;
  min-width: 200px;
  text-align: left;
  backdrop-filter: blur(8px);
}

.contact-card-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.4rem;
}

.contact-card-value {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

.contact-card-value a {
  color: white;
  text-decoration: none;
}

.contact-card-value a:hover {
  text-decoration: underline;
}

/* ── CONTACT FORM ── */
.contact-form {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

.contact-label-optional {
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  margin-left: 0.25rem;
}

.contact-input {
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--dark);
  background: white;
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.contact-input:focus {
  border-color: var(--teal-mid);
}

.contact-textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-submit {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--teal);
  background: white;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all 0.2s;
  align-self: center;
}

.contact-submit:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}

.contact-form-note {
  font-family: var(--font-head);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-top: 0.25rem;
}

.contact-form-status {
  font-family: var(--font-head);
  font-size: 0.85rem;
  text-align: center;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  margin-top: 0.5rem;
  display: none;
}

.contact-form-status.success,
.contact-form-status.error {
  display: block;
}

.contact-form-status.success {
  background: var(--teal-light);
  color: var(--teal);
}

.contact-form-status.error {
  background: var(--amber-light);
  color: var(--amber);
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 3rem 5% 1.75rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.25rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-logo-img {
  height: 100px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
}

.footer-eu {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-eu-logo {
  background: var(--off-white);
  padding: 6px 10px;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-eu-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.eu-text {
  font-family: var(--font-head);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-eu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.85rem;
}

.footer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.55rem;
}

.footer-links a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}

.footer-bottom-text {
  font-family: var(--font-head);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.project-number {
  font-family: var(--font-head);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.03em;
}

/* ── HAMBURGER & MOBILE MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: all 0.25s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 96px; left: 0; right: 0;
  background: rgba(247,245,240,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 1.5rem 5%;
  gap: 0;
  z-index: 99;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:last-child {
  border-bottom: none;
  color: var(--teal);
  padding-top: 1rem;
}

.mobile-menu a:hover { color: var(--teal); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.7s ease forwards;
}

.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.35s; opacity: 0; }

/* ──────────────────────────────────────────────── */
/* SUBPAGE STYLES (About page and future subpages) */
/* ──────────────────────────────────────────────── */

.page-header {
  padding: 160px 5% 70px;
  background: white;
  text-align: center;
}

.page-header .hero-eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.page-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.page-status {
  font-size: 0.92rem;
  color: var(--teal);
  font-style: italic;
  line-height: 1.65;
  max-width: 640px;
  margin: 1.25rem auto 0;
}

.content-section {
  padding: 80px 5%;
  background: var(--off-white);
}

.content-section.alt {
  background: white;
}

.content-inner {
  max-width: 760px;
  margin: 0 auto;
}

.content-inner-wide {
  max-width: 1100px;
  margin: 0 auto;
}

.content-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.content-section p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.content-section p:last-child {
  margin-bottom: 0;
}

.focus-detail {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 120px;
}

.focus-detail:last-of-type {
  border-bottom: none;
}

.focus-detail .focus-icon {
  width: 64px;
  height: 64px;
  font-size: 1.7rem;
  margin-bottom: 0;
}

.focus-detail-body h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.focus-detail-body p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.bridge-callout {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 14px 14px 0;
  padding: 1.75rem 2rem;
  margin: 3rem 0 0;
  font-size: 1.02rem;
  color: var(--teal-dark);
  line-height: 1.7;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-top: 2rem;
}

.value-item {
  padding: 1.25rem 1.5rem;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 14px;
}

.value-item-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.value-item-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

.page-cta {
  padding: 80px 5%;
  background: var(--teal);
  text-align: center;
  color: white;
}

.page-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.page-cta p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  font-size: 1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.page-cta .btn-primary {
  background: white;
  color: var(--teal);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.page-cta .btn-primary:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}

/* ── UPDATES PAGE (archive) ── */
.updates-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.update-entry {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 2.25rem 2rem;
  scroll-margin-top: 120px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.update-entry:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 30px rgba(27,107,94,0.06);
}

.update-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.update-date {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.update-category {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  background: var(--teal);
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
}

.update-category--meetings { background: var(--teal); }
.update-category--development { background: var(--green); }
.update-category--looking-ahead { background: var(--amber); }

.update-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.update-block {
  margin-bottom: 1.25rem;
}

.update-block:last-child {
  margin-bottom: 0;
}

.update-block-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.update-block-text {
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .update-entry { padding: 1.5rem 1.25rem; }
  .update-title { font-size: 1.2rem; }
  .update-block-text { font-size: 0.92rem; }
}

/* ── STUB / COMING SOON PAGES ── */
.stub-page {
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 5% 6rem;
  background: var(--off-white);
}

.stub-inner {
  text-align: center;
  max-width: 680px;
}

.stub-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.stub-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.stub-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.stub-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
/* ── TABLET 1024px ── */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .who-cards { grid-template-columns: repeat(2, 1fr); }
  .timeline-phase-label { font-size: 0.78rem; }
  .timeline-phase-dates { font-size: 0.66rem; }
}

/* ── MOBILE 768px ── */
@media (max-width: 768px) {
  /* Nav */
  nav { padding: 0 4%; height: 72px; }
  .nav-logo-img { height: 100px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { top: 72px; }

  /* Hero */
  #home {
    grid-template-columns: 1fr;
    padding: 100px 5% 60px;
    gap: 2.5rem;
    align-items: start;
  }
  .hero-content { align-items: center; }
  .hero-title { font-size: 2rem; text-align: center; }
  .hero-desc { font-size: 1rem; text-align: center; max-width: 100%; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    width: 100%;
  }
  .hero-visual {
    display: flex;
    padding-top: 1rem;
  }
  .hero-card { max-width: 100%; }
  .floating-badge { display: none; }

  /* Stats */
  .stats-bar { flex-direction: column; gap: 1rem; padding: 1.5rem 5%; }
  .stat-divider { width: 40px; height: 1px; }
  .stat-number { font-size: 1.6rem; }

  /* Sections */
  section { padding: 60px 5%; }
  .section-title { font-size: 1.7rem; }

  /* About */
  .focus-grid { grid-template-columns: 1fr; }

  /* Who it's for */
  .who-cards { grid-template-columns: 1fr; gap: 0.85rem; margin-bottom: 2.5rem; }
  .who-card { min-height: auto; padding: 1.5rem 1.25rem; }
  .who-detail {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 2rem 0;
  }
  .who-detail-num { font-size: 1.3rem; }
  .who-detail-title { font-size: 1.2rem; }

  /* How it works */
  .steps { grid-template-columns: 1fr; gap: 1rem; }

  /* Project journey timeline - stack vertically */
  .timeline-container { padding-top: 0; margin: 0; }
  .timeline-marker { display: none; }
  .timeline-track {
    flex-direction: column;
    min-height: auto;
    gap: 0.75rem;
  }
  .timeline-phase {
    flex: none;
    text-align: left;
    padding: 1.25rem;
    border-left: 4px solid var(--teal-light);
  }
  .timeline-phase.is-current {
    border-left-color: var(--amber);
  }
  .timeline-phase-label { font-size: 0.95rem; margin-bottom: 0.4rem; }
  .timeline-phase-dates { font-size: 0.75rem; }
  .timeline-phase-tooltip {
    position: static;
    transform: none;
    width: auto;
    opacity: 1;
    margin-top: 0.85rem;
    background: transparent;
    color: var(--text-light);
    padding: 0;
    box-shadow: none;
    font-size: 0.88rem;
    text-align: left;
  }
  .timeline-phase.is-current .timeline-phase-tooltip,
  .timeline-phase:hover .timeline-phase-tooltip {
    color: rgba(255,255,255,0.95);
  }
  /* Override desktop hover transform on mobile - it would shift the
     now-static tooltip 50% of its own width to the left and clip. */
  .timeline-phase:hover .timeline-phase-tooltip {
    transform: none;
  }
  .timeline-phase-tooltip::after { display: none; }
  .timeline-axis { display: none; }
  .journey-intro { margin-bottom: 2rem; }

  /* Partners */
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .partner-name { font-size: 0.78rem; }
  .partner-card { padding: 1.25rem 0.85rem; }

  /* News */
  .news-card-link { flex: 0 0 85%; }
  .news-nav { display: none; }
  .news-grid { cursor: auto; }

  /* Contact form */
  .contact-form-row { grid-template-columns: 1fr; }
  #contact { padding: 60px 5%; }
  .contact-title { font-size: 1.7rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }

  /* Subpages */
  .page-header { padding: 110px 5% 50px; }
  .content-section { padding: 50px 5%; }
  .focus-detail {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }
  .focus-detail .focus-icon { margin-bottom: 0.5rem; }
}

/* ── SMALL MOBILE 480px ── */
@media (max-width: 480px) {
  #home { padding: 85px 4% 50px; }
  .hero-title { font-size: 1.75rem; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .btn-primary { padding: 0.75rem 1.4rem; font-size: 0.875rem; }
  .hero-card { padding: 1.5rem 1.25rem; }
  .mood-btn { font-size: 1.1rem; }
  nav { height: 60px; }
  .nav-logo-img { height: 80px; }
  .mobile-menu { top: 60px; }
}
