/* ===== Èmilie Blanc — The Art of Provence Rosé ===== */
/* Lifestyle Design System — South of France, editorial, aspirational */

:root {
  /* ===== Core Palette ===== */
  --ink:      #0F0E0D;
  --stone:    #1A1816;
  --warm:     #2A2522;
  --mid:      #5A5049;
  --soft:     #8B7F76;
  --blush:    #B8A89A;
  --sand:     #D4C4B8;
  --cream:    #F5EDE8;
  --ivory:    #FAF7F4;
  --white:    #FDFBF9;

  /* Accent — Provençal rose */
  --rose:     #C47B7B;
  --rose-deep:#9A6B62;
  --rose-dim: rgba(196, 123, 123, 0.12);

  /* ===== Typography ===== */
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Libre Baskerville', Georgia, serif;
  --ff-sans:    'DM Sans', system-ui, sans-serif;

  /* ===== Spacing ===== */
  --s-xs:  0.5rem;
  --s-sm:  1rem;
  --s-md:  1.5rem;
  --s-lg:  2.5rem;
  --s-xl:  4rem;
  --s-2xl: 6rem;
  --s-3xl: 9rem;
  --s-4xl: 12rem;

  /* ===== Easing ===== */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur: 0.4s;
  --dur-slow: 0.8s;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.85;
  color: var(--warm);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
strong { font-weight: 700; }

/* ===== Shared ===== */
.section-label {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: var(--s-md);
}
.section-label--light { color: rgba(255,255,255,0.45); }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--stone);
  margin-bottom: var(--s-md);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.section-sub {
  font-family: var(--ff-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--soft);
  max-width: 480px;
  line-height: 1.7;
  margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.1em 2.4em;
  border: none;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--stone);
  color: var(--ivory);
}
.btn--primary:hover {
  background: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 6px 30px rgba(15,14,13,0.15);
}
.btn--ghost {
  background: transparent;
  color: var(--stone);
  border: 1px solid var(--sand);
}
.btn--ghost:hover {
  background: var(--stone);
  color: var(--ivory);
  border-color: var(--stone);
}
.btn--ghost.btn--dark {
  color: var(--stone);
  border-color: var(--blush);
}
.btn--ghost.btn--dark:hover {
  background: var(--stone);
  color: var(--ivory);
}
.btn--ghost.btn--light {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost.btn--light:hover {
  background: white;
  color: var(--stone);
}
.btn--outline {
  background: transparent;
  color: var(--stone);
  border: 1px solid var(--sand);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  padding: 0.85em 1.8em;
}
.btn--outline:hover {
  background: var(--stone);
  color: var(--ivory);
  border-color: var(--stone);
}
.btn--sm {
  padding: 0.75em 1.6em;
  font-size: 0.625rem;
  letter-spacing: 0.18em;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.nav__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-sm) var(--s-xl);
  transition: all var(--dur) var(--ease);
}
.nav.scrolled .nav__inner {
  background: rgba(253,251,249,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  box-shadow: 0 1px 0 rgba(139,127,118,0.08);
}
.site-subpage .nav__inner {
  background: rgba(253,251,249,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  box-shadow: 0 1px 0 rgba(139,127,118,0.08);
}
.nav.drawer-open .nav__inner {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav__toggle {
  position: absolute;
  top: 50%;
  right: var(--s-xl);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  background: rgba(253,251,249,0.72);
  border: 1px solid rgba(139,127,118,0.18);
  border-radius: 50%;
  padding: 0;
  box-shadow: 0 10px 30px rgba(15,14,13,0.06);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  z-index: 1001;
}
.nav__toggle:hover {
  background: var(--white);
  border-color: rgba(196,123,123,0.38);
  box-shadow: 0 12px 34px rgba(15,14,13,0.1);
}
.nav__toggle-line {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--stone);
  transition: transform var(--dur) var(--ease), opacity 0.2s var(--ease);
  transform-origin: center;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:first-child {
  transform: translateY(4px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: auto;
  transition: opacity var(--dur) var(--ease);
}
.nav.drawer-open .nav__logo {
  opacity: 0;
  pointer-events: none;
}
.nav__logo-icon {
  display: block;
  width: 240px;
  height: auto;
  flex-shrink: 0;
  max-height: 240px;
  transition: max-height 0.4s var(--ease), opacity 0.4s var(--ease), margin-bottom 0.4s var(--ease);
  opacity: 1;
  margin-bottom: 0;
}
.nav:not(.scrolled) .nav__logo-icon {
  max-height: 240px;
  opacity: 1;
  margin-bottom: 0;
}
.site-subpage .nav:not(.scrolled) .nav__logo-icon {
  width: 96px;
  max-height: 96px;
}
.nav.scrolled .nav__logo {
  gap: 2px;
}
.nav.scrolled .nav__logo-icon {
  max-height: 0;
  opacity: 0;
  margin-bottom: -2px;
  overflow: hidden;
}
.nav__logo-caption {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft);
  display: block;
  margin-top: 2px;
  white-space: nowrap;
  text-align: center;
}
.nav__logo-brand {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--stone);
  display: block;
  margin-top: 2px;
  white-space: nowrap;
  text-align: center;
  transition: font-size var(--dur) var(--ease), letter-spacing var(--dur) var(--ease);
}
.nav.scrolled .nav__logo-brand {
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}
.site-subpage .nav__logo-brand {
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}
.nav.scrolled .nav__logo-caption {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}
.site-subpage .nav__logo-caption {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}
.nav__right { display: flex; align-items: center; }

@media (max-width: 600px) {
  body {
    font-size: 1rem;
    line-height: 1.72;
  }
  .section-label {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    margin-bottom: var(--s-sm);
  }
  .section-title {
    font-size: 2.25rem;
    line-height: 1.08;
    margin-bottom: var(--s-sm);
  }
  .section-sub {
    font-size: 0.92rem;
    line-height: 1.65;
  }
  .btn {
    width: 100%;
    max-width: 18rem;
    min-height: 46px;
    padding: 0.95em 1.35em;
    font-size: 0.64rem;
    letter-spacing: 0.15em;
  }
  .nav__logo {
    gap: 4px;
    max-width: calc(100vw - 6rem);
  }
  .nav__logo-icon { width: 132px; max-height: 132px; }
  .nav__logo-brand {
    font-size: 1.08rem;
    letter-spacing: 0.035em;
    max-width: calc(100vw - 6rem);
    white-space: normal;
    line-height: 1.12;
  }
  .nav__logo-caption { font-size: 0.56rem; letter-spacing: 0.1em; }
  .nav__inner { padding: 0.8rem var(--s-sm); }
  .nav.scrolled .nav__inner { padding-top: 0.45rem; padding-bottom: 0.45rem; }
  .nav__toggle { right: var(--s-sm); width: 40px; height: 40px; }
  .site-subpage .nav:not(.scrolled) .nav__logo-icon { width: 72px; max-height: 72px; }
  .site-subpage .nav__logo-brand { font-size: 0.8rem; max-width: calc(100vw - 6.5rem); white-space: normal; line-height: 1.2; }
  .site-subpage .nav__logo-caption { display: none; }
  .nav.scrolled .nav__logo-brand { font-size: 0.8rem; max-width: calc(100vw - 6.5rem); white-space: normal; line-height: 1.2; }
  .nav.scrolled .nav__logo-caption { display: none; }
}

/* Drawer */
.nav__drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-3xl) var(--s-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.nav__drawer.is-open { opacity: 1; visibility: visible; }

.nav__drawer-close {
  position: absolute;
  top: var(--s-lg);
  right: var(--s-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
}
.nav__drawer-close-line {
  position: absolute;
  width: 20px;
  height: 1px;
  background: var(--stone);
  transform-origin: center;
  transition: transform var(--dur) var(--ease);
}
.nav__drawer-close-line:first-child {
  transform: rotate(45deg);
}
.nav__drawer-close-line:last-child {
  transform: rotate(-45deg);
}
.nav__drawer-close:hover .nav__drawer-close-line {
  background: var(--rose);
}

.nav__drawer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-md);
  margin-bottom: var(--s-3xl);
}
.nav__drawer-logo-icon {
  display: block;
  width: 136px;
  height: auto;
}
.nav__drawer-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-xs);
}
.nav__drawer-logo-main {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--stone);
  text-transform: uppercase;
}
.nav__drawer-logo-sub {
  font-family: var(--ff-sans);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
}

