:root {
  --ink: #0f1c1a;
  --teal: #1a8a7c;
  --teal-2: #14786c;
  --teal-deep: #0e5c53;
  --mint: #5fb8ae;
  --teal-50: #f3faf8;
  --teal-100: #e6f4f1;
  --teal-200: #cfe8e3;
  --surface: #ffffff;
  --surface-2: #f4f6f6;
  --surface-3: #e8eeee;
  --text: #1a2423;
  --muted: #5c6b69;
  --line: #e2e7e6;
  --ok: #14786c;
  --ok-bg: #e8f6f3;
  --no: #b42318;
  --no-bg: #f7efef;
  --radius: 2px;
  --header: 72px;
  --max: 1240px;
  --shadow: 0 12px 32px rgba(15, 28, 26, 0.06);
  --sans: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  height: var(--header);
}

.header.is-scrolled {
  box-shadow: 0 10px 30px rgba(7, 17, 16, 0.06);
}

.nav {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--teal);
  background: none;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header.is-open .menu-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header.is-open .menu-btn span:nth-child(2) {
  opacity: 0;
}

.header.is-open .menu-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-dark,
.btn-blue {
  background: var(--teal);
  color: #fff;
}

.btn-dark:hover,
.btn-blue:hover {
  background: var(--teal-2);
}

.hero-cinema .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #f4fbf9;
}

.hero-cinema .btn-ghost:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.header .btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--text);
}

.header .btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--text);
}

.btn-lg {
  height: 54px;
  padding: 0 24px;
  font-size: 15px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero-cinema {
  position: relative;
  min-height: min(92vh, 920px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f4fbf9;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-cinema > .hero-media img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: none;
  transition: opacity 1.05s ease;
}

.hero-cinema > .hero-media img.is-on {
  opacity: 1;
  transform: none;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 16, 0.22) 0%, rgba(7, 17, 16, 0.58) 55%, rgba(7, 17, 16, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 17, 16, 0.4), transparent 55%);
}

.hero-cinema .hero-veil {
  background:
    linear-gradient(180deg, rgba(7, 17, 16, 0.06) 0%, rgba(7, 17, 16, 0.22) 42%, rgba(7, 17, 16, 0.5) 100%),
    linear-gradient(90deg, rgba(7, 17, 16, 0.18), transparent 60%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 72px 0 108px;
  max-width: 820px;
}

.hero-pager {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.hero-pager button {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.hero-pager button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  background: rgba(255, 255, 255, 0.38);
}

.hero-pager button.is-on::after {
  background: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: max-content;
  max-width: 100%;
  gap: 8px;
  background: var(--teal-100);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 0 10px;
}

.hero-cinema .eyebrow {
  background: rgba(112, 196, 187, 0.16);
  color: var(--mint);
}

h1,
h2 {
  font-family: var(--sans);
  font-weight: 600;
}

h1 {
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  margin: 18px 0 18px;
}

.hero-cinema h1 {
  color: #f8fbfa;
  font-size: 35px;
  line-height: 1.28;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.18;
  margin: 0 0 14px;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 640px;
}

.hero-cinema .lead {
  color: #c5d6d2;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 28px;
  font-size: 13px;
  color: #b7cbc7;
}

.proof span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.proof i {
  color: var(--mint);
}

.ticker {
  background: var(--ink);
  color: var(--mint);
  overflow: hidden;
  border-top: 1px solid #1c2a28;
  border-bottom: 1px solid #1c2a28;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.ticker-group span {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  border-right: 1px solid #243232;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: transparent;
}

.section-muted > .wrap:not(.card) {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 48px 24px;
}

.center {
  text-align: center;
}

.center .lead {
  margin: 0 auto;
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.grid-2 > .card,
.grid-2 > .fit,
.grid-3 > .card,
.grid-4 > .card {
  height: 100%;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--teal-100);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  align-items: stretch;
}

.split > :not(.card):not(.wechat):not(form) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split > .card,
.split > .wechat,
.split > form {
  height: 100%;
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px 48px;
  align-items: stretch;
}

.media-split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.media-split__media {
  position: relative;
  margin: 0;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-3);
}

.media-split__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-split__media figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(transparent, rgba(7, 17, 16, 0.72));
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.media-split--flip .media-split__media {
  order: -1;
}

.fit-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  margin-top: 32px;
}

