:root {
  --black: #0f1115;
  --panel: #171b20;
  --panel-soft: #20262d;
  --yellow: #ffe600;
  --red: #d62828;
  --text: #f5f1e8;
  --muted: #b9b4a9;
  --line: rgba(232, 197, 71, 0.22);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.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;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: "Noto Sans TC", "Microsoft JhengHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

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

.line-icon,
.card-icon,
.line-brand-icon {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-icon {
  width: 20px;
  height: 20px;
}

.btn-icon {
  margin-right: 8px;
}

.card-icon {
  width: 38px;
  height: 38px;
  color: var(--yellow);
  filter: drop-shadow(0 0 14px rgba(255, 230, 0, 0.24));
  stroke-dasharray: 80;
  stroke-dashoffset: 0;
}

.line-brand-icon {
  width: 25px;
  height: 25px;
  fill: currentColor;
  stroke: #fff;
  stroke-width: 2.5;
}

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

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.narrow {
  width: min(860px, calc(100% - 36px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(15, 17, 21, 0.86);
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(128px, 18vw, 178px);
  height: auto;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 16px;
}

.nav-cta {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--yellow);
  color: #121212;
  font-weight: 800;
}

.line-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #06c755;
  color: #fff;
  box-shadow: 0 14px 34px rgba(6, 199, 85, 0.24);
}

.section,
.answer-box {
  padding: clamp(64px, 8vw, 110px) 0;
}

.section-dark {
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 230, 0, 0.16), transparent 26%),
    radial-gradient(circle at 80% 28%, rgba(255, 255, 255, 0.08), transparent 26%),
    var(--black);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0 0 0;
}

.hero-banner {
  min-height: auto;
}

.hero-banner-art {
  display: block;
  width: 100%;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

.hero-banner-art img {
  width: 100%;
  height: auto;
}

.hero-cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 230, 0, 0.18);
  border-radius: 8px;
  background: rgba(15, 17, 21, 0.82);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.hero-cta-strip .pill-list {
  margin: 0;
}

.hero-text,
.section-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 2.5vw, 21px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.pill-list li,
.pain-list span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(245, 241, 232, 0.06);
  color: var(--text);
  font-weight: 400;
  font-size:13px;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 8px;
  padding: 14px 20px;
  font-weight: 950;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn:hover,
.btn:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.sticky-cta:hover,
.sticky-cta:focus-visible {
  transform: translateY(-2px);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 20px 54px rgba(214, 40, 40, 0.34);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(23, 27, 32, 0.82);
  color: var(--text);
}

.answer-box {
  background: #11161a;
  border-top: 1px solid rgba(245, 241, 232, 0.08);
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
}

.answer-grid,
.split {
  display: grid;
  gap: 30px;
}

.camp-batches {
  grid-column: 1 / -1;
  border: 1px solid rgba(255, 230, 0, 0.2);
  border-radius: 8px;
  padding: 18px;
  background: rgba(245, 241, 232, 0.05);
}

.camp-batches-title {
  margin: 0 0 12px;
  color: var(--yellow);
  font-weight: 950;
}

.camp-batches ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.camp-batches li {
  border: 1px solid rgba(255, 230, 0, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(15, 17, 21, 0.72);
  color: var(--text);
  font-weight: 900;
  text-align: center;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.14;
  font-weight: 950;
}

h3 {
  margin: 8px 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.privacy-main h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 950;
}

.privacy-updated {
  color: var(--yellow);
  font-weight: 900;
}

.policy-card {
  border: 1px solid rgba(255, 230, 0, 0.18);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 54px);
  background: linear-gradient(160deg, rgba(23, 27, 32, 0.98), rgba(15, 17, 21, 0.78));
  box-shadow: var(--shadow);
}

.policy-card h2 {
  margin-top: 34px;
  font-size: clamp(24px, 3.2vw, 34px);
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
}

