/* ============================================================
   MyStyleReport — style.css
   Mobile-first | Breakpoints: 640px (type only) | 1040px | 1280px
   ============================================================ */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --paper:         #F2EBDE;
  --ink:           #1A1612;
  --ink-secondary: #4A3F35;
  --ink-tertiary:  #6B5F54;
  --hairline:      #C9BFAE;
  --surface-soft:  #E8DFCE;
  --vogue-red:     #8B1A1A;
  --warm-tan:      #C9A88A;
  --dusty-rose:    #C8A39A;
  --soft-sage:     #A8B3A0;
}

/* ── Base ───────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: var(--paper);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  padding-bottom: 80px;
}

@media (min-width: 1040px) {
  body {
    padding-bottom: 0;
  }
}

/* ── Skip Link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -120%;
  left: 24px;
  z-index: 9999;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 10px 20px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 8px;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1280px) {
  .container {
    max-width: 1400px;
  }
}

/* ── Focus Rings ────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--vogue-red);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ── Typography Utilities ───────────────────────────────────── */
.red-period {
  color: var(--vogue-red);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  border: 0.5px solid transparent;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: #4b2819;
  color: var(--paper);
  border-color: #4b2819;
}

.btn-primary:hover {
  background: #3a1e10;
  border-color: #3a1e10;
}

/* Ghost link */
.ghost-link {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.ghost-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Icon wrap ───────────────────────────────────────────────── */
.icon-wrap {
  width: 76px;
  height: 76px;
  border: none;
  border-radius: 14px;
  background: #A0522D;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  flex-shrink: 0;
  padding: 13px;
  box-sizing: border-box;
}

.icon-wrap svg {
  width: 50px;
  height: 50px;
  stroke: #fff;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-wrap img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* ── Photo Placeholders ──────────────────────────────────────── */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.photo-placeholder--warm-tan   { background-color: var(--warm-tan); }
.photo-placeholder--dusty-rose { background-color: var(--dusty-rose); }
.photo-placeholder--soft-sage  { background-color: var(--soft-sage); }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242,235,222,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26,22,18,0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}

/* Logo */
.logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.logo-img {
  display: block;
  height: 52px;
  width: auto;
}

/* Desktop nav group — hidden on mobile */
.header-nav-group {
  display: none;
  align-items: center;
  gap: 40px;
}

/* Hamburger — visible on mobile */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  flex-shrink: 0;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--ink);
}

@media (min-width: 1040px) {
  .header-nav-group {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .logo-img {
    height: 64px;
  }
}

.header-nav-group .btn {
  min-height: 40px;
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 1.5px;
}

/* Nav list */
.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--ink-secondary);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--ink);
}

/* ── NAV OVERLAY (mobile fullscreen) ────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: var(--paper);
  flex-direction: column;
}

.nav-overlay.is-open {
  display: flex;
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px 24px 32px;
}

.nav-overlay-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 24px;
  border-bottom: 0.5px solid var(--hairline);
  margin-bottom: 32px;
}

.nav-overlay-logo-img {
  display: block;
  height: 36px;
  width: auto;
}

.nav-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-icon {
  display: block;
  position: relative;
  width: 18px;
  height: 18px;
}

.close-icon::before,
.close-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--ink);
}

.close-icon::before { transform: translateY(-50%) rotate(45deg); }
.close-icon::after  { transform: translateY(-50%) rotate(-45deg); }

.nav-overlay-list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nav-overlay-list li {
  border-bottom: 0.5px solid var(--hairline);
}

.nav-overlay-link {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  text-align: center;
  padding: 18px 0;
  text-decoration: none;
  transition: color 0.15s;
}

.nav-overlay-link:hover {
  color: var(--ink-secondary);
}

.nav-overlay-cta {
  width: 100%;
  margin-top: 32px;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  padding-top: 56px;
  padding-bottom: 56px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 46px;
  line-height: 0.95;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero-heading .accent {
  font-style: italic;
  color: var(--vogue-red);
}


.hero-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-secondary);
  margin-bottom: 32px;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.hero-bullet {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.bullet-icon {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  border-radius: 14px;
  border: none;
  background: #A0522D;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  padding: 13px;
  box-sizing: border-box;
}

.bullet-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-subtext {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 12px;
  color: var(--ink-tertiary);
}

/* ── Hero — 640px: typography refinements, single column stays ── */
@media (min-width: 640px) {
  .hero {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-heading {
    font-size: 64px;
    letter-spacing: -1px;
    line-height: 0.92;
  }

  .hero-lead {
    font-size: 17px;
  }

}

/* ── Hero — 1040px: two-column grid activates ────────────────── */
@media (min-width: 1040px) {
  .hero {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 72px;
    align-items: center;
  }

  .hero-heading {
    font-size: 86px;
    letter-spacing: -1.5px;
    line-height: 0.9;
  }

  .hero-lead {
    font-size: 18px;
    max-width: 500px;
  }

  .hero-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
  }
}

