:root {
  --night: #04142b;
  --midnight: #072544;
  --blue: #0d3d68;
  --cranberry: #a1162a;
  --cranberry-deep: #610b18;
  --evergreen: #0b4937;
  --evergreen-deep: #052d26;
  --gold: #f3ca72;
  --gold-light: #ffe9ac;
  --snow: #f8fcff;
  --ice: #dff3ff;
  --cream: #fff8ea;
  --ink: #172839;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", system-ui, sans-serif;
  --shell: min(1240px, calc(100% - 44px));
  --shadow: 0 28px 80px rgba(0, 8, 22, .34);
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--night);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(58, 132, 194, .32), transparent 34%),
    radial-gradient(circle at 80% 42%, rgba(19, 82, 122, .24), transparent 34%),
    linear-gradient(180deg, #082c51, var(--night) 52%, #020b19);
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { overflow-wrap: break-word; font-family: var(--serif); }
h2 { font-size: clamp(3rem, 6.2vw, 5.8rem); line-height: .92; letter-spacing: -.035em; }
h3 { font-size: clamp(2rem, 3vw, 3rem); line-height: 1; }
.section-shell { width: var(--shell); margin-inline: auto; }
.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;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 0 0 12px 12px;
  background: var(--gold);
  color: #281b08;
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

.reader-strip {
  position: relative;
  z-index: 45;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 18px);
  padding: 7px 18px;
  border-bottom: 1px solid rgba(255,232,171,.48);
  background:
    linear-gradient(90deg, rgba(161,22,42,.2), transparent 22% 78%, rgba(161,22,42,.2)),
    linear-gradient(90deg, var(--evergreen-deep), #0b5a43 50%, var(--evergreen-deep));
  box-shadow: inset 0 -1px rgba(0,0,0,.22);
  color: var(--snow);
  font-size: .76rem;
  font-weight: 650;
  letter-spacing: .055em;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}
.reader-strip strong { color: var(--gold-light); font-weight: 800; text-transform: uppercase; }
.reader-strip-sparkle { color: var(--gold); font-size: .88rem; }
.reader-strip-cta {
  flex: 0 0 auto;
  padding: 4px 11px;
  border: 1px solid rgba(255,232,171,.62);
  border-radius: 999px;
  background: var(--cranberry);
  color: white;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.reader-strip:hover .reader-strip-cta,
.reader-strip:focus-visible .reader-strip-cta { transform: translateY(-1px); background: #c21c35; }
.reader-strip:focus-visible { outline: 3px solid var(--gold-light); outline-offset: -3px; }

.snowfall {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  overflow: hidden;
}
.snowflake {
  position: absolute;
  top: -24px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgba(255,255,255,var(--opacity));
  box-shadow: 0 0 9px rgba(213, 242, 255, .55);
  animation: snow-fall var(--duration) linear var(--delay) infinite;
}
@keyframes snow-fall {
  to { transform: translate3d(var(--drift), 105vh, 0); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px clamp(22px, 4.5vw, 70px);
  border-bottom: 1px solid rgba(243, 202, 114, .28);
  background: rgba(3, 16, 35, .88);
  box-shadow: 0 10px 34px rgba(0, 5, 18, .22);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: .92;
  letter-spacing: .015em;
}
.brand-star { grid-row: 1 / 3; margin-right: 11px; color: var(--gold); font-size: 1.1rem; }
.brand small {
  color: #b9cfe1;
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: clamp(10px, 1.6vw, 24px); }
.site-nav a {
  position: relative;
  padding-block: 10px;
  color: #dcebf7;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--gold);
  transition: right .2s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.site-nav .nav-book-five { color: var(--gold-light); }
.site-nav .nav-buy {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  border: 1px solid #ffe6a8;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe8ab, var(--gold));
  color: #312006;
  box-shadow: 0 8px 22px rgba(231,177,71,.2);
}
.site-nav .nav-buy::after { display: none; }
.menu-button { display: none; }

.image-link { display: block; width: 100%; height: 100%; cursor: zoom-in; }
.image-link:focus-visible,
.welcome-boxset > a:focus-visible,
.bundle-landscape > a:focus-visible,
.gift-cover > a:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: -4px;
}
.welcome-boxset > a, .bundle-landscape > a, .gift-cover > a { display: block; }

.hero {
  position: relative;
  min-height: max(760px, calc(100svh - 78px));
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .68fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(70px, 9vw, 128px) max(22px, calc((100vw - 1240px) / 2)) 150px;
  isolation: isolate;
  overflow: hidden;
}
.hero-scene {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.025);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 9, 24, .92) 0%, rgba(0, 14, 34, .73) 44%, rgba(0, 12, 28, .26) 72%, rgba(0, 10, 24, .7) 100%),
    linear-gradient(180deg, rgba(2, 15, 32, .17), rgba(2, 12, 28, .08) 60%, #061a35 100%);
}
.hero-copy { position: relative; z-index: 2; max-width: 760px; }
.eyebrow {
  margin-bottom: 15px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.5;
  text-transform: uppercase;
}
.hero h1 {
  margin-bottom: 26px;
  color: white;
  font-size: clamp(4.9rem, 8.9vw, 9rem);
  line-height: .74;
  letter-spacing: -.055em;
  text-shadow: 0 7px 30px rgba(0, 4, 14, .56);
}
.hero h1 em {
  display: block;
  color: var(--snow);
  font-style: italic;
  text-shadow: 0 3px 0 var(--cranberry-deep), 0 0 26px rgba(255, 226, 151, .32), 0 12px 30px rgba(0,0,0,.5);
}
.hero-hook {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.7vw, 2.5rem);
  font-weight: 600;
  line-height: 1.12;
}
.hero-intro { max-width: 710px; margin-bottom: 32px; color: #eff8ff; font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.8; }
.hero-actions, .closing-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .105em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-gold {
  border: 1px solid #ffe6a8;
  background: linear-gradient(180deg, #ffe8ab, var(--gold));
  box-shadow: 0 12px 36px rgba(231, 177, 71, .25), inset 0 1px white;
  color: #312006;
}
.button-cranberry {
  border: 1px solid #f08a99;
  background: linear-gradient(180deg, #c7213b, var(--cranberry));
  box-shadow: 0 12px 34px rgba(161,22,42,.28), inset 0 1px rgba(255,255,255,.35);
  color: white;
}
.button-glass { border: 1px solid rgba(255,255,255,.5); background: rgba(4, 20, 43, .45); color: white; backdrop-filter: blur(9px); }
.button-muted { border: 1px dashed rgba(243,202,114,.7); background: rgba(255,255,255,.055); color: #f6dfab; cursor: default; }
.button-muted:hover { transform: none; }

.signpost {
  position: relative;
  z-index: 3;
  width: min(440px, 100%);
  min-height: 550px;
  justify-self: center;
  padding: 83px 0 66px;
  filter: drop-shadow(0 22px 24px rgba(0, 4, 13, .46));
}
.signpost::before {
  content: "";
  position: absolute;
  inset: 42px auto 18px 50%;
  width: 56px;
  transform: translateX(-50%);
  border: 4px solid var(--gold);
  border-radius: 28px;
  background: repeating-linear-gradient(135deg, #fff 0 19px, #c51d34 19px 38px);
  box-shadow: inset 0 0 0 2px rgba(112,10,24,.35);
}
.signpost-finial {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border: 4px solid #ffe6a1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #fff7cc, #e2a844 52%, #7e4e12 100%);
  box-shadow: 0 0 22px rgba(255, 221, 141, .56);
  color: white;
  font-size: 2rem;
}
.street-sign {
  position: relative;
  z-index: 3;
  width: 88%;
  display: block;
  margin: 26px auto;
  padding: 12px 22px 14px;
  border: 3px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 9px 20px rgba(0,0,0,.33), inset 0 0 0 2px rgba(255,255,255,.08);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.48rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease;
}
.street-sign::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  background: inherit;
}
.sign-right { transform: translateX(7%) rotate(1.5deg); }
.sign-left { transform: translateX(-7%) rotate(-1.5deg); }
.sign-right::after { right: -14px; transform: translateY(-50%) rotate(45deg); }
.sign-left::after { left: -14px; transform: translateY(-50%) rotate(-135deg); }
.street-sign:hover, .street-sign:focus-visible { filter: brightness(1.16); }
.sign-right:hover, .sign-right:focus-visible { transform: translateX(7%) rotate(.5deg) scale(1.02); }
.sign-left:hover, .sign-left:focus-visible { transform: translateX(-7%) rotate(-.5deg) scale(1.02); }
.sign-green { background: linear-gradient(180deg, #12604a, #07382c); }
.sign-red { background: linear-gradient(180deg, #b92338, #74101f); }
.signpost-snow {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 170px;
  height: 40px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, white 0, #d8effc 68%, transparent 70%);
}
.hero-snowbank {
  position: absolute;
  z-index: -1;
  left: -4%;
  right: -4%;
  bottom: -102px;
  height: 190px;
  border-radius: 50% 45% 0 0;
  background: linear-gradient(180deg, rgba(249,253,255,.96), #dceefa 72%);
  box-shadow: 0 -14px 34px rgba(210, 239, 255, .24);
}

.promise-ribbon {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 21px clamp(20px, 4vw, 50px);
  border-block: 2px solid var(--gold);
  background: linear-gradient(90deg, var(--cranberry-deep), var(--cranberry), var(--cranberry-deep));
  box-shadow: 0 12px 35px rgba(0,0,0,.24);
  text-align: center;
}
.promise-ribbon p { margin: 0; font-family: var(--serif); font-size: clamp(1.05rem, 2vw, 1.32rem); font-weight: 700; letter-spacing: .035em; }
.promise-ribbon i { padding-inline: 8px; color: var(--gold); font-style: normal; }
.promise-ribbon > span { color: var(--gold-light); }

.welcome { display: grid; grid-template-columns: minmax(300px, .48fr) 1fr; gap: clamp(50px, 8vw, 120px); align-items: center; padding-block: clamp(100px, 12vw, 165px); }
.welcome-boxset {
  position: relative;
  isolation: isolate;
  width: min(410px, 100%);
  margin: 0;
  justify-self: center;
  transform: rotate(-1deg);
  filter: drop-shadow(0 30px 34px rgba(0,0,0,.34));
  transition: transform .25s ease;
}
.welcome-boxset::before { content: ""; position: absolute; inset: 12% 4% 5%; z-index: -1; border-radius: 50%; background: radial-gradient(circle, rgba(243,202,114,.25), rgba(84,166,179,.13) 48%, transparent 72%); filter: blur(24px); }
.welcome-boxset:hover { transform: rotate(0) translateY(-5px); }
.welcome-boxset img { display: block; width: 100%; height: auto; }
.welcome h2 { margin-bottom: 30px; max-width: 870px; }
.welcome-copy > p:not(.eyebrow) { max-width: 850px; color: #cfe2f1; font-size: 1.03rem; }
.welcome-actions { display: flex; margin-top: 30px; }

.visit { padding-block: clamp(95px, 11vw, 155px); background: linear-gradient(180deg, rgba(5, 27, 51, .92), rgba(3, 15, 32, .98)); }
.section-heading { max-width: 850px; margin-bottom: 56px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2 { margin-bottom: 22px; }
.section-heading > p:not(.eyebrow) { max-width: 720px; color: #c9deed; }
.centered > p:not(.eyebrow) { margin-inline: auto; }
.place-list { display: grid; gap: 32px; }
.place-card {
  display: grid;
  grid-template-columns: minmax(310px, .85fr) minmax(0, 1.15fr);
  align-items: stretch;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(243, 202, 114, .28);
  border-radius: 30px;
  background: linear-gradient(130deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
}
.place-card-reverse .place-image-wrap { order: 2; }
.place-image-wrap { position: relative; min-height: 500px; overflow: hidden; }
.place-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.place-card:hover .place-image-wrap img { transform: scale(1.035); }
.place-number {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid rgba(243,202,114,.75);
  border-radius: 999px;
  background: rgba(4,17,36,.74);
  color: var(--gold-light);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.place-image-wrap .place-number { position: absolute; top: 22px; left: 22px; }
.place-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 6vw, 78px); }
.place-kicker { margin-bottom: 10px; color: var(--gold); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.place-copy h3 { margin-bottom: 22px; font-size: clamp(2.8rem, 5vw, 5rem); }
.place-copy > p:not(.place-kicker) { max-width: 600px; margin-bottom: 24px; color: #cfe1ef; }
.text-link { width: fit-content; color: var(--gold-light); font-weight: 800; text-underline-offset: 5px; }
.clock-card { position: relative; min-height: 690px; display: flex; align-items: end; overflow: hidden; border: 1px solid rgba(243, 202, 114, .34); border-radius: 30px; box-shadow: var(--shadow); }
.clock-card > .image-link-fill { position: absolute; inset: 0; }
.clock-card > .image-link-fill img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.clock-overlay { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(2,10,23,.92) 0%, rgba(2,12,28,.72) 42%, rgba(2,11,25,.1) 72%), linear-gradient(0deg, rgba(1,9,20,.85), transparent 60%); }
.clock-copy { position: relative; width: min(670px, 100%); padding: clamp(36px, 6vw, 80px); }
.clock-copy h3 { margin: 20px 0; font-size: clamp(3.5rem, 7vw, 6rem); }
.clock-copy > p:not(.place-kicker) { color: #e0edf7; }

.residents { padding-block: clamp(95px, 11vw, 150px); background: radial-gradient(circle at 50% 0, rgba(21,83,122,.42), transparent 38%), linear-gradient(180deg, #061b36, #04152b); }
.resident-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.resident-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(243,202,114,.28);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.022));
  box-shadow: 0 18px 44px rgba(0,0,0,.2);
  transition: transform .25s ease, border-color .25s ease;
}
.resident-card:hover { transform: translateY(-5px); border-color: rgba(243,202,114,.58); }
.resident-image-wrap {
  position: relative;
  flex: 0 0 205px;
  overflow: hidden;
  border-bottom: 1px solid rgba(243,202,114,.24);
  background: #071b36;
}
.resident-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 63%, rgba(3,15,32,.45));
}
.resident-image { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.resident-card:hover .resident-image { transform: scale(1.035); }
.frost-image { object-position: 50% 61%; }
.merry-image { object-position: 50% 39%; }
.pixie-image { object-position: 50% 43%; }
.town-image { object-position: 50% 55%; }
.resident-content { flex: 1; display: flex; flex-direction: column; padding: 24px 25px 27px; }
.resident-role { margin-bottom: 5px; color: var(--gold); font-size: .67rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.resident-card h3 { margin-bottom: 17px; font-size: 2.15rem; }
.resident-card > p:not(.resident-role) { color: #c9ddec; font-size: .93rem; line-height: 1.72; }
.resident-note { margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); color: #f4dfad; font-family: var(--serif); font-size: 1.05rem; font-style: italic; }
.snowman-card { border-top: 3px solid #dff4ff; }
.baker-card { border-top: 3px solid var(--cranberry); }
.fairy-card { border-top: 3px solid #a38ad9; }
.town-card { border-top: 3px solid var(--evergreen); }

.collection { position: relative; padding-block: clamp(100px, 12vw, 165px); overflow: hidden; background: linear-gradient(180deg, #fbf7ef, #eaf5f5); color: var(--ink); }
.collection::before, .collection::after { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; opacity: .13; background: repeating-linear-gradient(135deg, white 0 20px, var(--cranberry) 20px 40px); }
.collection::before { top: -160px; left: -160px; }
.collection::after { right: -190px; bottom: -170px; }
.collection-heading { position: relative; z-index: 1; max-width: 980px; }
.collection-heading .eyebrow { color: var(--cranberry); }
.collection-heading h2 { color: #123e34; }
.collection-heading > p:not(.eyebrow) { color: #536574; }
.purchase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .78fr);
  align-items: stretch;
  gap: 28px;
}
.purchase-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(18,62,52,.17);
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 25px 65px rgba(25,45,51,.18);
}
.purchase-media {
  position: relative;
  overflow: hidden;
  background: var(--night);
}
.purchase-media > a { display: block; width: 100%; height: 100%; }
.purchase-media > a:focus-visible,
.book-tile > a:focus-visible { outline: 4px solid var(--gold); outline-offset: -4px; }
.purchase-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.purchase-card:hover .purchase-media img { transform: scale(1.018); }
.bundle-media { min-height: 370px; }
.bundle-media img { object-position: center; }
.book-five-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 28px 28px 0;
  background: radial-gradient(circle at 50% 30%, #174e77, var(--night) 74%);
}
.book-five-media > a { width: min(100%, 360px); height: auto; align-self: end; }
.book-five-media img { height: auto; border-radius: 18px 18px 0 0; box-shadow: 0 22px 48px rgba(0,0,0,.46); }
.offer-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  color: white;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 9px 24px rgba(0,0,0,.22);
  backdrop-filter: blur(9px);
}
.available-badge { background: rgba(11,73,55,.92); }
.preorder-badge { background: rgba(161,22,42,.94); }
.purchase-copy { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(28px, 4vw, 46px); }
.purchase-route { margin-bottom: 8px; color: var(--cranberry); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.purchase-copy h3 { margin-bottom: 18px; color: #123e34; font-size: clamp(2.25rem, 4vw, 4rem); line-height: .95; }
.preorder-offer .purchase-copy h3 { font-size: clamp(2rem, 3.2vw, 3rem); }
.purchase-copy > p:not(.purchase-route, .release-note) { margin-bottom: 22px; color: #536574; }
.offer-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.offer-facts span {
  padding: 7px 11px;
  border: 1px solid rgba(18,62,52,.2);
  border-radius: 999px;
  background: #eef7f4;
  color: #315e55;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.purchase-copy .button { margin-top: auto; }
.release-note { margin-bottom: 25px; color: #7a2534; font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.reading-order { position: relative; z-index: 1; margin-top: clamp(70px, 8vw, 105px); padding-top: 55px; border-top: 1px solid rgba(18,62,52,.18); }
.reading-order-heading { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.reading-order-heading .eyebrow { margin-bottom: 9px; color: var(--cranberry); }
.reading-order-heading h3 { margin-bottom: 0; color: #123e34; font-size: clamp(2.5rem, 5vw, 4.6rem); }
.reading-order-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.book-tile {
  min-width: 0;
  padding: 12px 12px 18px;
  border: 1px solid rgba(18,62,52,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 13px 32px rgba(25,45,51,.1);
}
.book-tile > a { display: block; aspect-ratio: 2 / 3; overflow: hidden; border-radius: 10px; background: var(--night); }
.book-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.book-tile:hover img { transform: scale(1.025); }
.book-number { margin: 15px 0 5px; color: var(--cranberry); font-size: .64rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.book-tile h4 { margin: 0 0 10px; color: #123e34; font-size: clamp(1.1rem, 1.8vw, 1.45rem); line-height: 1.03; }
.book-availability { margin: 0; color: #66777f; font-size: .7rem; font-weight: 700; line-height: 1.45; }
.book-five-tile { border-color: rgba(161,22,42,.38); box-shadow: 0 15px 36px rgba(161,22,42,.12); }
.preorder-text { color: var(--cranberry); text-transform: uppercase; letter-spacing: .055em; }
.reading-order-buy { display: flex; justify-content: center; margin-top: 36px; }

.gift { padding-block: clamp(95px, 11vw, 145px); border-block: 2px solid var(--gold); background: radial-gradient(circle at 80% 20%, rgba(243,202,114,.2), transparent 24%), linear-gradient(120deg, var(--evergreen-deep), var(--evergreen)); }
.gift-shell { display: grid; grid-template-columns: minmax(270px, .43fr) minmax(0, 1fr); gap: clamp(50px, 8vw, 120px); align-items: center; }
.gift-cover {
  position: relative;
  width: min(350px, 92%);
  margin: 0;
  justify-self: center;
  transform: rotate(-2deg);
  filter: drop-shadow(0 28px 30px rgba(0,0,0,.34));
  transition: transform .25s ease;
}
.gift-cover::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border: 1px solid rgba(255,235,181,.72);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 34px rgba(243,202,114,.18);
}
.gift-cover:hover { transform: rotate(0) translateY(-4px); }
.gift-cover img { width: 100%; height: auto; border-radius: 11px; }
.gift-copy h2 { margin-bottom: 25px; }
.gift-copy > p:not(.eyebrow) { max-width: 770px; color: #dcf0e9; }
.reader-form-embed { width: 100%; max-width: 760px; min-height: 110px; margin-top: 29px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.17); }
.reader-form-embed > *, .reader-form-embed iframe { max-width: 100% !important; }
.reader-form-embed iframe { display: block; width: 100% !important; min-width: 0 !important; border: 0 !important; }

.guardian { position: relative; min-height: 820px; display: flex; align-items: center; overflow: hidden; }
.guardian > .guardian-image-link { position: absolute; inset: 0; }
.guardian > .guardian-image-link img { width: 100%; height: 100%; object-fit: cover; object-position: 53% 42%; }
.guardian-shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(1,9,22,.94) 0%, rgba(3,15,32,.76) 43%, rgba(2,11,25,.12) 78%), linear-gradient(0deg, rgba(2,10,23,.66), transparent 45%); }
.guardian-copy { position: relative; z-index: 1; width: var(--shell); margin-inline: auto; padding-block: 120px; }
.guardian-copy h2 { max-width: 850px; margin-bottom: 30px; color: white; }
.guardian-copy > p:not(.eyebrow) { max-width: 630px; margin-bottom: 30px; color: #e0edf7; font-size: 1.06rem; }

.closing { padding: clamp(110px, 13vw, 180px) 22px; background: radial-gradient(circle at 50% 0, rgba(27,87,129,.26), transparent 37%), linear-gradient(#061a35, #020a16); text-align: center; }
.closing-flakes { margin-bottom: 19px; color: var(--gold); font-size: 1.3rem; letter-spacing: .48em; }
.closing h2 { max-width: 940px; margin: 0 auto 38px; }
.closing-actions { justify-content: center; }
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 27px clamp(22px, 5vw, 72px); border-top: 1px solid rgba(255,255,255,.09); background: #01070f; color: #9db5c9; font-size: .76rem; }
.site-footer p { margin: 0; }
.site-footer a { text-underline-offset: 4px; }
.footer-brand { color: white; font-family: var(--serif); font-size: 1.2rem; font-weight: 700; text-decoration: none; }
.footer-brand span { color: var(--gold); }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr .58fr; }
  .welcome { grid-template-columns: minmax(280px, .44fr) 1fr; gap: clamp(48px, 6vw, 72px); }
  .resident-grid { grid-template-columns: repeat(2, 1fr); }
  .reading-order-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  :root { --shell: min(720px, calc(100% - 32px)); }
  .site-header { min-height: 70px; padding-inline: 18px; }
  .menu-button { width: 44px; height: 44px; display: grid; align-content: center; gap: 5px; padding: 10px; border: 1px solid rgba(243,202,114,.36); border-radius: 50%; background: transparent; }
  .menu-button span { width: 100%; height: 2px; background: var(--snow); }
  .site-nav { position: absolute; top: calc(100% + 1px); left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px 22px 20px; border-bottom: 1px solid rgba(243,202,114,.28); background: rgba(3,16,35,.97); box-shadow: 0 18px 28px rgba(0,0,0,.3); }
  .site-nav.open { display: flex; }
  .site-nav a { min-height: 46px; display: flex; align-items: center; padding: 10px 4px; }
  .site-nav .nav-buy { margin-top: 7px; padding-inline: 16px; }
  .hero { min-height: auto; grid-template-columns: minmax(0, 1fr); gap: 36px; padding: 82px 20px 112px; }
  .hero-scene { object-position: 52% 50%; }
  .hero-vignette { background: linear-gradient(180deg, rgba(0,9,24,.78), rgba(0,12,28,.68) 38%, rgba(0,12,28,.84) 72%, #061a35 100%); }
  .hero-copy { width: min(100%, 690px); margin-inline: auto; text-align: center; }
  .hero-actions { justify-content: center; }
  .signpost { width: min(380px, 90vw); min-height: 500px; margin: 8px auto 0; }
  .welcome { grid-template-columns: minmax(0, 1fr); gap: 54px; text-align: center; }
  .welcome-boxset { width: min(370px, 82vw); }
  .welcome-copy > p:not(.eyebrow) { margin-inline: auto; }
  .welcome-actions { justify-content: center; }
  .purchase-grid { grid-template-columns: 1fr; }
  .bundle-media { min-height: 330px; }
  .book-five-media { min-height: 500px; }
  .reading-order-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .place-card, .place-card-reverse { grid-template-columns: 1fr; }
  .place-card-reverse .place-image-wrap { order: 0; }
  .place-image-wrap { min-height: 410px; }
  .clock-card { min-height: 720px; }
  .clock-overlay { background: linear-gradient(0deg, rgba(2,10,23,.95) 0%, rgba(2,12,28,.7) 52%, rgba(2,11,25,.12) 80%); }
  .gift-shell { grid-template-columns: minmax(0, 1fr); gap: 58px; }
  .gift-copy { text-align: center; }
  .gift-copy > p:not(.eyebrow), .reader-form-embed { margin-inline: auto; }
  .reader-form-embed { overflow-x: hidden; text-align: left; }
  .guardian { align-items: end; min-height: 800px; }
  .guardian-shade { background: linear-gradient(0deg, rgba(1,9,22,.96) 0%, rgba(3,15,32,.72) 55%, rgba(2,11,25,.08) 82%); }
  .guardian-copy { padding-top: 360px; }
  .site-footer { flex-direction: column; text-align: center; }
}

@media (max-width: 580px) {
  :root { --shell: calc(100% - 28px); }
  h2 { font-size: clamp(2.45rem, 12vw, 3.55rem); line-height: .98; }
  h3 { line-height: 1.04; }
  .site-header { gap: 12px; padding: 10px 14px; }
  .reader-strip { min-height: 48px; gap: 7px; padding: 7px 10px; font-size: .67rem; letter-spacing: .025em; }
  .reader-strip strong { display: block; }
  .reader-strip-sparkle { display: none; }
  .reader-strip-cta { padding: 5px 9px; font-size: .61rem; letter-spacing: .055em; }
  .brand { font-size: 1.32rem; }
  .brand-star { margin-right: 8px; }
  .brand small { font-size: .56rem; letter-spacing: .13em; }
  .menu-button { width: 42px; height: 42px; flex: 0 0 auto; }
  .site-nav { padding-inline: 18px; }
  .hero { gap: 28px; padding: 58px 16px 92px; }
  .hero-copy { max-width: 430px; }
  .hero .eyebrow { max-width: 31ch; margin-inline: auto; }
  .hero h1 { margin-bottom: 22px; font-size: clamp(3.5rem, 18vw, 5rem); line-height: .82; }
  .hero-hook { font-size: clamp(1.45rem, 7vw, 1.8rem); }
  .hero-intro { margin-bottom: 26px; font-size: 1rem; line-height: 1.65; }
  .hero-actions, .closing-actions { width: 100%; max-width: 390px; margin-inline: auto; }
  .hero-actions .button, .closing-actions .button { width: 100%; min-height: 50px; padding-inline: 18px; }
  .signpost { width: min(310px, 88vw); min-height: 420px; padding: 64px 0 46px; }
  .signpost::before { inset: 32px auto 12px 50%; width: 43px; border-width: 3px; background: repeating-linear-gradient(135deg, #fff 0 15px, #c51d34 15px 30px); }
  .signpost-finial { width: 74px; height: 74px; border-width: 3px; font-size: 1.55rem; }
  .street-sign { width: 84%; margin: 19px auto; padding: 10px 17px 12px; border-width: 2px; font-size: clamp(1.05rem, 5.5vw, 1.3rem); }
  .street-sign::after { width: 19px; height: 19px; border-width: 2px; }
  .sign-right { transform: translateX(3%) rotate(1.5deg); }
  .sign-left { transform: translateX(-3%) rotate(-1.5deg); }
  .sign-right::after { right: -11px; }
  .sign-left::after { left: -11px; }
  .signpost-snow { width: 135px; height: 32px; }
  .promise-ribbon { gap: 8px; padding: 17px 14px; }
  .promise-ribbon > span { display: none; }
  .promise-ribbon p { font-size: 1rem; line-height: 1.5; }
  .promise-ribbon i { padding-inline: 2px; }
  .welcome { gap: 38px; padding-block: 76px; }
  .welcome-boxset { width: min(285px, 80vw); }
  .welcome h2 { margin-bottom: 24px; }
  .welcome-copy > p:not(.eyebrow) { font-size: 1rem; line-height: 1.68; }
  .welcome-actions { width: 100%; max-width: 390px; margin: 26px auto 0; }
  .welcome-actions .button { width: 100%; min-height: 52px; padding-inline: 16px; }
  .visit, .residents, .collection, .gift { padding-block: 78px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2 { margin-bottom: 18px; }
  .place-list { gap: 22px; }
  .place-card { min-height: 0; border-radius: 22px; }
  .place-image-wrap { min-height: 0; aspect-ratio: 4 / 3; }
  .place-image-wrap .place-number { top: 14px; left: 14px; }
  .place-copy { padding: 28px 22px 32px; }
  .place-copy h3 { margin-bottom: 17px; font-size: clamp(2.55rem, 12vw, 3.25rem); }
  .place-copy > p:not(.place-kicker) { margin-bottom: 20px; }
  .clock-card { min-height: 600px; border-radius: 22px; }
  .clock-card > .image-link-fill img { object-position: 56% 40%; }
  .clock-copy { padding: 28px 22px 34px; }
  .clock-copy h3 { margin-block: 16px; font-size: clamp(3rem, 14vw, 4rem); }
  .clock-copy .button { width: 100%; padding-inline: 16px; }
  .resident-grid { grid-template-columns: 1fr; }
  .resident-card { min-height: 0; }
  .resident-image-wrap { flex-basis: auto; aspect-ratio: 4 / 3; }
  .resident-content { padding: 23px 22px 26px; }
  .resident-card h3 { font-size: 2rem; }
  .purchase-grid { gap: 22px; }
  .purchase-card { border-radius: 22px; }
  .bundle-media { min-height: 0; aspect-ratio: 16 / 9; }
  .book-five-media { min-height: 420px; padding: 24px 24px 0; }
  .book-five-media > a { width: min(100%, 275px); }
  .offer-badge { top: 13px; right: 13px; padding: 7px 10px; font-size: .59rem; }
  .purchase-copy { padding: 28px 22px 30px; }
  .purchase-copy h3, .preorder-offer .purchase-copy h3 { font-size: clamp(2.15rem, 11vw, 3.1rem); }
  .purchase-copy .button { width: 100%; min-height: 52px; padding-inline: 15px; }
  .reading-order { margin-top: 64px; padding-top: 45px; }
  .reading-order-heading { margin-bottom: 29px; }
  .reading-order-heading h3 { font-size: clamp(2.2rem, 11vw, 3.15rem); }
  .reading-order-grid { gap: 11px; }
  .book-tile { padding: 8px 8px 15px; border-radius: 14px; }
  .book-number { margin-top: 12px; }
  .book-tile h4 { font-size: clamp(1.02rem, 5.5vw, 1.25rem); }
  .book-availability { font-size: .64rem; }
  .reading-order-buy { margin-top: 28px; }
  .reading-order-buy .button { width: min(100%, 390px); min-height: 52px; padding-inline: 15px; }
  .gift-shell { gap: 42px; }
  .gift-cover { width: min(260px, 76vw); }
  .gift-copy h2 { margin-bottom: 21px; }
  .reader-form-embed { min-height: 96px; margin-top: 22px; padding-top: 18px; }
  .reader-form-embed > * { width: 100% !important; min-width: 0 !important; }
  .guardian { min-height: 690px; }
  .guardian > .guardian-image-link img { object-position: 60% 38%; }
  .guardian-copy { padding: 300px 0 58px; }
  .guardian-copy h2 { margin-bottom: 24px; }
  .guardian-copy > p:not(.eyebrow) { font-size: 1rem; }
  .guardian-copy .button { width: 100%; padding-inline: 16px; }
  .closing { padding: 86px 16px; }
  .closing h2 { margin-bottom: 30px; }
  .site-footer { padding: 28px 18px; }
}

@media (max-width: 360px) {
  :root { --shell: calc(100% - 24px); }
  h2 { font-size: clamp(2.2rem, 11.5vw, 2.75rem); }
  .brand { font-size: 1.18rem; }
  .brand small { font-size: .52rem; }
  .hero h1 { font-size: clamp(3.15rem, 17vw, 3.7rem); }
  .button { letter-spacing: .075em; }
  .signpost { width: min(286px, 90vw); }
  .place-copy, .clock-copy, .resident-content { padding-inline: 19px; }
  .reserved-details span { white-space: normal; }
}

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