.policy-card a {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.policy-card ul {
  padding-left: 1.25em;
}

.privacy-back {
  margin-top: 20px;
}

.pain-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-vantix {
  overflow: hidden;
}

.about-grid {
  display: grid;
  gap: clamp(30px, 5vw, 58px);
  align-items: center;
}

.about-copy .section-lead {
  max-width: 720px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.about-points article {
  border: 1px solid rgba(255, 230, 0, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: rgba(245, 241, 232, 0.06);
}

.about-points strong {
  display: block;
  color: var(--yellow);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.1;
}

.about-points span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 118px;
  grid-auto-flow: dense;
  gap: 10px;
}

.about-photo {
  position: relative;
  margin: 0;
  border: 1px solid rgba(255, 230, 0, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: #11161a;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.about-photo img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.about-photo figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.about-photo-large {
  grid-column: span 8;
  grid-row: span 3;
}

.about-photo-wide {
  grid-column: span 4;
  grid-row: span 3;
}

.about-photo:nth-child(3),
.about-photo:nth-child(4),
.about-photo:nth-child(5),
.about-photo:nth-child(6) {
  grid-column: span 3;
  grid-row: span 2;
}

.about-photo:nth-child(n + 7) {
  grid-column: span 3;
  grid-row: span 2;
}

.pain-section {
  position: relative;
  overflow: visible;
  padding-top: 0;
  padding-bottom: 0;
  min-height: clamp(560px, 43vw, 720px);
}

.pain-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 43vw, 720px);
}

.pain-copy {
  width: min(48%, 620px);
  padding: clamp(54px, 7vw, 100px) 0 clamp(74px, 8vw, 118px);
}

.image-panel {
  margin: 0;
  border: 0px solid rgba(232, 197, 71, 0.2);
  border-radius: 0px;
  overflow: hidden; 
}

.image-panel img {
  width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: cover;
}

.image-panel.pain-visual {
  position: absolute;
  z-index: 1;
  right: max(18px, calc((100vw - 1120px) / 2 - 42px));
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: clamp(520px, 44vw, 760px);
  height: clamp(560px, 46vw, 760px);
  margin: 0;
  overflow: visible;
  pointer-events: none;
}

.image-panel.pain-visual img {
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  transform: translateX(4%);
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.45));
}

.cards {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.metric-card,
.feature-card {
  min-height: 210px;
  border: 1px solid rgba(232, 197, 71, 0.18);
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(160deg, rgba(32, 38, 45, 0.96), rgba(15, 17, 21, 0.72));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.metric-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 230, 0, 0.42);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.32);
}

.metric-card strong,
.card-number {
  color: var(--yellow);
  font-size: 16px;
  font-weight: 950;
}

.metric-card p,
.feature-card p {
  color: var(--muted);
}

.trust {
  overflow: hidden;
}

.trust-layout {
  display: grid;
  justify-items: center;
  text-align: center;
}

.trust-copy {
  width: min(820px, 100%);
}

.trust-copy .section-lead {
  margin-right: auto;
  margin-left: auto;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
  text-align: left;
}

.trust-stats div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(245, 241, 232, 0.06);
}

.trust-stats dt {
  color: var(--yellow);
  font-size: 30px;
  font-weight: 950;
}

.trust-stats dd {
  margin: 0;
  color: var(--muted);
}

.trust-visual {
  width: min(980px, 100%);
  margin-top: clamp(24px, 4vw, 46px);
  overflow: visible;
}

.trust-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 30px 54px rgba(0, 0, 0, 0.36));
}

.schedule-table-wrap {
  display: none;
  overflow-x: auto;
  margin-top: 28px;
  border: 1px solid rgba(232, 197, 71, 0.28);
  border-radius: 8px;
  background: #101317;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.schedule-table th,
.schedule-table td {
  border-bottom: 1px solid rgba(245, 241, 232, 0.09);
  border-right: 1px solid rgba(245, 241, 232, 0.07);
  padding: 16px 14px;
  vertical-align: top;
}

.schedule-table th {
  background: rgba(232, 197, 71, 0.92);
  color: #111;
  font-weight: 950;
}

.schedule-table td:first-child {
  color: var(--yellow);
  font-weight: 900;
  white-space: nowrap;
}

.mobile-schedule {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.day-card {
  border: 1px solid rgba(232, 197, 71, 0.22);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(23, 27, 32, 0.98), rgba(15, 17, 21, 0.72));
  overflow: hidden;
}

.day-card summary {
  cursor: pointer;
  padding: 18px;
  color: var(--yellow);
  font-size: 20px;
  font-weight: 950;
}

.day-card ul {
  margin: 0;
  padding: 0 18px 18px;
  list-style: none;
}

.day-card li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(245, 241, 232, 0.08);
}

