:root {
  --bg: #F9F6FA;
  --lavender: #D1B3E4;
  --pink: #FFB7CA;
  --ink: #4A325A;
  --ink-soft: #725a80;
  --white: #ffffff;
  --green: #6FAF6A;
  --mint: #EAF5E8;
  --gold: #E7B955;
  --line: rgba(74, 50, 90, 0.16);
  --shadow: 0 18px 50px rgba(74, 50, 90, 0.15);
  --lift-shadow: 0 22px 56px rgba(74, 50, 90, 0.20);
  --glow: 0 0 0 4px rgba(255, 183, 202, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 8px;
  --max: 1180px;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(255, 183, 202, 0.62);
  color: var(--ink);
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.22;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(2.25rem, 4rem, 4rem);
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(35, 20, 42, 0.38);
}

h2 {
  font-size: clamp(1.55rem, 2.05rem, 2.05rem);
}

h3 {
  font-size: 1.08rem;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 246, 250, 0.88);
  border-bottom: 1px solid rgba(74, 50, 90, 0.12);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(100% - 32px, var(--max));
  min-height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  color: var(--ink);
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid var(--line);
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--ink);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-icon,
.btn-icon,
.nav-toggle-icon,
.thumb-check svg {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-icon {
  color: var(--lavender);
  transition: color 180ms ease, transform 180ms ease;
}

.nav-menu a:hover .nav-icon,
.nav-menu a.is-active .nav-icon {
  color: var(--pink);
  transform: translateY(-1px);
}

.nav-menu a:not(.nav-cta)::after {
  display: none;
}

.nav-menu a:not(.nav-cta):hover,
.nav-menu a:not(.nav-cta).is-active {
  color: #9E5DC0;
  border-color: rgba(255, 183, 202, 0.95);
  background: rgba(255, 183, 202, 0.12);
  box-shadow: 0 8px 20px rgba(209, 179, 228, 0.20);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta {
  background: var(--pink);
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(255, 183, 202, 0.32);
}

.nav-cta .btn-icon,
.btn-primary .btn-icon {
  color: var(--ink);
}

.btn-secondary .btn-icon {
  color: var(--white);
}

.btn-primary {
  background: var(--pink);
  color: var(--ink);
  box-shadow: 0 16px 30px rgba(255, 183, 202, 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(74, 50, 90, 0.20);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.nav-toggle-icon {
  grid-area: 1 / 1;
}

.nav-toggle-icon-close {
  display: none;
}

.site-header.is-open .nav-toggle-icon-menu {
  display: none;
}

.site-header.is-open .nav-toggle-icon-close {
  display: block;
}

.hero {
  position: relative;
  min-height: calc(100svh - 92px);
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(74, 50, 90, 0.86), rgba(74, 50, 90, 0.58) 48%, rgba(74, 50, 90, 0.30)),
    linear-gradient(0deg, rgba(74, 50, 90, 0.28), rgba(74, 50, 90, 0.10));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 84px 0 54px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  font-weight: 800;
  color: var(--pink);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-facts {
  width: min(100%, 820px);
  margin: 42px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-facts div {
  min-width: 0;
  padding: 14px;
  background: rgba(249, 246, 250, 0.12);
}

.hero-facts dt {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.hero-facts dd {
  margin: 0;
  color: var(--white);
  font-weight: 800;
  line-height: 1.45;
}

.section {
  padding: 86px 0;
}

.section-light {
  background: var(--bg);
}

.section-tint {
  background: linear-gradient(180deg, #F2EAF8 0%, #F9F6FA 100%);
}

.section-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head.narrow {
  max-width: 720px;
}

.section-head p:not(.section-kicker) {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.86fr);
  gap: 44px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.02fr);
}

.split-reverse .copy {
  order: 2;
}

.split-reverse .media-frame {
  order: 1;
}

.copy > p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.summary-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.summary-list li {
  position: relative;
  padding: 13px 14px 13px 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(74, 50, 90, 0.08);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.summary-list li::before {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border: 2px solid var(--mint);
  border-radius: 50%;
  content: "";
}

.summary-list li:hover {
  transform: translateX(6px);
  border-color: rgba(255, 183, 202, 0.92);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(74, 50, 90, 0.12);
}

.media-frame,
.wide-media {
  margin: 0;
}

.media-frame {
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}

.media-frame img,
.wide-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 380ms var(--ease), filter 240ms var(--ease);
}

.media-frame:hover,
.wide-media:hover,
.gallery-main:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 183, 202, 0.82);
  box-shadow: var(--lift-shadow);
}

.media-frame:hover img,
.wide-media:hover img,
.gallery-main:hover img {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.media-frame figcaption,
.wide-media figcaption {
  margin: 10px 4px 2px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.media-frame-large {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.content-card,
.feature-strip article,
.updates-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(74, 50, 90, 0.08);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.content-card:hover,
.feature-strip article:hover,
.updates-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 183, 202, 0.86);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--lift-shadow);
}

.content-card:hover h3,
.feature-strip article:hover h3,
.updates-grid article:hover h3 {
  color: #9E5DC0;
}

.content-card {
  padding: 20px;
}

.content-card h3,
.feature-strip h3,
.updates-grid h3,
.timeline h3 {
  margin-bottom: 8px;
}

.content-card p,
.feature-strip p,
.updates-grid p,
.timeline p {
  margin: 0;
  color: var(--ink-soft);
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.timeline article {
  position: relative;
  padding: 18px 20px 18px 28px;
  border-left: 4px solid var(--pink);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 10px 26px rgba(74, 50, 90, 0.08);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.timeline article:hover {
  transform: translateX(6px);
  border-left-color: #9E5DC0;
  box-shadow: 0 16px 34px rgba(74, 50, 90, 0.13);
}

.guide-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: guide;
}

.guide-list li {
  position: relative;
  min-height: 64px;
  padding: 16px 16px 16px 62px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  box-shadow: 0 10px 28px rgba(74, 50, 90, 0.08);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.guide-list li::before {
  counter-increment: guide;
  content: counter(guide);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--ink);
  font-weight: 900;
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}

.guide-list li:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 183, 202, 0.86);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--lift-shadow);
}

.guide-list li:hover::before {
  background: var(--pink);
  transform: scale(1.08);
}

.guide-list strong {
  color: var(--ink);
}

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

.feature-strip article {
  position: relative;
  padding: 20px;
  overflow: hidden;
}

.feature-strip article::before {
  display: block;
  width: 38px;
  height: 5px;
  margin-bottom: 18px;
  background: var(--green);
  border-radius: 999px;
  content: "";
}

.wide-media {
  margin-top: 28px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}

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

.updates-grid article {
  padding: 18px;
  border-top: 4px solid var(--lavender);
}

.gallery-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.gallery-main {
  min-width: 0;
  margin: 0;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  background: var(--mint);
  transition: transform 380ms var(--ease), filter 240ms var(--ease);
}

.gallery-main figcaption {
  min-height: 28px;
  margin: 10px 4px 0;
  color: var(--ink);
  font-weight: 900;
}

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

.gallery-thumb {
  position: relative;
  min-width: 0;
  padding: 6px;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(74, 50, 90, 0.09);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible,
.gallery-thumb.is-active {
  border-color: var(--pink);
  box-shadow: 0 14px 30px rgba(74, 50, 90, 0.16);
  transform: translateY(-2px);
}

.gallery-thumb img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  border-radius: 5px;
  background: var(--mint);
}

.thumb-check {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(74, 50, 90, 0.20);
  opacity: 0;
  transform: scale(0.84);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-thumb.is-active .thumb-check {
  opacity: 1;
  transform: scale(1);
}

.faq-list {
  display: grid;
  gap: 12px;
  width: 100%;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(74, 50, 90, 0.07);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(255, 183, 202, 0.86);
  box-shadow: 0 16px 34px rgba(74, 50, 90, 0.12);
}

.faq-list details:hover {
  transform: translateY(-3px);
}

.faq-list summary {
  min-height: 58px;
  padding: 16px 52px 16px 18px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  position: relative;
}

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

.faq-list summary::after {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  content: "+";
  transition: background 180ms var(--ease), transform 180ms var(--ease);
}

.faq-list details[open] summary::after {
  content: "-";
  background: var(--pink);
  transform: rotate(180deg);
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--ink-soft);
}

.friend-links {
  padding: 36px 0 40px;
  background: var(--lavender);
  color: var(--ink);
}

.friend-links-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.friend-links h2 {
  font-size: 1.45rem;
  font-weight: 900;
}

.friend-link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 14px;
  max-width: 1120px;
}

