

:root {
  --ink: #3F2A1E;
  --ink-hover: #5E4130;
  --body: #4A382C;
  --muted: #6E5A4A;
  --accent: #8A6242;
  --sand: #A98D74;
  --gold: #C0A184;

  --cream: #FBF8F4;
  --shell: #EFE5D9;
  --stone: #E4D6C6;

  --line: #DFCFBC;
  --line-soft: #E3D5C6;
  --line-dot: #C9B49E;

  --display: 'Marcellus', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;

  
  --gutter: clamp(20px, 5.5vw, 80px);
  --maxw: 1240px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; overflow-x: clip; max-width: 100%; }

body {
  background: var(--cream);
  color: var(--body);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent); }

img { max-width: 100%; }

input, textarea, select, button { font-family: var(--sans); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }


.wrap { max-width: var(--maxw); margin: 0 auto; }

.band { padding: 96px var(--gutter) 112px; }
.band--shell { background: var(--shell); }
.band--cream { background: var(--cream); }


.eyebrow {
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}

.page-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.12;
  color: var(--ink);
  margin: 0;
}

.section-label {
  font-family: var(--display);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 28px;
}

.note {
  font-size: 14px;
  line-height: 1.7;
  color: var(--sand);
  font-style: italic;
  margin: 0;
}

.rule { width: 56px; height: 1px; background: #D8C4AF; }


.btn {
  display: inline-block;
  padding: 15px 30px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}
.btn:hover { background: var(--ink); color: var(--shell); }

.btn--solid {
  padding: 17px 36px;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.btn--solid:hover { background: var(--ink-hover); color: var(--cream); }

.btn--light {
  border-color: var(--gold);
  color: var(--shell);
}
.btn--light:hover { background: var(--shell); color: var(--ink); }


.slot {
  position: relative;
  overflow: hidden;
  background: var(--stone);
  display: grid;
  place-items: center;
}

.slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slot__hint {
  padding: 20px;
  text-align: center;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(63, 42, 30, 0.42);
  text-wrap: pretty;
}


.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--shell);
  border-bottom: 1px solid var(--line);
}

.site-nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--gutter) 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.site-nav__logo { display: flex; align-items: center; }
.site-nav__logo img { height: 56px; width: auto; display: block; }

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.nav-tab:hover { color: var(--ink); }
.nav-tab::after { content: ''; height: 1.5px; width: 100%; background: transparent; }
.nav-tab[aria-current='page']::after { background: var(--ink); }

.site-nav .btn--solid { padding: 12px 24px; }


.site-footer {
  background: var(--ink);
  color: var(--shell);
  padding: 72px var(--gutter) 48px;
}

.site-footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.site-footer__logo {
  height: 62px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.site-footer__tagline {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.site-footer__col { display: flex; flex-direction: column; gap: 12px; }

.footer-label {
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sand);
}

.site-footer__col div:not(.footer-label) { font-size: 14.5px; color: var(--shell); }


.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


@media (max-width: 1180px) {
  .nav-toggle { display: flex; }

  
  .site-nav__inner { flex-wrap: wrap; gap: 12px; padding-block: 14px; }
  .site-nav__logo { margin-right: auto; }

  .site-nav__links {
    display: none;
    order: 3;
    
    
    flex: 0 0 100%;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 8px;

    
    max-height: calc(100vh - 92px);
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav__links > * { flex-shrink: 0; }
  .site-nav .btn--solid { display: block; }
  .site-nav__links.is-open { display: block; }

  .nav-tab {
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-tab::after { display: none; }
  .nav-tab[aria-current='page'] { color: var(--accent); }

  .site-nav .btn--solid { margin-top: 16px; text-align: center; }
}

@media (max-width: 700px) {
  .band { padding: 64px var(--gutter) 72px; }
  .site-nav__logo img { height: 44px; }
}


.slot--3x4 { aspect-ratio: 3 / 4; }
.slot--4x5 { aspect-ratio: 4 / 5; }
.slot--16x10 { aspect-ratio: 16 / 10; }


.js-reveal .reveal {
  opacity: 0;
  transform: translateY(14px);
}

.js-reveal .reveal.is-in {
  opacity: 1;
  transform: none;
  transition:
    opacity 620ms cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0ms),
    transform 620ms cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}


html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

::selection { background: var(--shell); color: var(--ink); }


.slot img { animation: slot-in 520ms ease both; }
@keyframes slot-in { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .slot img { animation: none; } }


.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.skip-link:focus { left: 0; }

.btn { transition: background 180ms ease, color 180ms ease, border-color 180ms ease; }
.nav-tab { transition: color 160ms ease; }


.note:empty,
.faq__a:empty,
.tx-detail__value:empty,
.g-item__caption:empty,
.ba-item__caption:empty,
.review__quote:empty,
.review__who:empty,
.block-photo__caption:empty { display: none; }


.slot__hint { display: none; }
.ie-on .slot__hint { display: block; }


.slot:not(:has(img)) { background: var(--stone); }


h1, h2, .page-title, .hero__title, .book__title, .reviews__title, .faq__title {
  text-wrap: balance;
}

p, .hero__lede, .hero__body { text-wrap: pretty; }
