/* ============================================
   CAIRASU MASTER BRAND — Editorial Premium
   Palette: Deep Emerald + Champagne Gold + Cream
   Fonts:   Fraunces (display) + Inter (body)
   Feel:    Authoritative, editorial, premium
   ============================================ */

:root {
  /* Primary — deep authoritative greens */
  --emerald-950: #041F1D;
  --emerald-900: #06302D;
  --emerald-800: #0A3D3A;
  --emerald-700: #0E4E4A;
  --emerald-600: #147069;
  --emerald-500: #1F9089;
  --emerald-400: #4DB4AE;

  /* Gold — premium accent (reserved for money moments) */
  --gold-500:  #D4A94E;
  --gold-600:  #B88F35;
  --gold-400:  #E4C378;
  --gold-100:  #F7EEDA;
  --gold-50:   #FCF8EE;

  /* Fresh green — primary editorial accent */
  --fresh-600: #3D7D2E;
  --fresh-500: #4D9A3A;
  --fresh-400: #6BB554;
  --fresh-300: #A8D99A;
  --fresh-200: #CBEBC1;
  --fresh-100: #E4F5DF;

  /* Cream & neutrals */
  --cream-50:  #FBF9F3;
  --cream-100: #F5F1E4;
  --cream-200: #EDE6D0;
  --sand:      #E8DFC5;

  /* Ink (text) */
  --ink-950: #0A0F0E;
  --ink-800: #1A2624;
  --ink-700: #2E3D3A;
  --ink-600: #4A5854;
  --ink-500: #6C7A76;
  --ink-400: #94A19D;
  --ink-300: #C2CBC8;
  --ink-200: #DFE4E2;
  --ink-100: #F0F2F1;

  --white: #FFFFFF;

  /* Homecare sub-brand color reference (for the card) */
  --hc-green: #4D9A3A;

  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-800);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--gold-500); color: var(--emerald-950); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream-100); }
::-webkit-scrollbar-thumb { background: var(--emerald-800); }
::-webkit-scrollbar-thumb:hover { background: var(--emerald-700); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--emerald-950);
  font-variation-settings: "SOFT" 25, "WONK" 0;
}

/* Editorial italic emphasis — fresh green */
h1 em, h2 em, h3 em { color: var(--fresh-500) !important; font-style: italic; font-weight: 300; }

/* On dark backgrounds, use lighter green for contrast */
.hero h1 em,
.hero-ecosystem-h em,
.services-header h2 em,
.manifesto-text em,
.featured-visual-h em,
.cta-band h2 em,
.footer h1 em, .footer h2 em, .footer h3 em { color: var(--fresh-300) !important; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

.section { padding: 120px 0; }
.section-sm { padding: 70px 0; }

/* ─── Editorial eyebrow ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fresh-600);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
}
.eyebrow-light { color: var(--fresh-300); }
.eyebrow-gold { color: var(--gold-600); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold-500);
  color: var(--emerald-950);
}
.btn-gold:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px -8px rgba(212,169,78,0.55);
}
.btn-emerald {
  background: var(--emerald-800);
  color: var(--cream-50);
}
.btn-emerald:hover {
  background: var(--emerald-700);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px -10px rgba(10,61,58,0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--emerald-950);
  border: 1.5px solid var(--emerald-950);
}
.btn-ghost:hover {
  background: var(--emerald-950);
  color: var(--cream-50);
}
.btn-ghost-light {
  background: transparent;
  color: var(--cream-50);
  border: 1.5px solid rgba(251,249,243,0.5);
}
.btn-ghost-light:hover {
  background: var(--cream-50);
  color: var(--emerald-950);
  border-color: var(--cream-50);
}
.btn svg { width: 14px; height: 14px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }

/* ─── Reveal animations ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Fallback: if JS fails / user prefers reduced motion, always show content */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.no-js .reveal, .no-js .reveal-left, .no-js .reveal-right {
  opacity: 1 !important;
  transform: none !important;
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.34s; }
.delay-4 { transition-delay: 0.46s; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(4,31,29,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(212,169,78,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--fresh-500), var(--fresh-600));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s, box-shadow 0.4s;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variation-settings: "SOFT" 100;
  padding-bottom: 4px;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.15);
}
.nav-logo:hover .nav-logo-mark {
  transform: rotate(-4deg) scale(1.05);
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.15), 0 8px 24px -6px rgba(107,181,84,0.55);
}
.nav-logo-word {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--cream-50);
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav.scrolled .nav-logo-word { color: var(--cream-50); }
.nav-logo-tag {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fresh-300);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251,249,243,0.75);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--fresh-400);
  transition: width 0.35s ease;
}
.nav-links a:hover { color: var(--cream-50); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 12px 22px;
  background: var(--fresh-500);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--fresh-400);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -6px rgba(107,181,84,0.55);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream-50);
  margin: 6px 0;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--emerald-950);
  z-index: 99;
  flex-direction: column;
  padding: 100px 40px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-close {
  position: absolute;
  top: 26px; right: 26px;
  background: transparent;
  border: 1px solid rgba(251,249,243,0.3);
  width: 44px; height: 44px;
  cursor: pointer;
  color: var(--cream-50);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}
