:root {
  --forest: #1d4b38;
  --forest-deep: #123226;
  --leaf: #4e7f47;
  --honey: #f2b83f;
  --berry: #a94335;
  --river: #2d7780;
  --parchment: #fff8df;
  --paper: #f6e7bd;
  --ink: #2c251c;
  --muted: #655e50;
  --line: rgba(44, 37, 28, 0.22);
  --white: #fffef7;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-synthesis: none;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.6;
}

body,
button,
a {
  letter-spacing: 0;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--river);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--white);
  border: 2px solid var(--forest-deep);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(18, 50, 38, 0.92);
  color: var(--white);
}

.site-header.is-solid {
  position: relative;
  background: var(--forest-deep);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand-link img {
  width: 42px;
  height: 42px;
  border-radius: 7px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--honey);
}

.site-nav .nav-action {
  min-height: 38px;
  margin-left: 6px;
  padding: 7px 14px;
  border: 2px solid var(--honey);
  border-radius: 6px;
  background: var(--honey);
  color: var(--forest-deep);
}

.site-nav .nav-action:hover {
  border-bottom-color: var(--honey);
  background: var(--white);
}

.hero {
  min-height: 78svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-color: #e6d28e;
  background-image: url("/assets/forest-storybook.jpg");
  background-position: center 58%;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 50, 38, 0.19);
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: min(1100px, calc(100% - 40px));
  margin: 72px auto 0;
  padding: 64px 0 86px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--forest-deep);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 {
  margin-bottom: 12px;
  color: var(--forest-deep);
  font-size: 72px;
  text-shadow: 0 2px 0 rgba(255, 254, 247, 0.9);
}

.hero-title-mark {
  display: block;
  margin: 0 0 10px;
  color: var(--berry);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 680px;
  margin: 0 auto;
  color: var(--forest-deep);
  font-size: 21px;
  font-weight: 650;
}

.store-actions {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  scroll-margin-top: 24px;
}

.store-button {
  width: 218px;
  min-height: 66px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 9px 18px;
  border: 2px solid var(--forest-deep);
  border-radius: 8px;
  color: var(--white);
  text-align: left;
  text-decoration: none;
  box-shadow: 0 4px 0 rgba(18, 50, 38, 0.28);
}

.store-button.apple {
  background: #161616;
}

.store-button.play {
  border-color: #0f392e;
  background: #215d47;
}

.store-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 0 rgba(18, 50, 38, 0.32);
}

.store-kicker {
  display: block;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
}

.store-name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.15;
}

.store-note {
  max-width: 620px;
  margin: 16px auto 0;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(255, 254, 247, 0.68);
  color: var(--forest-deep);
  font-size: 14px;
  font-weight: 650;
}

.book-hero-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--forest-deep);
  font-weight: 800;
  text-underline-offset: 4px;
}

.actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.actions.left {
  justify-content: flex-start;
}

.section-heading.flush {
  margin-bottom: 0;
}

.eyebrow.light {
  color: var(--paper);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid var(--forest-deep);
  border-radius: 6px;
  background: var(--honey);
  color: var(--forest-deep);
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 4px 0 rgba(18, 50, 38, 0.3);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 0 rgba(18, 50, 38, 0.3);
}

.button.secondary {
  background: var(--white);
}

.button.dark {
  border-color: var(--paper);
  background: var(--forest-deep);
  color: var(--white);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.22);
}

.section {
  padding: 80px 0;
}

.section.compact {
  padding: 52px 0;
}

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

.section.forest {
  background: var(--forest-deep);
  color: var(--white);
}

.section.river {
  background: #d9edf0;
}

.section.welcome {
  border-top: 1px solid rgba(44, 37, 28, 0.12);
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.page-intro h1 {
  margin-bottom: 14px;
  font-size: 44px;
}

.section-heading p,
.page-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.forest .section-heading p,
.forest .muted {
  color: #dbe8d6;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: 64px;
}

.split.reverse .visual {
  order: 2;
}

.visual img {
  width: 100%;
  max-height: 680px;
  object-fit: contain;
}

.phone-pair {
  min-height: 620px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
}

.phone-pair img {
  max-height: 600px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(18, 50, 38, 0.2);
}

.phone-pair img:last-child {
  margin-top: 52px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  min-height: 74px;
  padding: 14px 0 14px 18px;
  border-left: 4px solid var(--honey);
}

.feature-list strong {
  display: block;
  color: var(--forest-deep);
}

.forest .feature-list strong {
  color: var(--honey);
}

.feature-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #e2f0e8;
}

