/* About Us — unique editorial layout */

.about-head {
  max-width: 1180px;
  margin: 0 auto clamp(20px, 3vw, 32px);
}
.about-head h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.12;
}

.about-founder {
  padding: clamp(28px, 4vw, 40px) clamp(20px, 4vw, 48px) clamp(48px, 6vw, 72px);
  background: var(--sand);
  scroll-margin-top: 78px;
}
.about-founder__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  min-width: 0;
}
.about-founder__visual {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}
.about-founder__frame {
  position: relative;
  border-radius: clamp(20px, 3vw, 28px);
  overflow: hidden;
  box-shadow:
    0 28px 64px rgba(12, 74, 110, 0.18),
    0 0 0 1px rgba(12, 74, 110, 0.06);
  background: var(--white);
}
.about-founder__frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}
.about-founder__accent {
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 42%;
  height: 38%;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  z-index: -1;
}
.about-founder__tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(10, 21, 32, 0.88);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-founder__content .section-label { margin-bottom: 12px; }
.about-founder__name {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 4px;
}
.about-founder__degrees {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.03em;
  margin: 0 0 12px;
}
.about-founder__role {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: none;
  line-height: 1.5;
  margin-bottom: 18px;
}
.about-founder__credentials {
  list-style: none;
  margin: 0 0 22px;
  padding: 0 0 18px;
  border-bottom: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-founder__credentials li {
  position: relative;
  padding-left: 14px;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--muted);
}
.about-founder__credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.about-founder__content p {
  color: var(--muted);
  font-size: clamp(0.94rem, 1.4vw, 1.02rem);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  padding: 0 clamp(20px, 4vw, 48px) clamp(56px, 8vw, 88px);
  background: var(--sand);
}
.about-stats__row {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.about-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(20px, 3vw, 28px);
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.about-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12, 74, 110, 0.1);
}
.about-stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
  color: var(--green);
  line-height: 1.1;
}
.about-stat span {
  display: block;
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Who We Are — editorial timeline */
.who-we-are {
  padding: clamp(48px, 7vw, 80px) clamp(20px, 4vw, 48px);
  background:
    linear-gradient(180deg, var(--white) 0%, var(--sand) 100%);
  position: relative;
  overflow: hidden;
}
.who-we-are::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.who-we-are__wrap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.who-we-are__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 6vw, 56px);
}
.who-we-are__header .section-label {
  font-size: calc(0.68rem + 2px);
}
.who-we-are__header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(calc(1.85rem + 2px), 3.5vw, calc(2.45rem + 2px));
  line-height: 1.18;
  margin-top: 10px;
  color: var(--ink);
}
.who-we-are__header-rule {
  width: 72px;
  height: 4px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--green-light));
}
.who-we-are__journey {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
}
.who-we-are__spine {
  position: absolute;
  left: 50%;
  top: 24px;
  bottom: 24px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, var(--gold-light) 8%, var(--green-light) 50%, var(--gold-light) 92%, transparent);
  opacity: 0.65;
}
.who-chapter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}
.who-chapter--left .who-chapter__card { grid-column: 1; }
.who-chapter--left .who-chapter__lottie { grid-column: 2; }
.who-chapter--right .who-chapter__lottie { grid-column: 1; }
.who-chapter--right .who-chapter__card { grid-column: 2; }
.who-chapter__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.who-chapter__head h3 {
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}
.who-chapter__head .who-chapter__icon {
  margin-bottom: 0;
  flex-shrink: 0;
}
.who-chapter__lottie {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 8px;
}
.who-chapter__lottie dotlottie-wc {
  width: min(350px, 100%);
  height: min(350px, 100%);
  max-width: 100%;
  min-height: 230px;
  display: block;
}
.who-chapter__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 28px);
  box-shadow: 0 12px 36px rgba(12, 74, 110, 0.07);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.who-chapter__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(12, 74, 110, 0.12);
}
.who-chapter__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--sage);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 1rem;
}
.who-chapter__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.who-chapter__card h3 {
  font-family: 'Fraunces', serif;
  font-size: calc(1.15rem + 3.5px);
  color: var(--green);
  margin-bottom: 10px;
}
.who-chapter__card p {
  font-size: calc(0.9rem + 3.5px);
  color: var(--muted);
  line-height: 1.75;
}
.who-chapter__card--motto {
  background: linear-gradient(145deg, var(--green) 0%, #0e2a48 60%, var(--green-mid) 100%);
  border-color: transparent;
  color: #fff;
}
.who-chapter__card--motto .who-chapter__icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-light);
}
.who-chapter__card--motto h3 { color: var(--gold-light); }
.who-chapter__card--motto p { color: rgba(255, 255, 255, 0.88); }
.who-we-are__quote-band {
  position: relative;
  margin: clamp(8px, 2vw, 16px) 0;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 48px);
  background: linear-gradient(135deg, var(--sage) 0%, #f0f9ff 100%);
  border-radius: 24px;
  border: 1px solid var(--border);
  text-align: center;
}
.who-we-are__quote-icon {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 12px;
}
.who-we-are__quote-band blockquote {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--green);
  max-width: 720px;
  margin-inline: auto;
}
.who-we-are__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}
.who-we-are__cities span {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sage);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green-mid);
}