.mobile-nav-links a {
  display: block;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream-50);
  text-decoration: none;
  border-bottom: 1px solid rgba(251,249,243,0.1);
  transition: color 0.3s;
}
.mobile-nav-links a:hover { color: var(--fresh-400); }

/* ══════════════════════════════
   HERO — Editorial magazine
══════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--emerald-950);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--cream-50);
  padding: 100px 0 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(31,144,137,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(212,169,78,0.12) 0%, transparent 50%),
    linear-gradient(135deg, #041F1D 0%, #06302D 50%, #0A3D3A 100%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3CfeColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.2 0 0 0 0 0.18 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(212,169,78,0.06) 1px, transparent 1px);
  background-size: 25% 100%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-left { max-width: 620px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 18px 6px 6px;
  background: rgba(107,181,84,0.12);
  border: 1px solid rgba(107,181,84,0.35);
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge-dot {
  width: 26px; height: 26px;
  background: var(--fresh-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge-dot svg { width: 14px; height: 14px; fill: var(--emerald-950); }
.hero-badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fresh-300);
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  color: var(--cream-50);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  font-weight: 400;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-500);
}
.hero-tagline {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.35s both;
}
.hero-tagline-line {
  width: 60px;
  height: 1px;
  background: var(--fresh-400);
}
.hero-tagline-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--fresh-300);
  font-weight: 300;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(251,249,243,0.72);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 32px;
  animation: fadeInUp 0.9s ease 0.5s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
  animation: fadeInUp 0.9s ease 0.65s both;
}

/* Hero right — brand ecosystem card */
.hero-right {
  position: relative;
  animation: fadeIn 1.2s ease 0.5s both;
}
.hero-ecosystem-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(107,181,84,0.22);
  padding: 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
}
.hero-ecosystem-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent 15%, var(--fresh-400) 40%, var(--gold-500) 60%, transparent 85%);
}
.hero-ecosystem-title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fresh-300);
  margin-bottom: 4px;
}
.hero-ecosystem-h {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--cream-50);
  margin-bottom: 28px;
  line-height: 1.1;
}
.hero-ecosystem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-ecosystem-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(251,249,243,0.08);
  transition: var(--transition-fast);
  text-decoration: none;
}
.hero-ecosystem-item:last-child { border-bottom: none; }
.hero-ecosystem-item:hover { padding-left: 10px; }
.hero-ecosystem-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--fresh-400);
  min-width: 36px;
}
.hero-ecosystem-info { flex: 1; }
.hero-ecosystem-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream-50);
  margin-bottom: 2px;
  display: block;
}
.hero-ecosystem-sub {
  font-size: 0.75rem;
  color: var(--ink-400);
}
.hero-ecosystem-status {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.status-live { background: rgba(77,180,174,0.18); color: var(--emerald-400); border: 1px solid rgba(77,180,174,0.3); }
.status-soon { background: rgba(251,249,243,0.05); color: var(--ink-400); border: 1px solid rgba(251,249,243,0.1); }

.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 0;
  border-top: 1px solid rgba(107,181,84,0.18);
  overflow: hidden;
  background: rgba(4,31,29,0.6);
  backdrop-filter: blur(10px);
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(251,249,243,0.5);
}
.marquee-item::after {
  content: '';
  display: block;
  width: 5px; height: 5px;
  background: var(--gold-500);
  border-radius: 50%;
  margin-left: 60px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ══════════════════════════════
   STATS — Editorial numbers
══════════════════════════════ */
.stats {
  background: var(--cream-50);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat {
  text-align: center;
  padding: 20px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--sand);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 400;
  color: var(--emerald-800);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 12px;
}
.stat-num-plus { color: var(--fresh-500); font-style: italic; font-weight: 300; }
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-500);
}

