:root {
  --pink:       #f5b6b0;
  --pink-dark:  #e89f98;
  --pink-deep:  #c97068;
  --pink-pale:  #fce8e6;
  --pink-ultra: #fdf5f4;
  --white:      #ffffff;
  --black:      #111111;
  --black-mid:  #2a2a2a;
  --gray:       #6b6b6b;
  --gray-light: #e8e8e8;
  --section-dark: #f0eeec;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  background: linear-gradient(180deg, #f5b6b0 3%, #ffffff 8%);
  color: var(--black);
  overflow-x: hidden;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--pink);
  padding: 7rem 5% 5rem 7%;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute; top: -120px; left: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.hero-left::after {
  content: '';
  position: absolute; bottom: 60px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
}

.hero-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; color: rgba(0,0,0,.5);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .8rem;
  position: relative; z-index: 1;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1.5px; background: rgba(0,0,0,.35);
}

.hero-title {
  font-family: 'Open Sans', serif;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 900; line-height: .95;
  color: var(--black);
  position: relative; z-index: 1;
}
.hero-title em {
  font-style: italic; color: var(--white);
  display: block;
  text-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.hero-desc {
  margin-top: 2rem;
  color: rgba(0,0,0,.65); font-size: 1.05rem; line-height: 1.75;
  max-width: 440px; position: relative; z-index: 1;
}

.hero-since {
  margin-top: 3rem;
  display: inline-flex; align-items: center; gap: 1rem;
  position: relative; z-index: 1;
}
.since-num {
  font-family: 'Open Sans', serif;
  font-size: 4.5rem; font-weight: 900; line-height: 1;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,.1);
}
.since-text { font-size: .78rem; color: rgba(0,0,0,.55); line-height: 1.5; text-transform: uppercase; letter-spacing: .08em; }
.since-text strong { display: block; color: var(--black); font-size: 1rem; text-transform: none; letter-spacing: 0; font-weight: 700; margin-bottom: .2rem; }

.hero-right {
  background: var(--white);
  padding: 7rem 7% 5rem 5%;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  border-left: 1px solid var(--pink-pale);
}
.hero-right::before {
  content: '';
  position: absolute; bottom: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: var(--pink-ultra);
}
.hero-right::after {
  content: '';
  position: absolute; top: 40px; left: 40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--pink-pale);
  opacity: .5;
}

.thread-art {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  opacity: .06; pointer-events: none;
}

.hero-manifesto {
  position: relative; z-index: 1;
}
.manifesto-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--pink-deep);
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: .8rem;
}
.manifesto-label::before {
  content: ''; width: 24px; height: 2px; background: var(--pink);
}
.manifesto-quote {
  font-family: 'Open Sans', serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700; line-height: 1.3;
  color: var(--black); margin-bottom: 2rem;
}
.manifesto-quote em { color: var(--pink-deep); font-style: italic; }
.manifesto-body {
  color: var(--gray); font-size: .9rem; line-height: 1.8;
  border-left: 3px solid var(--pink);
  padding-left: 1.2rem;
  background: var(--pink-ultra);
  padding: 1.2rem 1.5rem;
  border-radius: 0 8px 8px 0;
}

.stats-bar {
  background: var(--section-dark);
  border-top: 3px solid var(--pink);
}
.stats-inner {
  max-width: 100%;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 2.5rem 3rem;
  border-right: 1px solid rgba(0,0,0,.08);
  position: relative;
  transition: background .3s;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(245,182,176,.15); }
.stat-num {
  font-family: 'Open Sans', serif;
  font-size: 3rem; font-weight: 900; line-height: 1;
  color: var(--pink-deep);
}
.stat-label { color: var(--black-mid); font-size: .78rem; margin-top: .4rem; letter-spacing: .05em; }
.stat-sub   { color: var(--gray); font-size: .68rem; margin-top: .15rem; }

.story {
  padding: 7rem 7%;
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center;
}

.story-visual { position: relative; }
.story-card-stack { position: relative; height: 480px; }
.story-card { position: absolute; border-radius: 8px; overflow: hidden; }

