:root {
  color-scheme: light;
  --ink: #173229;
  --ink-soft: #526a61;
  --tea: #176b50;
  --tea-deep: #0d3d30;
  --tea-dark: #082c23;
  --jade: #78b995;
  --red: #9f2f25;
  --red-dark: #6e1c18;
  --gold: #d6ad62;
  --paper: #f5f0e5;
  --paper-warm: #ebe2d0;
  --line: rgba(23, 50, 41, 0.16);
  --shadow: 0 26px 70px rgba(8, 44, 35, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 33%, rgba(214, 173, 98, 0.12), transparent 28rem),
    var(--paper);
  font-family: "Noto Serif SC", "Songti SC", STSong, "Source Han Serif SC", serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--tea-deep);
  border-radius: 0.4rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1220px, calc(100% - 64px));
  margin: 0 auto;
  padding: 28px 0;
  color: #fffaf0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-seal {
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  color: #fff8e7;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  background: var(--red);
  border: 1px solid rgba(255, 237, 195, 0.75);
  border-radius: 10px 10px 14px 8px;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.13);
  transform: rotate(-2deg);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 20px;
  letter-spacing: 0.15em;
}

.brand-copy small {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.29em;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.4vw, 46px);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.site-nav a {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffe5a9;
  border-color: currentColor;
}

.site-nav .nav-play {
  padding: 10px 18px;
  border: 1px solid rgba(255, 250, 240, 0.58);
  border-radius: 999px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 790px;
  padding: 155px max(32px, calc((100vw - 1220px) / 2)) 95px;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--tea-dark);
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("./assets/scenes/tea-sea-morning-v2.jpg");
  background-position: center 42%;
  background-size: cover;
  transform: scale(1.015);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 34, 26, 0.93) 0%, rgba(6, 39, 30, 0.78) 40%, rgba(8, 43, 33, 0.18) 72%),
    linear-gradient(0deg, rgba(4, 28, 22, 0.85) 0%, transparent 43%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 180px;
  content: "";
  background: linear-gradient(0deg, rgba(5, 29, 23, 0.74), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(670px, 59vw);
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffe2a6;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-size: clamp(60px, 7.4vw, 106px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.035em;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.32);
}

.hero h1 em {
  color: #f1cb7e;
  font-style: normal;
}

.hero-lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 250, 240, 0.84);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(650px, 100%);
  margin-top: 38px;
}

.hero-button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  min-height: 82px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-button-primary {
  color: #153129;
  background: linear-gradient(145deg, #fff8e9, #e9d6aa);
}

.hero-button-online {
  color: #fff8ed;
  background: linear-gradient(145deg, rgba(177, 50, 38, 0.96), rgba(108, 25, 21, 0.96));
}

.hero-button:hover,
.hero-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 19px 48px rgba(0, 0, 0, 0.28);
}

.button-icon {
  display: grid;
  width: 44px;
  height: 52px;
  place-items: center;
  font-size: 23px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid currentColor;
  border-radius: 7px;
}

.hero-button-primary .button-icon {
  color: var(--red);
  background: rgba(255, 255, 255, 0.58);
}

.hero-button span:nth-child(2) {
  display: grid;
  gap: 5px;
}

.hero-button strong {
  font-size: 20px;
  letter-spacing: 0.04em;
}

.hero-button small {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: 11px;
  opacity: 0.72;
}

.hero-button b {
  font-family: sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.story-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.hero-cards {
  position: absolute;
  right: max(34px, calc((100vw - 1270px) / 2));
  bottom: 92px;
  z-index: 1;
  width: 330px;
  height: 370px;
  opacity: 0.96;
  pointer-events: none;
}

.hero-card {
  position: absolute;
  bottom: 0;
  width: 126px;
  padding: 7px;
  background: linear-gradient(155deg, #fffef7, #d8d8d1);
  border: 2px solid #fff9e8;
  border-radius: 9px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.38);
  transform-origin: 50% 92%;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 0.58;
  object-fit: contain;
}

.hero-card-one {
  left: 12px;
  transform: rotate(-14deg) translateY(16px);
}

.hero-card-two {
  left: 102px;
  z-index: 2;
  transform: rotate(-1deg) translateY(-13px);
}

.hero-card-three {
  right: 4px;
  transform: rotate(13deg) translateY(12px);
}

.hero-note {
  position: absolute;
  right: max(34px, calc((100vw - 1220px) / 2));
  bottom: 38px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 248, 235, 0.8);
}