.day-card time {
  color: var(--yellow);
  font-weight: 900;
}

.schedule-note {
  margin-top: 22px;
  border-left: 4px solid var(--yellow);
  padding: 16px 18px;
  background: rgba(245, 241, 232, 0.05);
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--yellow);
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.text-link:hover,
.text-link:focus-visible {
  color: #fff06a;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 6, 0.86);
  backdrop-filter: blur(12px);
}

.image-lightbox__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1120px, 100%);
  max-height: min(92vh, 980px);
  border: 1px solid rgba(255, 230, 0, 0.32);
  border-radius: 8px;
  background: #0f1115;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.62);
  overflow: hidden;
}

.image-lightbox__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.1);
}

.image-lightbox__header p {
  margin: 0;
  color: var(--yellow);
  font-weight: 950;
}

.image-lightbox__close {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(245, 241, 232, 0.16);
  border-radius: 8px;
  background: rgba(245, 241, 232, 0.08);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox__body {
  overflow: auto;
  padding: 14px;
}

.image-lightbox__body img {
  width: min(100%, 1080px);
  height: auto;
  margin: 0 auto;
  border-radius: 4px;
}

.mom-section {
  position: relative;
  overflow: visible;
  padding: 0;
  min-height: clamp(560px, 43vw, 720px);
}

.mom-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(15, 17, 21, 0.98) 0%, rgba(15, 17, 21, 0.94) 42%, rgba(15, 17, 21, 0.7) 58%, rgba(15, 17, 21, 0.86) 100%),
    radial-gradient(circle at 78% 42%, rgba(255, 230, 0, 0.14), transparent 32%);
  pointer-events: none;
}

.mom-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 43vw, 720px);
}

.mom-copy {
  position: relative;
  z-index: 3;
  width: min(48%, 620px);
  padding: clamp(54px, 7vw, 100px) 0 clamp(74px, 8vw, 118px);
}

.mom-copy .btn {
  margin-top: 10px;
}

.mom-visual {
  position: absolute;
  right: clamp(-280px, -10vw, -120px);
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: clamp(560px, 45vw, 820px);
  height: clamp(650px, 54vw, 860px);
  margin: 0;
  overflow: visible;
  pointer-events: none;
}

.mom-visual img {
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 34px 64px rgba(0, 0, 0, 0.46));
}

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

details {
  border: 1px solid rgba(232, 197, 71, 0.16);
  border-radius: 8px;
  background: var(--panel);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-cta {
  padding: clamp(70px, 10vw, 130px) 0;
}

.final-grid {
  display: grid;
  gap: 26px;
  align-items: center;
}

.qr-card {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(232, 197, 71, 0.36);
  border-radius: 8px;
  padding: 18px;
  background: rgba(23, 27, 32, 0.92);
  box-shadow: var(--shadow);
}

.qr-card img {
  border-radius: 8px;
  max-height: 560px;
  width: 100%;
  object-fit: cover;
  object-position: bottom center;
}

.qr-title {
  margin: 0;
  color: var(--yellow);
  font-size: 24px;
  font-weight: 950;
}

.final-logo {
  width: min(238px, 68vw);
  height: auto;
  margin: 0 0 26px;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.36));
}

.contact {
  color: var(--muted);
}

.contact a,
.footer-phone,
.footer-policy {
  color: var(--text);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(255, 230, 0, 0.42);
  text-underline-offset: 4px;
}

.contact a:hover,
.contact a:focus-visible,
.footer-phone:hover,
.footer-phone:focus-visible,
.footer-policy:hover,
.footer-policy:focus-visible {
  color: var(--yellow);
}

.site-footer {
  padding: 28px 0 86px;
  background: #090b0d;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  gap: 18px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 241, 232, 0.14);
  border-radius: 8px;
  background: rgba(245, 241, 232, 0.06);
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 230, 0, 0.42);
  background: rgba(255, 230, 0, 0.12);
}

.social-links .social-line {
  background: rgba(6, 199, 85, 0.14);
  color: #06c755;
}

