:root {
  --ink: #241d18;
  --muted: #71665d;
  --cream: #f6efe4;
  --paper: #fffaf2;
  --sand: #e7d4b8;
  --gold: #c78242;
  --gold-light: #e4b56e;
  --brown: #51392c;
  --brown-dark: #2f211a;
  --green: #35483b;
  --green-dark: #1f2f28;
  --line: rgba(55, 39, 29, .16);
  --shadow: 0 26px 70px rgba(39, 26, 18, .20);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

::selection { color: #fff; background: var(--gold); }

.container {
  width: min(1160px, calc(100% - 42px));
  margin-inline: auto;
}

.visually-hidden,
.skip-link {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  left: 18px;
  top: 18px;
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: 10px 14px;
  background: #fff;
  color: #111;
  border-radius: 8px;
}

.header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: .86rem;
  letter-spacing: .08em;
}

.brand strong,
.brand small { display: block; }

.brand strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.15;
}

.brand small {
  margin-top: 2px;
  color: rgba(255,255,255,.66);
  font-size: .62rem;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a {
  color: rgba(255,255,255,.84);
  text-decoration: none;
  font-size: .83rem;
  letter-spacing: .04em;
}

.menu a:hover,
.menu a:focus-visible { color: #fff; }

.menu-cta {
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 999px;
  padding: 9px 17px;
}

.menu-button {
  display: none;
  width: 43px;
  height: 43px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  cursor: pointer;
  padding: 10px;
}

.menu-button span:not(.visually-hidden) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 900px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 75% 40%, rgba(235, 171, 92, .36), transparent 24%),
    linear-gradient(118deg, rgba(31,32,24,.97) 0%, rgba(54,49,35,.94) 45%, rgba(111,64,34,.90) 100%),
    #31251f;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background:
    linear-gradient(90deg, transparent 0 65%, rgba(255,255,255,.05)),
    repeating-linear-gradient(116deg, transparent 0 22px, rgba(255,255,255,.022) 23px 24px);
}

.hero-light {
  position: absolute;
  width: 700px;
  height: 700px;
  right: -210px;
  top: 70px;
  border-radius: 50%;
  background: rgba(247, 189, 111, .13);
  filter: blur(3px);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .14;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255,255,255,.22) .65px, transparent .65px);
  background-size: 6px 6px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr .68fr;
  gap: 100px;
  align-items: center;
  padding: 138px 0 85px;
}

.kicker {
  margin: 0 0 22px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .69rem;
  font-weight: 700;
}

.kicker.dark { color: #a85e2d; }
.kicker.light { color: #edbd77; }

h1, h2, h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(4.1rem, 8vw, 7.35rem);
  line-height: .92;
  letter-spacing: -.048em;
}

h1 em {
  color: #f2d2a7;
  font-weight: 400;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.65rem, 5.2vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}

h3 {
  font-size: 1.55rem;
  line-height: 1.18;
}

.hero-line {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.81);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.1vw, 1.62rem);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  text-decoration: none;
  font: 700 .86rem/1 var(--sans);
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: #fff;
  background: var(--gold);
  box-shadow: 0 14px 32px rgba(55, 26, 10, .30);
}

.button-primary:hover { background: #d18b4b; }

.button-outline {
  color: #fff;
  border: 1px solid rgba(255,255,255,.48);
  background: rgba(255,255,255,.03);
}

.button-light {
  color: var(--brown-dark);
  background: #fff8e8;
}

.button-dark {
  color: #fff;
  background: var(--brown-dark);
}

.hero-meta {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  color: rgba(255,255,255,.57);
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cover-wrap {
  position: relative;
  width: min(100%, 410px);
  justify-self: center;
  padding: 16px;
}

.cover-halo {
  position: absolute;
  inset: 10% -22% 4%;
  border-radius: 50%;
  background: rgba(241, 177, 95, .21);
  filter: blur(32px);
}

.cover {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
  border-radius: 6px;
  box-shadow: 0 42px 82px rgba(0,0,0,.48);
  transform: none;
  background: transparent;
}


.cover-wrap::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 18%;
  right: 18%;
  bottom: 4px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,.38);
  filter: blur(18px);
}