.hero-note > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: #f2cc7b;
  border: 1px solid rgba(242, 204, 123, 0.55);
  border-radius: 50%;
}

.hero-note p,
.hero-note strong,
.hero-note small {
  display: block;
  margin: 0;
}

.hero-note strong {
  font-size: 14px;
  letter-spacing: 0.08em;
}

.hero-note small {
  margin-top: 3px;
  font-family: sans-serif;
  font-size: 10px;
  opacity: 0.62;
}

.section-shell {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding-top: 126px;
  padding-bottom: 116px;
}

.section-kicker {
  color: var(--red);
}

.section-heading h2,
.meitan-copy h2 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.16;
  letter-spacing: 0.02em;
}

.intro-copy {
  padding-top: 42px;
}

.intro-copy > p,
.meitan-copy > p:not(.section-kicker) {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: 17px;
  line-height: 1.95;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 14px;
  padding-bottom: 7px;
  color: var(--tea);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.game-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 38px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.game-facts div {
  display: flex;
  gap: 13px;
  align-items: baseline;
  justify-content: center;
  padding: 28px 20px;
  border-right: 1px solid var(--line);
}

.game-facts div:last-child {
  border-right: 0;
}

.game-facts dt {
  color: var(--red);
  font-size: 42px;
  font-weight: 800;
}

.game-facts dd {
  margin: 0;
  color: var(--ink-soft);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: 13px;
}

.play-section {
  padding: 112px 0 122px;
  color: #f9f4e9;
  background:
    radial-gradient(circle at 85% 12%, rgba(214, 173, 98, 0.15), transparent 32rem),
    linear-gradient(145deg, var(--tea-deep), var(--tea-dark));
}

.section-heading-light .section-kicker {
  color: #d9b96f;
}

.section-heading-light h2 {
  color: #fffaf0;
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 62px;
}

.mode-card {
  position: relative;
  display: grid;
  min-height: 510px;
  padding: 38px 40px 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.mode-card::before {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 270px;
  height: 270px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.035), 0 0 0 60px rgba(255, 255, 255, 0.025);
}

.mode-card-standalone {
  color: var(--ink);
  background: linear-gradient(150deg, #fff9ec, #e8d7b7);
}

.mode-card-online {
  color: #fff8ed;
  background: linear-gradient(150deg, #ae3d31, #6f1d1a);
}

.mode-number {
  margin: 0 0 38px;
  font-family: Georgia, serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  opacity: 0.55;
}

.mode-label {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.7;
}

.mode-card h3 {
  margin: 12px 0 18px;
  font-size: clamp(30px, 3vw, 42px);
}

.mode-card > div > p {
  max-width: 480px;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: 15px;
  line-height: 1.85;
  opacity: 0.76;
}

.mode-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.mode-card li {
  padding: 7px 11px;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.68;
}

.mode-card > a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.76);
  border-radius: 11px;
  transition: transform 180ms ease, background 180ms ease;
}

.mode-card-online > a {
  color: var(--red-dark);
  background: #fff4dc;
}

.mode-card > a:hover,
.mode-card > a:focus-visible {
  background: white;
  transform: translateY(-2px);
}

.meitan-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(54px, 7vw, 96px);
  align-items: center;
  padding-top: 128px;
  padding-bottom: 130px;
}

.meitan-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 240px);
  gap: 12px;
  min-height: 492px;
}

.meitan-gallery::before {
  position: absolute;
  inset: 26px -19px -23px 34px;
  z-index: -1;
  content: "";
  background: #d9c9a7;
  border-radius: 44% 18px 18px;
}