/* ── Hero overlap zone ───────────────────────────────────────── */
.hero-overlap-zone {
  position: relative;
  width: 100%;
  /* мобільний: контейнер = висота фото 1 (position:absolute → inset:0 = батько) */
  min-height: 320px;
  aspect-ratio: 3 / 4;
}

@media (min-width: 1040px) {
  .hero-overlap-zone {
    /* десктоп: висота підлаштовується під фото 1 (top:50px + природня висота ~520px) */
    aspect-ratio: unset;
    min-height: 580px;
  }
}

/* Декоративний бордовий блок — фон */
.hero-deco-block {
  display: none;
}

@media (min-width: 1040px) {
  .hero-deco-block {
    display: block;
    position: absolute;
    /* праворуч, трохи нижче верхнього краю фото 1 */
    top: 60px;
    right: -20px;
    left: auto;
    bottom: 0;
    width: 318px;
    height: auto;
    aspect-ratio: unset;
    background: #8B2A20;
    border-radius: 26px;
    z-index: 0;
  }
}

/* Фото-картки — базові */
.hero-photo {
  position: absolute;
  overflow: hidden;
}

/* img завжди по ширині блоку, висота — природна */
.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Фото 1: звіт/лук — мобільна версія (весь контейнер) */
.hero-photo--main {
  inset: 0;
  border-radius: 22px;
  background: #EDE6D8;
  box-shadow: 0 20px 60px rgba(28,23,20,0.14), 0 4px 16px rgba(28,23,20,0.08);
  z-index: 2;
}

/* img на мобільному: object-fit cover для заповнення всього контейнера */
.hero-photo--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (min-width: 1040px) {
  .hero-photo--main {
    inset: auto;
    top: 50px;
    right: 0;
    left: auto;
    height: calc(100% - 50px);
    width: auto;
    max-width: 372px;
  }

  .hero-photo--main img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
  }
}

/* Фото 2: портрет — менша картка внизу-ліворуч */
.hero-photo--portrait {
  display: none;
}

@media (min-width: 1040px) {
  .hero-photo--portrait {
    display: block;
    width: 256px;
    height: auto;
    bottom: 0;
    left: 0;
    border-radius: 18px;
    background: #EDE6D8;
    border: 7px solid #fff;
    box-shadow: 0 16px 48px rgba(28,23,20,0.18), 0 4px 12px rgba(28,23,20,0.10);
    transform: rotate(-4deg);
    z-index: 4;
    animation: floaty 6s ease-in-out infinite;
  }
}

/* Анімація для портрета */
@keyframes floaty {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50%       { transform: rotate(-4deg) translateY(-14px); }
}

/* Плаваючі чіпи */
.hero-chip {
  display: none;
}

@media (min-width: 1040px) {
  .hero-chip {
    display: flex;
    align-items: center;
    position: absolute;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(28,23,20,0.12);
    z-index: 6;
  }

  /* Чіп палітри — вгорі-ліворуч */
  .hero-chip--palette {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    top: 104px;
    left: 0;
    padding: 12px 18px;
  }

  /* Чіп цитати — перекриває правий нижній кут фото */
  .hero-chip--quote {
    bottom: -15px;
    right: -30px;
    padding: 14px 20px;
    gap: 10px;
    align-items: flex-start;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    line-height: 1.5;
    color: var(--ink);
    max-width: 240px;
  }

  .hero-chip--quote .chip-star {
    color: #8B2A20;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
  }
}