.cover-label {
  position: absolute;
  z-index: 3;
  right: -13px;
  top: 74px;
  color: #402719;
  background: #f3cf91;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(0,0,0,.22);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.64);
  text-decoration: none;
  transform: translateX(-50%);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 1px;
  height: 36px;
  background: linear-gradient(#fff, transparent);
}

.quote-strip {
  color: #fff4e5;
  background: #2b211b;
  padding: 44px 0;
  text-align: center;
}

.quote-strip p {
  max-width: 920px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.2vw, 2.5rem);
  font-style: italic;
  line-height: 1.3;
}

.section { padding: 122px 0; }

.story { background: var(--paper); }

.story-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 110px;
  align-items: start;
}

.section-title {
  position: sticky;
  top: 50px;
}

.section-title h2 { max-width: 520px; }

.decor-line {
  width: 82px;
  height: 2px;
  margin-top: 40px;
  background: var(--gold);
}

.story-text {
  color: var(--muted);
  font-size: 1.02rem;
}

.story-text p { margin: 0 0 21px; }

.story-text .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.2;
}

.story-text .closing {
  margin-top: 34px;
  padding: 29px 0 0 28px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.33rem;
  line-height: 1.45;
}

.reasons {
  background:
    linear-gradient(rgba(231,212,184,.90), rgba(231,212,184,.90)),
    var(--sand);
}

