:root {
  --paper: #f4eee3;
  --linen: #faf6ee;
  --cream: #efe6d3;
  --ink: #2b2328;
  --muted: #6a5d63;
  --berry: #b12e56;
  --berry-deep: #8d2444;
  --plum: #55366f;
  --sage: #4f7d63;
  --sage-soft: #7fa38c;
  --gold: #c4a35a;
  --gold-line: rgba(196, 163, 90, 0.55);
  --sky: #d7ebf0;
  --header-h: 92px;
  --display: "Fraunces", "Times New Roman", serif;
  --sans: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 0.7, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.75;
  background: var(--paper);
  overflow-x: hidden;
}

body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.045;
  z-index: 80;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--plum);
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.45em;
  color: var(--plum);
}

p {
  margin: 0 0 1em;
}

.skip {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--ink);
  color: var(--linen);
  padding: 8px 12px;
  z-index: 100;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.kicker {
  margin: 0 0 12px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.9);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(196, 163, 90, 0.35);
}

.site-header.scrolled {
  box-shadow: 0 12px 30px rgba(43, 35, 40, 0.08);
  background: rgba(250, 246, 238, 0.96);
}

.topbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 8px 20px;
  background: linear-gradient(90deg, #4a2f60, #7a2f4d 55%, #4f7d63);
  color: #f7efe3;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.topbar span {
  opacity: 0.45;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  box-shadow: inset 0 0 0 4px var(--linen), 0 0 0 1px rgba(196, 163, 90, 0.35);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  color: var(--plum);
  background: linear-gradient(160deg, #fffdf8, #f0e4cc);
}

.logo-text strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.logo-text small {
  display: block;
  margin-top: 3px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-cta {
  display: none;
}

.nav-links a {
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--plum);
}

.desktop-cta {
  border-radius: 999px;
  padding: 11px 20px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 13px 24px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--berry);
  color: #fff8f4;
}

.btn-primary:hover {
  background: var(--berry-deep);
  color: #fff8f4;
}

.btn-ghost {
  background: transparent;
  color: var(--plum);
  border-color: var(--gold-line);
}

.btn-ghost:hover {
  border-color: var(--plum);
  color: var(--plum);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--berry);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* Hero */
.hero {
  position: relative;
  padding: 36px 0 0;
  background:
    radial-gradient(900px 380px at 80% 0%, rgba(215, 235, 240, 0.9), transparent 70%),
    linear-gradient(180deg, #eaf3f5 0%, var(--paper) 58%);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 280px;
  background: url("../images/vine.svg") no-repeat center / contain;
  opacity: 0.45;
  pointer-events: none;
}

.hero::before {
  left: -40px;
  top: 40px;
}

.hero::after {
  right: -50px;
  bottom: 30px;
  transform: scaleX(-1) rotate(12deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 40px;
  align-items: center;
  min-height: 640px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
}

.hero h1 {
  font-size: clamp(3.1rem, 6.2vw, 5.4rem);
  color: var(--plum);
  margin: 0 0 18px;
  font-weight: 500;
  font-optical-sizing: auto;
}

.hero h1 em {
  display: block;
  font-style: italic;
  color: var(--berry);
  font-weight: 500;
}

.lede {
  font-size: 1.06rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 38ch;
  line-height: 1.8;
}

.verse-line {
  margin: 22px 0 0;
  font-family: var(--display);
  font-style: italic;
  font-optical-sizing: auto;
  font-size: 1.32rem;
  color: var(--plum);
}

.hero-stage {
  position: relative;
  height: 620px;
  z-index: 2;
}

.hero-stage img {
  width: 100%;
}

.book-stand {
  position: absolute;
  filter: drop-shadow(0 28px 36px rgba(43, 35, 40, 0.22));
  transition: transform 0.6s var(--ease);
}

.book-stand:hover {
  transform: translateY(-8px);
}

.book-stand.primary {
  width: min(340px, 58%);
  right: 8%;
  top: 36px;
  z-index: 3;
}

.book-stand.left {
  width: min(250px, 42%);
  left: 2%;
  top: 88px;
  z-index: 2;
}

.book-stand.left img {
  transform: rotate(-7deg);
}

.book-stand.front {
  width: min(230px, 40%);
  right: 6%;
  bottom: 28px;
  z-index: 4;
}

.book-stand.front img {
  transform: rotate(5deg);
}

.hero-meadow {
  height: 70px;
  margin-top: -20px;
  background:
    radial-gradient(120px 40px at 12% 100%, rgba(177, 46, 86, 0.12), transparent 70%),
    radial-gradient(160px 50px at 40% 110%, rgba(79, 125, 99, 0.2), transparent 70%),
    radial-gradient(140px 46px at 70% 100%, rgba(85, 54, 111, 0.12), transparent 70%),
    linear-gradient(180deg, transparent, rgba(79, 125, 99, 0.18));
}

/* Pull quote */
.pullquote {
  margin: 0;
  padding: 72px 24px 64px;
  text-align: center;
  background: var(--linen);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}

.ornament {
  width: 72px;
  height: 12px;
  margin: 0 auto 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 12' fill='none'%3E%3Cpath d='M2 6h22M48 6h22' stroke='%23c4a35a' stroke-linecap='round'/%3E%3Ccircle cx='36' cy='6' r='3.2' fill='%23b12e56'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pullquote blockquote {
  margin: 0 auto;
  max-width: 18em;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.3;
  color: var(--plum);
  font-weight: 500;
}

.pullquote figcaption {
  margin-top: 16px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 96px 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 500;
}

.section-head p {
  color: var(--muted);
  font-weight: 300;
}

.flagship {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.flagship-cover {
  position: relative;
}

.flagship-cover img {
  width: min(420px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 30px 40px rgba(43, 35, 40, 0.18));
}

.flagship-copy h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 500;
}

.edition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 12px;
  align-content: start;
}

.edition-card {
  color: inherit;
  text-align: center;
}

.edition-card img {
  width: 100%;
  border-radius: 12px;
  filter: drop-shadow(0 12px 18px rgba(43, 35, 40, 0.16));
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.edition-card:hover img {
  transform: translateY(-4px);
}

.edition-card.is-active img {
  box-shadow: 0 0 0 2px var(--gold), 0 12px 18px rgba(43, 35, 40, 0.16);
}

.edition-card span {
  display: block;
  margin-top: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.edition-card.is-active span {
  color: var(--berry);
}

.editions-lead {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--plum);
}

.edition-viewing {
  margin: 0 0 18px;
  font-size: 0.92rem;
  color: var(--muted);
}

.detail-copy .edition-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 10px;
  margin: 6px 0 10px;
}

.catalog-editions {
  grid-template-columns: minmax(260px, 340px) 1fr;
  align-items: start;
}

.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}