.feature-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-point {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-left: 1px solid var(--line);
}

.feature-point:last-child {
  border-right: 1px solid var(--line);
}

.feature-point strong {
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.feature-point span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.screenshots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.screenshot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.screenshot img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
}

.screenshot figcaption {
  padding: 14px 16px;
  font-weight: 750;
}

.production-gallery .screenshot {
  box-shadow: 0 10px 24px rgba(18, 50, 38, 0.12);
}

.feature-visual img {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(18, 50, 38, 0.16);
}

.phone-single img {
  max-height: 650px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.light-list li {
  color: #e7eee1;
}

.book-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 64px;
  align-items: center;
}

.book-band img {
  max-height: 640px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.book-band .book-cover {
  width: 100%;
  max-width: 400px;
  max-height: none;
  border-radius: 2px;
}

.book-band h2 {
  margin-bottom: 16px;
  color: var(--honey);
  font-size: 44px;
}

.book-band p {
  max-width: 650px;
  color: #e7eee1;
  font-size: 18px;
}

/* Book galleries use native scrolling and fragment links under the no-script CSP. */
.book-product {
  --book-gold: #d9b967;
  --book-frame: #102218;
  --book-border: #6a714f;
}

.section.novel-product {
  background: #15251e;
}

.companion-product {
  --book-frame: #e3eade;
  --book-border: #77875b;
  background: #f5f7ef;
  color: var(--forest-deep);
  border-top: 1px solid var(--book-gold);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.product-visual,
.product-copy,
.book-gallery {
  min-width: 0;
}

.product-copy h2 {
  margin-bottom: 16px;
  font-size: 44px;
  overflow-wrap: anywhere;
}

.novel-product h2 {
  color: #eed698;
}

.product-series {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.4;
}

.product-author {
  margin: 0 0 30px;
  font-size: 16px;
}

.product-hook {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.35;
}

.product-description {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
}

.product-format {
  margin: 24px 0 8px;
}

.product-pairing {
  margin: 8px 0;
}

.product-external {
  margin: 20px 0 0;
  color: var(--muted);
}

.novel-product .product-description,
.novel-product .product-author,
.novel-product .product-external {
  color: #dce3d8;
}

.book-amazon {
  background: var(--book-gold);
  border-color: var(--book-gold);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.18);
}

.product-author-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 10px;
  color: #eed698;
  text-underline-offset: 4px;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--book-gold) var(--book-frame);
  border: 1px solid var(--book-border);
  border-radius: 4px;
  background: var(--book-frame);
}

.gallery-slide {
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  scroll-margin-block: 24px;
}

.gallery-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: 12px;
  cursor: zoom-in;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-caption {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 8px;
  min-height: 74px;
  padding: 10px 12px;
  border-top: 1px solid var(--book-border);
  text-align: center;
  font-weight: 650;
}

.gallery-caption small {
  display: block;
  font-size: 12px;
  font-weight: 400;
}

.gallery-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--book-border);
  border-radius: 4px;
  font-size: 24px;
  text-decoration: none;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
  width: 100%;
  max-width: 420px;
  margin: 16px auto 0;
}

.novel-product .gallery-thumbnails {
  grid-template-columns: repeat(4, minmax(0, 64px));
  justify-content: center;
}

.gallery-thumbnails a {
  display: block;
  min-width: 44px;
  aspect-ratio: 3 / 4;
  padding: 3px;
  border: 1px solid var(--book-border);
  border-radius: 2px;
  background: var(--book-frame);
}

.gallery-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-arrow:hover,
.gallery-thumbnails a:hover {
  border-color: var(--book-gold);
  box-shadow: inset 0 0 0 1px var(--book-gold);
}