.chip-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chip-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.chip-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-tertiary);
  line-height: 1.2;
}

.chip-swatches {
  display: flex;
  gap: 6px;
}

.swatch {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}


/* ── SECTION STUBS (Stage 1 — temporary) ───────────────────── */
.section-stub {
  padding-top: 56px;
  padding-bottom: 56px;
  border-top: 0.5px solid var(--hairline);
}

.section-stub h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.5px;
  color: var(--ink-tertiary);
}

@media (min-width: 640px) {
  .section-stub h2 {
    font-size: 32px;
  }
}

@media (min-width: 1040px) {
  .section-stub {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .section-stub h2 {
    font-size: 42px;
    letter-spacing: -1px;
  }
}

/* ── STICKY CTA (mobile + tablet only) ──────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 90;
  padding-bottom: env(safe-area-inset-bottom);
}

.sticky-cta-btn {
  width: 100%;
  box-shadow: 0 8px 28px rgba(26,22,18,0.22);
}

@media (min-width: 1040px) {
  .sticky-cta {
    display: none;
  }
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  border-top: 0.5px solid var(--hairline);
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "logo nav"
    "bottom bottom";
  gap: 20px 32px;
  align-items: start;
}

.footer-logo {
  grid-area: logo;
  display: block;
  height: 72px;
  width: auto;
  max-width: 160px;
}

.footer-nav {
  grid-area: nav;
}

.footer-bottom {
  grid-area: bottom;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--ink-secondary);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-link:hover {
  color: var(--ink);
}

.footer-contact,
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--ink-tertiary);
}

@media (min-width: 1040px) {
  .footer-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 12px 32px;
  }

  .footer-nav {
    flex-direction: row;
    gap: 12px 24px;
  }

  .footer-bottom {
    gap: 24px;
  }
}

/* ============================================================
   STAGE 2 — Section content styles
   ============================================================ */

/* ── Body state when mobile nav is open ─────────────────────── */
body.nav-open {
  overflow: hidden;
}

/* ── Section base (replaces .section-stub on built sections) ── */
.section {
  padding-top: 64px;
  padding-bottom: 64px;
  box-shadow: 0 4px 20px rgba(26,22,18,0.06);
}

/* ── Soft section variant ────────────────────────────────────── */
.section--soft {
  background: var(--surface-soft);
}

/* ── Dark section variant ────────────────────────────────────── */
.section--dark {
  background: var(--ink);
  box-shadow: 0 8px 48px rgba(26,22,18,0.18);
}

.section--dark .section-heading {
  color: var(--paper);
}

.section--dark .section-lead {
  color: rgba(242, 235, 222, 0.65);
}

/* Report Examples on dark */
.section--dark .example-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.section--dark .example-heading {
  color: var(--paper);
}

.section--dark .example-desc {
  color: rgba(242, 235, 222, 0.6);
}

.section--dark .examples-dot {
  background: rgba(242, 235, 222, 0.25);
}

.section--dark .examples-dot.is-active,
.section--dark .examples-dot:hover {
  background: var(--paper);
}

/* Testimonials on dark */
.section--dark .testimonial-rule {
  background-color: rgba(242, 235, 222, 0.2);
}

.section--dark .testimonial-quote p {
  color: var(--paper);
}

.section--dark .testimonial-author {
  color: rgba(242, 235, 222, 0.55);
}

.section--dark .carousel-dot {
  background: rgba(242, 235, 222, 0.25);
}

.section--dark .carousel-dot.is-active,
.section--dark .carousel-dot:hover {
  background-color: var(--paper);
}

.section--dark .carousel-btn {
  background: transparent;
  border-color: rgba(242, 235, 222, 0.25);
  color: var(--paper);
}

.section--dark .carousel-btn:hover {
  background: rgba(242, 235, 222, 0.1);
  border-color: rgba(242, 235, 222, 0.5);
}

@media (min-width: 640px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1040px) {
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/* ── Section header ─────────────────────────────────────────── */
.section-header {
  margin-bottom: 48px;
}

@media (min-width: 1040px) {
  .section-header {
    margin-bottom: 64px;
  }
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 0.95;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.section-heading em {
  font-style: normal;
}

@media (min-width: 640px) {
  .section-heading {
    font-size: 58px;
  }
}

@media (min-width: 1040px) {
  .section-heading {
    font-size: 70px;
    letter-spacing: -1px;
  }
}

.section-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-secondary);
  margin-top: 20px;
  margin-bottom: 48px;
}

@media (min-width: 1040px) {
  .section-lead {
    font-size: 18px;
    max-width: 580px;
  }
}

.section-cta {
  margin-top: 48px;
}

/* ── §5.3 How It Works — 4-card grid ───────────────────────── */
.hiw-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .hiw-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .hiw-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.editorial-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--hairline);
  box-shadow: 0 14px 34px rgba(26,22,18,0.07);
}