.friend-link-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  max-width: min(100%, 520px);
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(74, 50, 90, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 10px 24px rgba(74, 50, 90, 0.10);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.friend-link-list a:hover,
.friend-link-list a:focus-visible {
  color: #9E5DC0;
  border-color: var(--pink);
  box-shadow: 0 14px 30px rgba(74, 50, 90, 0.18);
  transform: translateY(-2px);
}

.floating-detail {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid rgba(255, 183, 202, 0.95);
  border-radius: var(--radius);
  background: var(--pink);
  color: var(--ink);
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 18px 42px rgba(74, 50, 90, 0.26);
  animation: floatingPulse 2.8s var(--ease) infinite;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.floating-detail:hover,
.floating-detail:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(74, 50, 90, 0.32);
}

@keyframes floatingPulse {
  0%,
  100% {
    box-shadow: 0 18px 42px rgba(74, 50, 90, 0.26);
  }
  50% {
    box-shadow: 0 18px 42px rgba(74, 50, 90, 0.26), 0 0 0 8px rgba(255, 183, 202, 0.16);
  }
}

.site-footer {
  padding: 28px 0;
  background: #392544;
  color: rgba(255, 255, 255, 0.76);
}

.notfound-title {
  color: var(--ink);
  text-shadow: none;
  font-size: 2.4rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.92rem;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(var(--header-h) - 2px);
    display: grid;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open .nav-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 12px;
    justify-content: flex-start;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .hero {
    min-height: 760px;
  }

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

  .split,
  .split-reverse,
  .feature-layout {
    grid-template-columns: 1fr;
  }

  .split-reverse .copy,
  .split-reverse .media-frame {
    order: initial;
  }

  .media-frame-large {
    position: static;
  }

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

  .gallery-showcase {
    grid-template-columns: 1fr;
  }

  .gallery-thumb img {
    height: 132px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .brand span {
    max-width: 9em;
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    min-height: 710px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(74, 50, 90, 0.82), rgba(74, 50, 90, 0.64)),
      linear-gradient(0deg, rgba(74, 50, 90, 0.26), rgba(74, 50, 90, 0.08));
  }

  .hero-content {
    padding: 58px 0 42px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

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

  .btn,
  .nav-cta {
    width: 100%;
  }

  .hero-facts,
  .content-grid,
  .feature-strip,
  .updates-grid {
    grid-template-columns: 1fr;
  }

  .content-card,
  .feature-strip article,
  .updates-grid article {
    padding: 16px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .gallery-thumb {
    padding: 4px;
  }

  .gallery-thumb img {
    height: 78px;
  }

  .friend-links {
    padding: 30px 0 34px;
  }

  .friend-link-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .friend-link-list a {
    width: 100%;
    min-height: 46px;
    padding: 8px 14px;
  }

  .floating-detail {
    right: 16px;
    bottom: 16px;
    min-height: 48px;
    padding: 0 16px;
  }

  .footer-inner {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