.nav__drawer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-xl);
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}
.nav__drawer-label {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: var(--s-lg);
}
.nav__drawer-link {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 300;
  color: var(--stone);
  padding: var(--s-xs) 0;
  transition: color var(--dur) var(--ease);
}
.nav__drawer-link:hover { color: var(--rose); }
.nav__drawer-footer {
  text-align: center;
  padding-top: var(--s-3xl);
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--blush);
  display: flex;
  gap: var(--s-sm);
  justify-content: center;
}
.nav__drawer-dot { opacity: 0.3; }
@media (max-width: 640px) {
  .nav__drawer {
    justify-content: flex-start;
    padding: calc(5rem + env(safe-area-inset-top)) var(--s-md) calc(2rem + env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav__drawer-close {
    top: var(--s-sm);
    right: var(--s-sm);
  }
  .nav__drawer-logo {
    gap: var(--s-sm);
    margin-bottom: var(--s-xl);
  }
  .nav__drawer-logo-icon {
    width: 92px;
  }
  .nav__drawer-logo-main {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }
  .nav__drawer-logo-sub {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }
  .nav__drawer-inner {
    grid-template-columns: 1fr;
    gap: var(--s-md);
  }
  .nav__drawer-label {
    margin-bottom: 0.45rem;
  }
  .nav__drawer-link {
    font-size: 1.6rem;
    line-height: 1.08;
    padding: 0.28rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav__drawer-footer {
    flex-wrap: wrap;
    gap: 0.45rem 0.75rem;
    padding-top: var(--s-xl);
    line-height: 1.5;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: clamp(250px, 34vh, 360px);
  padding-bottom: clamp(5rem, 12vh, 8rem);
  background: linear-gradient(180deg, #f7f3ef 0%, #fdfbf9 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(253,251,249,0.1) 0%,
    rgba(253,251,249,0.45) 20%,
    rgba(253,251,249,0.75) 45%,
    rgba(253,251,249,0.9) 65%,
    rgba(253,251,249,0.98) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--s-md);
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 0.5rem;
  display: inline-block;
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 7vw, 4.75rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--stone);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.hero__title-line { display: block; }
.hero__title-line--accent {
  font-style: italic;
  color: var(--rose);
}
.hero__sub {
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--soft);
  max-width: 420px;
  margin: 0 auto 0.75rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.hero__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}
.hero .btn {
  padding: 0.9em 1.8em;
}
.hero__scroll {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-xs);
}
.hero__scroll-text {
  font-family: var(--ff-sans);
  font-size: 0.5625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blush);
}
.hero__scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--blush), transparent);
  animation: scrollPulse 2.5s var(--ease) infinite;
}
@media (max-width: 600px) {
  .hero {
    padding-top: 12.5rem;
    padding-bottom: 4.5rem;
  }
  .hero__content { padding: 0 var(--s-sm); }
  .hero__eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.24em;
  }
  .hero__title {
    font-size: 2.65rem;
    line-height: 1;
    letter-spacing: 0;
  }
  .hero__sub {
    font-size: 0.92rem;
    line-height: 1.62;
    max-width: 21rem;
  }
  .hero__actions {
    align-items: center;
    flex-direction: column;
    margin-top: 1.35rem;
  }
  .hero__scroll {
    bottom: 0.25rem;
  }
  .hero__scroll-text {
    font-size: 0.5rem;
    letter-spacing: 0.18em;
  }
  .hero__scroll-line {
    height: 20px;
  }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.2; transform: scaleY(0.5); }
}

