/* ═══════════════════════════════════════════════════════════════════
   ABOUT / OUR STORY
   ─────────────────────────────────────────────────────────────────── */

/* ── Editorial Hero ──────────────────────────────────────────── */
.about-hero {
  background: var(--eco-cream);
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: 10%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232, 211, 196, 0.5), transparent 70%);
  pointer-events: none;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(227, 203, 158, 0.4), transparent 70%);
  pointer-events: none;
}
.about-hero-inner { position: relative; max-width: 720px; margin: 0 auto; }
.about-hero .eyebrow { justify-content: center; margin-bottom: 2rem; }
.about-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.08;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}
.about-hero h1 em { font-style: italic; color: var(--eco-gold-dark); font-weight: 400; }
.about-hero-lede {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Pull Quote ──────────────────────────────────────────────── */
.pullquote {
  padding: 5rem 0;
  background: var(--bg);
  text-align: center;
}
.pullquote-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}
.pullquote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--eco-ink);
  letter-spacing: -0.015em;
}
.pullquote blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--eco-gold);
  line-height: 0.3;
  display: block;
  margin-bottom: 0.5rem;
  font-style: normal;
}
.pullquote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Story Chapter Layout ────────────────────────────────────── */
.chapter {
  padding: 5rem 0;
}
.chapter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.chapter-grid.reverse { direction: rtl; }
.chapter-grid.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .chapter-grid, .chapter-grid.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; }
  .chapter-grid.reverse .chapter-visual { order: -1; }
}

.chapter-text .chapter-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  color: var(--eco-gold-dark);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}
.chapter-text h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.chapter-text h2 em { font-style: italic; color: var(--eco-gold-dark); font-weight: 400; }
.chapter-text p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.chapter-text .lead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--eco-ink);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.chapter-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(139, 115, 85, 0.2);
}
.chapter-visual.v1 { background: linear-gradient(135deg, var(--blush), var(--eco-cream), var(--eco-gold-light)); }
.chapter-visual.v2 { background: linear-gradient(165deg, var(--eco-cream), var(--bone), var(--olive)); }
.chapter-visual.v3 { background: linear-gradient(200deg, var(--eco-gold-light), var(--blush), var(--eco-cream)); }
.chapter-visual.v4 { background: linear-gradient(225deg, var(--bone), var(--eco-cream), var(--blush)); }
.chapter-visual svg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: auto;
}
.chapter-visual .chapter-caption {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--eco-ink);
  background: rgba(255, 255, 255, 0.85);
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

/* ── Principles / Values ─────────────────────────────────────── */
.principles {
  background: var(--eco-ink);
  color: var(--eco-cream);
  padding: 6rem 0;
}
.principles .section-head { max-width: 600px; }
.principles .section-head h2 { color: var(--eco-cream); }
.principles .section-head h2 em { color: var(--eco-gold-light); }
.principles .section-head p { color: rgba(245, 237, 216, 0.7); }
.principles .section-head .eyebrow { color: var(--eco-gold-light); }
.principles .section-head .eyebrow::before { background: var(--eco-gold-light); }

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
@media (max-width: 900px) { .principles-grid { grid-template-columns: repeat(2, 1fr); } }

.principle-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(245, 237, 216, 0.12);
  border-radius: var(--r);
  transition: border-color 0.2s, background 0.2s;
}
.principle-card:hover {
  border-color: var(--eco-gold-light);
  background: rgba(201, 169, 110, 0.05);
}
.principle-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--eco-gold-light);
  margin-bottom: 1rem;
  display: block;
}
.principle-card h3 {
  color: var(--eco-cream);
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.principle-card p {
  color: rgba(245, 237, 216, 0.65);
  font-size: 13px;
  line-height: 1.7;
}

/* ── Material Deep Dive (split grid) ─────────────────────────── */
.material-deep-dive {
  padding: 6rem 0;
  background: var(--eco-cream);
}
.material-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 3rem auto 0;
}
@media (max-width: 900px) { .material-grid { grid-template-columns: 1fr; } }

.material-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  position: relative;
}
.material-card .mat-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--eco-gold-dark);
  background: var(--eco-cream);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 1rem;
  font-weight: 600;
}
.material-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.material-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.material-card .mat-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.material-card .mat-specs > div {
  font-size: 12px;
}
.material-card .mat-specs .mat-spec-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  font-weight: 500;
}
.material-card .mat-specs .mat-spec-val {
  color: var(--eco-ink);
  font-weight: 500;
}

/* ── Timeline ────────────────────────────────────────────────── */
.timeline {
  padding: 6rem 0;
  background: var(--bg);
}
.timeline-list {
  max-width: 720px;
  margin: 3rem auto 0;
  position: relative;
  padding-left: 2.5rem;
}
.timeline-list::before {
  content: '';
  position: absolute;
  top: 10px; bottom: 10px;
  left: 11px;
  width: 1px;
  background: var(--eco-gold-light);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--eco-gold);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--eco-gold);
}
.timeline-item .date {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--eco-gold-dark);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.timeline-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.timeline-item p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* ── Meet the Founder ────────────────────────────────────────── */
.founder {
  padding: 6rem 0;
  background: var(--eco-cream);
}
.founder-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  max-width: 920px;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 900px) { .founder-grid { grid-template-columns: 1fr; text-align: center; } }

.founder-portrait {
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--eco-gold-light));
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(139, 115, 85, 0.2);
}
.founder-portrait svg {
  position: absolute;
  top: 55%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}
@media (max-width: 900px) { .founder-portrait { max-width: 240px; margin: 0 auto; } }

.founder-text .eyebrow { margin-bottom: 1rem; }
.founder-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.founder-text .founder-role {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eco-gold-dark);
  margin-bottom: 1.25rem;
}
.founder-text p {
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.founder-signature {
  margin-top: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--eco-gold-dark);
}

/* ── Press Strip ─────────────────────────────────────────────── */
.press {
  padding: 4rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.press-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}
.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  opacity: 0.55;
}
.press-logos span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--eco-ink);
  font-weight: 500;
}
.press-logos span.modern { font-family: var(--font-sans); font-weight: 700; letter-spacing: 0.1em; }
.press-logos span.italic { font-style: italic; }
