/* ── About Page Styles ── */
:root {
  --magenta: #D91C73;
  --magenta-deep: #B4145E;
  --terracotta: #C17D4E;
  --terracotta-deep: #A5673E;
  --ink: #241419;
  --ink-soft: #4A3540;
  --blush: #FBF3EF;
  --blush-deep: #F5E7E0;
  --card: #FFFFFF;
  --line: #E9D9CE;
  --gold: #B08D57;
  --radius: 2px;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }
}

.monogram {
  position: relative;
  display: inline-block;
}

.monogram .o,
.monogram .s {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  mix-blend-mode: multiply;
}

.monogram .o {
  color: var(--magenta);
}

.monogram .s {
  color: var(--terracotta);
  left: 0.34em;
}

.eyebrow {
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
  color: var(--terracotta-deep);
}

.italic {
  font-style: italic;
  font-weight: 500;
}

/* Page Hero */
.page-hero {
  padding: 80px 0 70px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(160deg, var(--blush) 60%, var(--blush-deep) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: 'OS';
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(200px, 30vw, 380px);
  color: var(--line);
  opacity: 0.5;
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
  letter-spacing: -0.04em;
}

.page-hero > .wrap {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-size: 12.5px;
  color: var(--ink-soft);
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
}

.breadcrumb a {
  color: var(--terracotta-deep);
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  opacity: 0.5;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  max-width: 700px;
  line-height: 1.1;
}

.page-hero p.lede {
  margin-top: 22px;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.page-hero .hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.page-hero .hero-meta div b {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
}

.page-hero .hero-meta div span {
  font-size: 11.5px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* Section shell */
section {
  padding: 96px 0;
}

.section-head {
  margin-bottom: 52px;
}

.section-head h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  margin-top: 10px;
  max-width: 640px;
}

.section-head p {
  max-width: 540px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-top: 14px;
}

/* Mission / Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 760px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

.mv-card {
  background: var(--ink);
  color: #fff;
  padding: 46px 40px;
  border-radius: var(--radius);
}

.mv-card:nth-child(2) {
  background: var(--magenta);
}

.mv-card .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.mv-card p {
  margin-top: 16px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 500;
}

/* Core Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value {
  background: var(--card);
  padding: 36px 26px;
}

.value .mark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--magenta);
}

.value h4 {
  font-size: 15px;
  margin-top: 14px;
  font-weight: 700;
}

.value p {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Founder */
.founder-wrap {
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.founder-photo {
  position: relative;
  aspect-ratio: 4/5.3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--blush-deep);
  border: 1px solid var(--line);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.founder-photo:hover img {
  transform: scale(1.04);
}

.founder-photo .monogram-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 20, 25, 0.02) 0%, rgba(36, 20, 25, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.founder-photo:hover .monogram-overlay {
  opacity: 1;
}

.founder-photo .monogram-overlay .monogram {
  font-size: 120px;
  width: 0.86em;
  height: 1em;
  filter: brightness(1.5);
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 18px;
  background: var(--blush-deep);
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.founder-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--magenta);
  display: inline-block;
}

.founder-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-style: italic;
  font-weight: 500;
  margin-top: 20px;
  line-height: 1.2;
}

.founder-role {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  font-weight: 700;
  margin-top: 8px;
}

.founder-body p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--ink-soft);
  margin-top: 18px;
}

.founder-body p:first-of-type {
  margin-top: 0;
}

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.credential-tag {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--blush);
  letter-spacing: 0.03em;
}

/* Journey / Timeline */
.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--magenta);
  border: 2px solid var(--blush-deep);
  box-shadow: 0 0 0 3px var(--magenta);
}

.timeline-item .t-year {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta-deep);
}

.timeline-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 4px;
}

.timeline-item p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* CTA band */
.cta-band {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 52px;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .cta-band {
    grid-template-columns: 1fr;
  }
}

.cta-band h3 {
  font-size: 26px;
  font-style: italic;
  font-weight: 500;
}

.cta-band p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 400px;
}

.cta-form {
  display: flex;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
}

.cta-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 16px 18px;
  font-family: 'Manrope';
  font-size: 14px;
  outline: none;
}

.cta-form button {
  border: none;
  background: var(--ink);
  color: #fff;
  padding: 16px 24px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.cta-form button:hover {
  background: var(--magenta);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.btn-fill {
  background: var(--magenta);
  color: #fff;
}

.btn-fill:hover {
  background: var(--magenta-deep);
}

.btn-line {
  border-color: var(--terracotta);
  color: var(--terracotta-deep);
}

.btn-line:hover {
  background: var(--terracotta);
  color: #fff;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
}