@media (min-width: 1040px) {
  .editorial-card {
    padding: 32px;
  }
}

/* How It Works — bullet-icon style at 50×50 */
.hiw-grid .icon-wrap {
  display: grid;
  width: 76px;
  height: 76px;
  border: none;
  border-radius: 14px;
  background: #A0522D;
  place-items: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  padding: 0;
}

.hiw-grid .icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--paper);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hiw-step {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
}

.card-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 12px;
}

.card-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-secondary);
}

/* ── §5.4 Report Examples ────────────────────────────────────── */
.examples-carousel-wrap {
  overflow: hidden;
}

.examples-grid {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: 0;
  transition: transform 0.35s ease;
}

.examples-page {
  display: contents; /* transparent on mobile — cards are direct flex items */
}

.example-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--hairline);
  box-shadow: 0 14px 34px rgba(26,22,18,0.07);
}

@media (min-width: 1040px) {
  .examples-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    flex: 0 0 100%;
  }

  .example-card {
    flex: 0 0 auto;
  }
}

.examples-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.examples-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.examples-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--hairline);
  border-radius: 0;
  transition: background 0.2s;
}

.examples-dot.is-active,
.examples-dot:hover {
  background: var(--ink);
}

.example-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.example-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: auto;
  object-fit: unset;
  object-position: unset;
}


.example-body {
  padding: 16px 16px 20px;
}

.example-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 8px;
}

.example-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-secondary);
}

/* ── §5.5 What You'll Get — icon-card grid ───────────────────── */
.contents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .contents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .contents-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

.contents-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(26,22,18,0.07);
}

.contents-item h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

.contents-item p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-tertiary);
  margin: 0;
}

.contents-item .icon-wrap {
  display: grid;
  width: 76px;
  height: 76px;
  border: none;
  border-radius: 14px;
  background: #A0522D;
  place-items: center;
  margin-bottom: 12px;
  flex-shrink: 0;
  padding: 13px;
  box-sizing: border-box;
}

.contents-item .icon-wrap svg {
  width: 50px;
  height: 50px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contents-item .icon-wrap img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* ── §5.6 Benefits icons ────────────────────────────────────── */
.benefit-item .icon-wrap {
  display: grid;
  width: 76px;
  height: 76px;
  border: none;
  border-radius: 14px;
  background: #A0522D;
  place-items: center;
  padding: 13px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.benefit-item .icon-wrap svg {
  width: 50px;
  height: 50px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── §5.6 Benefits — two-column editorial (no cards) ─────────── */
.benefits-list {
  border-top: 0.5px solid var(--hairline);
}

.benefit-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
  row-gap: 10px;
  padding: 20px 0;
  border-bottom: 0.5px solid var(--hairline);
  align-items: center;
}

.benefit-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--ink);
  line-height: 1.2;
  grid-column: 2;
  grid-row: 1;
}

.benefit-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-secondary);
  grid-column: 1 / -1;
  grid-row: 2;
}

@media (min-width: 1040px) {
  .benefit-item {
    grid-template-columns: 76px 1fr 1fr;
    grid-template-rows: auto;
    column-gap: 24px;
    align-items: center;
    padding: 20px 0;
  }

  .benefit-heading {
    grid-column: 2;
    grid-row: 1;
    font-size: 22px;
  }

  .benefit-desc {
    grid-column: 3;
    grid-row: 1;
    font-size: 15px;
  }
}


