:root {
  --night: #100d18;
  --night-soft: #191525;
  --velvet: #361425;
  --red: #d43142;
  --red-bright: #e34453;
  --gold: #d9b773;
  --gold-pale: #f2dcaa;
  --paper: #fcf9f2;
  --paper-deep: #f0e9dc;
  --white: #fffdf9;
  --ink: #161521;
  --muted: #625e61;
  --line: #dfd5c4;
  --max: 1200px;
  --shadow: 0 22px 56px rgba(12, 9, 18, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 100;
  padding: 10px 18px;
  border-radius: 8px;
  color: white;
  background: var(--red);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.announcement {
  position: relative;
  z-index: 2;
  padding: 9px 20px;
  color: #f7ebd0;
  background: #21121d;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.09em;
}

.announcement p {
  margin: 0;
}

.announcement strong {
  color: white;
  font-weight: 700;
}

.announcement span {
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: 0 24px;
  background: rgba(242, 220, 170, 0.5);
  vertical-align: -2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(236, 217, 176, 0.15);
  color: white;
  background: rgba(16, 13, 24, 0.93);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 39px;
  max-width: var(--max);
  min-height: 76px;
  margin: 0 auto;
  padding: 0 32px;
}

.brand {
  width: 178px;
  margin-right: auto;
}

.brand img,
.site-footer > img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
}

.global-nav a:hover,
.global-nav a:focus-visible {
  color: white;
}

.header-cta {
  padding: 10px 23px;
  border-radius: 999px;
  color: white;
  background: var(--red);
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease;
}

.header-cta:hover {
  background: var(--red-bright);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(410px, 0.93fr) minmax(435px, 1fr);
  grid-template-areas:
    "copy product"
    "bottom bottom";
  gap: 66px clamp(46px, 7vw, 98px);
  min-height: calc(100vh - 107px);
  padding: clamp(58px, 7.2vw, 94px) max(calc((100vw - var(--max)) / 2), 32px) 0;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 74% 34%, rgba(202, 128, 70, 0.16), transparent 24%),
    radial-gradient(circle at 71% 28%, rgba(253, 218, 147, 0.07), transparent 42%),
    linear-gradient(120deg, #100d18 26%, #1d101c 61%, #301320 100%);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 10%;
  width: 550px;
  height: 780px;
  background: linear-gradient(175deg, rgba(241, 208, 137, 0.11), transparent 64%);
  clip-path: polygon(46% 0, 60% 0, 100% 100%, 0 100%);
  content: "";
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  right: -140px;
  bottom: 120px;
  width: 570px;
  height: 430px;
  border-radius: 50%;
  background: rgba(120, 25, 48, 0.2);
  filter: blur(42px);
}

.hero-copy {
  grid-area: copy;
  position: relative;
  z-index: 1;
  padding-top: clamp(10px, 4vw, 49px);
}

.hero-label,
.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.29em;
}