.story-card-1 {
  width: 300px; height: 380px;
  top: 60px; left: 0;
  background: var(--pink-pale);
  border: 1px solid var(--pink);
  transform: rotate(-2deg);
  display: flex; align-items: center; justify-content: center;
}
.story-card-2 {
  width: 280px; height: 360px;
  top: 20px; right: 20px;
  background: var(--pink-ultra);
  border: 1px solid var(--gray-light);
  transform: rotate(1.5deg);
  z-index: 1;
}
.story-card-main {
  width: 320px; height: 400px;
  top: 40px; left: 60px;
  background: var(--pink);
  z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(245,182,176,.4);
}
.story-card-main-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(0,0,0,.5); margin-bottom: .5rem;
}
.story-card-main-title {
  font-family: 'Open Sans', serif;
  font-size: 1.6rem; font-weight: 900; color: var(--black); line-height: 1.2;
}
.story-card-float {
  position: absolute; bottom: 20px; right: 0; z-index: 10;
  background: var(--section-dark); border-radius: 8px;
  padding: 1rem 1.4rem;
  border: 1px solid var(--pink);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.float-num {
  font-family: 'Open Sans', serif;
  font-size: 1.8rem; font-weight: 900; color: var(--pink-deep); line-height: 1;
}
.float-lbl { color: var(--gray); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }

.story-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg, rgba(0,0,0,.015) 0px, rgba(0,0,0,.015) 1px,
    transparent 1px, transparent 10px
  );
}

.story-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--pink-deep);
  margin-bottom: .8rem;
  display: flex; align-items: center; gap: .8rem;
}
.story-label::after { content: ''; flex: 1; max-width: 60px; height: 1.5px; background: var(--pink); }
.story-heading {
  font-family: 'Open Sans', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900; line-height: 1.15;
  color: var(--black); margin-bottom: 1.5rem;
}
.story-heading em { font-style: italic; color: var(--pink-deep); }
.story-p {
  color: var(--gray); font-size: .95rem; line-height: 1.85;
  margin-bottom: 1.2rem;
}
.story-p strong { color: var(--black); font-weight: 600; }

.story-founder {
  margin-top: 2.5rem;
  display: flex; align-items: center; gap: 1.2rem;
  padding-top: 2rem; border-top: 1px solid var(--pink-pale);
}
.founder-avatar {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Open Sans', serif;
  font-size: 1.5rem; font-weight: 900; color: var(--black);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--pink);
}
.founder-name  { font-weight: 700; font-size: .95rem; color: var(--black); }
.founder-title { color: var(--gray); font-size: .8rem; margin-top: .1rem; }
.founder-quote { font-size: .82rem; color: var(--gray); font-style: italic; margin-top: .3rem; line-height: 1.5; }

.values-section {
  background: var(--section-dark);
  padding: 6rem 7%;
}
.values-inner { max-width: 1400px; margin: 0 auto; }
.values-header { text-align: center; margin-bottom: 4rem; }
.values-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--pink-deep); margin-bottom: .8rem;
}
.values-title {
  font-family: 'Open Sans', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; color: var(--black);
}
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--pink-pale);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s, background .3s;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(245,182,176,.25);
  border-color: var(--pink);
  background: var(--white);
}
.value-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--pink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.value-card:hover::after { transform: scaleX(1); }
.value-num {
  font-family: 'Open Sans', serif;
  font-size: 3.5rem; font-weight: 900;
  color: var(--pink-pale); line-height: 1;
  position: absolute; top: 1rem; right: 1.5rem;
}
.value-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
.value-title {
  font-weight: 800; font-size: 1rem; color: var(--black);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: .7rem;
}
.value-desc { color: var(--gray); font-size: .88rem; line-height: 1.7; }

.timeline-section {
  padding: 7rem 7%;
  background: var(--white);
}
.timeline-inner { max-width: 1400px; margin: 0 auto; }
.timeline-header { margin-bottom: 4rem; }
.timeline-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--pink-deep); margin-bottom: .8rem;
}
.timeline-title {
  font-family: 'Open Sans', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; color: var(--black);
}
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 2px; background: linear-gradient(to bottom, var(--pink) 0%, var(--pink-pale) 100%);
}
.tl-item {
  position: relative;
  padding: 0 0 3.5rem 3rem;
  display: grid; grid-template-columns: 100px 1fr; gap: 2rem; align-items: start;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -9px; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--pink);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--pink);
  transition: transform .3s, box-shadow .3s;
}
.tl-item:hover .tl-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(245,182,176,.3);
}
.tl-year {
  font-family: 'Open Sans', serif;
  font-size: 1.5rem; font-weight: 900; color: var(--pink-deep);
  line-height: 1; padding-top: .1rem;
}
.tl-title { font-weight: 700; font-size: 1rem; color: var(--black); margin-bottom: .4rem; }
.tl-desc  { color: var(--gray); font-size: .88rem; line-height: 1.7; }
.tl-badge {
  display: inline-block; margin-top: .6rem;
  background: var(--pink-pale); color: var(--pink-deep);
  font-size: .65rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: .2rem .7rem; border-radius: 20px;
}

