/* Light earth-tone palette */
:root {
  /* Brand palette sampled from the Uinta Stillwater Co. logo sheet */
  --paper: #F7F0E1;
  --sand: #F2E2C3;
  --stone: #DCCBA8;
  --tan: #CE9E5D;
  --sage: #8A8866;
  --moss: #474628;
  --clay: #8E5020;
  --clay-dark: #723F18;
  --river: #455555;
  --ink: #2A2A1C;
  --ink-soft: #595745;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --radius: 14px;
  --gutter: clamp(16px, 5vw, 64px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 1.075rem/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.1; margin: 0 0 .5em; letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1em; }

.eyebrow {
  font: 600 .78rem/1 var(--body);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 1rem;
}

.btn {
  display: inline-block;
  padding: .9em 1.6em;
  border-radius: 999px;
  background: var(--clay);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .02em;
  border: 2px solid var(--clay);
  transition: background .25s, transform .25s var(--ease), box-shadow .25s;
}
.btn:hover { background: var(--clay-dark); border-color: var(--clay-dark); transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(46,43,38,.5); }
.btn--ghost { background: transparent; color: inherit; border-color: currentColor; }
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: currentColor; }
.btn--small { padding: .55em 1.1em; font-size: .92rem; }

.section { padding-block: clamp(72px, 11vw, 140px); padding-inline: var(--gutter); }
.section__head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section__head p:last-child { color: var(--ink-soft); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px var(--gutter);
  color: var(--ink); background: rgba(247,240,225,.96); box-shadow: 0 1px 0 rgba(42,42,28,.1);
  transition: background .35s, color .35s, box-shadow .35s, padding .35s;
}
.nav.is-solid { box-shadow: 0 6px 20px -12px rgba(42,42,28,.35); padding-block: 6px; backdrop-filter: blur(8px); }
.nav__logo { height: 46px; width: auto; transition: height .35s; }
.nav.is-solid .nav__logo { height: 38px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.nav__brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.nav__brand .brand-name { font: 700 1.25rem/1 var(--display); letter-spacing: .01em; }
.nav__links { display: flex; align-items: center; gap: clamp(.8rem, 2vw, 1.8rem); }
.nav__links a:not(.btn) { text-decoration: none; font-weight: 500; position: relative; }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--clay); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__links a:not(.btn):hover::after { transform: scaleX(1); }
.nav__toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: inherit; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px 0; transition: transform .3s, opacity .3s; }

@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__logo, .nav.is-solid .nav__logo { height: 34px; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.4rem;
    padding: 2rem; background: var(--paper); color: var(--ink);
    transform: translateX(100%); transition: transform .4s var(--ease);
    box-shadow: -20px 0 40px -20px rgba(0,0,0,.3);
  }
  .nav__links a:not(.btn) { font-size: 1.3rem; }
  .nav.is-open .nav__links { transform: none; }
  .nav.is-open .nav__toggle { color: var(--ink); position: relative; z-index: 2; }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; color: #fff; }