.fit-col {
  padding: 36px 36px 32px;
}

.fit-col--yes {
  background: var(--teal-50);
  border-right: 1px solid var(--line);
}

.fit-col--no {
  background: #fff;
}

.fit-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.fit-col--no .fit-kicker {
  color: var(--muted);
}

.fit-col h3 {
  font-size: 26px;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}

.fit-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fit-col li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  margin: 0;
  color: var(--text);
}

.fit-mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

.fit-col--yes .fit-mark {
  background: var(--teal);
  color: #fff;
}

.fit-col--no .fit-mark {
  background: var(--surface-3);
  color: var(--muted);
}

.fit-col .fit-more {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  color: var(--teal);
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

caption {
  text-align: left;
  padding: 14px 18px 8px;
  font-weight: 600;
  caption-side: top;
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--surface-2);
  font-size: 13px;
}

td.hl {
  background: var(--teal-100);
  font-weight: 600;
  color: var(--teal-2);
}

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 24px 0 18px;
}

.tab {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tab.is-on {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.faq {
  max-width: 800px;
  margin: 28px auto 0;
}

.acc {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 10px;
}

.acc summary {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}

.acc summary::-webkit-details-marker {
  display: none;
}

.acc summary .bi {
  color: var(--teal);
}

.acc[open] summary .bi {
  transform: rotate(180deg);
}

.acc p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://cdn.szh5.cn/dtc/static/assets/photos/studio.jpg") center / cover;
  opacity: 0.22;
}

.cta-band > * {
  position: relative;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: #c5d6d2;
  margin: 8px 0 0;
}

.demo-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin: 14px 0 18px;
  padding: 14px 16px;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius);
}

.demo-creds p {
  margin: 0;
}

.demo-creds b {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 2px;
}

.demo-creds span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.demo-creds .note {
  flex: 1 1 100%;
  font-size: 13px;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 22px;
}

.form > div {
  display: grid;
  gap: 12px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px 16px;
  color: var(--text);
}

.form input::placeholder,
.form textarea::placeholder {
  color: #c5d0ce;
  opacity: 1;
}

.form select:invalid {
  color: #c5d0ce;
}

.form select option {
  color: var(--text);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.wechat {
  border: 1px dashed #b7cdc8;
  border-radius: var(--radius);
  text-align: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.qr {
  width: 168px;
  height: 168px;
  margin: 12px auto;
  border-radius: var(--radius);
}

.qr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.footer {
  background: var(--ink);
  color: #9bb8b3;
  padding: 56px 0 28px;
  font-size: 14px;
}

.footer .logo {
  color: #fff;
  font-size: 22px;
}

.footer .logo:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer a:hover {
  color: var(--mint);
}

.legal {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #243232;
}

.page-hero-band {
  position: relative;
  min-height: 42vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f4fbf9;
}

.page-hero-band .hero-media,
.page-hero-band .hero-veil {
  position: absolute;
  inset: 0;
}

.page-hero-band .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-band .wrap {
  position: relative;
  z-index: 1;
  padding: 72px 0 48px;
}

.page-hero-band h1 {
  color: #fff;
  font-size: 25px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.page-hero-band .lead,
.page-hero-band .crumbs {
  color: #c5d6d2;
}

.page-hero {
  padding: 48px 0 8px;
}

.crumbs {
  color: var(--muted);
  font-size: 13px;
}

.crumbs a {
  color: inherit;
}

.crumbs a:hover {
  color: var(--teal);
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-grid li {
  display: flex;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.check-grid i {
  color: var(--teal);
  margin-top: 3px;
}

.story p {
  color: var(--muted);
  margin: 0 0 10px;
}

.story strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
}

.timeline {
  display: grid;
  gap: 0;
}

.tl {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.tl b {
  color: var(--teal);
}

.price-note {
  font-size: 14px;
  color: var(--muted);
}

.bento {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2px;
  margin-top: 32px;
}

.scene-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
}

.scene-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s ease;
}

.scene-card:hover img {
  transform: scale(1.06);
}

.scene-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(7, 17, 16, 0.9));
  color: #fff;
}

.scene-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.scene-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #c5d6d2;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
  aspect-ratio: 4 / 3;
}