.team-section {
  background: var(--pink-ultra);
  padding: 6rem 7%;
  border-top: 1px solid var(--pink-pale);
  border-bottom: 1px solid var(--pink-pale);
  position: relative; overflow: hidden;
}
.team-section::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(245,182,176,.15);
}
.team-section::after {
  content: '';
  position: absolute; bottom: -150px; left: -150px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(245,182,176,.1);
}
.team-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }
.team-header { margin-bottom: 3.5rem; }
.team-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--pink-deep); margin-bottom: .8rem;
}
.team-title {
  font-family: 'Open Sans', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; color: var(--black);
}
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--white);
  border: 1px solid var(--pink-pale);
  border-radius: 8px; padding: 2rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(245,182,176,.25);
  border-color: var(--pink);
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Open Sans', serif;
  font-size: 1.8rem; font-weight: 900; color: var(--pink);
  margin-bottom: 1.2rem;
  border: 3px solid var(--pink-pale);
}
.team-name  { font-weight: 700; font-size: 1rem; color: var(--black); margin-bottom: .2rem; }
.team-role  { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--pink-deep); margin-bottom: .8rem; }
.team-bio   { font-size: .85rem; color: var(--gray); line-height: 1.7; }

.reviews-strip {
  background: var(--section-dark);
  padding: 5rem 7%;
}
.reviews-inner { max-width: 1400px; margin: 0 auto; }
.reviews-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem;
}
.reviews-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--pink-deep); margin-bottom: .6rem;
}
.reviews-title {
  font-family: 'Open Sans', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 900; color: var(--black);
}
.reviews-score { text-align: right; }
.score-big {
  font-family: 'Open Sans', serif;
  font-size: 4rem; font-weight: 900; color: var(--pink); line-height: 1;
}
.score-stars { color: var(--pink); font-size: 1.1rem; margin: .3rem 0; }
.score-count { color: var(--gray); font-size: .78rem; }

.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.review-card {
  background: var(--white);
  border: 1px solid var(--pink-pale);
  border-radius: 6px; padding: 1.5rem;
  transition: border-color .2s, background .2s;
}
.review-card:hover { border-color: var(--pink); background: var(--pink-ultra); }
.review-q { font-family: 'Open Sans', serif; font-size: 2rem; color: var(--pink); line-height: 1; margin-bottom: .8rem; }
.review-text { color: var(--gray); font-size: .84rem; line-height: 1.65; margin-bottom: 1.2rem; }
.review-author { display: flex; align-items: center; gap: .7rem; }
.review-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .8rem; color: var(--black);
}
.review-name  { color: var(--black); font-weight: 600; font-size: .82rem; }
.review-stars { color: var(--pink); font-size: .65rem; margin-top: .1rem; }

.cta-section {
  padding: 7rem 7%;
  background: var(--white);
  border-top: 1px solid var(--pink-pale);
}
.cta-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.cta-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--pink-deep); margin-bottom: .8rem;
}
.cta-title {
  font-family: 'Open Sans', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 900;
  color: var(--black); line-height: 1.15; margin-bottom: 1.2rem;
}
.cta-title em { color: var(--pink-deep); font-style: italic; }
.cta-desc { color: var(--gray); font-size: .95rem; line-height: 1.8; }

.cta-actions { display: flex; flex-direction: column; gap: 1rem; }
.cta-card {
  background: var(--pink);
  border-radius: 8px; padding: 2rem 2.5rem;
  position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none; display: block;
  border: 1px solid transparent;
}
.cta-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(245,182,176,.4); }
.cta-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.cta-card-label { font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(0,0,0,.45); margin-bottom: .4rem; }
.cta-card-main  { font-weight: 700; font-size: 1rem; color: var(--black); margin-bottom: .3rem; }
.cta-card-sub   { font-size: .82rem; color: rgba(0,0,0,.55); }
.cta-card-arrow { position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: rgba(0,0,0,.25); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .35s; }

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity .75s cubic-bezier(.22,.61,.36,1),
    transform .75s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: .07s; }