.hero__slides, .hero__slide, .hero__veil { position: absolute; inset: 0; }
.hero__slide {
  background: var(--moss) center/cover no-repeat;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.6s ease, transform 8s linear;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__veil { background: linear-gradient(100deg, rgba(46,43,38,.62) 0%, rgba(46,43,38,.28) 55%, rgba(46,43,38,.05) 100%), linear-gradient(0deg, rgba(46,43,38,.35), transparent 40%); }
.hero__content { position: relative; padding: 120px var(--gutter) 90px; max-width: 760px; }
.hero__logo { width: min(100%, 620px); height: auto; filter: drop-shadow(0 24px 34px rgba(0,0,0,.45)); transform: rotate(-1deg); transition: transform .6s var(--ease); margin-bottom: 1.4rem; }
.hero__logo:hover { transform: rotate(0) scale(1.015); }
.hero__tagline { font: 700 clamp(1.7rem, 3.6vw, 2.6rem)/1.15 var(--display); margin: 0 0 .6rem; text-shadow: 0 2px 16px rgba(0,0,0,.35); }
.hero h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); font-weight: 700; margin-bottom: .35em; }
.hero .eyebrow { color: var(--sand); }
@media (max-width: 760px) { .hero__content { padding-top: 90px; } .hero__logo { transform: none; } }
.hero__rotator { position: relative; display: inline-block; color: var(--sand); font-style: italic; font-weight: 400; min-width: 8ch; height: 1.15em; vertical-align: bottom; }
.hero__rotator span { position: absolute; left: 0; top: 0; white-space: nowrap; opacity: 0; transform: translateY(.5em); transition: opacity .6s, transform .6s var(--ease); }
.hero__rotator span.is-active { opacity: 1; transform: none; }
.hero__lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 580px; opacity: .95; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }
.hero__dots { position: absolute; right: var(--gutter); bottom: 40px; display: flex; gap: 10px; }
.hero__dots button { width: 34px; height: 4px; border: 0; padding: 0; border-radius: 2px; background: rgba(255,255,255,.4); cursor: pointer; transition: background .3s, width .3s; }
.hero__dots button.is-active { background: #fff; width: 56px; }
.hero__scroll { position: absolute; left: 50%; bottom: 28px; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.7); border-radius: 14px; transform: translateX(-50%); }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; background: #fff; border-radius: 2px; animation: scrollcue 1.8s infinite; }
@media (max-width: 760px) { .hero__scroll { display: none; } .hero__dots { left: var(--gutter); right: auto; } }
@keyframes scrollcue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- STATS ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--stone); border-bottom: 1px solid var(--stone);
}
.stat { background: var(--sand); padding: 2.4rem 1rem; text-align: center; }
.stat__num, .stat__plus, .stat__word { font: 700 clamp(2.4rem, 4.5vw, 3.4rem)/1 var(--display); color: var(--moss); }
.stat__word { font-size: clamp(1.8rem, 3vw, 2.4rem); display: inline-block; padding-top: .35rem; }
.stat p { margin: .6rem 0 0; color: var(--ink-soft); font-weight: 500; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- SPLIT ---------- */
.split { display: flex; height: clamp(520px, 80vh, 760px); }
.split__panel {
  position: relative; flex: 1; overflow: hidden; color: #fff; cursor: default; outline: none;
  transition: flex .8s var(--ease);
}
.split__panel::before {
  content: ""; position: absolute; inset: 0;
  background: var(--img) center/cover no-repeat, var(--moss);
  transform: scale(1.04); transition: transform 1.2s var(--ease);
}
.split__panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(46,43,38,.72) 0%, rgba(46,43,38,.15) 60%); transition: background .6s; }
.split__panel:hover, .split__panel:focus-visible { flex: 1.8; }
.split__panel:hover::before, .split__panel:focus-visible::before { transform: scale(1.12); }
.split__inner { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: clamp(24px, 4vw, 56px); max-width: 560px; }
.split__inner h2 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: .2em; }
.split__inner .eyebrow { color: var(--sand); }
.split__more, .split__list { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .8s var(--ease), opacity .6s; }
.split__list { list-style: none; padding: 0; margin: 0; }
.split__list li { padding: .35rem 0 .35rem 1.4rem; position: relative; }
.split__list li::before { content: ""; position: absolute; left: 0; top: .95em; width: .7rem; height: 2px; background: var(--clay); }
.split__panel:hover .split__more, .split__panel:focus-visible .split__more,
.split__panel:hover .split__list, .split__panel:focus-visible .split__list { max-height: 260px; opacity: 1; }
@media (max-width: 760px), (hover: none) {
  .split { flex-direction: column; height: auto; }
  .split__panel { min-height: 460px; }
  .split__panel:hover, .split__panel:focus-visible { flex: 1; }
  .split__more, .split__list { max-height: none; opacity: 1; }
}