/* ===== Manifesto ===== */
.manifesto {
  padding: clamp(3rem, 7vh, 5rem) var(--s-xl) var(--s-4xl);
  background: var(--white);
}
.manifesto__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.manifesto__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--stone);
  margin-bottom: var(--s-2xl);
  border: none;
  padding: 0;
}
.manifesto__body {
  max-width: 580px;
  margin: 0 auto var(--s-2xl);
  text-align: left;
}
.manifesto__body p {
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  color: var(--soft);
  line-height: 1.9;
  margin-bottom: var(--s-md);
}
.manifesto__body p:last-child { margin-bottom: 0; }
.manifesto__divider {
  width: 40px;
  height: 1px;
  background: var(--rose);
  margin: 0 auto;
}

/* ===== Editorial Subpages ===== */
.content-page {
  padding: clamp(10rem, 18vh, 13rem) var(--s-xl) var(--s-4xl);
  background: linear-gradient(180deg, #f7f3ef 0%, var(--white) 34%);
}
.content-article {
  max-width: 740px;
  margin: 0 auto;
}
.content-hero {
  text-align: center;
  margin-bottom: var(--s-xl);
}
.content-page h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  color: var(--stone);
  line-height: 1.08;
  margin-bottom: var(--s-md);
}
.content-deck {
  font-family: var(--ff-sans);
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}
.content-page .ai-summary {
  border-top: 1px solid rgba(139,127,118,0.18);
  border-bottom: 1px solid rgba(139,127,118,0.18);
  padding: var(--s-md) 0;
  margin-bottom: var(--s-xl);
}
.content-page h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 300;
  color: var(--stone);
  margin: var(--s-xl) 0 var(--s-sm);
}
.content-page p,
.content-page ul,
.content-page dl {
  font-family: var(--ff-body);
  color: var(--soft);
  line-height: 1.95;
  margin-bottom: var(--s-md);
}
.content-page li { margin-bottom: var(--s-xs); }
.content-page strong,
.content-page dt { color: var(--stone); }
.content-page dt {
  font-weight: 700;
  margin-top: var(--s-sm);
}
.content-page a { color: var(--rose); }
.content-back-link {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: var(--s-lg);
}
@media (max-width: 600px) {
  .content-page { padding: 7.75rem var(--s-md) 4.5rem; }
  .content-hero { text-align: left; }
  .content-page h1 {
    font-size: 2.35rem;
    line-height: 1.06;
    margin-bottom: var(--s-sm);
  }
  .content-deck {
    font-size: 0.94rem;
    line-height: 1.65;
  }
  .content-page h2 {
    font-size: 1.85rem;
    line-height: 1.15;
    margin-top: var(--s-lg);
  }
  .content-page p,
  .content-page ul,
  .content-page dl {
    font-size: 0.98rem;
    line-height: 1.82;
  }
  .content-page ul {
    padding-left: 1.15rem;
  }
  .content-back-link {
    font-size: 0.68rem;
    line-height: 1.4;
  }
}