.meitan-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #b8c5b4;
  box-shadow: 0 18px 44px rgba(8, 44, 35, 0.17);
}

.meitan-photo-main {
  grid-row: 1 / -1;
  border-radius: 44% 10px 10px 10px;
}

.meitan-photo-main + .meitan-photo-small {
  border-radius: 10px 44% 10px 10px;
}

.meitan-photo-small:last-child {
  border-radius: 10px 10px 44% 10px;
}

.meitan-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.meitan-photo-main img {
  object-position: 50% center;
}

  .meitan-photo-main + .meitan-photo-small img {
  object-position: 58% center;
}

.meitan-photo:hover img {
  transform: scale(1.035);
}

.meitan-photo figcaption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 3px;
  padding: 36px 17px 15px;
  color: white;
  background: linear-gradient(transparent, rgba(5, 37, 28, 0.84));
}

.meitan-photo figcaption strong {
  font-size: 15px;
  letter-spacing: 0.08em;
}

.meitan-photo figcaption span {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: 10px;
  opacity: 0.72;
}

.meitan-copy {
  padding: 30px 0;
}

.meitan-copy h2 {
  margin-bottom: 30px;
}

.meitan-links {
  display: grid;
  gap: 11px;
  margin-top: 34px;
}

.meitan-links a {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  color: var(--tea);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}

.meitan-copy .photo-credit {
  margin: 22px 0 0;
  font-size: 11px;
  line-height: 1.6;
  opacity: 0.62;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding: 68px max(32px, calc((100vw - 1180px) / 2)) 34px;
  color: rgba(255, 250, 239, 0.82);
  background: #071f19;
}

.brand-footer {
  color: #fffaf0;
}

.site-footer > div:first-child > p {
  margin: 22px 0 0;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: 13px;
  opacity: 0.68;
}

.footer-actions {
  display: flex;
  gap: 10px;
}

.footer-actions a {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.footer-actions a:last-child {
  color: #fff7e7;
  background: var(--red);
  border-color: var(--red);
}

.site-footer > small {
  grid-column: 1 / -1;
  margin-top: 26px;
  padding-top: 24px;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.48;
}

/* 湄潭大贰独立介绍页 */
.guide-page {
  background: var(--paper);
}

.guide-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
  gap: 50px;
  min-height: 720px;
  padding: 170px max(32px, calc((100vw - 1180px) / 2)) 92px;
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(4, 32, 24, 0.94), rgba(7, 47, 35, 0.66) 61%, rgba(4, 28, 22, 0.6)),
    url("./assets/scenes/tea-sea-morning-v2.jpg") center 45% / cover;
}

.guide-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  content: "";
  background: linear-gradient(transparent, rgba(5, 31, 24, 0.72));
}

.guide-hero-copy {
  position: relative;
  z-index: 2;
}

.guide-hero h1 {
  margin: 0;
  font-size: clamp(53px, 6vw, 86px);
  line-height: 1.04;
  letter-spacing: 0.025em;
}

.guide-hero h1 em {
  color: #edcc82;
  font-style: normal;
}

.guide-hero-copy > p:last-of-type {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 250, 240, 0.8);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: 17px;
  line-height: 1.85;
}

.guide-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.guide-hero-actions a {
  display: inline-flex;
  gap: 26px;
  align-items: center;
  padding: 15px 22px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.guide-hero-actions a:first-child {
  color: var(--tea-deep);
  background: #fff5df;
  border-color: #fff5df;
}

.guide-card-rack {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 96px);
  gap: 10px;
  justify-content: end;
  transform: rotate(2deg);
}

.guide-card-rack span {
  padding: 6px;
  background: linear-gradient(155deg, #fffef8, #d8d8d0);
  border: 2px solid white;
  border-radius: 8px;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
}

.guide-card-rack span:nth-child(2),
.guide-card-rack span:nth-child(5) {
  transform: translateY(-18px);
}

.guide-card-rack img {
  width: 100%;
  aspect-ratio: 0.58;
  object-fit: contain;
}

.guide-summary {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 76px;
  padding-top: 120px;
  padding-bottom: 112px;
}

.guide-summary-copy {
  padding-top: 42px;
}

.guide-summary-copy p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: 17px;
  line-height: 1.95;
}