/* ---------- WATERS ---------- */
.waters { background: var(--paper); }
.waters__tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 2.4rem; }
.waters__tabs button {
  font: 600 1rem var(--body); padding: .6em 1.6em; border-radius: 999px; cursor: pointer;
  background: transparent; color: var(--ink); border: 2px solid var(--stone); transition: all .25s;
}
.waters__tabs button[aria-selected="true"] { background: var(--moss); border-color: var(--moss); color: #fff; }
.waters__grid { display: grid; grid-template-columns: minmax(220px, 1fr) 2fr; gap: clamp(20px, 4vw, 56px); max-width: 1200px; margin: 0 auto; align-items: start; }
.waters__list { list-style: none; margin: 0; padding: 0; }
.waters__list button {
  width: 100%; text-align: left; background: none; border: 0; border-bottom: 1px solid var(--stone);
  padding: 1rem .2rem; cursor: pointer; font: 600 1.35rem var(--display); color: var(--ink-soft);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color .25s, padding .35s var(--ease);
}
.waters__list button small { font: 600 .72rem var(--body); letter-spacing: .14em; text-transform: uppercase; color: var(--sage); }
.waters__list button.is-active, .waters__list button:hover { color: var(--ink); padding-left: 1rem; }
.waters__list button.is-active { box-shadow: inset 3px 0 0 var(--clay); }
.waters__view { margin: 0; position: sticky; top: 90px; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 60px -40px rgba(46,43,38,.45); }
.waters__img { aspect-ratio: 16 / 9; background: var(--sage) center/cover no-repeat; transition: opacity .35s; }
.waters__img.is-fading { opacity: .15; }
.waters__img.is-empty { display: grid; place-items: center; background: repeating-linear-gradient(45deg, var(--sand) 0 14px, var(--paper) 14px 28px); }
.waters__img.is-empty::after { content: "Photo coming soon"; font: 600 1.1rem var(--display); color: var(--sage); }
.waters__view figcaption { padding: 1.6rem 1.8rem 1.8rem; }
.waters__view h3 { font-size: 1.9rem; margin: .5rem 0 .4rem; }
.waters__view dl { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; margin: 1rem 0 0; }
.waters__view dt { font: 600 .72rem var(--body); letter-spacing: .14em; text-transform: uppercase; color: var(--sage); }
.waters__view dd { margin: .2rem 0 0; font-weight: 500; }
.waters__facts { list-style: none; margin: 1.1rem 0 0; padding: 1rem 0 0; border-top: 1px solid var(--stone); display: grid; gap: .45rem; }
.waters__facts li { position: relative; padding-left: 1.3rem; font-size: .96rem; color: var(--ink-soft); }
.waters__facts li::before { content: ""; position: absolute; left: 0; top: .6em; width: .55rem; height: 2px; background: var(--clay); }
.waters__note { margin: .9rem 0 0; font-size: .8rem; color: var(--sage); }
.waters__note a { color: var(--clay); }
.tag { display: inline-block; font: 600 .72rem var(--body); letter-spacing: .12em; text-transform: uppercase; background: var(--sand); color: var(--moss); padding: .35em .8em; border-radius: 999px; }
@media (max-width: 860px) {
  .waters__grid { grid-template-columns: 1fr; }
  .waters__view { position: static; order: -1; }
  .waters__list { display: flex; flex-wrap: wrap; gap: .5rem; }
  .waters__list li { flex: 0 0 auto; }
  .waters__list button { border: 2px solid var(--stone); border-radius: 999px; padding: .45rem 1rem; font-size: 1rem; }
  .waters__list button small { display: none; }
  .waters__list button.is-active, .waters__list button:hover { padding-left: 1rem; box-shadow: none; border-color: var(--clay); }
}

/* ---------- TRIPS ---------- */
.trips { background: var(--sand); }
.trips__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(18px, 2.5vw, 32px); max-width: 1200px; margin: 0 auto; }
.card { background: var(--paper); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.card.reveal.is-in:hover { transform: translateY(-8px); box-shadow: 0 30px 50px -30px rgba(46,43,38,.5); }
.card__img { aspect-ratio: 4 / 3; background: var(--sage) center/cover no-repeat; transition: transform 1s var(--ease); }
.card:hover .card__img { transform: scale(1.07); }
.card > .card__img { clip-path: inset(0); }
.card__body { position: relative; padding: 1.6rem; flex: 1; display: flex; flex-direction: column; background: var(--paper); }
.card__body > p:not(.eyebrow):not(.card__price) { color: var(--ink-soft); }
.card__reveal { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); }
.card__reveal ul { overflow: hidden; margin: 0; padding: 0; list-style: none; }
.card__reveal li { padding: .25rem 0 .25rem 1.4rem; position: relative; }
.card__reveal li::before { content: "›"; position: absolute; left: .2rem; color: var(--clay); font-weight: 700; }
.card:hover .card__reveal, .card:focus-within .card__reveal { grid-template-rows: 1fr; }
.card__price { margin: auto 0 0; padding-top: 1rem; font: 600 1.1rem var(--display); color: var(--moss); border-top: 1px solid var(--stone); }
@media (hover: none) { .card__reveal { grid-template-rows: 1fr; } }