.book-product :focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 3px;
}

.novel-product :focus-visible {
  outline-color: #eed698;
}

.book-product .gallery-image:focus-visible {
  outline-offset: -4px;
}

.companion-note {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-left: 3px solid #b18a39;
  background: #fff8e5;
  color: var(--forest-deep);
  font-size: 15px;
  line-height: 1.6;
}

.page-intro {
  padding: 72px 0 48px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-intro .shell {
  max-width: 900px;
}

.game-intro {
  padding-top: 64px;
  padding-bottom: 58px;
  text-align: center;
}

.game-intro .shell {
  max-width: 940px;
}

.game-intro > .shell > p:not(.eyebrow) {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.page-store-actions {
  margin-top: 26px;
}

.content {
  max-width: 850px;
}

.content h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: 30px;
}

.content h3 {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 22px;
}

.content ul {
  padding-left: 22px;
}

.content li + li {
  margin-top: 8px;
}

.notice {
  margin: 28px 0;
  padding: 18px 20px;
  border-left: 5px solid var(--river);
  background: #edf8f8;
}

.contact-line {
  overflow-wrap: anywhere;
  font-size: 20px;
  font-weight: 800;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.status {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--forest-deep);
  font-size: 14px;
  font-weight: 800;
}

.game-intro .status-row {
  justify-content: center;
}

.download-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
}

.compact-actions {
  margin-top: 0;
}

.muted-light {
  color: #c9d9c7;
}

.site-footer {
  padding: 36px 0;
  background: #0d241b;
  color: #dbe8d6;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--honey);
}

.small {
  font-size: 14px;
}

.legal {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(219, 232, 214, 0.18);
  color: #aebfac;
  font-size: 12px;
}

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

/* Keep the supplied promotional compositions intact, including their lettering. */
.campaign-hero {
  background: var(--forest-deep);
}

.campaign-hero-art,
.campaign-hero-art img {
  display: block;
  width: 100%;
}

.campaign-hero-art img {
  max-height: 52svh;
  object-fit: contain;
}

.campaign-hero-content {
  padding: 20px 0 24px;
  color: var(--white);
  text-align: center;
}

.campaign-hero-content h1 {
  margin: 0;
  color: var(--white);
  font-size: 32px;
  text-shadow: none;
}

.campaign-tagline {
  margin: 6px 0 0;
  color: #e5eedc;
  font-size: 17px;
}

.campaign-hero-content .store-actions {
  flex-direction: row;
  gap: 12px;
  margin-top: 14px;
}

.campaign-hero-content .store-button {
  width: 210px;
  min-height: 58px;
  border-color: #a5bba7;
}

.campaign-hero-content .store-note {
  margin-top: 12px;
  padding: 0;
  background: none;
  color: #e5eedc;
}

.campaign-hero-content .book-hero-link {
  margin-top: 8px;
  color: var(--honey);
  font-size: 15px;
}

.world-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 28px;
  margin-top: 10px;
}

.world-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  max-width: 100%;
  padding: 6px 0;
  color: var(--forest-deep);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
  text-align: center;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.world-links a:hover {
  text-decoration-thickness: 2px;
}

.world-links .world-books {
  font-weight: 800;
}

.campaign-hero-content .world-links a {
  color: #e5eedc;
}

.campaign-hero-content .world-links .world-books {
  color: var(--honey);
}

.campaign-hero-content .world-links a:focus-visible {
  outline-color: var(--honey);
}

.campaign-gallery {
  background: #eef5f5;
}

.poster-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 18px;
}

.campaign-poster {
  min-width: 0;
  margin: 0;
}

.campaign-poster a {
  display: block;
  border-radius: 8px;
}

.campaign-poster img {
  width: 100%;
  aspect-ratio: 941 / 1672;
  border-radius: 8px;
}

.campaign-poster figcaption {
  padding-top: 12px;
  color: var(--forest-deep);
  font-size: 16px;
  font-weight: 700;
}

.gallery-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.gallery-note a {
  text-underline-offset: 3px;
}

.campaign-home .welcome {
  padding-top: 36px;
}