.audience article {
  padding: 36px 32px;
}

.audience article + article {
  border-left: 1px solid var(--gold-line);
}

.audience .num {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--berry);
  margin-bottom: 10px;
}

.audience h3 {
  font-size: 1.45rem;
  font-weight: 500;
}

.audience p {
  color: var(--muted);
  font-weight: 300;
  margin: 0;
}

/* Books */
.shelf {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px 28px;
}

.shelf-item {
  color: inherit;
  text-align: center;
}

.shelf-item:nth-child(2) { transition-delay: 0.06s; }
.shelf-item:nth-child(3) { transition-delay: 0.12s; }
.shelf-item:nth-child(4) { transition-delay: 0.18s; }
.shelf-item:nth-child(5) { transition-delay: 0.08s; }
.shelf-item:nth-child(6) { transition-delay: 0.14s; }
.shelf-item:nth-child(7) { transition-delay: 0.2s; }
.shelf-item:nth-child(8) { transition-delay: 0.24s; }

.shelf-item h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
}

.cover-frame {
  display: block;
  margin-bottom: 16px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 0.45s var(--ease);
}

.shelf-item:hover .cover-frame,
.catalog-card:hover .cover-frame {
  transform: translateY(-8px);
  box-shadow: none;
}

.cover-frame img {
  margin: 0 auto;
  max-height: 340px;
  width: auto;
  filter: drop-shadow(0 18px 28px rgba(43, 35, 40, 0.22));
}

.catalog {
  display: grid;
  gap: 56px;
}

.catalog-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--gold-line);
}

.catalog-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.catalog-copy h3 {
  font-size: 2rem;
  font-weight: 500;
}

.catalog-copy h3 a {
  color: inherit;
}

.catalog-copy p {
  color: var(--muted);
  font-weight: 300;
}

/* Author */
.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
}

.portrait {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--gold-line);
  background: var(--linen);
  position: relative;
}

.portrait::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(177, 46, 86, 0.18);
  pointer-events: none;
}

.seal {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 2rem;
  color: var(--plum);
  border: 1px solid var(--gold);
  background: var(--paper);
}

.portrait h3 {
  font-size: 1.7rem;
  font-weight: 500;
}

.portrait p {
  color: var(--muted);
  font-weight: 300;
}

.pull-line {
  margin: 22px 0;
  padding: 0 0 0 18px;
  border-left: 1px solid var(--gold);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--plum);
}

/* Steps */
.steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--gold-line);
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gold-line);
}

.step .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--berry);
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  font-weight: 500;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
}

.side-notes article {
  padding: 24px 0;
  border-bottom: 1px solid var(--gold-line);
}

.side-notes article:first-child {
  border-top: 1px solid var(--gold-line);
}

.side-notes h3 {
  font-size: 1.3rem;
  font-weight: 500;
}

.side-notes p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
}