.guide-pill-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.guide-pill-row span {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: center;
  padding: 22px 16px;
  color: var(--ink-soft);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.guide-pill-row b {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 31px;
}

.action-guide {
  padding: 112px 0 120px;
  color: white;
  background:
    radial-gradient(circle at 12% 18%, rgba(214, 173, 98, 0.12), transparent 34rem),
    var(--tea-dark);
}

.action-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 58px;
}

.action-guide-grid article {
  min-height: 360px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
}

.action-guide-grid article > span {
  display: grid;
  width: 58px;
  height: 72px;
  place-items: center;
  color: #efcf87;
  font-size: 31px;
  font-weight: 800;
  border: 1px solid rgba(239, 207, 135, 0.55);
  border-radius: 7px;
}

.action-guide-grid h3 {
  margin: 54px 0 15px;
  font-size: 24px;
}

.action-guide-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.round-flow {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  padding-top: 122px;
  padding-bottom: 124px;
}

.flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.flow-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.flow-list > li > span {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 13px;
}

.flow-list h3,
.flow-list p {
  margin: 0;
}

.flow-list h3 {
  margin-bottom: 7px;
  font-size: 18px;
}

.flow-list p {
  color: var(--ink-soft);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

.guide-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  padding: 96px max(32px, calc((100vw - 1180px) / 2));
  color: white;
  background:
    linear-gradient(90deg, rgba(92, 24, 20, 0.94), rgba(118, 31, 25, 0.78)),
    url("./assets/site/meitan-tea-sea-sunrise.jpg") center 54% / cover;
}

.guide-cta .section-kicker {
  color: #edcc82;
}

.guide-cta h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.16;
}

.guide-cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.guide-cta-actions a {
  display: grid;
  gap: 8px;
  padding: 20px;
  color: var(--red-dark);
  background: #fff5df;
  border-radius: 12px;
}