/* ===== FAQ ===== */
.faq-section {
  padding: var(--s-4xl) var(--s-xl);
  background: var(--ivory);
}
.faq-section__inner {
  max-width: 680px;
  margin: 0 auto;
}
.faq-list { display: flex; flex-direction: column; gap: var(--s-xl); }
.faq-item__q {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: var(--s-sm);
}
.faq-item__a {
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.85;
}
.ai-summary {
  margin-top: var(--s-2xl);
  padding-top: var(--s-xl);
  border-top: 1px solid var(--cream);
}
.ai-summary p {
  font-family: var(--ff-sans);
  font-size: 0.6875rem;
  font-weight: 300;
  color: var(--blush);
  letter-spacing: 0.1em;
  line-height: 1.6;
}

/* ===== Provence Section ===== */
.provence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
/* Small devices: single column layout */
@media (max-width: 640px) {
  .provence {
    grid-template-columns: 1fr;
    grid-template-rows: 60vh 1fr;
  }
}
.provence__image {
  position: relative;
  overflow: hidden;
}
.provence__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.provence__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-3xl) var(--s-xl);
  background: var(--ivory);
}
.provence__headline {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--stone);
  margin-bottom: var(--s-xl);
  letter-spacing: -0.01em;
}
.provence__headline em {
  font-style: italic;
  color: var(--rose);
}
.provence__body {
  margin-bottom: var(--s-xl);
}
.provence__body p {
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.85;
  margin-bottom: var(--s-md);
}
.provence__body p:last-child { margin-bottom: 0; }
.provence__body strong { color: var(--warm); font-weight: 500; }
.provence__fact {
  padding-top: var(--s-lg);
  border-top: 1px solid var(--sand);
}
.provence__fact-number {
  display: block;
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1;
  margin-bottom: var(--s-xs);
}
.provence__fact-label {
  font-family: var(--ff-sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush);
}

/* ===== Education ===== */
.education {
  padding: var(--s-4xl) var(--s-xl);
  background: var(--white);
}
.education__header {
  text-align: center;
  margin-bottom: var(--s-3xl);
}
.education__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--sand);
}
@media (max-width: 640px) {
  .education__grid { grid-template-columns: 1fr; }
}

.edu-card {
  padding: var(--s-xl);
  background: var(--white);
  transition: background var(--dur) var(--ease);
}
.edu-card:hover { background: var(--ivory); }
.edu-card__number {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  display: block;
  margin-bottom: var(--s-md);
}
.edu-card__title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: var(--s-md);
}
.edu-card__body {
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.85;
  margin-bottom: var(--s-lg);
}
.edu-card__body strong { color: var(--warm); font-weight: 500; }
.edu-card__tag {
  font-family: var(--ff-sans);
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
}

/* ===== Lifestyle — Full-Bleed ===== */
.lifestyle {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.lifestyle__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lifestyle__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lifestyle__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,24,22,0.3) 0%,
    rgba(26,24,22,0.55) 50%,
    rgba(26,24,22,0.75) 100%
  );
  z-index: 1;
}
.lifestyle__content {
  position: relative;
  z-index: 2;
  padding: var(--s-4xl) var(--s-xl);
  max-width: 700px;
}
.lifestyle__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: white;
  margin-bottom: var(--s-xl);
  letter-spacing: -0.01em;
}
.lifestyle__title em {
  font-style: italic;
  color: rgba(255,255,255,0.65);
}
.lifestyle__sub {
  font-family: var(--ff-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== Pairing ===== */
.pairing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
@media (max-width: 640px) {
  .pairing { grid-template-columns: 1fr; grid-template-rows: 50vh 1fr; }
}
.pairing__image {
  position: relative;
  overflow: hidden;
}
.pairing__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pairing__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-3xl) var(--s-xl);
  background: var(--ivory);
}
.pairing__headline {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--stone);
  margin-bottom: var(--s-xl);
  line-height: 1.2;
}
.pairing__body {
  max-width: 480px;
}
.pairing__body p {
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.85;
  margin-bottom: var(--s-md);
}
.pairing__body p:last-child { margin-bottom: 0; }
.pairing__body strong { color: var(--warm); font-weight: 500; }

