:root {
  --background: #0E1210;
  --surface: #1A211C;
  --glass: rgba(255,255,255,.05);
  --forest-green: #2F6B4F;
  --antique-gold: #C7A13A;
  --copper: #A05A2C;
  --warm-cream: #F7F3E9;
  --stone-gray: #9CA3AF;
  --text-primary: #FAFAFA;
  --text-secondary: #D6D3D1;
  --muted: #94A3B8;
  --oak: #241912;
  --line: rgba(247,243,233,.14);
  --shadow: 0 30px 90px rgba(0,0,0,.42);
  --radius-large: 32px;
  --radius-medium: 22px;
  --notice-height: 38px;
  --header-height: 75px;
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(47,107,79,.28), transparent 34rem),
    radial-gradient(circle at 88% 18%, rgba(160,90,44,.18), transparent 34rem),
    linear-gradient(180deg, #0E1210 0%, #121913 44%, #0E1210 100%);
  color: var(--text-primary);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--antique-gold);
  color: #17120B;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.age-disclaimer {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1100;
  min-height: var(--notice-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px clamp(12px, 4vw, 48px);
  border-bottom: 1px solid rgba(199,161,58,.28);
  background: linear-gradient(135deg, rgba(36,25,18,.98), rgba(14,18,16,.98));
  color: var(--warm-cream);
  font-size: clamp(.68rem, 1.25vw, .82rem);
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: var(--notice-height) 0 auto 0;
  z-index: 1000;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 0 clamp(18px, 4vw, 54px);
  background: rgba(14,18,16,.72);
  border-bottom: 1px solid rgba(247,243,233,.11);
  backdrop-filter: blur(22px);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.site-header.is-scrolled {
  background: rgba(14,18,16,.88);
  border-bottom-color: rgba(199,161,58,.24);
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-seal {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199,161,58,.65);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(199,161,58,.24), rgba(47,107,79,.16));
  color: var(--warm-cream);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.brand-name,
.footer-logo {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  letter-spacing: .02em;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
  color: var(--text-secondary);
  font-size: .92rem;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  transition: color .25s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--antique-gold);
  transition: transform .25s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--warm-cream);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-play-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .01em;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
}

.header-play-button,
.button-gold {
  background: linear-gradient(135deg, #E1C76A, var(--antique-gold) 50%, #9E7620);
  color: #18120A;
  box-shadow: 0 14px 34px rgba(199,161,58,.2);
}

.button-ghost {
  background: rgba(255,255,255,.04);
  border-color: rgba(247,243,233,.18);
  color: var(--warm-cream);
}

.header-play-button:hover,
.header-play-button:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(199,161,58,.24);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(247,243,233,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: var(--text-primary);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--warm-cream);
  transition: transform .25s ease, opacity .25s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

main {
  padding-top: calc(var(--notice-height) + var(--header-height));
}

section {
  width: min(calc(100% - 36px), var(--max-width));
  margin-inline: auto;
}

.welcome-hall {
  min-height: calc(100vh - var(--notice-height) - var(--header-height));
  display: grid;
  grid-template-columns: minmax(310px, .35fr) minmax(0, .65fr);
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
  padding: clamp(32px, 6vw, 82px) 0 clamp(56px, 8vw, 110px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--antique-gold);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--warm-cream);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  letter-spacing: -.055em;
}

h2 {
  font-size: clamp(2.25rem, 4.6vw, 4.75rem);
  letter-spacing: -.045em;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -.025em;
}

p {
  color: var(--text-secondary);
}

.welcome-description {
  max-width: 45rem;
  margin: 24px 0 0;
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
}

.welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-badges span,
.footer-notices span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(247,243,233,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: var(--text-secondary);
  font-size: .8rem;
  font-weight: 800;
}

.estate-window {
  position: relative;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(199,161,58,.22);
  border-radius: 999px 999px 26px 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.estate-window::after,
.story-image::after,
.centered-image::after,
.footer-landscape::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(14,18,16,.36));
  pointer-events: none;
}

.estate-window img,
.story-image img,
.centered-image img,
.footer-landscape img {
  width: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.estate-window:hover img,
.story-image:hover img,
.centered-image:hover img,
.footer-landscape:hover img {
  transform: scale(1.035);
}

.estate-window img {
  height: clamp(230px, 25vw, 390px);
}

.hall-game {
  min-width: 0;
}

.game-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
}

.game-heading-row h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.game-note {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}

.game-frame {
  padding: clamp(10px, 1.4vw, 18px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(199,161,58,.7), rgba(160,90,44,.38), rgba(199,161,58,.72)),
    linear-gradient(135deg, #25170E, #3A2719 50%, #17100B);
  box-shadow: 0 34px 110px rgba(0,0,0,.58), inset 0 0 0 1px rgba(255,255,255,.08);
}

.game-trim {
  overflow: hidden;
  border: 1px solid rgba(255,236,164,.38);
  border-radius: 22px;
  background: #050706;
  aspect-ratio: 16 / 9;
  box-shadow: inset 0 0 34px rgba(0,0,0,.55);
}

.game-trim iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #050706;
}

