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

:root {
  --bg: #FFF8F0;
  --surface: #FFFFFF;
  --surface-blue: #EFFFFA;
  --surface-gold: #FFF1C7;
  --ink: #24130C;
  --text: #2A1F1A;
  --muted: #75645A;
  --soft: #A9978C;
  --brand: #FF6B35;
  --brand-deep: #B8336A;
  --purple: #2B1A3F;
  --aqua: #00E5B0;
  --gold: #FFD166;
  --line: rgba(255, 107, 53, 0.18);
  --shadow: 0 20px 46px rgba(97, 45, 16, 0.14);
  --shadow-soft: 0 12px 32px rgba(97, 45, 16, 0.10);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --gradient: linear-gradient(135deg, #FF6B35 0%, #FFB703 48%, #00E5B0 100%);
  --gradient-soft: linear-gradient(135deg, #FFF1E9 0%, #F1E9FF 52%, #E9FFF8 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.site-main {
  min-height: 70vh;
}

.container,
.header-inner,
.footer-inner,
.footer-note {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(38, 20, 12, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 26px rgba(97, 45, 16, 0.16);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo img {
  max-height: 44px;
  width: auto;
  display: block;
}

.nav-core {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.nav-core a {
  color: #FFF3E8;
  text-decoration: none;
  border-radius: 999px;
  padding: 8px 12px;
  white-space: nowrap;
  font-size: 15px;
  transition: 0.2s ease;
}

.nav-core a:hover,
.nav-core a.active {
  color: #FFFFFF;
  background: rgba(0, 229, 176, 0.16);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.main-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.main-btn {
  background: var(--gradient);
  color: #FFFFFF;
  box-shadow: 0 14px 32px rgba(255, 107, 53, 0.22);
}

.main-btn:hover,
.outline-btn:hover {
  transform: translateY(-2px);
}

.outline-btn {
  color: var(--ink);
  border-color: rgba(43, 26, 63, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.outline-btn.light {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.10);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 4px;
  background: #FFFFFF;
}

.mobile-menu-toggle {
  display: none;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 15, 10, 0.52);
  backdrop-filter: blur(3px);
  z-index: 10000;
}

.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10001;
  width: min(390px, 92vw);
  height: 100vh;
  padding: 24px;
  background: #FFFDF9;
  box-shadow: -24px 0 60px rgba(36, 19, 12, 0.22);
  transform: translateX(105%);
  transition: transform 0.28s ease;
  overflow-y: auto;
}

.site-drawer.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.drawer-logo img {
  max-height: 42px;
  width: auto;
}

.drawer-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #FFF1E9;
  color: var(--brand-deep);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.drawer-intro {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 18px;
}

.drawer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.drawer-nav a {
  text-decoration: none;
  padding: 11px 13px;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.drawer-nav a:hover,
.drawer-nav a.active {
  background: var(--gradient-soft);
  border-color: rgba(184, 51, 106, 0.24);
  color: var(--brand-deep);
}

.drawer-btn {
  width: 100%;
  margin-top: 20px;
}

.section {
  padding: 96px 0;
}

.section-tint {
  background: linear-gradient(180deg, rgba(233, 255, 248, 0.72), rgba(255, 241, 199, 0.42));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-kicker,
.badge,
.tag,
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #A56A00;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section-kicker::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--gradient);
}

h1,
h2,
h3,
.section-title {
  color: var(--ink);
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 82px);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 18px;
}

h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

p {
  margin-top: 0;
  margin-bottom: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.light-link {
  color: var(--gold);
}

.card,
.zone-card,
.info-card,
.review-card,
.faq-card,
.notice-card,
.visual-card,
.safety-card,
.privacy-card,
.faq-answer {
  background: #FFFFFF;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 78px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 209, 102, 0.34), transparent 26%),
    radial-gradient(circle at 92% 22%, rgba(0, 229, 176, 0.20), transparent 28%),
    linear-gradient(135deg, #FFF8F0 0%, #F3ECFF 48%, #E9FFF8 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  width: 230px;
  height: 230px;
  left: -80px;
  bottom: -100px;
  background: rgba(255, 107, 53, 0.12);
}

.hero-orb-two {
  width: 180px;
  height: 180px;
  right: 28%;
  top: 60px;
  background: rgba(184, 51, 106, 0.10);
}

.home-hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 58px;
  position: relative;
  z-index: 1;
}

.home-hero-copy h1 {
  margin-bottom: 0;
  background: linear-gradient(135deg, #FF6B35, #B8336A 54%, #2B1A3F);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-hero-copy h2 {
  max-width: 700px;
  font-size: clamp(32px, 4.2vw, 58px);
}

.home-hero-copy p,
.page-hero-copy p {
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(184, 51, 106, 0.12);
  color: var(--purple);
  font-size: 14px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.media-frame {
  padding: 14px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 30px 70px rgba(43, 26, 63, 0.18);
  transform: rotate(1.5deg);
}

.media-frame img {
  display: block;
  width: 100%;
  object-fit: contain;
  border-radius: 24px;
}

.floating-card {
  position: absolute;
  width: 210px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  color: var(--ink);
  margin-bottom: 3px;
}

.floating-card span {
  color: var(--muted);
  font-size: 13px;
}

.floating-card-one {
  left: -44px;
  bottom: 40px;
}

.floating-card-two {
  right: -22px;
  top: 28px;
}

.highlight-strip {
  position: relative;
  z-index: 2;
  margin-top: -20px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.highlight-grid article {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.highlight-grid article:last-child {
  border-right: 0;
}

.highlight-grid h2 {
  font-size: 20px;
  margin: 8px 0;
}

.highlight-grid p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

.highlight-dot {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.08);
}

.channel-section {
  padding-top: 74px;
}

.capsule-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.capsule-grid a {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 66px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(97, 45, 16, 0.07);
  text-decoration: none;
  transition: 0.2s ease;
}

.capsule-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 51, 106, 0.32);
}

.capsule-grid strong {
  white-space: nowrap;
  color: var(--brand-deep);
}

.capsule-grid span {
  color: var(--muted);
  font-size: 13px;
}

.split-feature {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 54px;
  align-items: center;
}

.brand-story {
  background: linear-gradient(135deg, rgba(255, 241, 199, 0.52), rgba(243, 236, 255, 0.60), rgba(233, 255, 248, 0.62));
}

.image-stack {
  position: relative;
  min-height: 520px;
}

.content-img,
.zone-card img,
.app-section img,
.hero-visual img,
.page-hero-media img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.primary-image {
  width: 82%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.accent-image {
  width: 55%;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  border: 8px solid var(--bg);
  box-shadow: var(--shadow);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.visual-card {
  overflow: hidden;
  margin: 0;
}

.visual-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: var(--gradient-soft);
}

.visual-card.tall img {
  height: 360px;
}

.visual-card figcaption {
  display: block;
  padding: 18px;
}

.visual-card figcaption strong,
.visual-card figcaption span {
  display: block;
}

.visual-card figcaption span {
  color: var(--muted);
  font-size: 14px;
}

.dark-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #24130C, #2B1A3F);
  color: #FFF3E8;
  box-shadow: var(--shadow);
}

.dark-card h3 {
  color: #FFFFFF;
}

.dark-card p {
  color: rgba(255, 243, 232, 0.76);
}

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

.zone-card {
  overflow: hidden;
}

.zone-card > img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  background: var(--gradient-soft);
}

.zone-body {
  padding: 28px;
}

.zone-body p,
.zone-body li {
  color: var(--muted);
}

.zone-body ul {
  margin: 16px 0 22px;
  padding-left: 20px;
}

.badge {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 209, 102, 0.24);
  color: #8B5800;
}

.reverse-accent .zone-card:nth-child(1) {
  background: linear-gradient(180deg, #FFFFFF, #FFF6F2);
}

.reverse-accent .zone-card:nth-child(2) {
  background: linear-gradient(180deg, #FFFFFF, #F2FFFB);
}

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

.compact-card > img {
  height: 220px;
}

.compact-card .zone-body {
  padding: 24px;
}

.safety-card,
.privacy-card {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
  padding: 28px;
  overflow: hidden;
}

.safety-card {
  background: linear-gradient(145deg, #FFFDFB, #FFF1E9);
}

.privacy-card {
  background: linear-gradient(145deg, #FFFFFF, #E9FFF8);
}

.safety-card img,
.privacy-card img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: contain;
}

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

.review-card {
  padding: 24px;
}

.review-card p {
  color: var(--text);
  font-size: 15px;
}

.review-card span {
  color: var(--soft);
  font-size: 13px;
}

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

.faq-list details {
  padding: 20px 22px;
  border-radius: 18px;
  background: #FFFFFF;
  border: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-weight: 800;
}

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

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.center-action {
  text-align: center;
  margin-top: 26px;
}

.responsible-section,
.compliance-band {
  background:
    radial-gradient(circle at 88% 20%, rgba(0, 229, 176, 0.18), transparent 28%),
    linear-gradient(145deg, #24130C, #2B1A3F);
  color: #FFF3E8;
}

.responsible-section h2,
.compliance-band h2 {
  color: #FFFFFF;
}

.responsible-section p,
.compliance-band p {
  color: rgba(255, 243, 232, 0.78);
}

.responsible-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.responsible-grid img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.about-preview img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 82px 0;
  background:
    radial-gradient(circle at 90% 12%, rgba(0, 229, 176, 0.17), transparent 25%),
    linear-gradient(135deg, #FFF8F0, #F5EDFF 55%, #EFFFFA);
}

.page-hero-copy h1 {
  font-size: clamp(38px, 5.6vw, 68px);
}

.page-hero-media {
  padding: 18px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.page-hero-media img {
  display: block;
  width: 100%;
  max-height: 520px;
}

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

.info-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.info-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 229, 176, 0.08);
}

.card-index {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brand-deep);
  font-weight: 900;
}

.info-card h2 {
  font-size: 25px;
}

.info-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.notice-card {
  padding: 30px;
  background: linear-gradient(145deg, #FFFFFF, #FFF7E6);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 14px 0;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(0, 229, 176, 0.16);
  color: #008E6D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.inline-links a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
}

.featured-review {
  background: linear-gradient(145deg, #2B1A3F, #24130C);
  color: #FFF3E8;
}

.featured-review blockquote {
  margin: 0 0 20px;
  font-size: clamp(21px, 3vw, 30px);
  line-height: 1.55;
  color: #FFFFFF;
}

.featured-review p {
  color: rgba(255, 243, 232, 0.64);
}

.faq-card {
  padding: 30px;
}

.faq-card h2 {
  font-size: 28px;
}

.faq-card p {
  color: var(--muted);
}

.compliance-band {
  text-align: center;
}

.compliance-band .container {
  max-width: 900px;
}

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

.faq-answer {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  padding: 26px;
}

.faq-answer > span {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 900;
  background: var(--gradient);
}

.faq-answer h2 {
  font-size: 25px;
  margin-bottom: 10px;
}

.faq-answer p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 38px;
  border-radius: 28px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-cta > div:first-child {
  max-width: 730px;
}

.cta-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 auto;
}

.site-footer {
  background: #1A0F0A;
  color: #FFF3E8;
  padding: 72px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: 54px;
}

.footer-brand img {
  max-height: 48px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255, 243, 232, 0.67);
  max-width: 470px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer-links h2 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  color: rgba(255, 243, 232, 0.70);
  text-decoration: none;
  margin: 8px 0;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--aqua);
}

.footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  margin-top: 46px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  color: rgba(255, 243, 232, 0.56);
  font-size: 13px;
}

.footer-note p:first-child {
  max-width: 820px;
}

.mobile-quick-nav {
  display: none;
}

@media (max-width: 1080px) {
  .nav-core {
    gap: 2px;
  }

  .nav-core a {
    padding-inline: 9px;
    font-size: 14px;
  }

  .home-hero-grid,
  .page-hero-grid {
    gap: 38px;
  }

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

  .highlight-grid article:nth-child(2) {
    border-right: 0;
  }

  .highlight-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .showcase-grid .dark-card {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 900px) {
  .nav-core {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .desktop-menu-toggle {
    display: none;
  }

  .header-inner {
    position: relative;
  }

  .site-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .header-actions {
    margin-left: auto;
  }

  .home-hero-grid,
  .page-hero-grid,
  .split-feature,
  .responsible-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    text-align: center;
  }

  .home-hero-copy p {
    text-align: left;
  }

  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-visual {
    max-width: 700px;
    margin-inline: auto;
  }

  .floating-card-one {
    left: 0;
  }

  .floating-card-two {
    right: 0;
  }

  .image-stack {
    min-height: 440px;
  }

  .triple-grid {
    grid-template-columns: 1fr;
  }

  .compact-card {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
  }

  .compact-card > img {
    height: 100%;
    min-height: 260px;
  }

  .safety-card,
  .privacy-card {
    grid-template-columns: 1fr;
  }

  .safety-card img,
  .privacy-card img {
    max-height: 230px;
  }

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

  .footer-note {
    flex-direction: column;
  }

  .service-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .container,
  .header-inner,
  .footer-inner,
  .footer-note {
    width: min(100% - 26px, 1240px);
  }

  body {
    padding-bottom: 76px;
  }

  .header-inner {
    min-height: 64px;
  }

  .site-logo img {
    max-height: 38px;
  }

  .header-cta {
    min-height: 38px;
    padding: 7px 13px;
    font-size: 13px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .site-drawer {
    left: 0;
    right: auto;
    transform: translateX(-105%);
    width: min(360px, 92vw);
  }

  .drawer-nav {
    grid-template-columns: 1fr;
  }

  .home-hero,
  .page-hero {
    padding: 58px 0;
  }

  .section {
    padding: 66px 0;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 30px;
  }

  .home-hero-copy h2 {
    font-size: 36px;
  }

  .home-hero-copy p,
  .page-hero-copy p {
    font-size: 15px;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .media-frame {
    transform: none;
  }

  .highlight-strip {
    margin-top: 0;
    padding-top: 12px;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .highlight-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .highlight-grid article:last-child {
    border-bottom: 0;
  }

  .capsule-grid a {
    border-radius: 20px;
    flex: 1 1 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .image-stack {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .primary-image,
  .accent-image {
    position: static;
    width: 100%;
  }

  .accent-image {
    border-width: 0;
  }

  .showcase-grid,
  .dual-grid,
  .info-grid,
  .experience-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid .dark-card {
    grid-column: auto;
  }

  .visual-card.tall img,
  .visual-card img {
    height: auto;
    max-height: 360px;
  }

  .compact-card {
    display: block;
  }

  .compact-card > img {
    min-height: 0;
    height: auto;
  }

  .safety-card,
  .privacy-card,
  .zone-body,
  .review-card,
  .info-card,
  .faq-card,
  .notice-card {
    padding: 22px;
  }

  .faq-answer {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 22px 14px;
  }

  .mobile-quick-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 9998;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 8px;
    border-radius: 22px;
    background: rgba(38, 20, 12, 0.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 34px rgba(26, 15, 10, 0.28);
  }

  .mobile-quick-nav a {
    color: #FFF3E8;
    text-decoration: none;
    font-size: 12px;
    text-align: center;
  }

  .mobile-quick-nav span {
    display: block;
    color: var(--aqua);
    font-size: 18px;
    line-height: 1.1;
    margin-bottom: 2px;
  }
}

@media (max-width: 390px) {
  .header-cta {
    padding-inline: 10px;
  }

  .site-logo img {
    max-width: 82px;
  }

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