.social-icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon-line {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: #fff;
  stroke-width: 2.4;
}

.sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 18px 52px rgba(214, 40, 40, 0.34);
}

.reveal,
.reveal-on-load {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-on-load {
  animation: revealUp 700ms cubic-bezier(.2, .75, .2, 1) forwards;
}

.delay-2 {
  animation-delay: 160ms;
}

.reveal.is-visible {
  animation: revealUp 720ms cubic-bezier(.2, .75, .2, 1) forwards;
}

.metric-card:nth-child(2),
.feature-card:nth-child(2) {
  transition-delay: 40ms;
}

.metric-card:nth-child(3),
.feature-card:nth-child(3) {
  transition-delay: 80ms;
}

.metric-card:nth-child(4),
.feature-card:nth-child(4) {
  transition-delay: 120ms;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .card-icon {
    animation: iconTrace 2.8s ease-in-out infinite;
  }

  .price,
  .save {
    animation: offerGlow 3.8s ease-in-out infinite;
  }
}

@keyframes iconTrace {
  0%,
  100% {
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dashoffset: 18;
  }
}

@keyframes offerGlow {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(255, 230, 0, 0);
  }
  50% {
    text-shadow: 0 0 22px rgba(255, 230, 0, 0.25);
  }
}

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

  .reveal,
  .reveal-on-load {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 760px) {
  .desktop-nav {
    display: flex;
  }

  .answer-grid,
  .split,
  .final-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .camp-batches ul {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }

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

  .schedule-table-wrap {
    display: block;
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(5, auto);
    grid-auto-flow: column;
    align-items: start;
  }

  .mobile-schedule {
    display: none;
  }

  .site-footer {
    padding-bottom: 28px;
  }

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

  .social-links {
    justify-content: flex-end;
  }

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 1040px) {
  .cards.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 760px) and (max-width: 1180px) {
  .mom-copy {
    width: min(46%, 520px);
  }

  .mom-visual {
    right: clamp(-210px, -13vw, -96px);
    width: clamp(540px, 52vw, 690px);
    height: clamp(610px, 54vw, 760px);
  }
}

@media (max-width: 759px) {
  .about-points {
    grid-template-columns: 1fr;
  }

  .about-gallery {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 78vw);
    grid-template-columns: none;
    grid-auto-rows: 340px;
    gap: 12px;
    margin-right: calc((100vw - 100%) / -2);
    padding-right: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .about-photo,
  .about-photo-large,
  .about-photo-wide,
  .about-photo:nth-child(2),
  .about-photo:nth-child(3),
  .about-photo:nth-child(4),
  .about-photo:nth-child(5),
  .about-photo:nth-child(n + 6) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: auto;
    scroll-snap-align: start;
  }

  .mom-section {
    overflow: hidden;
    min-height: 0;
  }

  .mom-section::before {
    background:
      linear-gradient(180deg, rgba(15, 17, 21, 0.98) 0%, rgba(15, 17, 21, 0.88) 44%, rgba(15, 17, 21, 0.38) 100%),
      radial-gradient(circle at 58% 68%, rgba(255, 230, 0, 0.12), transparent 34%);
  }

  .mom-layout {
    display: block;
    min-height: 0;
  }

  .mom-copy {
    width: 100%;
    padding: 58px 0 8px;
  }

  .mom-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(118%, 680px);
    height: auto;
    margin: -4px auto 0;
    justify-content: center;
  }

  .mom-visual img {
    width: 100%;
    height: auto;
    transform: translateX(4%);
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 10px 14px;
  }

  .nav-cta {
    display: none;
  }

  .brand-logo {
    width: 118px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-actions .btn,
  .final-actions .btn {
    width: 100%;
  }

  .pain-section {
    min-height: 0;
    padding-bottom: 0;
  }

  .pain-content {
    display: block;
    min-height: 0;
  }

  .pain-copy {
    width: 100%;
    padding: 54px 0 18px;
  }

  .image-panel.pain-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 390px;
    margin-top: -36px;
  }

  .image-panel.pain-visual img {
    width: auto;
    height: 100%;
    transform: translateX(0);
  }

  .trust-stats {
    grid-template-columns: 1fr;
  }

  .day-card li {
    grid-template-columns: 84px 1fr;
  }
}