.game-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: start;
  margin-top: 14px;
}

.control-button,
.how-to-play summary {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(247,243,233,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: var(--warm-cream);
  cursor: pointer;
  font-weight: 800;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.control-button:hover,
.how-to-play summary:hover {
  transform: translateY(-2px);
  border-color: rgba(199,161,58,.42);
  background: rgba(199,161,58,.09);
}

.how-to-play {
  position: relative;
}

.how-to-play summary {
  display: inline-flex;
  align-items: center;
  list-style: none;
}

.how-to-play summary::-webkit-details-marker {
  display: none;
}

.how-to-play-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 20;
  width: min(360px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid rgba(199,161,58,.22);
  border-radius: 18px;
  background: rgba(26,33,28,.96);
  box-shadow: var(--shadow);
}

.how-to-play-panel p {
  margin: 0;
  font-size: .92rem;
}

.how-to-play-panel p + p {
  margin-top: 10px;
}

.game-parlor {
  padding: clamp(52px, 8vw, 108px) 0;
}

.section-intro.narrow {
  max-width: 760px;
  margin-bottom: 34px;
}

.luxury-panels {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.luxury-panel {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  min-height: 150px;
  padding: clamp(24px, 4vw, 42px) 0;
  border-bottom: 1px solid var(--line);
  transition: transform .25s ease, background .25s ease, padding .25s ease;
}

.luxury-panel:last-child {
  border-bottom: 0;
}

.luxury-panel:hover {
  transform: translateX(8px);
  background: linear-gradient(90deg, rgba(199,161,58,.07), transparent);
  padding-left: 18px;
}

.panel-icon {
  color: rgba(199,161,58,.72);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  font-weight: 800;
  line-height: 1;
}

.luxury-panel h3 {
  margin-bottom: 8px;
}

.luxury-panel p {
  max-width: 780px;
  margin: 0;
}

.estate-guide {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .62fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
  padding: clamp(58px, 8vw, 116px) clamp(20px, 4vw, 56px);
  border: 1px solid rgba(247,243,233,.12);
  border-radius: var(--radius-large);
  background:
    linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    radial-gradient(circle at 100% 0%, rgba(199,161,58,.12), transparent 22rem);
  box-shadow: var(--shadow);
}

.estate-article p {
  max-width: 780px;
  font-size: 1.05rem;
}

.specification-sheet {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(199,161,58,.25);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(247,243,233,.075), rgba(247,243,233,.025)),
    rgba(14,18,16,.5);
}

.sheet-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--stone-gray);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sheet-header strong {
  color: var(--antique-gold);
  text-align: right;
}

.specification-sheet dl {
  margin: 0;
}

.specification-sheet div {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(247,243,233,.1);
}

.specification-sheet div:last-child {
  border-bottom: 0;
}

.specification-sheet dt {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.specification-sheet dd {
  margin: 0;
  color: var(--warm-cream);
  font-weight: 800;
  text-align: right;
}

.heritage-section {
  padding: clamp(64px, 9vw, 128px) 0;
}

.story-block {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(26px, 5vw, 76px);
  align-items: center;
  margin-bottom: clamp(48px, 8vw, 112px);
}

.story-left-image {
  grid-template-columns: 1.05fr 1fr;
}

.story-copy {
  max-width: 620px;
}

.story-copy p {
  font-size: 1.06rem;
}

.story-image,
.centered-image,
.footer-landscape {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(247,243,233,.12);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.story-image {
  border-radius: 34px;
}

.story-image img {
  height: clamp(340px, 43vw, 620px);
}

.story-centered {
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(34px, 6vw, 76px);
  border: 1px solid rgba(199,161,58,.18);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 50% 0%, rgba(199,161,58,.13), transparent 30rem),
    rgba(255,255,255,.035);
}

.centered-copy {
  max-width: 820px;
}

.centered-copy p {
  font-size: 1.08rem;
}

.centered-image {
  width: min(720px, 100%);
  margin-top: 28px;
  border-radius: 999px;
}

.centered-image img {
  height: clamp(180px, 28vw, 330px);
}

.member-services {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(56px, 8vw, 112px) 0 clamp(72px, 9vw, 130px);
}

.support-list {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.support-list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.support-list span {
  color: var(--muted);
  font-weight: 800;
}

.support-list strong {
  color: var(--warm-cream);
  font-size: 1.02rem;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(247,243,233,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--warm-cream);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(199,161,58,.24);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(247,243,233,.07), rgba(247,243,233,.025)),
    var(--surface);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  margin: 16px 0 7px;
  color: var(--text-secondary);
  font-size: .9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(247,243,233,.14);
  border-radius: 16px;
  background: rgba(14,18,16,.72);
  color: var(--text-primary);
  outline: none;
  padding: 14px 15px;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(199,161,58,.7);
  box-shadow: 0 0 0 4px rgba(199,161,58,.12);
  background: rgba(14,18,16,.92);
}

.contact-form button {
  width: 100%;
  margin-top: 22px;
  border: 0;
  cursor: pointer;
}

.site-footer {
  width: min(calc(100% - 36px), var(--max-width));
  margin: 0 auto 20px;
}

.footer-landscape {
  border-radius: 34px 34px 0 0;
}

.footer-landscape img {
  height: clamp(180px, 26vw, 360px);
}

.footer-bar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 28px;
  align-items: center;
  padding: 24px clamp(18px, 4vw, 34px);
  border: 1px solid rgba(247,243,233,.12);
  border-top: 0;
  border-radius: 0 0 28px 28px;
  background: rgba(26,33,28,.72);
}

.simple-footer .footer-bar {
  border-top: 1px solid rgba(247,243,233,.12);
  border-radius: 28px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
  color: var(--text-secondary);
  font-size: .9rem;
  font-weight: 800;
}

.footer-nav a:hover {
  color: var(--antique-gold);
}

.footer-notices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bar p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
  text-align: right;
}