.guide-cta-actions a:last-child {
  color: white;
  background: rgba(7, 39, 30, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.guide-cta-actions strong {
  font-size: 18px;
}

.guide-cta-actions small {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  opacity: 0.68;
}

@media (max-width: 980px) {
  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: min(670px, 72vw);
  }

  .hero-cards {
    right: -45px;
    opacity: 0.58;
    transform: scale(0.82);
    transform-origin: 100% 100%;
  }

  .hero-note {
    display: none;
  }

  .intro-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .meitan-section {
    grid-template-columns: 1fr;
  }

  .meitan-gallery {
    min-height: 480px;
    grid-template-rows: repeat(2, 234px);
  }

  .guide-summary,
  .round-flow {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .guide-summary-copy {
    padding-top: 0;
  }

  .action-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-cta {
    grid-template-columns: 1fr;
  }

  .guide-card-rack {
    opacity: 0.72;
    transform: rotate(2deg) scale(0.8);
    transform-origin: 100% 50%;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 32px);
    padding: 18px 0;
  }

  .brand-seal {
    width: 38px;
    font-size: 20px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .site-nav a:not(.nav-play) {
    display: none;
  }

  .site-nav .nav-play {
    padding: 8px 13px;
    font-size: 12px;
  }

  .hero {
    min-height: 760px;
    padding: 128px 18px 52px;
    align-items: flex-start;
  }

  .hero-backdrop {
    background-position: 61% center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 34, 26, 0.94), rgba(6, 39, 30, 0.54)),
      linear-gradient(0deg, rgba(4, 28, 22, 0.92), transparent 50%);
  }

  .hero-content {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 0.13em;
  }

  .hero h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .hero-lead {
    max-width: 90%;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 27px;
  }

  .hero-button {
    min-height: 70px;
    padding: 10px 13px;
  }

  .button-icon {
    width: 39px;
    height: 46px;
    font-size: 20px;
  }

  .hero-button strong {
    font-size: 17px;
  }

  .hero-cards {
    right: -53px;
    bottom: 3px;
    opacity: 0.3;
    transform: scale(0.54);
  }

  .story-link {
    margin-top: 17px;
  }

  .section-shell {
    width: calc(100% - 36px);
  }

  .intro-section,
  .meitan-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section-heading h2,
  .meitan-copy h2 {
    font-size: 38px;
  }

  .intro-copy > p,
  .meitan-copy > p:not(.section-kicker) {
    font-size: 15px;
  }

  .game-facts {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 18px;
  }

  .game-facts div:nth-child(2) {
    border-right: 0;
  }

  .game-facts div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .game-facts dt {
    font-size: 34px;
  }

  .play-section {
    padding: 82px 0 88px;
  }

  .mode-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .mode-card {
    min-height: 480px;
    padding: 30px 24px 24px;
  }

  .meitan-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 310px 180px;
    min-height: 502px;
  }

  .meitan-photo-main {
    grid-column: 1 / -1;
    grid-row: auto;
    border-radius: 40% 40% 8px 8px;
  }

  .meitan-gallery::before {
    inset: 20px -8px -14px 18px;
  }

  .meitan-photo-main + .meitan-photo-small,
  .meitan-photo-small:last-child {
    border-radius: 8px 8px 26% 26%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 54px 18px 28px;
  }

  .footer-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .footer-actions a {
    text-align: center;
  }

  .guide-hero {
    grid-template-columns: 1fr;
    min-height: 760px;
    padding: 130px 18px 54px;
  }

  .guide-hero h1 {
    font-size: clamp(45px, 13vw, 64px);
  }

  .guide-hero-actions {
    flex-wrap: wrap;
  }

  .guide-card-rack {
    grid-template-columns: repeat(6, 66px);
    justify-content: start;
    opacity: 0.48;
    transform: none;
  }

  .guide-card-rack span:nth-child(2),
  .guide-card-rack span:nth-child(5) {
    transform: translateY(-10px);
  }

  .guide-summary,
  .round-flow {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .guide-pill-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .action-guide {
    padding: 82px 0;
  }

  .action-guide-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .action-guide-grid article {
    min-height: 280px;
  }

  .action-guide-grid h3 {
    margin-top: 32px;
  }

  .guide-cta {
    padding: 76px 18px;
  }

  .guide-cta-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 540px) and (orientation: landscape) {
  .site-header {
    padding: 11px 0;
  }

  .brand-seal {
    width: 34px;
    font-size: 18px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .hero {
    min-height: 520px;
    padding-top: 88px;
    padding-bottom: 30px;
  }

  .hero-content {
    width: min(720px, 80vw);
  }

  .hero h1 {
    font-size: clamp(43px, 9.3vh, 66px);
    line-height: 0.96;
  }

  .hero-lead {
    max-width: 530px;
    margin-top: 13px;
    font-size: 13px;
    line-height: 1.55;
  }

  .eyebrow {
    margin-bottom: 11px;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(630px, 77vw);
    margin-top: 18px;
  }

  .hero-button {
    min-height: 61px;
    padding: 8px 12px;
  }

  .button-icon {
    width: 34px;
    height: 42px;
    font-size: 18px;
  }

  .hero-button strong {
    font-size: 16px;
  }

  .story-link {
    margin-top: 13px;
    font-size: 11px;
  }

  .hero-cards {
    right: 12px;
    bottom: -70px;
    opacity: 0.32;
    transform: scale(0.55);
  }

  .guide-hero {
    grid-template-columns: minmax(0, 1fr) 260px;
    min-height: 520px;
    padding-top: 88px;
    padding-bottom: 34px;
  }

  .guide-hero h1 {
    font-size: clamp(42px, 9.5vh, 62px);
  }

  .guide-hero-copy > p:last-of-type {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.55;
  }

  .guide-hero-actions {
    margin-top: 16px;
  }

  .guide-hero-actions a {
    padding: 10px 15px;
    font-size: 12px;
  }

  .guide-card-rack {
    grid-template-columns: repeat(3, 56px);
    gap: 6px;
    opacity: 0.58;
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