.reveal-d2 { transition-delay: .15s; }
.reveal-d3 { transition-delay: .23s; }
.reveal-d4 { transition-delay: .31s; }
.reveal-d5 { transition-delay: .39s; }
.reveal-d6 { transition-delay: .47s; }

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 5rem 6% 4rem;
    justify-content: flex-start;
  }
  .hero-right {
    padding: 4rem 6%;
    border-left: none;
    border-top: 1px solid var(--pink-pale);
  }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell { padding: 2rem 2rem; }

  .story {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 6%;
  }
  .story-card-stack { height: 320px; }
  .story-card-main { width: 260px; height: 320px; }
  .story-card-1 { width: 240px; height: 300px; }

  .values-grid { grid-template-columns: 1fr 1fr; }
  .values-section { padding: 5rem 6%; }

  .timeline-section { padding: 5rem 6%; }
  .tl-item { grid-template-columns: 70px 1fr; gap: 1rem; }

  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-section { padding: 5rem 6%; }

  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .reviews-strip { padding: 4rem 6%; }

  .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-section { padding: 5rem 6%; }
}

@media (max-width: 640px) {
  .hero-left { padding: 4rem 5% 3.5rem; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); line-height: 1.0; }
  .hero-desc { font-size: .95rem; margin-top: 1.5rem; }
  .hero-since { margin-top: 2rem; }
  .since-num { font-size: 3.5rem; }
  .hero-right { padding: 3rem 5%; }
  .manifesto-quote { font-size: 1.35rem; }
  .manifesto-label { margin-bottom: 1.2rem; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { padding: 1.5rem 1.2rem; border-bottom: 1px solid rgba(0,0,0,.06); }
  .stat-cell:nth-child(3), .stat-cell:nth-child(4) { border-bottom: none; }
  .stat-num { font-size: 2.2rem; }
  .stat-label { font-size: .72rem; }

  .story { padding: 4rem 5%; gap: 2.5rem; }
  .story-card-stack { display: none; }
  .story-heading { font-size: clamp(1.6rem, 7vw, 2rem); }

  .values-section { padding: 4rem 5%; }
  .values-grid { grid-template-columns: 1fr; gap: 1rem; }
  .values-header { margin-bottom: 2.5rem; }
  .value-card { padding: 2rem 1.5rem; }

  .timeline-section { padding: 4rem 5%; }
  .timeline { padding-left: 1.5rem; }
  .tl-item { grid-template-columns: 1fr; gap: .3rem; padding: 0 0 2.5rem 2.5rem; }
  .tl-year { font-size: 1.2rem; color: var(--pink-deep); }
  .tl-dot { left: -8px; top: 2px; width: 16px; height: 16px; }
  .timeline-header { margin-bottom: 2.5rem; }

  .team-section { padding: 4rem 5%; }
  .team-grid { grid-template-columns: 1fr; gap: 1rem; }
  .team-card { padding: 1.5rem; }
  .team-avatar { width: 60px; height: 60px; font-size: 1.5rem; }
  .team-header { margin-bottom: 2.5rem; }

  .reviews-strip { padding: 4rem 5%; }
  .reviews-grid { grid-template-columns: 1fr; gap: .8rem; }
  .score-big { font-size: 3rem; }

  .cta-section { padding: 4rem 5%; }
  .cta-inner { gap: 2rem; }
  .cta-card { padding: 1.5rem 2rem; }
  .cta-card-arrow { display: none; }
  .cta-title { font-size: clamp(1.6rem, 7vw, 2rem); }

  .story-founder { flex-direction: column; align-items: flex-start; gap: .8rem; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 2rem; }
  .since-num { font-size: 2.8rem; }
  .stat-num { font-size: 1.9rem; }
  .hero-left { padding: 3rem 4% 3rem; }
  .hero-right { padding: 2.5rem 4%; }
  .story, .values-section, .timeline-section,
  .team-section, .reviews-strip, .cta-section {
    padding-left: 4%;
    padding-right: 4%;
  }
}