/* ===== Gallery Strip ===== */
.gallery {
  overflow: hidden;
  background: var(--ivory);
  padding: var(--s-xl) 0;
}
.gallery__track {
  display: flex;
  gap: var(--s-md);
  animation: galleryScroll 25s linear infinite;
  width: max-content;
}
.gallery__item {
  flex-shrink: 0;
  width: 420px;
  height: 300px;
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery__item:hover img {
  transform: scale(1.05);
}
@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Events ===== */
.events {
  padding: var(--s-4xl) var(--s-xl);
  background: var(--white);
}
.events__header {
  text-align: center;
  margin-bottom: var(--s-3xl);
}
.events__list {
  max-width: 960px;
  margin: 0 auto var(--s-3xl);
  display: flex;
  flex-direction: column;
}

.event-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: var(--s-xl);
  align-items: center;
  padding: var(--s-lg) 0;
  border-bottom: 1px solid var(--cream);
  transition: opacity var(--dur) var(--ease);
}
.event-card:first-child { border-top: 1px solid var(--cream); }
.event-card:hover { opacity: 0.8; }
@media (max-width: 640px) {
  .event-card {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    gap: var(--s-md);
  }
  .event-card .btn { grid-column: 2; justify-self: start; }
}
.event-card__date { text-align: center; }
.event-card__month {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 2px;
}
.event-card__day {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1;
}
.event-card__type {
  font-family: var(--ff-sans);
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush);
  display: block;
  margin-bottom: var(--s-xs);
}
.event-card__name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: var(--s-xs);
}
.event-card__detail {
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--soft);
  margin-bottom: var(--s-sm);
  line-height: 1.7;
}
.event-card__meta {
  display: flex;
  gap: var(--s-md);
  font-family: var(--ff-sans);
  font-size: 0.6875rem;
  font-weight: 300;
  color: var(--blush);
}
.events__cta {
  text-align: center;
  padding-top: var(--s-xl);
}
.events__cta p {
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--soft);
  margin-bottom: var(--s-md);
}

/* ===== Journal ===== */
.journal {
  padding: var(--s-4xl) var(--s-xl);
  background: var(--ivory);
}
.journal__header {
  text-align: center;
  margin-bottom: var(--s-3xl);
}
.journal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-xl);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .journal__grid { grid-template-columns: 1fr; gap: var(--s-2xl); }
}
.journal-card {
  transition: transform var(--dur-slow) var(--ease);
}
.journal-card:hover { transform: translateY(-4px); }
.journal-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: var(--s-md);
  background: var(--cream);
}
.journal-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.journal-card:hover .journal-card__image img { transform: scale(1.05); }
.journal-card__tag {
  font-family: var(--ff-sans);
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: var(--s-xs);
}
.journal-card__title {
  font-family: var(--ff-display);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: var(--s-sm);
  line-height: 1.3;
}
.journal-card__excerpt {
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.8;
  margin-bottom: var(--s-md);
}
.journal-card__date {
  font-family: var(--ff-sans);
  font-size: 0.6875rem;
  font-weight: 300;
  color: var(--blush);
}