.about-office {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 48px);
  background:
    linear-gradient(180deg, var(--sage) 0%, var(--sand) 100%);
}
.about-office__wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  min-width: 0;
}
.about-office__copy h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin: 12px 0 16px;
  line-height: 1.15;
}
.about-office__copy p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.about-office__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.about-office__chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-mid);
}
.about-office__visual {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  margin: 0;
  border-radius: clamp(22px, 3vw, 30px);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(12, 74, 110, 0.16);
  background: var(--white);
  border: 1px solid var(--border);
}
.about-office__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 2.5vw, 28px);
  background: linear-gradient(180deg, var(--sage) 0%, var(--sand) 100%);
  min-height: clamp(260px, 36vw, 420px);
}
.about-office__visual img {
  width: 100%;
  height: auto;
  max-height: min(460px, 58vh);
  display: block;
  object-fit: contain;
  object-position: center;
}
.about-office__caption {
  padding: 16px 20px;
  text-align: center;
  color: var(--green-mid);
  background: var(--white);
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-cta {
  margin: 0 clamp(20px, 4vw, 48px) clamp(64px, 8vw, 96px);
  max-width: calc(1180px + 96px);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(36px, 5vw, 52px) clamp(28px, 4vw, 48px);
  border-radius: clamp(20px, 3vw, 28px);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 24px 64px rgba(12, 74, 110, 0.22);
}
.about-cta h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}
.about-cta p {
  opacity: 0.88;
  font-size: 0.95rem;
  max-width: 48ch;
}
.about-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 12px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  white-space: nowrap;
}
.about-cta__btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.section-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
}

/* Large desktop — editorial crop on wide screens only */
@media (min-width: 1200px) {
  .about-founder__visual { max-width: none; }
  .about-founder__frame img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top center;
    height: auto;
  }
}

/* Who We Are — medium desktop: slightly smaller lotties so cards breathe */
@media (max-width: 1180px) {
  .who-we-are__wrap { max-width: 960px; }
  .who-chapter__lottie dotlottie-wc {
    width: min(320px, 100%);
    height: min(320px, 100%);
  }
}

/* Who We Are — tablet & below: stacked chapter cards */
@media (max-width: 1024px) {
  .about-founder__grid,
  .about-office__wrap {
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 40px);
  }
  .about-founder__accent { display: none; }
  .about-founder__visual {
    max-width: min(100%, 440px);
    order: -1;
  }
  .about-founder__content { min-width: 0; }
  .about-office__wrap { align-items: stretch; }
  .about-office__copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .about-office__visual {
    max-width: min(100%, 680px);
    margin-inline: auto;
  }
  .about-stats__row { grid-template-columns: repeat(2, 1fr); }
  .who-we-are__journey { gap: clamp(18px, 4vw, 24px); }
  .who-we-are__spine { display: none; }
  .who-chapter {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: 0 10px 32px rgba(12, 74, 110, 0.08);
    overflow: hidden;
  }
  .who-chapter__lottie {
    order: 1;
    width: 100%;
    padding: clamp(18px, 4vw, 24px) clamp(16px, 4vw, 20px) clamp(14px, 3vw, 18px);
    background: linear-gradient(165deg, var(--sage) 0%, #f4faff 100%);
    border-bottom: 1px solid var(--border);
  }
  .who-chapter__lottie dotlottie-wc {
    width: min(280px, 80vw);
    height: min(280px, 80vw);
    margin: 0 auto;
  }
  .who-chapter__card {
    order: 2;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: clamp(16px, 4vw, 20px) clamp(16px, 4vw, 20px) clamp(18px, 4vw, 22px);
  }
  .who-chapter__card:hover {
    transform: none;
    box-shadow: none;
  }
  .who-chapter__card--motto {
    border-radius: 0;
  }
  .who-chapter__head {
    gap: 10px;
    margin-bottom: 12px;
  }
}

