:root {
  --ink: #4e596e;
  --body: #7b818b;
  --paper: #fff;
  --warm: #f4f3ef;
  --gold: #9a8b4d;
  --line: #e6e4de;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--body); background: var(--paper); font-family: var(--sans); font-size: 15px; line-height: 1.65; }
img { display: block; max-width: 100%; }
button, a { font: inherit; }
a { color: inherit; }
.skip-link { position: fixed; z-index: 20; top: 1rem; left: 1rem; transform: translateY(-200%); padding: .6rem 1rem; background: var(--ink); color: #fff; text-decoration: none; }
.skip-link:focus { transform: translateY(0); }

.site-header { height: 64px; display: flex; align-items: center; padding-inline: clamp(2.5rem, 4vw, 4rem); background: var(--warm); }
.site-logo { display: block; line-height: 0; }
.site-logo img { width: auto; height: 28px; }

.hero { position: relative; min-height: min(56.25vw, 950px); overflow: hidden; background: #273b43; }
.hero__slides, .hero__slide { height: 100%; }
.hero__slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .8s ease; }
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; min-height: min(56.25vw, 950px); object-fit: cover; }
.hero__slide figcaption { display: none; }
.hero__controls { position: absolute; z-index: 2; bottom: 1.3rem; right: clamp(1.5rem, 4vw, 4rem); display: flex; align-items: center; gap: .75rem; }
.hero__arrow { width: 2rem; height: 2rem; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; line-height: 1; }
.hero__arrow:hover, .hero__arrow:focus-visible { background: rgba(255,255,255,.15); }
.hero__dots { display: flex; gap: .45rem; }
.hero__dots button { width: 1.7rem; height: 2rem; padding: 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.5); background: transparent; cursor: pointer; }
.hero__dots button.is-active { border-bottom-width: 3px; border-color: #fff; }

.section-shell, .editorial__grid { width: min(100% - 7rem, 1070px); margin-inline: auto; }
.intro { width: min(100% - 8rem, 1440px); padding-block: 5rem; text-align: center; }
.eyebrow { margin: 0 0 1.2rem; color: var(--gold); font-size: .63rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
h1, h2 { margin: 0; color: var(--ink); font-family: var(--serif); font-weight: 500; line-height: .98; letter-spacing: -.025em; }
h1 { font-size: clamp(4rem, 7vw, 6rem); }
h2 { font-size: clamp(3.1rem, 5.2vw, 5.25rem); }
.intro__lead { width: min(100%, 54ch); margin: .5rem auto 3rem; font-size: 1rem; line-height: 1.6; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.pillars article { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 2.5rem 2rem 2rem; border: 1px solid rgba(0, 0, 0, .07); border-radius: 12px; background: var(--warm); transition: transform .3s ease, box-shadow .3s ease; }
.pillars article:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, .08); }
.pillars img { width: 120px; height: 120px; object-fit: contain; }
.pillars p { margin: 0; color: var(--ink); font-size: .85rem; line-height: 1.65; opacity: .65; }

.editorial { padding-block: clamp(5.5rem, 10vw, 10rem); }
.editorial--book, .editorial--author { background: var(--warm); }
.editorial__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3.5rem, 13vw, 12rem); }
.editorial__heading { align-self: start; }
.editorial__heading h2 { max-width: 520px; }
.editorial__body { max-width: 500px; padding-top: .25rem; }
.editorial__body p { margin: 0 0 1.2rem; }
.book-image { width: min(210px, 50%); margin: -1.2rem 0 2.4rem; filter: drop-shadow(10px 12px 8px rgba(0,0,0,.2)); }
.editorial--workshop { border-top: 1px solid var(--line); }
.workshop-gallery { position: relative; overflow: hidden; padding-block: .85rem; background: #fff; }
.workshop-gallery::before, .workshop-gallery::after { position: absolute; z-index: 2; top: 0; bottom: 0; width: 80px; content: ""; pointer-events: none; }
.workshop-gallery::before { left: 0; background: linear-gradient(90deg, var(--rv-bg-alt, #fff), transparent); }
.workshop-gallery::after { right: 0; background: linear-gradient(270deg, var(--rv-bg-alt, #fff), transparent); }
.workshop-gallery__track { display: flex; width: max-content; animation: workshop-marquee 95s linear infinite; will-change: transform; }
.workshop-gallery__set { display: flex; flex: none; gap: .85rem; padding-right: .85rem; }
.workshop-gallery img { width: clamp(245px, 20vw, 355px); aspect-ratio: 1.33; object-fit: cover; }
@keyframes workshop-marquee { to { transform: translateX(-50%); } }
.author-body { padding-top: 0; }
.author-image { width: 180px; aspect-ratio: 1; margin: -1rem 0 2.2rem; border-radius: 50%; object-fit: cover; filter: grayscale(1); }

.site-footer { display: grid; grid-template-columns: minmax(280px, 1fr) 1fr; gap: clamp(4rem, 18vw, 16rem); padding: 3.7rem clamp(2.5rem, 4vw, 4rem); background: var(--ink); color: rgba(255,255,255,.68); font-size: .73rem; }
.site-footer__brand { max-width: 430px; }
.site-footer p { margin: 1.35rem 0 0; }
.connect { display: flex; align-items: flex-start; flex-direction: column; gap: .8rem; }
.connect .eyebrow { margin-bottom: .7rem; color: #d6c97c; }
.connect a { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; }
.connect a:hover, .connect a:focus-visible { color: #fff; }
.connect svg { width: .85rem; height: .85rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }

@media (min-width: 761px) and (max-width: 1024px) {
  .intro { width: min(100% - 4rem, 960px); padding-block: 3rem; }
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 760px) {
  .site-header { height: 58px; padding-inline: 1.5rem; }
  .hero, .hero__slide img { min-height: 105vw; }
  .section-shell, .editorial__grid { width: min(100% - 3rem, 560px); }
  .intro { width: min(100% - 2.5rem, 560px); padding-block: 2.5rem; }
  .intro__lead { margin-bottom: 3rem; font-size: 1rem; }
  .pillars { grid-template-columns: 1fr; gap: 10px; }
  .pillars article { padding: 1.75rem 1.5rem; }
  .pillars p { font-size: .85rem; }
  .editorial { padding-block: 5rem; }
  .editorial__grid { grid-template-columns: 1fr; gap: 2.7rem; }
  .editorial__body { max-width: none; }
  .editorial__heading h2 { max-width: 450px; }
  .book-image { width: 160px; margin-top: -1rem; }
  .workshop-gallery { padding-block: .6rem; }
  .workshop-gallery__track { animation-duration: 75s; }
  .workshop-gallery__set { gap: .6rem; padding-right: .6rem; }
  .workshop-gallery img { width: 70vw; }
  .author-image { width: 145px; }
  .site-footer { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__slide { transition: none; }
  .workshop-gallery__track { animation-play-state: paused; }
}