/* ===== Quote Section ===== */
.quote-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.quote-section__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.quote-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,24,22,0.55);
  z-index: 1;
}
.quote-section__content {
  position: relative;
  z-index: 2;
  padding: var(--s-3xl) var(--s-xl);
}
.quote-section__text {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: white;
  line-height: 1.3;
  margin-bottom: var(--s-md);
  border: none;
}
.quote-section__attr {
  font-family: var(--ff-sans);
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ===== Contact ===== */
.contact {
  position: relative;
  padding: var(--s-4xl) var(--s-xl);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,24,22,0.85);
  z-index: 1;
}
.contact__inner {
  position: relative;
  z-index: 2;
  max-width: 580px;
  text-align: center;
}
.contact__title {
  font-family: var(--ff-display);
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 300;
  color: white;
  margin-bottom: var(--s-md);
}
.contact__sub {
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--s-xl);
  line-height: 1.8;
}
.contact__form { margin-bottom: var(--s-md); }
.contact__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact__form-row {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: var(--s-sm);
}
.contact__form-row:last-of-type { margin-bottom: 0; }
.contact__form input,
.contact__form select {
  flex: 1;
  padding: var(--s-md) var(--s-sm);
  background: none;
  border: none;
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: white;
  outline: none;
}
.contact__form input::placeholder { color: rgba(255,255,255,0.3); }
.contact__form select {
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.contact__form select option {
  color: var(--stone);
  background: var(--ivory);
}
.contact__turnstile {
  display: flex;
  justify-content: center;
  margin: var(--s-md) auto var(--s-sm);
  min-height: 65px;
}
.contact__note {
  font-family: var(--ff-sans);
  font-size: 0.6875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  margin-top: var(--s-sm);
}
.contact__divider {
  padding: var(--s-xl) 0;
  color: rgba(255,255,255,0.15);
  font-family: var(--ff-sans);
  font-size: 0.75rem;
}
.contact__subtitle {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--s-lg);
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.35);
  padding: var(--s-3xl) var(--s-xl) var(--s-xl);
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  padding-bottom: var(--s-xl);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: var(--s-xl);
  gap: var(--s-xl);
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer__logo-icon {
  display: block;
  width: 96px;
  height: 96px;
  padding: 10px;
  border-radius: 50%;
  background: var(--ivory);
  margin-bottom: var(--s-sm);
  opacity: 1;
  filter: none;
  box-shadow: 0 14px 36px rgba(0,0,0,0.22);
}
.footer__logo {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  display: block;
  margin-bottom: var(--s-xs);
}
.footer__tagline {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 300;
  font-style: italic;
  color: var(--rose);
}
.footer__links {
  display: flex;
  gap: var(--s-2xl);
}
@media (max-width: 600px) { .footer__links { gap: var(--s-xl); } }
.footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--s-xs);
}
.footer__col-title {
  font-family: var(--ff-sans);
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: var(--s-sm);
}
.footer__col a {
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  transition: color var(--dur) var(--ease);
}
.footer__col a:hover { color: white; }
.footer__about {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-top: var(--s-sm);
  line-height: 1.6;
}
.footer__about a { text-decoration: underline; text-underline-offset: 2px; }
.footer__about a:hover { color: white; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-sm);
  font-family: var(--ff-sans);
  font-size: 0.6875rem;
  font-weight: 300;
}
.footer__legal { color: rgba(255,255,255,0.18); }
@media (max-width: 600px) {
  .manifesto,
  .faq-section,
  .events,
  .education,
  .journal,
  .contact,
  .author-bio,
  .author-press,
  .author-writing,
  .author-topics {
    padding-left: var(--s-md);
    padding-right: var(--s-md);
  }
  .manifesto {
    padding-top: 3.5rem;
    padding-bottom: 5rem;
  }
  .manifesto__quote {
    font-size: 2rem;
    line-height: 1.28;
    margin-bottom: var(--s-lg);
  }
  .manifesto__body p,
  .edu-card__body,
  .pairing__body p,
  .author-bio__story p,
  .journal-card__excerpt,
  .faq-item__a {
    font-size: 0.95rem;
    line-height: 1.72;
  }
  .provence__content,
  .pairing__content {
    padding: 4rem var(--s-md);
  }
  .provence {
    grid-template-rows: 48vh 1fr;
  }
  .pairing {
    grid-template-rows: 44vh 1fr;
  }
  .education__header,
  .events__header,
  .journal__header {
    margin-bottom: var(--s-xl);
  }
  .education__grid,
  .journal__grid {
    gap: var(--s-md);
  }
  .edu-card {
    padding: var(--s-lg) var(--s-md);
  }
  .edu-card__number {
    font-size: 2.75rem;
    margin-bottom: var(--s-sm);
  }
  .edu-card__title {
    font-size: 1.35rem;
    margin-bottom: var(--s-sm);
  }
  .lifestyle {
    min-height: 72vh;
  }
  .lifestyle__content {
    padding: 5rem var(--s-md);
  }
  .lifestyle__title {
    font-size: 2.65rem;
    line-height: 1.05;
    margin-bottom: var(--s-lg);
  }
  .lifestyle__sub {
    font-size: 0.95rem;
    line-height: 1.68;
  }
  .gallery__item {
    width: 78vw;
    height: 56vw;
    max-height: 260px;
  }
  .event-card {
    grid-template-columns: 54px 1fr;
    padding: var(--s-md) 0;
    gap: var(--s-sm);
  }
  .event-card .btn {
    grid-column: 1 / -1;
    justify-self: stretch;
    max-width: none;
  }
  .event-card__day {
    font-size: 1.95rem;
  }
  .event-card__name {
    font-size: 1.16rem;
    line-height: 1.25;
  }
  .event-card__meta {
    flex-wrap: wrap;
    gap: 0.25rem 0.85rem;
    line-height: 1.5;
  }
  .journal-card__image {
    margin-bottom: var(--s-sm);
  }
  .quote-section {
    min-height: 46vh;
  }
  .quote-section__content {
    padding: 4rem var(--s-md);
  }
  .quote-section__text {
    font-size: 2.1rem;
    line-height: 1.16;
  }
  .contact {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .contact__title {
    font-size: 2.65rem;
    line-height: 1.05;
  }
  .contact__sub {
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: var(--s-lg);
  }
  .contact__form-row {
    display: grid;
    gap: 0.45rem;
    border-bottom: 0;
    margin-bottom: 0.6rem;
  }
  .contact__form input,
  .contact__form select {
    min-height: 48px;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    font-size: 1rem;
  }
  .contact__form .btn {
    max-width: none;
    margin-top: 0.4rem;
  }
  .contact__divider {
    padding: var(--s-lg) 0;
  }
  .contact__subtitle {
    font-size: 1.4rem;
    margin-bottom: var(--s-md);
  }
  .footer {
    padding: 4rem var(--s-md) 2rem;
  }
  .footer__top {
    display: grid;
    gap: var(--s-lg);
    padding-bottom: var(--s-lg);
    margin-bottom: var(--s-lg);
  }
  .footer__brand {
    align-items: center;
    text-align: center;
  }
  .footer__logo-icon {
    width: 74px;
    height: 74px;
    padding: 8px;
    margin-bottom: 0.75rem;
  }
  .footer__logo {
    font-size: 0.86rem;
    letter-spacing: 0.1em;
  }
  .footer__tagline {
    font-size: 0.68rem;
  }
  .footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--s-lg) var(--s-md);
  }
  .footer__col-title {
    font-size: 0.56rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.65rem;
  }
  .footer__col a {
    font-size: 0.88rem;
    line-height: 1.5;
  }
  .footer__bottom {
    display: grid;
    gap: 0.45rem;
    text-align: center;
    justify-content: center;
    font-size: 0.72rem;
    line-height: 1.55;
  }
  .footer__legal {
    color: rgba(255,255,255,0.3);
  }
}