/* ══════════════════════════════
   INTRO — Editorial spread
══════════════════════════════ */
.intro {
  background: var(--cream-50);
  position: relative;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.intro-left {
  position: sticky;
  top: 120px;
}
.intro-h {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--emerald-950);
  margin-bottom: 24px;
  line-height: 1.05;
}
.intro-h em { font-style: italic; color: var(--fresh-600); font-weight: 300; }
.intro-lead {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ink-700);
  line-height: 1.45;
  margin-bottom: 28px;
  font-style: italic;
}
.intro-lead::first-letter {
  font-size: 3.5rem;
  float: left;
  line-height: 0.85;
  margin: 0.05em 0.1em 0 0;
  color: var(--fresh-500);
  font-weight: 500;
}
.intro-body {
  font-size: 1rem;
  color: var(--ink-600);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* ══════════════════════════════
   SERVICES — Bold editorial cards
══════════════════════════════ */
.services {
  background: var(--emerald-950);
  color: var(--cream-50);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 400px;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(31,144,137,0.15), transparent 60%);
  pointer-events: none;
}
.services-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.services-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--cream-50);
  margin: 8px 0 24px;
  font-weight: 400;
}
.services-header h2 em { color: var(--gold-500); font-style: italic; font-weight: 300; }
.services-header p {
  font-size: 1.1rem;
  color: rgba(251,249,243,0.65);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.service {
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
  border: 1px solid rgba(107,181,84,0.15);
  padding: 44px;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107,181,84,0.10), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service:hover {
  border-color: var(--fresh-400);
  transform: translateY(-4px);
}
.service:hover::before { opacity: 1; }

.service-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-500);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.service-num::before { content: '— '; }

.service-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.service-icon {
  width: 56px; height: 56px;
  border: 1px solid rgba(107,181,84,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.service:hover .service-icon {
  background: var(--fresh-400);
  border-color: var(--fresh-400);
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--fresh-300); fill: none; stroke-width: 1.5; transition: stroke 0.3s; }
.service:hover .service-icon svg { stroke: var(--emerald-950); }

.service-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.service-badge-live {
  background: rgba(31,144,137,0.15);
  color: var(--emerald-400);
  border: 1px solid rgba(31,144,137,0.4);
}
.service-badge-soon {
  background: rgba(251,249,243,0.05);
  color: var(--ink-400);
  border: 1px solid rgba(251,249,243,0.15);
}

.service h3 {
  font-size: 2rem;
  color: var(--cream-50);
  margin-bottom: 8px;
  font-weight: 400;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.service-sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fresh-300);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.service p {
  font-size: 0.95rem;
  color: rgba(251,249,243,0.6);
  line-height: 1.75;
  margin-bottom: 28px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(251,249,243,0.08);
  position: relative;
  z-index: 1;
}
.service-features li {
  font-size: 0.85rem;
  color: rgba(251,249,243,0.65);
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-features li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--fresh-400);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fresh-400);
  transition: gap 0.3s;
  position: relative;
  z-index: 1;
}
.service-link:hover { gap: 16px; }
.service-link svg { width: 18px; height: 18px; }
.service-link-muted { color: var(--ink-400); cursor: default; }

