/* About page — extends the main design system */

.about-page {
  background: var(--cream);
}

/* Serif display face for editorial headlines */
.about-serif {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

/* Shared red eyebrow label */
.about-eyebrow-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.about-divider {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
}

/* ---------- Top intro: photo left, text right ---------- */
.about-intro {
  padding: clamp(80px, 9vw, 120px) 0 clamp(64px, 7vw, 96px);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}
.about-intro-photo {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--beige-deep);
  box-shadow: 0 14px 40px rgba(31, 42, 46, 0.12);
  max-width: 480px;
  width: 100%;
}
.about-intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-intro-text {
  max-width: 560px;
}
.about-intro-text .about-eyebrow-label { margin-bottom: 18px; }
.about-intro-text .about-divider { margin-bottom: 32px; }
.about-intro-text h1 {
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 32px;
  text-wrap: balance;
}
.about-intro-text p {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--brown);
  margin: 0;
  text-wrap: pretty;
}
.about-intro-text p + p { margin-top: 26px; }

/* ---------- Story panel: copy left, credentials right ---------- */
.about-panel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.about-panel-inner {
  background: var(--beige);
  border-radius: 36px;
  padding: clamp(48px, 6vw, 80px);
}
.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}
.story-copy {
  max-width: 520px;
}
.story-copy .about-eyebrow-label { margin-bottom: 20px; }
.story-copy h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.22;
  color: var(--ink);
  margin: 0 0 28px;
  text-wrap: balance;
}
.story-copy p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--brown);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.story-copy p:last-child { margin-bottom: 0; }

/* Credential items */
.story-credentials {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.credential {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.credential-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.credential-icon svg { width: 100%; height: 100%; display: block; }
.credential-text h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 2px 0 6px;
}
.credential-text p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--brown);
  margin: 0;
  max-width: 280px;
  text-wrap: pretty;
}

/* ---------- Philosophy ---------- */
.philosophy-section {
  padding: clamp(72px, 9vw, 112px) 0 clamp(48px, 6vw, 72px);
}
.philosophy-head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.philosophy-head .about-eyebrow-label { margin-bottom: 18px; }
.philosophy-head h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 22px;
  text-wrap: balance;
}
.underline-accent {
  /* underline removed per request */
}
.philosophy-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--brown);
  max-width: 680px;
  margin: 0 auto;
  text-wrap: pretty;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3vw, 48px);
  --phil-gap: clamp(28px, 3vw, 48px);
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.philosophy-item {
  text-align: center;
  position: relative;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.philosophy-item + .philosophy-item::before {
  content: "";
  position: absolute;
  left: calc(var(--phil-gap) / -2);
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(31, 42, 46, 0.12);
}
.philosophy-item h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--blue);
  opacity: 0.85;
  margin: 0 0 38px;
  text-wrap: balance;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
}
.philosophy-item h3::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: 168px;
  height: 116px;
  background: var(--beige-deep, #ECE3D2);
  opacity: 0.72;
  border-radius: 42% 58% 63% 37% / 55% 44% 56% 45%;
}
.philosophy-item:nth-child(1) h3::before {
  transform: translate(-50%, -49%) rotate(-7deg);
  border-radius: 68% 32% 55% 45% / 66% 56% 44% 34%;
  width: 190px;
  height: 104px;
}
.philosophy-item:nth-child(2) h3::before {
  transform: translate(-50%, -53%) rotate(9deg);
  border-radius: 36% 64% 60% 40% / 50% 64% 36% 50%;
  width: 152px;
  height: 132px;
}
.philosophy-item:nth-child(3) h3::before {
  transform: translate(-50%, -48%) rotate(-4deg);
  border-radius: 60% 40% 38% 62% / 62% 42% 58% 38%;
  width: 188px;
  height: 106px;
}
.philosophy-item:nth-child(4) h3::before {
  transform: translate(-50%, -47%) rotate(6deg);
  border-radius: 42% 58% 64% 36% / 38% 56% 44% 62%;
  width: 148px;
  height: 128px;
}
.philosophy-rule {
  display: none;
}
.philosophy-item p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--brown);
  margin: 0;
  max-width: 220px;
  text-wrap: pretty;
}

/* ---------- Closing line + CTA ---------- */
.about-close {
  background: var(--cream);
  padding: 0 0 clamp(56px, 6vw, 80px);
}
.about-close-inner {
  background: var(--beige);
  color: var(--ink);
  text-align: center;
  padding: clamp(48px, 6vw, 72px) clamp(32px, 6vw, 80px);
  border: 1px solid var(--beige-deep);
  border-radius: 0;
}
.about-close-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.about-close h2 {
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 16px;
  text-wrap: balance;
}
.about-close p {
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 400;
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 540px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.about-close .btn-outline-red {
  margin-top: 52px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1099px) {
  .about-intro { padding: clamp(72px, 8vw, 96px) 0 clamp(48px, 6vw, 72px); }
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 640px;
    margin: 0 auto;
    justify-items: center;
    text-align: left;
  }
  .about-intro-photo { max-width: 420px; }
  .about-intro-text { max-width: 100%; }

  .story-grid {
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 56px);
    max-width: 640px;
    margin: 0 auto;
  }
  .story-copy { max-width: none; }
  .story-credentials { gap: 28px; }

  .philosophy-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
  .philosophy-item + .philosophy-item::before { display: none; }
}
@media (max-width: 600px) {
  .about-panel { padding: 0 16px; }
  .about-panel-inner { padding: 36px 26px; border-radius: 24px; }
  .about-intro-photo { max-width: 100%; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 36px; max-width: 320px; }
  .philosophy-item { padding: 0; }
  .credential-text p { max-width: none; }
}