/* ===== Author Page ===== */
.author-hero {
  padding: clamp(10rem, 18vh, 13rem) var(--s-xl) var(--s-3xl);
  background: var(--ivory);
}
.author-hero__content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2xl);
  align-items: center;
}
@media (max-width: 640px) {
  .author-hero__content { grid-template-columns: 1fr; }
  .author-hero__image { order: -1; }
}
.author-hero__name {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--stone);
  margin-bottom: var(--s-sm);
}
.author-hero__title {
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.7;
  margin-bottom: var(--s-md);
}
.author-hero__credentials {
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  color: var(--mid);
}
.credential { font-weight: 400; }
.credential-divider { margin: 0 0.35em; opacity: 0.5; }
.author-hero__image img {
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  border-radius: 4px;
}
@media (max-width: 640px) { .author-hero__image img { margin: 0 auto; } }
@media (max-width: 600px) {
  .author-hero {
    padding: 7.5rem var(--s-md) 4rem;
  }
  .author-hero__content {
    gap: var(--s-lg);
  }
  .author-hero__name {
    font-size: 2.55rem;
    line-height: 1;
    margin-bottom: 0.75rem;
  }
  .author-hero__title {
    font-size: 0.98rem;
    line-height: 1.65;
  }
  .author-hero__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    font-size: 0.78rem;
    line-height: 1.5;
  }
  .credential-divider {
    display: none;
  }
  .author-hero__image img {
    max-width: min(100%, 340px);
  }
}

.author-bio {
  padding: var(--s-3xl) var(--s-xl);
  background: var(--white);
}
.author-bio__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--s-2xl);
  align-items: start;
}
@media (max-width: 640px) { .author-bio__inner { grid-template-columns: 1fr; } }
.author-bio__story h2 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: var(--s-md);
}
.author-bio__story p {
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  color: var(--soft);
  line-height: 1.9;
  margin-bottom: var(--s-md);
}
.author-bio__story p:last-child { margin-bottom: 0; }
.author-bio__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-lg);
}
.author-bio__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.author-bio__stat-number {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--rose);
  line-height: 1;
}
.author-bio__stat-label {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--mid);
}