@media (max-width: 768px) {
  .about-founder {
    padding: clamp(24px, 4vw, 32px) 16px clamp(40px, 6vw, 56px);
  }
  .about-head h1 {
    font-size: clamp(1.55rem, 5vw, 1.85rem);
  }
  .about-stats {
    padding: 0 16px clamp(48px, 7vw, 72px);
  }
  .who-we-are {
    padding: clamp(40px, 6vw, 64px) 16px;
  }
  .about-office {
    padding: clamp(48px, 7vw, 72px) 16px;
  }
  .about-founder__name {
    font-size: clamp(1.4rem, 5vw, 1.75rem);
  }
  .about-founder__degrees {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  .about-founder__tag {
    left: 12px;
    bottom: 12px;
    padding: 8px 12px;
    font-size: 0.65rem;
  }
  .about-office__caption {
    padding: 12px 16px;
    font-size: 0.72rem;
  }
  .who-we-are__quote-band {
    padding: 24px 18px;
    border-radius: 18px;
  }
  .who-chapter__lottie dotlottie-wc {
    width: min(260px, 78vw);
    height: min(260px, 78vw);
  }
  .who-chapter__card h3 {
    font-size: 1.05rem;
  }
  .who-chapter__card p {
    font-size: 0.88rem;
    line-height: 1.65;
  }
  .who-chapter__head .who-chapter__icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .about-stats__row { grid-template-columns: 1fr; }
  .about-stat { padding: 18px 16px; }
  .about-founder__visual {
    max-width: 100%;
  }
  .about-founder__frame {
    border-radius: 16px;
  }
  .about-office__visual {
    border-radius: 16px;
    box-shadow: 0 20px 48px rgba(12, 74, 110, 0.12);
  }
  .about-office__frame {
    min-height: 220px;
    padding: 14px;
  }
  .about-office__chips { gap: 8px; }
  .about-office__chip {
    font-size: 0.72rem;
    padding: 7px 12px;
  }
  .about-cta {
    flex-direction: column;
    text-align: center;
    margin: 0 16px clamp(48px, 8vw, 72px);
    padding: 28px 20px;
  }
  .about-cta__btn { width: 100%; justify-content: center; }
  .who-we-are__cities span {
    font-size: 0.68rem;
    padding: 5px 10px;
  }
}

@media (max-width: 480px) {
  .about-founder {
    padding-top: 20px;
    padding-inline: 12px;
  }
  .about-stats,
  .who-we-are,
  .about-office {
    padding-inline: 12px;
  }
  .about-founder__role {
    font-size: 0.78rem;
    margin-bottom: 16px;
  }
  .about-founder__content p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .about-founder__tag {
    left: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    text-align: center;
  }
  .about-stat strong { font-size: 1.5rem; }
  .who-we-are__header h2 {
    font-size: clamp(calc(1.45rem + 2px), 6vw, calc(1.75rem + 2px));
  }
  .who-chapter {
    border-radius: 16px;
  }
  .who-chapter__lottie {
    padding: 16px 14px 12px;
  }
  .who-chapter__lottie dotlottie-wc {
    width: min(240px, 76vw);
    height: min(240px, 76vw);
  }
  .who-chapter__card {
    padding: 14px 14px 18px;
  }
  .who-chapter__head {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 8px 10px;
  }
  .who-chapter__head h3 {
    grid-column: 1 / -1;
    font-size: 1rem;
  }
  .who-chapter__card p {
    font-size: 0.86rem;
  }
  .who-chapter__head .who-chapter__icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .about-office__copy h2 {
    font-size: clamp(1.45rem, 5.5vw, 1.75rem);
  }
  .about-office__copy p {
    font-size: 0.9rem;
  }
  .about-cta {
    margin-inline: 12px;
    border-radius: 16px;
  }
  .about-cta h2 { font-size: 1.35rem; }
  .about-cta p { font-size: 0.88rem; }
}

/* Prevent horizontal scroll from decorative elements */
.about-founder,
.about-stats,
.who-we-are,
.about-office,
.about-cta {
  overflow-x: clip;
}