/* ============================================================
   STAGE 3 — Testimonials carousel, FAQ accordion, Final CTA
   ============================================================ */

/* ── §5.8 Testimonials Carousel ──────────────────────────────── */
.carousel-track-wrap {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.35s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  overflow: hidden;
}

.testimonial {
  padding: 20px 16px;
  text-align: center;
}

@media (min-width: 1040px) {
  .testimonial {
    padding: 20px 40px;
  }
}

.testimonial-rule {
  width: 48px;
  height: 0.5px;
  background-color: var(--hairline);
  margin: 0 auto 40px;
}

.testimonial-quote {
  margin: 0 auto 24px;
  max-width: 760px;
  padding: 0;
}

.testimonial-quote p {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: var(--ink);
}

@media (min-width: 640px) {
  .testimonial-quote p {
    font-size: 28px;
    letter-spacing: -0.75px;
  }
}

@media (min-width: 1040px) {
  .testimonial-quote p {
    font-size: 32px;
    letter-spacing: -1px;
    line-height: 1.45;
  }
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--hairline);
}

.testimonial-author {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-tertiary);
  font-style: normal;
  display: block;
}

.section--dark .testimonial-avatar {
  border-color: rgba(242, 235, 222, 0.25);
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 8px;
  padding-bottom: 16px;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.8);
  border: 0.5px solid var(--hairline);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: var(--ink);
  flex-shrink: 0;
  transition: background-color 0.15s, border-color 0.15s;
}

.carousel-btn:hover {
  background-color: var(--surface-soft);
  border-color: var(--ink-secondary);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  background-color: var(--hairline);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s;
}

.carousel-dot.is-active,
.carousel-dot:hover {
  background-color: var(--ink);
}

/* ── §5.9 FAQ Accordion ──────────────────────────────────────── */
.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

@media (min-width: 640px) {
  .faq-list {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-item {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  overflow: hidden;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 24px;
}

.faq-question {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
  color: var(--ink);
  line-height: 1.25;
}

@media (min-width: 640px) {
  .faq-question {
    font-size: 20px;
  }
}

@media (min-width: 1040px) {
  .faq-trigger {
    padding: 24px 28px;
  }

  .faq-question {
    font-size: 18px;
  }
}

.faq-icon {
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: var(--ink-secondary);
  width: 24px;
  text-align: center;
  transition: color 0.15s;
}

.faq-icon::before {
  content: '+';
}

.faq-item.is-open .faq-icon::before {
  content: '\2212'; /* minus sign — not a hyphen */
}

.faq-item.is-open .faq-icon {
  color: var(--ink);
}

.faq-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-panel {
  max-height: 600px;
}

.faq-answer {
  padding: 0 24px 24px;
}

@media (min-width: 1040px) {
  .faq-answer {
    padding: 0 28px 28px;
  }
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-secondary);
  max-width: 760px;
}

.faq-answer ul {
  list-style: none;
  margin: 8px 0 16px;
  padding: 0;
}

.faq-answer ul li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-secondary);
  padding: 4px 0 4px 20px;
  position: relative;
}

.faq-answer ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--vogue-red);
  font-size: 13px;
}

/* ── §5.10 Final CTA ─────────────────────────────────────────── */
.final-cta {
  border-top: 0.5px solid var(--hairline);
  padding-top: 72px;
  padding-bottom: 72px;
}

.final-cta--boxed {
  background: linear-gradient(135deg, #F7F0E6, #EFE0CD);
}

.cta-box {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--hairline);
  border-radius: 32px;
  padding: 48px 56px;
  box-shadow: 0 25px 70px rgba(26,22,18,0.10);
}

@media (max-width: 1039px) {
  .cta-box {
    padding: 32px 24px;
  }
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-cta-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.0;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 20px;
}

.final-cta-heading em {
  font-style: normal;
}

@media (min-width: 640px) {
  .final-cta-heading {
    font-size: 58px;
  }
}

@media (min-width: 1040px) {
  .final-cta-heading {
    font-size: 70px;
    letter-spacing: -1px;
  }
}

.final-cta-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-secondary);
  margin-bottom: 40px;
}

.final-cta-subtext {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 11px;
  color: var(--ink-tertiary);
  margin-top: 16px;
}