/* ══════════════════════════════
   FEATURED HOMECARE — Split
══════════════════════════════ */
.featured {
  background: var(--cream-100);
  padding: 140px 0;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.featured-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--emerald-900), var(--emerald-700));
  overflow: hidden;
}
.featured-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at bottom right, rgba(107,181,84,0.3), transparent 60%),
    radial-gradient(ellipse at top left, rgba(212,169,78,0.12), transparent 60%);
}
.featured-visual-inner {
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(107,181,84,0.3);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.featured-visual-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fresh-300);
}
.featured-visual-badge-dot {
  width: 8px; height: 8px;
  background: var(--emerald-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.featured-visual-h {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--cream-50);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.featured-visual-h em { font-style: italic; color: var(--gold-400); font-weight: 300; }
.featured-visual-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(107,181,84,0.25);
}
.featured-visual-stat {
  color: var(--cream-50);
}
.featured-visual-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--fresh-300);
  line-height: 1;
  font-weight: 400;
}
.featured-visual-stat-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251,249,243,0.5);
  margin-top: 6px;
}
.featured-content h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin: 8px 0 28px;
  line-height: 1.05;
}
.featured-content h2 em { font-style: italic; color: var(--gold-600); font-weight: 300; }
.featured-content > p {
  font-size: 1.05rem;
  color: var(--ink-600);
  line-height: 1.8;
  margin-bottom: 20px;
}
.featured-list {
  list-style: none;
  margin: 28px 0 36px;
  padding: 28px 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.featured-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  font-size: 0.98rem;
  color: var(--ink-700);
}
.featured-list li svg {
  width: 18px; height: 18px;
  stroke: var(--emerald-600);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.featured-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ══════════════════════════════
   MANIFESTO — Big statement
══════════════════════════════ */
.manifesto {
  background: var(--emerald-800);
  color: var(--cream-50);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 90% 50%, rgba(107,181,84,0.15), transparent 50%),
    radial-gradient(ellipse 40% 60% at 20% 20%, rgba(31,144,137,0.2), transparent 50%);
}
.manifesto-quote-mark {
  font-family: var(--font-display);
  font-size: 12rem;
  color: var(--fresh-400);
  line-height: 0.6;
  margin-bottom: 30px;
  opacity: 0.8;
  font-weight: 300;
  position: relative;
  z-index: 1;
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  color: var(--cream-50);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 1000px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.manifesto-text em { font-style: italic; color: var(--gold-500); font-weight: 300; }
.manifesto-sig {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(107,181,84,0.3);
  max-width: 400px;
  position: relative;
  z-index: 1;
}
.manifesto-sig-line { flex: 1; height: 1px; background: var(--fresh-400); }
.manifesto-sig-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fresh-300);
}

/* ══════════════════════════════
   VALUES — Numbered grid
══════════════════════════════ */
.values {
  background: var(--cream-50);
  padding: 140px 0;
}
.values-header {
  max-width: 720px;
  margin-bottom: 80px;
}
.values-header h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin: 8px 0 20px;
}
.values-header h2 em { font-style: italic; color: var(--gold-600); font-weight: 300; }
.values-header p {
  font-size: 1.05rem;
  color: var(--ink-600);
  line-height: 1.75;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--sand);
  border-left: 1px solid var(--sand);
}
.value {
  padding: 48px 40px;
  border-right: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  position: relative;
  transition: var(--transition);
}
.value:hover {
  background: var(--emerald-950);
  color: var(--cream-50);
}
.value:hover .value-num { color: var(--fresh-400); }
.value:hover h3 { color: var(--cream-50); }
.value:hover p { color: rgba(251,249,243,0.7); }
.value:hover .value-icon svg { stroke: var(--fresh-400); }

.value-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--fresh-600);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  transition: color 0.4s;
}
.value-num::before { content: '— '; }
.value-icon {
  width: 48px; height: 48px;
  margin-bottom: 24px;
}
.value-icon svg { width: 100%; height: 100%; stroke: var(--fresh-500); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.4s; }
.value h3 {
  font-size: 1.5rem;
  color: var(--emerald-950);
  margin-bottom: 14px;
  font-weight: 500;
  transition: color 0.4s;
}
.value p {
  font-size: 0.92rem;
  color: var(--ink-600);
  line-height: 1.75;
  transition: color 0.4s;
}