.center-title {
  max-width: 850px;
  margin: 0 auto 62px;
  text-align: center;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.reason-card {
  min-height: 330px;
  padding: 38px 33px;
  border: 1px solid rgba(255,255,255,.70);
  background: rgba(255,255,255,.52);
  box-shadow: 0 18px 40px rgba(83,56,35,.07);
}

.reason-card .number {
  display: block;
  margin-bottom: 63px;
  color: #a85e2d;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.reason-card p { color: var(--muted); }

.excerpt-section {
  overflow: hidden;
  color: #f9efe2;
  background:
    radial-gradient(circle at 12% 20%, rgba(196,125,62,.17), transparent 25%),
    linear-gradient(125deg, #1f2f28, #23392e 65%, #352a22);
}

.excerpt-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 80px;
  align-items: start;
}

.excerpt-intro {
  position: sticky;
  top: 50px;
}

.excerpt-intro p:not(.kicker) {
  color: rgba(255,255,255,.64);
}

.chapter {
  display: inline-block;
  margin-top: 24px;
  padding: 7px 13px;
  color: #f1c78a;
  border: 1px solid rgba(241,199,138,.32);
  border-radius: 999px;
  font-size: .69rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.excerpt-paper {
  position: relative;
  padding: 72px 70px 54px;
  color: #382d24;
  background: #fffaf1;
  box-shadow: 0 35px 85px rgba(0,0,0,.28);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.77;
}

.excerpt-paper::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .13;
  background-image: radial-gradient(#6a503d .5px, transparent .6px);
  background-size: 5px 5px;
}

.excerpt-paper p,
.excerpt-footer { position: relative; z-index: 2; }

.quote-mark {
  position: absolute;
  z-index: 1;
  left: 24px;
  top: 2px;
  color: #ead7bc;
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 1;
}

.dialogue { padding-left: 18px; }

.excerpt-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(64,43,29,.15);
  font-family: var(--sans);
  font-size: .75rem;
}

.excerpt-footer a {
  color: #9b5427;
  font-weight: 800;
  text-decoration: none;
}

.author-section { background: #efe2cf; }

.author-grid {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 105px;
  align-items: center;
}

.author-photo-wrap {
  position: relative;
  max-width: 455px;
}

.author-photo {
  width: 100%;
  min-height: 555px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.author-photo-wrap::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 20px -20px -20px 20px;
  border: 1px solid rgba(96,64,41,.30);
  pointer-events: none;
}

.photo-caption {
  position: absolute;
  z-index: 3;
  left: 25px;
  bottom: 22px;
  color: #fff;
  background: rgba(40,30,23,.75);
  padding: 8px 12px;
  font-size: .67rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.author-copy p {
  max-width: 680px;
  color: var(--muted);
}

.author-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.45;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: #8b4a25;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(139,74,37,.34);
  padding-bottom: 4px;
}

.saga {
  position: relative;
  overflow: hidden;
  min-height: 900px;
  color: #fff;
  background:
    linear-gradient(to bottom, rgba(21,29,27,.25), rgba(23,22,19,.96)),
    linear-gradient(135deg, #34483c, #7b4d32 65%, #241f1b);
}

.saga::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background:
    radial-gradient(circle at 73% 10%, #f7c17b 0 1%, transparent 15%),
    repeating-linear-gradient(164deg, transparent 0 32px, rgba(255,255,255,.027) 33px 34px);
}

.saga::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -4px;
  height: 270px;
  background:
    radial-gradient(ellipse at 20% 100%, #111d17 0 30%, transparent 31%),
    radial-gradient(ellipse at 48% 110%, #18251e 0 38%, transparent 39%),
    radial-gradient(ellipse at 82% 100%, #101b16 0 36%, transparent 37%);
  opacity: .9;
}

.saga-sky {
  position: absolute;
  top: 70px;
  right: 8%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(243,183,105,.72);
  box-shadow: 0 0 80px rgba(243,183,105,.22);
}

.saga-content {
  position: relative;
  z-index: 3;
  padding: 125px 0 155px;
}

.saga-title {
  max-width: 850px;
  margin-bottom: 65px;
}

.saga-title > p:not(.kicker) {
  max-width: 700px;
  color: rgba(255,255,255,.68);
  font-size: 1.05rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.timeline-card {
  position: relative;
  min-height: 345px;
  padding: 34px 30px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(22,28,24,.46);
  backdrop-filter: blur(7px);
}

.timeline-card.current {
  background: rgba(163,94,42,.30);
  border-color: rgba(236,184,110,.48);
}

.timeline-date {
  display: block;
  color: #f1c78b;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.timeline-status {
  display: inline-block;
  margin: 12px 0 44px;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  color: rgba(255,255,255,.73);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.timeline-card h3 { font-size: 1.65rem; }
.timeline-card p { color: rgba(255,255,255,.62); }

.buy-section { background: var(--paper); }

.buy-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 100px;
  align-items: start;
}

.buy-cover {
  position: sticky;
  top: 42px;
  max-width: 320px;
  width: 100%;
  margin-inline: auto;
}


.buy-cover img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  box-shadow: var(--shadow);
  border-radius: 6px;
}


.buy-intro {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 38px 0 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-list > div {
  padding: 22px 16px;
  border-right: 1px solid var(--line);
}

.price-list > div:first-child { padding-left: 0; }
.price-list > div:last-child { border-right: 0; }

.price-list span,
.price-list strong { display: block; }

.price-list span {
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.price-list strong {
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.price-note {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: .72rem;
}

.store-list {
  display: grid;
  gap: 12px;
}

.store {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.store:hover {
  transform: translateY(-2px);
  border-color: rgba(162,87,40,.5);
  box-shadow: 0 12px 25px rgba(57,37,23,.08);
}

.store span,
.store strong,
.store small { display: block; }

.store strong { font-size: .98rem; }
.store small { margin-top: 3px; color: var(--muted); }
.store b { color: #a85e2d; font-size: 1.35rem; }

.primary-store {
  color: #fff;
  border-color: var(--brown-dark);
  background: var(--brown-dark);
}

.primary-store small { color: rgba(255,255,255,.65); }
.primary-store b { color: #efbd76; }

.book-data {
  margin-top: 48px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.book-data h3 { margin-bottom: 18px; }

.book-data dl { margin: 0; }

.book-data dl > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(51,35,25,.14);
}

.book-data dt {
  color: var(--muted);
  font-size: .77rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.book-data dd {
  margin: 0;
  font-weight: 650;
}

.invitation {
  background: #d7a25d;
  padding: 78px 0;
}

.invitation-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  color: #fff;
}

.invitation-box h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.invitation-box p:not(.kicker) {
  max-width: 720px;
  color: rgba(255,255,255,.76);
}

.contact-section { background: #f4ebdf; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.contact-copy { color: var(--muted); }

.share-button {
  min-height: 52px;
  margin-left: 10px;
  padding: 0 20px;
  color: var(--brown-dark);
  border: 1px solid rgba(53,38,28,.26);
  border-radius: 999px;
  background: transparent;
  font-weight: 750;
  cursor: pointer;
}

.share-status {
  min-height: 1.4em;
  margin-top: 12px;
  font-size: .78rem;
}

.footer {
  color: #fff;
  background: #211a16;
  padding: 64px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-top strong {
  font-family: var(--serif);
  font-size: 1.4rem;
}

.footer-top p,
.footer-bottom { color: rgba(255,255,255,.54); }

.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 20px;
}

.footer-top nav a {
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .67rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .menu-button { display: block; }

  .menu {
    display: none;
    position: absolute;
    top: 73px;
    left: 21px;
    right: 21px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    background: rgba(30,25,21,.97);
    box-shadow: var(--shadow);
  }

  .menu.open { display: flex; }

  .menu a {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .menu a:last-child { border-bottom: 0; }
  .menu-cta { border-radius: 8px; }

  .hero { min-height: auto; }

  .hero-grid,
  .story-grid,
  .excerpt-grid,
  .author-grid,
  .buy-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero-grid {
    padding-top: 145px;
    text-align: center;
  }

  .hero-line { margin-inline: auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .cover-wrap { width: 285px; }
  .scroll-cue { display: none; }

  .section-title,
  .excerpt-intro,
  .buy-cover { position: static; }

  .reason-grid,
  .timeline { grid-template-columns: 1fr; }

  .reason-card { min-height: 250px; }
  .reason-card .number { margin-bottom: 36px; }

  .author-photo-wrap { margin-inline: auto; }

  .buy-cover { max-width: 300px; margin-inline: auto; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav { min-height: 74px; }
  .brand small { display: none; }

  .hero-grid { padding: 118px 0 70px; }
  h1 { font-size: clamp(3.4rem, 18vw, 5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-meta { flex-direction: column; gap: 5px; }

  .cover-wrap { width: 220px; }
  .cover-label { right: -4px; top: 48px; }

  .section { padding: 82px 0; }
  h2 { font-size: clamp(2.35rem, 12vw, 3.35rem); }

  .excerpt-paper {
    padding: 58px 26px 38px;
    font-size: 1.06rem;
  }

  .excerpt-footer {
    flex-direction: column;
    gap: 8px;
  }

  .author-photo { min-height: 430px; }
  .author-photo-wrap::before { inset: 12px -10px -10px 12px; }

  .saga-content { padding: 90px 0 130px; }
  .saga-sky { width: 110px; height: 110px; }

  .price-list { grid-template-columns: 1fr; }

  .price-list > div {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-list > div:last-child { border-bottom: 0; }

  .book-data dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .invitation-box {
    display: block;
  }

  .invitation-box .button { width: 100%; margin-top: 20px; }

  .share-button {
    display: block;
    width: 100%;
    margin: 12px 0 0;
  }

  .contact-copy .button { width: 100%; }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .store { transition: none; }
}