.sticky-play {
  display: none;
}

.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  width: min(calc(100% - 36px), 1060px);
  margin: 0 auto;
  padding-top: calc(var(--notice-height) + var(--header-height) + clamp(42px, 7vw, 86px));
  padding-bottom: clamp(56px, 8vw, 100px);
}

.legal-hero {
  width: 100%;
  margin: 0 0 24px;
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid rgba(199,161,58,.18);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 0% 0%, rgba(199,161,58,.14), transparent 28rem),
    rgba(255,255,255,.04);
}

.legal-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.legal-hero p:last-child {
  margin-bottom: 0;
}

.legal-document {
  width: 100%;
  margin: 0;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(247,243,233,.12);
  border-radius: var(--radius-large);
  background: rgba(26,33,28,.56);
}

.legal-document h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p {
  font-size: 1rem;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .primary-nav {
    position: fixed;
    inset: calc(var(--notice-height) + var(--header-height)) 14px auto 14px;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 16px;
    border: 1px solid rgba(199,161,58,.24);
    border-radius: 22px;
    background: rgba(14,18,16,.96);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  .nav-open .primary-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .primary-nav a {
    width: 100%;
    padding: 14px 8px;
  }

  .primary-nav a::after {
    display: none;
  }

  .header-play-button {
    justify-self: end;
  }

  .welcome-hall,
  .estate-guide,
  .member-services,
  .story-block,
  .story-left-image {
    grid-template-columns: 1fr;
  }

  .story-left-image .story-image {
    order: -1;
  }

  .story-copy {
    max-width: 820px;
  }

  .footer-bar {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-bar p {
    text-align: left;
  }
}

@media (max-width: 720px) {
  :root {
    --notice-height: 50px;
    --header-height: 75px;
  }

  body {
    padding-bottom: 74px;
  }

  .site-header {
    gap: 10px;
    padding-inline: 14px;
  }

  .brand-name {
    display: none;
  }

  .header-play-button {
    min-height: 40px;
    padding-inline: 14px;
    font-size: .85rem;
  }

  section,
  .site-footer,
  .legal-page {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .welcome-hall {
    padding-top: 18px;
  }

  .hall-game {
    order: -1;
  }

  .game-heading-row {
    display: block;
  }

  .game-note {
    margin-top: 6px;
  }

  .game-frame {
    border-radius: 22px;
  }

  .game-trim {
    border-radius: 16px;
  }

  .game-controls {
    justify-content: stretch;
  }

  .control-button,
  .how-to-play,
  .how-to-play summary {
    width: 100%;
  }

  .how-to-play-panel {
    right: auto;
    left: 0;
  }

  .welcome-copy {
    padding-top: 12px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.6rem);
  }

  .estate-window {
    border-radius: 28px;
  }

  .luxury-panel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .luxury-panel:hover {
    transform: none;
    padding-left: 0;
  }

  .panel-icon {
    font-size: 2.4rem;
  }

  .estate-guide,
  .story-centered,
  .contact-form,
  .legal-hero,
  .legal-document {
    border-radius: 22px;
    padding: 22px;
  }

  .specification-sheet div,
  .support-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .specification-sheet dd {
    text-align: left;
  }

  .story-image {
    border-radius: 24px;
  }

  .story-image img {
    height: 300px;
  }

  .centered-image {
    border-radius: 24px;
  }

  .footer-landscape {
    border-radius: 24px 24px 0 0;
  }

  .footer-bar {
    border-radius: 0 0 24px 24px;
  }

  .sticky-play {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    background: linear-gradient(135deg, #E1C76A, var(--antique-gold) 50%, #9E7620);
    color: #18120A;
    font-weight: 950;
    box-shadow: 0 20px 54px rgba(0,0,0,.45);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .section-reveal {
    opacity: 1;
    transform: none;
  }
}