/* ══════════════════════════════
   FOUNDER
══════════════════════════════ */
.founder {
  background: var(--cream-100);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.founder::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: linear-gradient(180deg, rgba(107,181,84,0.06), transparent);
  pointer-events: none;
}
.founder-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 90px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.founder-portrait {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(ellipse at bottom, rgba(212,169,78,0.35), transparent 65%),
    linear-gradient(135deg, var(--emerald-800) 0%, var(--emerald-950) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px;
}
.founder-portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
/* Monogram: hidden by default; only shows if the image fails to load */
.founder-portrait-mono { display: none; }
.founder-portrait.no-image .founder-portrait-mono {
  display: block;
}

.founder-portrait-mono {
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(107,181,84,0.35);
  line-height: 0.7;
  font-weight: 300;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-style: italic;
  letter-spacing: -0.05em;
  user-select: none;
  z-index: 1;
}
.founder-portrait-frame {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(107,181,84,0.3);
  pointer-events: none;
  z-index: 2;
}
/* Subtle overlay for photo legibility */
.founder-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,31,29,0.5) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.founder-portrait-caption {
  position: relative;
  z-index: 3;
  background: rgba(4,31,29,0.9);
  padding: 20px 28px;
  border-left: 3px solid var(--fresh-400);
  backdrop-filter: blur(10px);
}
.founder-portrait-caption-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream-50);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.founder-portrait-caption-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fresh-300);
}

.founder-content h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  margin: 8px 0 30px;
  line-height: 1.08;
}
.founder-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--emerald-800);
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 28px;
  padding-left: 24px;
  border-left: 2px solid var(--fresh-500);
}
.founder-body {
  font-size: 1rem;
  color: var(--ink-600);
  line-height: 1.85;
  margin-bottom: 20px;
}
.founder-signature {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--sand);
  display: flex;
  align-items: center;
  gap: 20px;
}
.founder-signature-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  font-style: italic;
  color: var(--fresh-600);
  line-height: 1;
  font-weight: 400;
}
.founder-signature-info {
  display: flex;
  flex-direction: column;
}
.founder-signature-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--emerald-950);
  font-weight: 500;
}
.founder-signature-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fresh-600);
  margin-top: 2px;
}

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials {
  background: var(--cream-50);
  padding: 140px 0;
}
.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}
.testimonials-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  margin: 8px 0 20px;
}
.testimonials-header p {
  font-size: 1.05rem;
  color: var(--ink-600);
  line-height: 1.7;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--white);
  padding: 44px 36px;
  border: 1px solid var(--sand);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial:hover {
  transform: translateY(-6px);
  border-color: var(--fresh-400);
  box-shadow: 0 20px 50px -20px rgba(77,154,58,0.35);
}
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--fresh-400);
  line-height: 0.6;
  margin-bottom: 20px;
  opacity: 0.8;
  font-weight: 300;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.testimonial-stars svg {
  width: 14px; height: 14px;
  fill: var(--gold-500);
}
.testimonial-body {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink-800);
  line-height: 1.55;
  margin-bottom: 28px;
  flex-grow: 1;
  font-weight: 400;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--sand);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--fresh-500), var(--fresh-600));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  flex-shrink: 0;
}
.testimonial-author-info {
  display: flex;
  flex-direction: column;
}
.testimonial-author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--emerald-950);
  line-height: 1.2;
}
.testimonial-author-role {
  font-size: 0.75rem;
  color: var(--ink-500);
  margin-top: 3px;
}

/* ══════════════════════════════
   TIMELINE / JOURNEY
══════════════════════════════ */
.timeline {
  background: var(--emerald-950);
  color: var(--cream-50);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.timeline::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 100% 30%, rgba(107,181,84,0.1), transparent 55%),
    radial-gradient(ellipse 40% 60% at 0% 80%, rgba(212,169,78,0.08), transparent 50%);
  pointer-events: none;
}
.timeline-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 90px;
  position: relative;
  z-index: 1;
}
.timeline-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: var(--cream-50);
  margin: 8px 0 20px;
}
.timeline-header p {
  font-size: 1.05rem;
  color: rgba(251,249,243,0.65);
  line-height: 1.7;
}
.timeline-track {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 30px;
  z-index: 1;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 12px;
  width: 1px;
  background: linear-gradient(to bottom,
    var(--fresh-400) 0%,
    var(--fresh-400) 55%,
    rgba(107,181,84,0.25) 55%,
    rgba(107,181,84,0.25) 100%);
}
.timeline-item {
  position: relative;
  padding: 0 0 60px 40px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 40px;
  align-items: start;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--fresh-400);
  border: 3px solid var(--emerald-950);
  box-shadow: 0 0 0 1px var(--fresh-400);
}
.timeline-item.future::before {
  background: var(--emerald-950);
  border: 2px solid rgba(107,181,84,0.4);
  box-shadow: 0 0 0 1px rgba(107,181,84,0.4);
}
.timeline-item.current::before {
  background: var(--gold-500);
  box-shadow: 0 0 0 1px var(--gold-500), 0 0 0 5px rgba(212,169,78,0.25);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--fresh-300);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