.hero h1 {
  margin: 0 0 27px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(48px, 5.7vw, 72px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.45;
}

.hero h1 em {
  color: var(--gold-pale);
  font-style: normal;
}

.hero-lead {
  margin: 0 0 33px;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 2.15;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  max-width: 100%;
  margin: 0 0 35px;
  padding: 14px 19px;
  border: 1px solid rgba(242, 220, 170, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.rating {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 0 10px;
  padding-right: 19px;
  border-right: 1px solid rgba(242, 220, 170, 0.23);
}

.stars {
  grid-column: 1 / 3;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.rating strong {
  color: white;
  font-size: 27px;
  line-height: 1.15;
}

.rating small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.hero-proof > p {
  max-width: 138px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

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

.button-accent {
  color: white;
  background: var(--red);
  box-shadow: 0 14px 27px rgba(211, 49, 66, 0.23);
}

.button-accent:hover {
  background: var(--red-bright);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-product {
  grid-area: product;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 0 0;
}

.viewfinder {
  position: absolute;
  top: 1%;
  left: 50%;
  z-index: -1;
  display: flex;
  transform: translateX(-48%);
  opacity: 0.63;
}

.viewfinder span {
  display: block;
  width: clamp(168px, 17vw, 208px);
  aspect-ratio: 1;
  margin: -7px;
  border: 1px solid rgba(242, 220, 170, 0.17);
  border-radius: 50%;
}

.packshot {
  overflow: hidden;
  margin: 34px 0 0 auto;
  width: min(100%, 518px);
  padding: 14px;
  border-radius: 26px;
  background: white;
  box-shadow: 0 34px 64px rgba(0, 0, 0, 0.33);
}

.packshot img {
  width: 100%;
  border-radius: 15px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.buy-card {
  position: relative;
  width: min(100% - 30px, 458px);
  margin: -57px auto 0 0;
  padding: 24px 28px 25px;
  border-radius: 20px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.24);
}

.series {
  margin: 0 0 5px;
  color: #957544;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
}

.buy-card h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: 0.04em;
}

.buy-price {
  position: absolute;
  top: 30px;
  right: 27px;
  margin: 0;
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
}

.buy-price small {
  font-size: 14px;
}

.buy-card ul {
  display: flex;
  gap: 7px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.buy-card li {
  padding: 5px 9px;
  border-radius: 5px;
  color: #453d37;
  background: var(--paper-deep);
  font-size: 11px;
  font-weight: 700;
}

.hero-bottom {
  grid-area: bottom;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: auto;
  border-top: 1px solid rgba(242, 220, 170, 0.16);
}

.hero-bottom div {
  padding: 25px 35px 27px;
}

.hero-bottom div:first-child {
  padding-left: 0;
}

.hero-bottom div + div {
  border-left: 1px solid rgba(242, 220, 170, 0.16);
}

.hero-bottom strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-pale);
  font-size: 19px;
}

.hero-bottom small {
  color: rgba(255, 255, 255, 0.57);
  font-size: 12px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 9.5vw, 118px) 32px 0;
}

.section-heading {
  margin: 0 0 44px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2,
.reason h2,
.brand-story h2 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(30px, 4vw, 45px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.55;
}

.section-heading > p:last-child {
  margin: 15px 0 0;
  color: var(--muted);
}

.buy-channels {
  padding-top: clamp(62px, 8vw, 94px);
}

.buy-channels .section-heading {
  max-width: 730px;
  margin-right: auto;
  margin-left: auto;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.channel {
  position: relative;
  min-height: 156px;
  padding: 25px 23px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.channel:hover {
  transform: translateY(-2px);
  border-color: #d2b77d;
  box-shadow: 0 15px 29px rgba(30, 21, 22, 0.07);
}

.channel::after {
  position: absolute;
  right: 21px;
  bottom: 20px;
  color: var(--red);
  content: "\2192";
}

.channel small {
  display: block;
  margin-bottom: 8px;
  color: #987843;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.channel strong {
  display: block;
  margin-bottom: 7px;
  font-size: 21px;
}

.channel span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.channel-official {
  border-color: var(--night);
  color: white;
  background: var(--night);
}

.channel-official small {
  color: var(--gold);
}

.channel-official span {
  color: rgba(255, 255, 255, 0.68);
}

.channel-official::after {
  color: var(--gold);
}

.chooser {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(490px, 1.28fr);
  gap: 25px;
}

.scene-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scene {
  position: relative;
  width: 100%;
  padding: 17px 22px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.scene::after {
  position: absolute;
  top: 50%;
  right: 22px;
  color: #aa9980;
  transform: translateY(-50%);
  content: "\2192";
}

.scene:hover,
.scene:focus-visible {
  border-color: #b79e70;
}

.scene.is-active {
  border-color: var(--night);
  color: white;
  background: var(--night);
}

.scene.is-active::after {
  color: var(--gold);
}

.scene span {
  display: block;
  margin-bottom: 2px;
  color: #9c7b47;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.scene.is-active span {
  color: var(--gold);
}

.scene strong {
  display: block;
  font-size: 16px;
}

.scene small {
  color: var(--muted);
  font-size: 12px;
}

.scene.is-active small {
  color: rgba(255, 255, 255, 0.62);
}

.recommendation {
  display: grid;
  grid-template-columns: minmax(225px, 0.9fr) minmax(285px, 1fr);
  gap: 32px;
  margin: 0;
  padding: 32px;
  border-radius: 23px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.recommend-kicker {
  grid-column: 1 / 3;
  margin: 0 0 -13px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.recommendation img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 14px;
  object-fit: cover;
  background: #f5f2eb;
}

.recommend-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-top: 10px;
}

.recommend-main h3 {
  margin: 0 0 14px;
  font-size: clamp(23px, 2.6vw, 30px);
  line-height: 1.35;
}

.recommend-main > p:not(.series) {
  margin: 0 0 19px;
  color: var(--muted);
  font-size: 14px;
}

.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 27px;
  padding: 0;
  list-style: none;
}

.spec-tags li {
  padding: 5px 11px;
  border-radius: 5px;
  color: #4d463d;
  background: var(--paper-deep);
  font-size: 12px;
  font-weight: 700;
}

.recommend-purchase {
  margin-top: auto;
}

.recommend-purchase p {
  margin: 0 0 17px;
  font-size: 33px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.recommend-purchase p small {
  font-size: 15px;
}

.recommend-purchase .button {
  width: 100%;
}

.reason {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(400px, 1fr);
  align-items: center;
  gap: clamp(38px, 9vw, 108px);
}

.reason-copy > p:last-child {
  margin: 23px 0 0;
  color: var(--muted);
  line-height: 2.15;
}

.sight-card {
  padding: clamp(29px, 5vw, 47px);
  border-radius: 24px;
  color: white;
  background: var(--night);
}

.sight-card > p {
  margin: 0 0 30px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.sight-metric {
  display: grid;
  grid-template-columns: 46px 1fr 47px;
  align-items: center;
  gap: 16px;
  margin-bottom: 21px;
}

.sight-metric strong {
  font-size: 16px;
}

.sight-metric span {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.sight-metric i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #9e8a67;
}

.sight-metric.prime i {
  background: var(--gold);
}

.sight-metric b {
  text-align: right;
}

.sight-notes {
  display: flex;
  gap: 8px;
  margin: 34px 0;
}

.sight-notes span {
  flex: 1;
  padding: 9px 7px;
  border: 1px solid rgba(242, 220, 170, 0.23);
  border-radius: 6px;
  color: var(--gold-pale);
  font-size: 12px;
  text-align: center;
}

.sight-card a {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(242, 220, 170, 0.18);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.sight-card a span {
  color: var(--gold);
}

.voices {
  margin-top: clamp(75px, 9.5vw, 118px);
  padding: clamp(56px, 7vw, 72px) 32px;
  color: white;
  background: var(--velvet);
}

.voices-inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.voices-title h2 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(27px, 3vw, 34px);
  font-weight: 500;
}

.voices article {
  padding-left: clamp(24px, 4vw, 41px);
  border-left: 1px solid rgba(242, 220, 170, 0.19);
}

.voices article p {
  margin: 0 0 16px;
  color: #fff6e8;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.85;
}

.voices article small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
}

.spread {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.arrow-link {
  color: #655b4e;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.arrow-link:hover {
  color: var(--red);
}

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

.model {
  position: relative;
  padding: 13px 13px 24px;
  border: 1px solid #eadfce;
  border-radius: 18px;
  background: white;
}

.model.is-highlight {
  border-color: #d8b074;
  box-shadow: 0 18px 37px rgba(30, 21, 22, 0.08);
}

.model-label {
  position: absolute;
  top: 25px;
  left: 24px;
  z-index: 1;
  padding: 5px 11px;
  border-radius: 999px;
  color: #463829;
  background: #f0dfbe;
  font-size: 11px;
  font-weight: 700;
}

.model.is-highlight .model-label {
  color: white;
  background: var(--red);
}

.model img {
  width: 100%;
  margin-bottom: 18px;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.model .series,
.model h3,
.model > p:not(.series),
.model a {
  margin-left: 12px;
  margin-right: 12px;
}

.model h3 {
  margin-top: 2px;
  margin-bottom: 5px;
  font-size: 22px;
}

.model > p:not(.series) {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.model a {
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}

.model a::after {
  margin-left: 7px;
  content: "\2192";
}

.support .section-heading {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.support-cards article {
  padding: clamp(27px, 4vw, 39px);
  border-radius: 18px;
  background: var(--paper-deep);
}

.support-cards strong {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-family: "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 45px);
  font-weight: 500;
  line-height: 1;
}

.support-cards article:last-child strong {
  font-size: 28px;
}

.support-cards h3 {
  margin: 0 0 11px;
  font-size: 20px;
}

.support-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.brand-story {
  position: relative;
  margin-top: clamp(72px, 9.5vw, 118px);
  padding: clamp(52px, 8vw, 86px);
  overflow: hidden;
  border-radius: 25px;
  color: white;
  background: var(--night);
}

.brand-story::after {
  position: absolute;
  right: -66px;
  bottom: -165px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(217, 183, 115, 0.24);
  border-radius: 50%;
  content: "";
}

.brand-story .eyebrow {
  color: var(--gold);
}

.brand-story h2 {
  margin-bottom: 21px;
}

.brand-story > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0 0 31px;
  color: rgba(255, 255, 255, 0.7);
}

.brand-story .arrow-link {
  color: var(--gold-pale);
}

.faq {
  max-width: 820px;
  padding-bottom: clamp(72px, 10vw, 110px);
}

.faq .section-heading {
  margin-bottom: 27px;
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 24px 50px 24px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 19px;
  right: 8px;
  color: var(--red);
  font-size: 27px;
  font-weight: 300;
  content: "+";
}

.faq details[open] summary::after {
  content: "\2212";
}

.faq details p {
  margin: -3px 45px 27px 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 175px 1fr;
  align-items: center;
  gap: 28px 55px;
  padding: 52px max(calc((100vw - var(--max)) / 2), 32px) 29px;
  color: rgba(255, 255, 255, 0.64);
  background: #0e0b14;
  font-size: 13px;
}

.site-footer > img {
  width: 175px;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  gap: 29px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.site-footer > p {
  margin: 0;
}

.site-footer > small {
  text-align: right;
  font-size: 11px;
}

.mobile-purchase {
  display: none;
}

@media (max-width: 1030px) {
  .global-nav {
    gap: 19px;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "product" "bottom";
    padding-bottom: 0;
  }

  .hero-copy {
    max-width: 670px;
    padding-top: 0;
  }

  .hero-product {
    max-width: 600px;
    margin: 0 auto;
  }

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

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

  .scene-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 75px;
  }

  .announcement {
    padding: 7px 10px;
    font-size: 10px;
    letter-spacing: 0.02em;
  }

  .announcement span {
    margin: 0 8px;
  }

  .header-inner {
    position: relative;
    min-height: 62px;
    padding: 0 18px;
  }

  .brand {
    width: 142px;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
  }

  .menu-button span:not(.visually-hidden) {
    display: block;
    width: 22px;
    height: 1px;
    margin-left: auto;
    background: white;
    transition: transform 0.2s ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .global-nav {
    position: absolute;
    top: 62px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    background: var(--night);
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    padding: 12px 0;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 35px;
    min-height: 0;
    padding: 46px 20px 0;
  }

  .hero::before {
    top: 300px;
    right: -83px;
    width: 340px;
    height: 480px;
  }

  .hero-copy {
    order: 0;
  }

  .hero-label,
  .eyebrow {
    margin-bottom: 15px;
    font-size: 10px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(39px, 11.8vw, 49px);
    line-height: 1.48;
  }

  .hero-lead {
    margin-bottom: 25px;
    font-size: 14px;
  }

  .hero-proof {
    width: 100%;
    gap: 13px;
    padding: 11px 13px;
  }

  .rating {
    padding-right: 12px;
  }

  .rating strong {
    font-size: 23px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    min-height: 52px;
  }

  .hero-product {
    order: 1;
    padding-top: 15px;
  }

  .packshot {
    margin-top: 14px;
    padding: 10px;
    border-radius: 18px;
  }

  .packshot img {
    border-radius: 10px;
  }

  .buy-card {
    width: calc(100% - 21px);
    margin: -36px auto 0 0;
    padding: 18px 18px 19px;
    border-radius: 14px;
  }

  .buy-card h2 {
    font-size: 22px;
  }

  .buy-price {
    top: 23px;
    right: 18px;
    font-size: 24px;
  }

  .buy-card ul {
    margin-top: 16px;
  }

  .buy-card li {
    font-size: 10px;
  }

  .hero-bottom {
    order: 2;
    grid-template-columns: 1fr;
    margin-top: 7px;
  }

  .hero-bottom div,
  .hero-bottom div:first-child {
    padding: 17px 0;
  }

  .hero-bottom div + div {
    border-top: 1px solid rgba(242, 220, 170, 0.16);
    border-left: 0;
  }

  .hero-bottom strong {
    display: inline;
    margin-right: 13px;
    font-size: 16px;
  }

  .section {
    padding: 64px 20px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .reason h2,
  .brand-story h2 {
    font-size: 30px;
  }

  .channel-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .channel {
    min-height: 0;
    padding: 19px 48px 19px 19px;
  }

  .channel::after {
    right: 20px;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }

  .channel small {
    margin-bottom: 3px;
  }

  .channel strong {
    margin-bottom: 3px;
    font-size: 19px;
  }

  .scene-list {
    display: flex;
    gap: 8px;
  }

  .scene {
    padding: 13px 17px 14px;
  }

  .scene strong {
    font-size: 14px;
  }

  .recommendation {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
    border-radius: 17px;
  }

  .recommend-kicker {
    margin-bottom: -6px;
  }

  .recommendation img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .recommend-main {
    padding-top: 2px;
  }

  .recommend-purchase {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .recommend-purchase p {
    flex: none;
    margin: 0;
    font-size: 26px;
  }

  .reason {
    gap: 28px;
  }

  .reason-copy > p:last-child {
    font-size: 14px;
  }

  .sight-card {
    padding: 26px 20px;
  }

  .voices {
    margin-top: 64px;
    padding: 47px 20px;
  }

  .voices-inner {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .voices article {
    padding: 25px 0 0;
    border-top: 1px solid rgba(242, 220, 170, 0.19);
    border-left: 0;
  }

  .spread {
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }

  .lineup-grid,
  .support-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .model {
    display: grid;
    grid-template-columns: 42% 1fr;
    grid-template-rows: auto auto auto 1fr;
    column-gap: 15px;
    padding: 10px 15px 10px 10px;
  }

  .model-label {
    top: 18px;
    left: 17px;
    font-size: 10px;
  }

  .model img {
    grid-row: 1 / 5;
    margin: 0;
    align-self: center;
  }

  .model .series,
  .model h3,
  .model > p:not(.series),
  .model a {
    margin-right: 0;
    margin-left: 0;
  }

  .model .series {
    margin-top: 7px;
  }

  .model h3 {
    margin-top: 0;
    font-size: 19px;
  }

  .model > p:not(.series) {
    margin-bottom: 7px;
    font-size: 11px;
  }

  .model a {
    font-size: 13px;
  }

  .support .section-heading {
    text-align: left;
  }

  .support-cards article {
    padding: 25px 23px;
  }

  .brand-story {
    margin-top: 64px;
    padding: 39px 24px 44px;
    border-radius: 0;
  }

  .faq {
    padding-bottom: 65px;
  }

  .faq summary {
    font-size: 14px;
  }

  .faq details p {
    margin-right: 38px;
    font-size: 14px;
  }

  .site-footer {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 23px;
    padding: 42px 20px 27px;
  }

  .site-footer > img {
    width: 152px;
  }

  .footer-nav {
    justify-content: start;
    flex-wrap: wrap;
    gap: 12px 22px;
  }

  .site-footer > small {
    text-align: left;
  }

  .mobile-purchase {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    padding: 9px 11px 9px 17px;
    border-top: 1px solid #e8dbca;
    background: rgba(252, 249, 242, 0.97);
  }

  .mobile-purchase small {
    display: block;
    color: var(--muted);
    font-size: 10px;
  }

  .mobile-purchase strong {
    display: block;
    font-size: 15px;
    line-height: 1.35;
  }

  .mobile-purchase strong span {
    margin-left: 6px;
    font-size: 12px;
  }

  .mobile-purchase a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 137px;
    min-height: 51px;
    border-radius: 8px;
    color: white;
    background: var(--red);
    font-size: 13px;
    font-weight: 700;
  }
}