.author-press {
  padding: var(--s-3xl) var(--s-xl);
  background: var(--ivory);
}
.author-press__inner {
  max-width: 900px;
  margin: 0 auto;
}
.author-press__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-xl);
  margin-bottom: var(--s-xl);
}
@media (max-width: 640px) { .author-press__grid { grid-template-columns: 1fr; } }
.press-quote {
  padding: var(--s-lg);
  background: var(--white);
  border-radius: 4px;
  border: none;
}
.press-quote p {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--warm);
  line-height: 1.7;
  margin-bottom: var(--s-sm);
}
.press-quote footer {
  font-family: var(--ff-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft);
}
.author-press__logos {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  color: var(--mid);
}
.author-press__logos span:nth-child(odd) { font-weight: 400; }
.author-press__logos span:nth-child(even) { margin: 0 0.35em; opacity: 0.5; }

.author-writing {
  padding: var(--s-3xl) var(--s-xl);
  background: var(--white);
}
.author-writing__inner {
  max-width: 900px;
  margin: 0 auto;
}
.author-writing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
  margin-top: var(--s-lg);
}
@media (max-width: 640px) { .author-writing__grid { grid-template-columns: 1fr; } }
.writing-card a {
  display: block;
  padding: var(--s-lg);
  background: var(--ivory);
  border-radius: 4px;
  transition: background var(--dur) var(--ease);
}
.writing-card a:hover { background: var(--cream); }
.writing-card__tag {
  font-family: var(--ff-sans);
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--s-sm);
  display: inline-block;
}
.writing-card__title {
  font-family: var(--ff-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: var(--s-xs);
  line-height: 1.35;
}
.writing-card__excerpt {
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.6;
}

.author-events {
  padding: var(--s-3xl) var(--s-xl);
  background: var(--ivory);
  text-align: center;
}
.author-events__inner { max-width: 560px; margin: 0 auto; }
.author-events .section-sub { margin: 0 auto var(--s-lg); }
.author-events .btn { margin-top: var(--s-sm); }
@media (max-width: 600px) {
  .author-bio {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .author-bio__inner {
    gap: var(--s-xl);
  }
  .author-bio__stats {
    gap: var(--s-md);
  }
  .author-bio__stat-number {
    font-size: 1.55rem;
  }
  .author-press,
  .author-writing,
  .author-events {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .press-quote {
    padding: var(--s-md);
  }
  .author-press__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.45rem;
    justify-content: center;
    line-height: 1.6;
  }
  .writing-card a {
    padding: var(--s-md);
  }
}

/* ===== Press Page ===== */
.press-page { min-height: 60vh; }
.press-kit {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(10rem, 18vh, 13rem) var(--s-xl) var(--s-3xl);
}
.press-kit__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--stone);
  margin-bottom: var(--s-sm);
}
.press-kit__intro {
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.7;
  margin-bottom: var(--s-2xl);
}
.press-kit__section {
  margin-bottom: var(--s-2xl);
}
.press-kit__section h2 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: var(--s-md);
}
.press-kit__section p, .press-kit__section ul {
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  color: var(--soft);
  line-height: 1.8;
  margin-bottom: var(--s-sm);
}
.press-kit__section ul { padding-left: var(--s-lg); margin-bottom: 0; }
.press-kit__section li { margin-bottom: 0.35rem; }
.press-kit__section a { color: var(--rose); text-decoration: underline; }
.press-kit__section a:hover { color: var(--rose-deep); }
.press-kit .btn { margin-top: var(--s-md); }
@media (max-width: 600px) {
  .press-kit {
    padding: 7.5rem var(--s-md) 4.5rem;
  }
  .press-kit__title {
    font-size: 2.25rem;
    line-height: 1.05;
  }
  .press-kit__intro {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: var(--s-xl);
  }
  .press-kit__section {
    margin-bottom: var(--s-xl);
  }
  .press-kit__section h2 {
    font-size: 1.35rem;
    line-height: 1.2;
  }
  .press-kit__section p,
  .press-kit__section ul {
    font-size: 0.96rem;
    line-height: 1.75;
  }
  .press-kit__section ul {
    padding-left: 1.15rem;
  }
  .press-kit .btn {
    max-width: none;
  }
}

@media (hover: none) {
  .btn:hover,
  .journal-card:hover,
  .gallery__item:hover img {
    transform: none;
  }
  .edu-card:hover { background: var(--white); }
  .writing-card a:hover { background: var(--ivory); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Reveal ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.education__grid [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.education__grid [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.education__grid [data-reveal]:nth-child(4) { transition-delay: 0.24s; }
.journal__grid [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.journal__grid [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