.timeline-item.future .timeline-year { color: rgba(107,181,84,0.5); }
.timeline-item.current .timeline-year { color: var(--gold-400); }
.timeline-content {
  padding-top: 4px;
}
.timeline-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fresh-300);
  margin-bottom: 10px;
}
.timeline-item.future .timeline-label { color: rgba(107,181,84,0.55); }
.timeline-item.current .timeline-label { color: var(--gold-400); }
.timeline-content h3 {
  font-size: 1.5rem;
  color: var(--cream-50);
  margin-bottom: 8px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.timeline-item.future .timeline-content h3 { color: rgba(251,249,243,0.7); }
.timeline-content p {
  font-size: 0.95rem;
  color: rgba(251,249,243,0.6);
  line-height: 1.65;
}

/* ══════════════════════════════
   CTA BAND
══════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--fresh-500) 0%, var(--fresh-600) 50%, var(--emerald-700) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: var(--cream-50);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(212,169,78,0.18), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(4,31,29,0.35), transparent 60%);
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-band-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--cream-50);
  line-height: 1.05;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.cta-band h2 em { font-style: italic; font-weight: 300; color: var(--gold-400) !important; }
.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.cta-band-actions .btn { justify-content: center; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--emerald-950);
  color: var(--ink-300);
  padding: 100px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(107,181,84,0.2);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--cream-50);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
}
.footer-brand-tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fresh-300);
  margin-bottom: 28px;
}
.footer-brand-desc {
  font-size: 0.9rem;
  color: rgba(251,249,243,0.55);
  line-height: 1.85;
  max-width: 320px;
  margin-bottom: 32px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(107,181,84,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fresh-300);
  transition: var(--transition);
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--fresh-500);
  color: var(--white);
  border-color: var(--fresh-500);
  transform: translateY(-2px);
}
.footer-social a svg { width: 15px; height: 15px; }
.footer-col-h {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fresh-300);
  margin-bottom: 24px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(251,249,243,0.6);
  text-decoration: none;
  transition: color 0.25s;
  display: flex;
  align-items: center;
}
.footer-links a:hover { color: var(--fresh-400); }
.chip-soon {
  font-size: 0.6rem;
  padding: 2px 8px;
  background: rgba(107,181,84,0.18);
  color: var(--fresh-300);
  margin-left: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: rgba(251,249,243,0.6);
}
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--fresh-400); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 4px; }
.footer-contact-item a { color: inherit; text-decoration: none; transition: color 0.25s; }
.footer-contact-item a:hover { color: var(--fresh-400); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(251,249,243,0.35);
}
.footer-bottom-links { display: flex; gap: 28px; list-style: none; }
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(251,249,243,0.35);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-bottom-links a:hover { color: var(--fresh-400); }

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-16px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-left { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; gap: 60px; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-left { position: static; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .founder-grid { grid-template-columns: 1fr; gap: 60px; }
  .founder-portrait { aspect-ratio: 1 / 1; max-width: 480px; margin: 0 auto; width: 100%; }
  .founder-portrait-mono { font-size: 14rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid > :nth-child(3) { grid-column: 1 / -1; max-width: 500px; margin: 0 auto; width: 100%; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .services, .featured, .values, .founder, .testimonials, .timeline { padding: 80px 0; }
  .manifesto { padding: 100px 0; }
  .container, .container-narrow { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat:nth-child(2)::after { display: none; }
  .stat-num { font-size: 3.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 100px 0 120px; }
  .hero-marquee { padding: 16px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid > :nth-child(3) { max-width: 100%; }
  .founder-portrait { max-width: 100%; padding: 24px; }
  .founder-portrait-frame { inset: 16px; }
  .founder-portrait-mono { font-size: 11rem; }
}
@media (max-width: 480px) {
  .service { padding: 32px 28px; }
  .btn { padding: 14px 24px; font-size: 0.72rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .featured-visual-inner { padding: 24px; inset: 20px; }
  .featured-visual-h { font-size: 2.2rem; }
  .cta-band-actions { align-items: stretch; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat::after { display: none !important; }
}