/* ---------- FLEET ---------- */
.fleet { background: var(--paper); }
.fleet__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(18px, 3vw, 36px); max-width: 1100px; margin: 0 auto; }
.boat { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 60px -45px rgba(46,43,38,.5); transition: transform .5s var(--ease); }
.boat.reveal.is-in:hover { transform: translateY(-6px); }
.boat__art { background: linear-gradient(180deg, var(--sand), #E3ECE9); padding: 1.2rem 1.2rem 0; }
.boat__art svg { width: 100%; height: auto; display: block; }
.boat__photo { display: none; }
.boat__art.has-photo { background: #fff; padding: 1rem; }
.boat__art.has-photo .boat__photo { display: block; width: 100%; aspect-ratio: 2 / 1; object-fit: contain; transition: transform .8s var(--ease); }
.boat:hover .boat__art.has-photo .boat__photo { transform: scale(1.04) rotate(-1deg); }
.boat__art.has-photo svg { display: none; }
.boat__hull { transform-box: fill-box; transform-origin: center; }
.boat:hover .boat__hull { animation: bob 2.4s ease-in-out infinite; }
.boat:hover .boat__water { animation: drift 2.4s linear infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-5px) rotate(-1.5deg); } }
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(-40px); } }
.boat__body { padding: 1.4rem 1.6rem 1.6rem; }
.boat__body > p:not(.eyebrow) { color: var(--ink-soft); }
.boat__body ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.boat__body li { background: var(--sand); border-radius: 999px; padding: .3rem .8rem; font-size: .9rem; }

/* ---------- VISE (scroll story) ---------- */
.vise { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 5vw, 80px); padding-inline: var(--gutter); background: var(--paper); }
.vise__sticky { position: sticky; top: 0; height: 100vh; padding-top: 60px; display: flex; flex-direction: column; justify-content: center; gap: 1rem; }
.vise__frame { position: relative; aspect-ratio: 4 / 5; max-height: 78vh; border-radius: var(--radius); overflow: hidden; background: var(--stone); }
.vise__img { position: absolute; inset: 0; background: center/cover no-repeat; opacity: 0; transform: scale(1.06); transition: opacity 1s ease, transform 1.4s var(--ease); }
.vise__img.is-active { opacity: 1; transform: scale(1); }
.vise__progress { height: 3px; background: var(--stone); border-radius: 2px; overflow: hidden; }
.vise__progress span { display: block; height: 100%; width: 0; background: var(--clay); transition: width .2s linear; }
.vise__steps { padding-block: 14vh 30vh; }
.vise__intro { min-height: 36vh; display: flex; flex-direction: column; justify-content: center; padding-bottom: 4vh; }
.vise__intro p:last-child { color: var(--ink-soft); font-size: 1.15rem; }
.vise__step { min-height: 38vh; display: flex; flex-direction: column; justify-content: center; opacity: .25; transition: opacity .6s; }
.vise__step.is-active { opacity: 1; }
.vise__n { font: 700 3rem/1 var(--display); color: var(--stone); margin-bottom: .4rem; transition: color .6s; }
.vise__step.is-active .vise__n { color: var(--clay); }
.vise__step h3 { font-size: 1.7rem; }
.vise__step p { color: var(--ink-soft); font-size: 1.1rem; max-width: 460px; }
@media (max-width: 860px) {
  .vise { grid-template-columns: 1fr; }
  .vise__sticky { height: auto; top: 64px; z-index: 2; padding-block: .6rem; background: var(--paper); }
  .vise__frame { aspect-ratio: 16 / 10; max-height: 38vh; }
  .vise__steps { padding-block: 4vh 10vh; }
  .vise__intro { min-height: auto; padding-bottom: 2rem; }
  .vise__step { min-height: 30vh; }
}