/* CTA */
.endpaper {
  background:
    linear-gradient(180deg, rgba(244, 238, 227, 0.2), rgba(244, 238, 227, 0.2)),
    linear-gradient(135deg, #4a2f60 0%, #7a2f4d 100%);
  color: #f6efe4;
  text-align: center;
  padding: 88px 24px;
}

.endpaper h2 {
  color: #f6efe4;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
}

.endpaper p {
  max-width: 46ch;
  margin: 0 auto 28px;
  color: rgba(246, 239, 228, 0.78);
  font-weight: 300;
}

.endpaper .kicker {
  color: var(--gold);
}

.endpaper .btn-primary {
  background: var(--linen);
  color: var(--plum);
}

.endpaper .btn-ghost {
  color: var(--linen);
  border-color: rgba(246, 239, 228, 0.35);
}

.endpaper .hero-actions {
  justify-content: center;
}

/* Page hero */
.page-hero {
  padding: 72px 0 24px;
  text-align: center;
  background: linear-gradient(180deg, #eaf3f5, var(--paper) 70%);
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 500;
}

.page-hero .lede {
  margin-inline: auto;
}

/* Book detail */
.detail-hero {
  padding: 40px 0 20px;
  background: linear-gradient(180deg, #eaf3f5, var(--paper) 55%);
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.detail-stage {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.detail-stage img {
  margin: 0 auto;
  max-height: 640px;
  width: auto;
  filter: drop-shadow(0 28px 36px rgba(43, 35, 40, 0.22));
}

.detail-stage img.is-flat {
  width: 100%;
  max-height: 560px;
  border-radius: 16px;
  object-fit: contain;
}

.detail-copy h1 {
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  font-weight: 500;
}

.detail-meta {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
}

.theme-line {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Forms */
.form-shell {
  width: min(720px, calc(100% - 48px));
  margin: 0 auto;
  padding: 40px;
  background: var(--linen);
  border: 1px solid var(--gold-line);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--gold-line);
  background: transparent;
  padding: 10px 0;
  font: inherit;
  color: var(--ink);
  border-radius: 0;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-bottom-color: var(--plum);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  text-align: center;
  padding: 24px 0;
}

/* Footer */
.site-footer {
  background:
    radial-gradient(700px 280px at 90% 0%, rgba(177, 46, 86, 0.18), transparent 60%),
    radial-gradient(500px 240px at 0% 100%, rgba(85, 54, 111, 0.28), transparent 55%),
    #1f181c;
  color: #e7dcc8;
  padding: 0;
}

.footer-rule {
  height: 3px;
  background: linear-gradient(90deg, #c4a35a, #b12e56, #55366f, #4f7d63);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.95fr 1fr;
  gap: 36px;
  padding: 72px 0 48px;
}

.footer-brand .logo-mark {
  margin-bottom: 16px;
  color: var(--plum);
}

.site-footer h3 {
  color: #f6efe4;
  font-size: 2.15rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.site-footer h3 em {
  font-style: italic;
  color: #e8b7c5;
}

.site-footer p {
  color: rgba(231, 220, 200, 0.78);
}

.site-footer a {
  color: #e7dcc8;
}

.site-footer a:hover {
  color: #f6efe4;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-verse {
  padding: 22px 24px;
  border: 1px solid rgba(196, 163, 90, 0.35);
  background: rgba(255, 248, 237, 0.04);
}

.footer-verse .verse-line {
  color: #f6efe4;
  margin: 0;
  font-size: 1.45rem;
}

.copyright {
  border-top: 1px solid rgba(196, 163, 90, 0.2);
  padding: 16px 0 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(231, 220, 200, 0.6);
}

.copyright .wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  width: min(1160px, calc(100% - 48px));
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .flagship,
  .split,
  .detail-grid,
  .catalog-card,
  .catalog-editions,
  .footer-inner,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .audience {
    grid-template-columns: 1fr;
  }

  .audience article + article {
    border-left: 0;
    border-top: 1px solid var(--gold-line);
  }

  .shelf {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-copy .edition-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stage {
    height: 420px;
    order: -1;
  }

  .hero-grid {
    min-height: 0;
    gap: 12px;
  }

  .book-stand.primary {
    width: 46%;
    right: 12%;
    top: 10px;
  }

  .book-stand.left {
    width: 34%;
    top: 48px;
  }

  .book-stand.front {
    width: 32%;
    bottom: 8px;
  }

  .hero::before,
  .hero::after {
    width: 140px;
    height: 180px;
    opacity: 0.3;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(1160px, calc(100% - 32px));
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--linen);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 24px;
    border-bottom: 1px solid var(--gold-line);
    z-index: 20;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
  }

  .desktop-cta {
    display: none;
  }

  .mobile-cta {
    display: block;
    padding: 12px 0 4px;
  }

  .section {
    padding: 64px 0;
  }

  .form-shell {
    padding: 28px 20px;
  }
}

@media (max-width: 520px) {
  .shelf {
    grid-template-columns: 1fr 1fr;
    gap: 28px 14px;
  }

  .cover-frame {
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