.photo-copy {
  background: var(--ink);
  color: #c5d6d2;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.photo-copy strong {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 6px;
}

.photo-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s ease;
}

.photo-card:hover img {
  transform: scale(1.06);
}

.photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 20px;
  background: linear-gradient(transparent, rgba(7, 17, 16, 0.78));
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.deliver-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.deliver-list li {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.deliver-list strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

.sticky-cta {
  display: none;
}

.tab-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.tab-split > .card {
  height: 100%;
}

[hidden] {
  display: none !important;
}

.news-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.news-head .lead {
  margin: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.news-card:hover {
  border-color: var(--teal-200);
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.news-meta time {
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.news-card h3 {
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1.35;
  margin: 0 0 10px;
}

.news-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  flex: 1;
}

.news-card .news-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
}

.article-wrap {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.article-wrap .news-meta {
  margin-bottom: 16px;
}

.article-wrap h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin-top: 0;
}

.article-wrap .lead {
  font-size: 18px;
  margin-bottom: 28px;
}

.article-body p,
.article-body li {
  font-size: 16px;
  color: var(--text);
}

.article-body h2 {
  font-size: 24px;
  margin: 36px 0 12px;
}

.article-body a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body ul,
.article-body ol {
  padding-left: 1.2em;
}

.article-cta {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.related {
  margin-top: 40px;
}

.related h2 {
  font-size: 20px;
  margin-bottom: 16px;
}

@media (max-width: 1100px) and (min-width: 961px) {
  .scene-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .news-grid,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .menu-btn {
    display: flex;
    margin-left: auto;
  }

  .nav {
    position: static;
  }

  .nav-links,
  .header .nav-cta .btn {
    display: none;
  }

  .header.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: #fff;
    color: var(--text);
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 30;
  }

  .header.is-open .nav-links a {
    color: var(--text);
    width: auto;
    padding: 10px 0;
  }

  .header.is-open .nav-links a.is-active {
    color: var(--teal);
  }

  .section-muted > .wrap:not(.card) {
    padding: 36px 20px;
  }

  .fit-board {
    grid-template-columns: 1fr;
  }

  .fit-col--yes {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-grid,
  .split,
  .media-split,
  .grid-3,
  .grid-2,
  .grid-4,
  .cta-band,
  .footer-grid,
  .check-grid,
  .bento,
  .deliver-list,
  .news-grid,
  .tab-split {
    grid-template-columns: 1fr;
  }

  .media-split__media {
    order: 0;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .photo-card:first-child {
    grid-row: auto;
  }

  .photo-card {
    min-height: 0;
  }

  .cta-band {
    padding: 32px;
  }

  .news-head {
    flex-direction: column;
    align-items: start;
  }

  .sticky-cta {
    display: flex;
    position: sticky;
    bottom: 12px;
    margin: 0 16px 12px;
    z-index: 30;
  }

  .sticky-cta .btn {
    width: 100%;
    box-shadow: var(--shadow);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track,
  .scene-card img,
  .photo-card img,
  [data-reveal] {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }

  .hero-cinema > .hero-media img {
    animation: none;
    transition: none;
    transform: none;
  }
}