/* ---------- SEASONS ---------- */
.seasons { background: var(--sand); }
.seasons__months { display: grid; grid-template-columns: repeat(12, 1fr); gap: 6px; max-width: 1100px; margin: 0 auto 2rem; }
.seasons__months button {
  font: 600 .95rem var(--body); padding: 1.1rem 0; cursor: pointer; border: 0; border-radius: 10px;
  background: var(--paper); color: var(--ink-soft); position: relative; overflow: hidden;
  transition: background .25s, color .25s, transform .25s var(--ease);
}
.seasons__months button::before { content: ""; position: absolute; left: 50%; bottom: 8px; width: 60%; height: 4px; transform: translateX(-50%); border-radius: 2px; background: linear-gradient(90deg, var(--clay) var(--heat, 20%), var(--stone) var(--heat, 20%)); }
.seasons__months button[aria-selected="true"]::before { background: linear-gradient(90deg, var(--sand) var(--heat, 20%), rgba(255,255,255,.25) var(--heat, 20%)); }
.seasons__months button span { position: relative; }
.seasons__months button:hover { transform: translateY(-3px); }
.seasons__months button[aria-selected="true"] { background: var(--moss); color: #fff; }
.seasons__panel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; max-width: 1100px; margin: 0 auto; background: var(--stone); border-radius: var(--radius); overflow: hidden; }
.seasons__panel > div { background: var(--paper); padding: 1.6rem 1.8rem; }
.seasons__panel p:last-child { margin: 0; transition: opacity .3s; }
.seasons__panel.is-swapping p:last-child { opacity: 0; }
@media (max-width: 760px) {
  .seasons__months { grid-template-columns: repeat(6, 1fr); }
  .seasons__panel { grid-template-columns: 1fr; }
}

/* ---------- BAND ---------- */
.band { position: relative; overflow: hidden; color: #fff; padding: clamp(110px, 18vw, 220px) var(--gutter); text-align: center; }
.band__bg { position: absolute; inset: -20% 0; background: var(--img) center/cover no-repeat, var(--river); will-change: transform; }
.band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(46,43,38,.62), rgba(46,43,38,.4)); }
.band__content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.band .eyebrow { color: var(--sand); }
.band p:last-child { font-size: 1.15rem; opacity: .95; }

/* ---------- ABOUT ---------- */
.about { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(28px, 6vw, 90px); align-items: center; max-width: 1200px; margin: 0 auto; }
.photo-slot {
  aspect-ratio: 4 / 5; border-radius: var(--radius); border: 2px dashed var(--sage);
  display: grid; place-items: center; color: var(--sage); font: 600 1.1rem var(--display);
  background: repeating-linear-gradient(45deg, var(--sand) 0 12px, var(--paper) 12px 24px);
}
.about__text > p { color: var(--ink-soft); font-size: 1.12rem; }
.about__promise { margin: 1.4rem 0 0; padding: .2rem 0 .2rem 1.2rem; border-left: 3px solid var(--clay); font: italic 400 1.3rem/1.45 var(--display); color: var(--moss); }
.placeholder-note { font-style: italic; color: var(--sage) !important; }
.about__facts { list-style: none; padding: 0; margin: 1.8rem 0 0; display: flex; flex-wrap: wrap; gap: 1rem; }
.about__facts li { background: var(--sand); padding: .8rem 1.2rem; border-radius: 10px; }
.about__facts strong { font-family: var(--display); color: var(--moss); margin-right: .3rem; }
@media (max-width: 860px) { .about { grid-template-columns: 1fr; } .photo-slot { aspect-ratio: 16 / 11; } }

/* ---------- BOOK ---------- */
.book { background: linear-gradient(180deg, var(--paper), var(--sand)); }
.book__card { max-width: 820px; margin: 0 auto; text-align: center; background: var(--moss); color: #fff; border-radius: 22px; padding: clamp(40px, 7vw, 80px) clamp(22px, 6vw, 70px); }
.book__card .eyebrow { color: var(--sand); }
.book__card p { opacity: .92; font-size: 1.12rem; }
.book__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 1.6rem; }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: var(--stone); padding: 56px var(--gutter) 36px; display: grid; gap: 1.6rem; }
.footer__brand { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2rem; }
.footer__brand img { width: 240px; height: auto; border-radius: 6px; }
.footer__tag { margin: 0; font: italic 400 1.3rem var(--display); color: var(--tan); letter-spacing: .02em; }
.footer__brand .brand-name { font: 700 1.3rem var(--display); color: var(--paper); }
.footer__brand p { margin: 0; font-size: .95rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer__links a { text-decoration: none; color: var(--sand); }
.footer__links a:hover { color: #fff; }
.footer__credits, .footer__legal { font-size: .82rem; opacity: .75; margin: 0; }
.footer__credits summary { cursor: pointer; width: max-content; color: var(--sand); }
.footer__credits summary:hover { color: #fff; }
.footer__credits p { margin: .6rem 0 0; }
.footer__credits a { color: var(--sand); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