.campaign-home .welcome .split {
  align-items: start;
}

.campaign-home .phone-pair {
  min-height: 0;
}

@media (max-width: 820px) {
  .product-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .product-visual {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .product-copy {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .product-copy h2 {
    font-size: 36px;
  }

  .site-header {
    position: relative;
    background: var(--forest-deep);
  }

  .nav-shell {
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .site-nav a {
    padding: 6px 10px;
  }

  .site-nav .nav-action {
    margin-left: 0;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    margin-top: 0;
    padding-top: 52px;
  }

  h1 {
    font-size: 52px;
  }

  .hero-title-mark {
    font-size: 27px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section {
    padding: 60px 0;
  }

  .section-heading h2,
  .page-intro h1,
  .book-band h2 {
    font-size: 36px;
  }

  .split,
  .book-band,
  .download-band {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split.reverse .visual {
    order: 0;
  }

  .screenshots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poster-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-point:nth-child(3),
  .feature-point:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .feature-point:nth-child(4) {
    border-right: 1px solid var(--line);
  }

  .compact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .product-copy h2 {
    font-size: 32px;
  }

  .product-hook {
    font-size: 25px;
  }

  .gallery-image {
    padding: 8px;
  }

  .shell,
  .hero-content {
    width: min(100% - 28px, 1120px);
  }

  .brand-link {
    font-size: 19px;
  }

  .site-nav {
    gap: 0;
  }

  .site-nav a {
    font-size: 14px;
  }

  .site-nav .nav-action {
    display: none;
  }

  .hero {
    min-height: auto;
    background-position: center 64%;
  }

  .hero-content {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-title-mark {
    font-size: 24px;
  }

  .store-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .store-button {
    width: 100%;
    min-height: 62px;
    align-items: center;
    text-align: center;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .feature-list,
  .screenshots {
    grid-template-columns: 1fr;
  }

  .poster-gallery {
    grid-template-columns: minmax(0, 1fr);
    max-width: 400px;
    margin: 0 auto;
  }

  .campaign-hero-content h1 {
    font-size: 28px;
  }

  .campaign-hero-content .store-button {
    width: calc(50% - 6px);
    min-width: 0;
    padding: 8px;
  }

  .campaign-hero-content .store-name {
    font-size: 21px;
  }

  .feature-points {
    grid-template-columns: 1fr;
  }

  .feature-point,
  .feature-point:nth-child(3),
  .feature-point:nth-child(4),
  .feature-point:last-child {
    min-height: 116px;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .feature-point:first-child {
    border-top: 0;
  }

  .phone-pair {
    min-height: 500px;
    gap: 10px;
  }

  .phone-pair img {
    max-height: 470px;
  }

  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 360px) and (max-height: 700px) {
  .campaign-hero-content {
    padding-top: 12px;
    padding-bottom: 16px;
  }

  .campaign-hero-content h1 {
    font-size: 24px;
  }

  .campaign-tagline {
    display: none;
  }

  .campaign-hero-content .store-name {
    font-size: 18px;
  }

  .campaign-home .welcome {
    padding-top: 20px;
  }

  .hero-content {
    padding-top: 16px;
    padding-bottom: 18px;
  }

  .hero .eyebrow,
  .hero .store-note {
    display: none;
  }

  h1 {
    margin-bottom: 4px;
    font-size: 36px;
  }

  .hero-title-mark {
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 1.3;
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.45;
  }

  .store-actions {
    flex-direction: row;
    gap: 8px;
    margin-top: 14px;
  }

  .store-button {
    width: calc(50% - 4px);
    min-height: 56px;
    padding: 6px;
  }

  .store-kicker {
    font-size: 10px;
  }

  .store-name {
    font-size: 18px;
  }

  .book-hero-link {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.35;
  }
}

@media (max-width: 340px) and (max-height: 620px) {
  .campaign-hero-art img {
    max-height: 120px;
  }

  .campaign-hero-content .world-links {
    margin-top: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  .gallery-track {
    scroll-behavior: auto;
  }

  .button:hover {
    transform: none;
  }

  .store-button:hover {
    transform: none;
  }
}
