.story-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) 20px clamp(60px, 8vw, 100px);
}

/* Two columns: text left, image right — mirrors the home "À propos" block. */
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: clamp(30px, 8vw, 48px); }
}

/* ── Left: copy ── */
.story-eyebrow {
  text-transform: uppercase; letter-spacing: .16em;
  font-size: .78rem; font-weight: 600; color: #B23A34; margin: 0;
}
.story-eyebrow::after {
  content: ''; display: block; width: 34px; height: 2px;
  background: #B23A34; margin: .85rem 0 0;
}
.story-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600; line-height: 1.08; color: #14110F;
  margin: 1rem 0 clamp(18px, 2.5vw, 28px);
  font-size: var(--title-size, 44px);
}
@media (max-width: 640px) {
  .story-title { font-size: clamp(28px, 8vw, var(--title-size, 44px)); }
}
.story-body {
  max-width: 56ch;
  font-size: var(--body-size, 18px); line-height: 1.75; color: #4A453F;
}
.story-body > :first-child { margin-top: 0; }
.story-body p { margin: 0 0 1.1em; }
.story-body p:last-child { margin-bottom: 0; }
.story-body h2, .story-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600; color: #14110F; line-height: 1.2; margin: 1.6em 0 .5em;
}
.story-body a { color: #B23A34; text-underline-offset: 2px; }

/* ── Right: framed image with a soft offset panel for depth ── */
.story-media { position: relative; }
.story-media::before {
  content: ''; position: absolute; right: -16px; bottom: -18px;
  width: 62%; height: 66%; border-radius: 18px; background: #F3E9E7; z-index: 0;
}
.story-frame {
  position: relative; z-index: 1;
  aspect-ratio: 4 / 5; border-radius: 20px; overflow: hidden;
  background: var(--img, none), linear-gradient(135deg, #d7d7d7, #bdbdbd);
  background-size: cover; background-position: center;
  box-shadow: 0 34px 70px -40px rgba(0, 0, 0, .5);
}
@media (max-width: 900px) {
  .story-media::before { display: none; }
  .story-frame { aspect-ratio: 16 / 11; background-position: center top; }
}

/* ── Stories block: staggered photo cluster + copy + accordion of testimonials.
       Mirrors the home page "stories" section. ── */
.story-section--alt { background: #F7F1EF; }
.stories__grid {
  max-width: 1120px; margin: 0 auto;
  padding: clamp(56px, 8vw, 100px) 20px;
  display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px, 5vw, 84px);
  align-items: center;
}
@media (max-width: 900px) {
  .stories__grid { grid-template-columns: 1fr; gap: clamp(40px, 8vw, 64px); }
}

/* Staggered overlapping photo cluster — same as home .stories__cluster */
.stories__cluster {
  position: relative; width: 100%; aspect-ratio: 1 / 0.94;
}
.stories__cluster figure {
  position: absolute; margin: 0; border-radius: 16px; overflow: visible;
  background: var(--img, none), linear-gradient(135deg, #d7d7d7, #bdbdbd);
  background-size: cover; background-position: center;
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, .45);
}
.stories__cluster .story--a { top: -33px; left: 21%; width: 47%; aspect-ratio: 3 / 3.7; z-index: 2; filter: grayscale(1); }
.stories__cluster .story--b { top: 33%;  left: -74px; width: 43%; aspect-ratio: 4 / 3.1; z-index: 1; }
.stories__cluster .story--c { top: 41%;  left: 56%; width: 43%; aspect-ratio: 3 / 3.4; z-index: 2; }
.stories__cluster figcaption {
  position: absolute; background: #fff; color: #14110F;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: .01em;
  padding: 9px 16px; border-radius: 10px; white-space: nowrap;
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .4);
}
.stories__cluster .story--a figcaption { top: 34%;  right: -18px; }
.stories__cluster .story--b figcaption { bottom: 20%; left: -18px; }
.stories__cluster .story--c figcaption { top: -16px; left: 12%; text-align: center; white-space: normal; max-width: 12ch; }

@media (max-width: 900px) {
  .stories__cluster { max-width: 440px; margin: 0 auto; }
  .stories__cluster .story--a { top: -16px; left: 22%; }
  .stories__cluster .story--b { left: 0; }
  .stories__cluster .story--c { left: 55%; }
  .stories__cluster .story--a figcaption { right: -8px; }
  .stories__cluster .story--b figcaption { left: -8px; }
}
@media (max-width: 480px) {
  .stories__cluster { max-width: 340px; }
  .stories__cluster figcaption { font-size: 12.5px; padding: 7px 12px; }
  .stories__cluster .story--c figcaption { top: -12px; }
}

.stories__title {
  font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.1; color: #14110F;
  font-size: clamp(28px, 4vw, 46px); margin: 1rem 0 clamp(16px, 2vw, 24px);
}
.stories__cta { display: inline-flex; align-items: center; gap: 10px; margin-top: clamp(28px, 3.4vw, 40px); }

/* Accordion — CSS-only via <details> */
.accordion { border-top: 1px solid #dcdcdc; }
.acc { border-bottom: 1px solid #dcdcdc; }
.acc summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: clamp(16px, 1.7vw, 22px) 2px;
  font-family: 'Playfair Display', Georgia, serif; font-weight: 500;
  font-size: clamp(17px, 1.5vw, 21px); color: #14110F;
}
.acc summary::-webkit-details-marker { display: none; }
.acc__chevron {
  flex: none; width: 12px; height: 12px;
  border-right: 2px solid #8a8580; border-bottom: 2px solid #8a8580;
  transform: rotate(45deg); transition: transform .25s ease;
}
.acc[open] .acc__chevron { transform: rotate(225deg); }
.acc__body { padding: 0 2px clamp(18px, 2vw, 24px); }
.acc__body p { margin: 0; color: #4A453F; font-size: clamp(15px, 1.1vw, 16.5px); line-height: 1.65; max-width: 52ch; }
@media (prefers-reduced-motion: reduce) { .acc__chevron { transition: none; } }

/* btn2 — shared button style used on the stories CTA */
.btn2 {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600; font-size: 15px; letter-spacing: .01em;
  padding: 13px 26px; border-radius: 100px; border: none; cursor: pointer;
  text-decoration: none; transition: opacity .2s;
}
.btn2:hover { opacity: .82; }
.btn2 svg { width: 18px; height: 18px; }
.btn2--dark { background: #14110F; color: #fff; }
.btn2--light { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.4); }
