/* ============================================================
 DESIGN SYSTEM — Apple style (DESIGN.md)
============================================================ */
:root {
  /* Colors */
  --color-ink: #1d1d1f;
  --color-graphite: #707070;
  --color-slate: #474747;
  --color-ash: #333333;
  --color-fog: #f5f5f7;
  --color-snow: #ffffff;
  --color-obsidian: #000000;
  --color-silver-mist: #e8e8ed;
  --color-azure: #0071e3;
  --color-cobalt-link: #0066cc;

  /* Surfaces */
  --surface-canvas: #f5f5f7;
  --surface-card: #ffffff;
  --surface-frosted: rgba(210, 210, 215, 0.64);

  /* Typography */
  --font-display:
    -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  --font-text:
    -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;

  /* Type scale */
  --text-caption: 12px;
  --text-body-sm: 14px;
  --text-body: 17px;
  --text-subheading: 20px;
  --text-heading-sm: 24px;
  --text-heading: 40px;
  --text-heading-lg: 56px;
  --text-display: 96px;

  /* Letter spacing */
  --tracking-display: -2px;
  --tracking-heading-lg: -0.9px;
  --tracking-heading: -0.6px;
  --tracking-heading-sm: -0.36px;
  --tracking-subheading: -0.2px;
  --tracking-body: -0.1px;
  --tracking-caption: -0.26px;

  /* Border radius */
  --radius-cards: 28px;
  --radius-buttons: 999px;
  --radius-small: 10px;

  /* Spacing */
  --max-width: 1200px;
  --section-v: 120px;
  --card-pad: 28px;

  /* Motion */
  --dur-primary: 0.2s;
  --dur-quick: 0.1s;
  --dur-scroll: 0.32s;
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

/* ============================================================
 RESET
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-text);
  font-size: var(--text-body);
  line-height: 1.47;
  letter-spacing: var(--tracking-body);
  color: var(--color-ink);
  background: var(--surface-canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
  hyphens: manual;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.visuallyhidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
h1,
h2,
h3,
h4,
.hero-headline,
.hero-eyebrow,
.sh-title,
.pain-title,
.step-title,
.cred-name,
.case-title,
.program-name,
.trainer-name,
.cta-headline {
  text-wrap: balance;
}
p,
li,
.hero-sub,
.sh-sub,
.pain-body,
.step-body,
.system-item-desc,
.case-desc,
.program-desc,
.trainer-role,
.bio-intro,
.bio-text,
.footer-info {
  text-wrap: pretty;
}
.navbar,
.gallery-nav,
.cases-nav,
.trainer-tags {
  word-break: normal;
  overflow-wrap: normal;
}
::selection {
  background: rgba(0, 113, 227, 0.18);
}
:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.35);
  outline-offset: 4px;
  border-radius: 10px;
}

/* ============================================================
 LAYOUT
============================================================ */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.section-fog {
  background: var(--surface-canvas);
  padding: var(--section-v) 0;
}
.section-snow {
  background: var(--surface-card);
  padding: var(--section-v) 0;
}
.section-dark {
  background: var(--color-obsidian);
  padding: var(--section-v) 0;
}

/* ============================================================
 FADE-IN
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--dur-primary) var(--ease),
    transform var(--dur-primary) var(--ease);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* ============================================================
 NAVIGATION
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: rgba(245, 245, 247, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(232, 232, 237, 0);
  transition:
    background var(--dur-primary) var(--ease),
    border-color var(--dur-primary) var(--ease);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--color-silver-mist);
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.navbar-logo img {
  height: 28px;
  width: auto;
  aspect-ratio: 5669 / 2079;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.navbar-logo span {
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: var(--tracking-caption);
  color: var(--color-ink);
  transition: color var(--dur-primary) var(--ease);
}
.navbar-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: var(--text-caption);
  letter-spacing: var(--tracking-caption);
  color: var(--color-ash);
  white-space: nowrap;
}
.navbar-links a {
  border-radius: 999px;
  transition: color var(--dur-quick) var(--ease);
}
.navbar-links a:hover {
  color: var(--color-obsidian);
}
.navbar-cta {
  font-size: var(--text-caption);
  font-weight: 400;
  letter-spacing: var(--tracking-caption);
  color: var(--color-snow);
  background: var(--color-azure);
  border-radius: var(--radius-buttons);
  padding: 5px 14px;
  transition: opacity var(--dur-quick) var(--ease);
}
.navbar-cta:hover {
  opacity: 0.85;
}

/* ============================================================
 HERO
============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  background:
    radial-gradient(
      circle at 50% 18%,
      rgba(255, 255, 255, 0.96) 0 18%,
      rgba(245, 245, 247, 0) 42%
    ),
    var(--surface-canvas);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 112px 40px 84px;
  overflow: hidden;
}
.hero::after {
  content: "GOODPT";
  position: absolute;
  left: 50%;
  bottom: -0.18em;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(108px, 18vw, 260px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(232, 232, 237, 0.62);
  pointer-events: none;
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: var(--text-heading-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-heading-sm);
  color: var(--color-ink);
  margin-bottom: 12px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(58px, 8.2vw, var(--text-display));
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: var(--tracking-display);
  color: var(--color-ink);
  margin: 0 auto 20px;
  max-width: 960px;
}
.hero-sub {
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: var(--tracking-subheading);
  color: var(--color-slate);
  margin: 0 auto 32px;
  max-width: 620px;
}
.hero-stage {
  width: min(100%, 1120px);
  margin-top: 48px;
  border-radius: var(--radius-cards);
  background: var(--surface-card);
  overflow: hidden;
  isolation: isolate;
}
.hero-stage img {
  width: 100%;
  height: clamp(360px, 54vw, 650px);
  object-fit: cover;
  object-position: center 38%;
}

/* Buttons */
/* ============================================================
 SECTION HEADERS
============================================================ */
.sh {
  margin-bottom: 60px;
}
.sh-eyebrow {
  font-size: var(--text-body-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-graphite);
  margin-bottom: 10px;
}
.sh-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.2vw, var(--text-heading-lg));
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: var(--tracking-heading-lg);
  color: var(--color-ink);
  margin-bottom: 16px;
  max-width: 760px;
}
.sh-sub {
  font-size: var(--text-subheading);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: var(--tracking-subheading);
  color: var(--color-ink);
  max-width: 560px;
}

/* ============================================================
 SECTION 2 — PAIN POINTS
 White band → Fog cards
============================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pain-card {
  background: var(--surface-canvas);
  border-radius: var(--radius-cards);
  padding: var(--card-pad);
  min-height: 246px;
}
.pain-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(29, 29, 31, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-body-sm);
  font-weight: 700;
  letter-spacing: var(--tracking-caption);
  color: var(--color-ink);
  margin-bottom: 26px;
}
.pain-title {
  font-size: var(--text-heading-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-heading-sm);
  color: var(--color-ink);
  line-height: 1.29;
  margin-bottom: 10px;
}
.pain-body {
  font-size: var(--text-body-sm);
  line-height: 1.5;
  letter-spacing: var(--tracking-caption);
  color: var(--color-graphite);
}

/* ============================================================
 SECTION 3 — APPROACH (4 STEPS)
 Fog band → White cards
============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step-card {
  background: var(--surface-card);
  border-radius: var(--radius-cards);
  padding: var(--card-pad);
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--tracking-heading-lg);
  color: var(--color-silver-mist);
  margin-bottom: 16px;
}
.step-title {
  font-size: var(--text-heading-sm);
  font-weight: 700;
  letter-spacing: var(--tracking-heading-sm);
  color: var(--color-ink);
  line-height: 1.29;
  margin-bottom: 10px;
}
.step-body {
  font-size: var(--text-body-sm);
  line-height: 1.5;
  letter-spacing: var(--tracking-caption);
  color: var(--color-graphite);
}

/* ============================================================
 SECTION 4 — CREDENTIALS
 White band → White card + Dark card
============================================================ */
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cred-card {
  border-radius: var(--radius-cards);
  padding: 48px var(--card-pad);
}
.cred-card-light,
.cred-card-dark {
  background: var(--surface-canvas);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.cred-img-half {
  padding: 40px 40px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cred-img-half img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  display: block;
}
.cred-text-half {
  padding: 16px 40px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cred-badge {
  font-size: 40px;
  margin-bottom: 24px;
}
.cred-org {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: var(--tracking-caption);
  color: var(--color-graphite);
  margin-bottom: 10px;
}
.cred-name {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.5vw, 62px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: var(--tracking-heading);
  color: var(--color-ink);
  margin-bottom: 0;
}

/* ============================================================
 SECTION 5 — PAIN SYSTEM
 Fog band → 2-col text + image
============================================================ */
.system-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.system-img {
  border-radius: var(--radius-cards);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.system-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.system-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.system-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.system-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-snow);
  font-size: 11px;
  margin-top: 3px;
  font-weight: 700;
}
.system-item-title {
  font-size: var(--text-body);
  font-weight: 600;
  letter-spacing: var(--tracking-body);
  color: var(--color-ink);
  margin-bottom: 4px;
}
.system-item-desc {
  font-size: var(--text-body-sm);
  line-height: 1.5;
  letter-spacing: var(--tracking-caption);
  color: var(--color-graphite);
}

/* ============================================================
 SECTION 6 — CASES  (carousel)
============================================================ */
.cases-slider-wrap {
  position: relative;
}
.cases-track-outer {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-cards);
}
.cases-track {
  display: flex;
  gap: 12px;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.case-card {
  flex: 0 0 calc((100% - 24px) / 3);
  background: var(--surface-canvas);
  border-radius: var(--radius-cards);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.case-card-clone {
  pointer-events: none;
}
.case-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.case-img img,
.case-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.case-card:hover .case-img img,
.case-card:hover .case-img video {
  transform: scale(1.03);
}
.case-body {
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.case-tag {
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink);
  margin-bottom: 14px;
}
.case-title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: var(--tracking-heading-sm);
  color: var(--color-ink);
  line-height: 1.3;
  margin-bottom: 16px;
}
.case-desc {
  font-size: var(--text-body-sm);
  line-height: 1.75;
  letter-spacing: var(--tracking-caption);
  color: var(--color-graphite);
}
/* nav controls */
.cases-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
.dotnav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(210, 210, 215, 0.34);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.dotnav-items {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  height: 8px;
}
.dotnav-items li {
  display: flex;
  align-items: center;
  height: 8px;
}
.dotnav-item {
  display: block;
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(29, 29, 31, 0.26);
  cursor: pointer;
  transition: background-color 0.2s var(--ease);
}
.dotnav-item:hover {
  background: rgba(29, 29, 31, 0.56);
}
.dotnav-item.current {
  background: var(--color-ink);
}
.dotnav-item:focus-visible {
  outline: 2px solid rgba(0, 113, 227, 0.5);
  outline-offset: 5px;
}
.carousel-controls {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 4;
}
.carousel-control {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  color: var(--color-ink);
  background: rgba(248, 248, 250, 0.74);
  box-shadow:
    0 14px 34px rgba(29, 29, 31, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0.86;
  pointer-events: auto;
  transform: translateY(-50%);
  transition:
    opacity 0.2s var(--ease),
    transform 0.2s var(--ease),
    background-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.carousel-control--prev {
  left: 14px;
}
.carousel-control--next {
  right: 14px;
}
.carousel-control:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 18px 42px rgba(29, 29, 31, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  transform: translateY(-50%) scale(1.035);
}
.carousel-control:active {
  transform: translateY(-50%) scale(0.96);
}
.carousel-control:focus-visible {
  outline: 2px solid rgba(0, 113, 227, 0.56);
  outline-offset: 4px;
}
.carousel-control svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

/* 케이스 카드 내 미니 이미지 슬라이드 */
.mini-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mini-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.mini-slider-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mini-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}
.mini-slider-btn:hover {
  background: #fff;
}
.mini-slider-btn svg {
  width: 14px;
  height: 14px;
  color: #111;
}
.mini-slider-btn.prev {
  left: 8px;
}
.mini-slider-btn.next {
  right: 8px;
}
.mini-slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.mini-slider-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.mini-slider-dots span.on {
  background: #fff;
  transform: scale(1.3);
}

/* ============================================================
 LIGHTBOX
============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.92);
  transition: transform 0.3s var(--ease);
}
.lightbox.open .lightbox-content {
  transform: scale(1);
}
.lightbox-img,
.lightbox-video {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
  z-index: 2;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lightbox-close svg {
  width: 20px;
  height: 20px;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
  z-index: 2;
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}
.lightbox-nav svg {
  width: 22px;
  height: 22px;
}
.lightbox-nav.prev {
  left: 24px;
}
.lightbox-nav.next {
  right: 24px;
}
.lightbox-nav.visible {
  display: flex;
}
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.05em;
  display: none;
}
.lightbox-counter.visible {
  display: block;
}
/* 클릭 가능 커서 */
.case-img img,
.case-img video,
.mini-slider-track img {
  cursor: zoom-in;
}

/* ============================================================
 SECTION 7 — PROGRAMS
 Fog band → Snow cards
============================================================ */
#overview,
#cases,
#reviews,
#trainers,
#programs,
#space {
  scroll-margin-top: 64px;
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.program-card {
  background: var(--surface-card);
  border-radius: var(--radius-cards);
  padding: var(--card-pad);
  transition: transform var(--dur-primary) var(--ease);
}
.program-card:hover {
  transform: translateY(-4px);
}
.program-icon {
  font-size: 32px;
  margin-bottom: 20px;
}
.program-name {
  font-size: var(--text-body);
  font-weight: 700;
  letter-spacing: var(--tracking-body);
  color: var(--color-ink);
  margin-bottom: 8px;
}
.program-desc {
  font-size: var(--text-body-sm);
  line-height: 1.5;
  letter-spacing: var(--tracking-caption);
  color: var(--color-graphite);
}

/* ============================================================
 SECTION — CENTER GALLERY
============================================================ */
.gallery-slider-wrap {
  position: relative;
  user-select: none;
}
.gallery-track-outer {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-cards);
}
.gallery-track {
  display: flex;
  gap: 12px;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.gallery-slide {
  flex: 0 0 calc((100% - 24px) / 3);
  aspect-ratio: 4/3;
  border-radius: var(--radius-cards);
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  display: block;
}
.gallery-slide:hover img {
  transform: scale(1.04);
}

/* VIP carousel — cropped-photo cards aligned with the site's quiet card UX */
.vip-carousel-wrap .gallery-track-outer {
  border-radius: var(--radius-cards);
}
.vip-carousel-wrap .vip-slide {
  position: relative;
  margin: 0;
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  cursor: default;
  overflow: visible;
  transition: transform var(--dur-primary) var(--ease);
}
.vip-carousel-wrap .vip-slide:hover {
  transform: translateY(-4px);
}
.vip-carousel-wrap .vip-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-cards);
  background: var(--surface-card);
  cursor: zoom-in;
}
.vip-carousel-wrap .vip-slide .vip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease), filter 0.55s var(--ease);
}
.vip-carousel-wrap .vip-slide:hover .vip-photo img {
  transform: scale(1.035);
  filter: saturate(1.03) contrast(1.02);
}
.vip-carousel-wrap .vip-card-body {
  position: relative;
  min-height: 104px;
  padding: 18px 2px 0;
  cursor: default;
}
.vip-carousel-wrap .vip-role {
  margin: 0 0 8px;
  font-size: var(--text-body-sm);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: var(--tracking-caption);
  color: var(--color-graphite);
  word-break: keep-all;
}
.vip-carousel-wrap .vip-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: var(--tracking-heading-sm);
  color: var(--color-ink);
  word-break: keep-all;
}
@media (max-width: 900px) {
  .vip-carousel-wrap .vip-card-body {
    min-height: 100px;
  }
}
@media (max-width: 600px) {
  .vip-carousel-wrap .vip-photo {
    aspect-ratio: 4 / 3;
  }
  .vip-carousel-wrap .vip-card-body {
    min-height: 96px;
    padding-top: 14px;
  }
}

/* Review carousel mirrors getPerView(): desktop 3 cards, tablet 2, mobile 1. */
.review-slide {
  flex: 0 0 calc((100% - 24px) / 3);
  min-width: 0;
}
.review-card {
  min-height: 376px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  background: var(--surface-card);
  border-radius: var(--radius-cards);
  padding: var(--card-pad);
  overflow: hidden;
}
.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.review-kicker {
  max-width: 70%;
  font-size: var(--text-body-sm);
  font-weight: 600;
  line-height: 1.43;
  letter-spacing: var(--tracking-caption);
  color: var(--color-slate);
}
.review-number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: var(--tracking-heading);
  color: var(--color-silver-mist);
  font-variant-numeric: tabular-nums;
}
.review-quote {
  position: relative;
  margin: 0;
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: var(--tracking-body);
  color: var(--color-ink);
  text-align: left;
}
.review-quote::before {
  content: "“";
  display: block;
  height: 28px;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: var(--tracking-heading-lg);
  color: var(--color-ink);
}
.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding-top: 18px;
  border-top: 1px solid var(--color-silver-mist);
  color: var(--color-graphite);
  list-style: none;
}
.review-tags li {
  font-size: var(--text-caption);
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: var(--tracking-caption);
}
.review-tags li:not(:last-child)::after {
  content: "·";
  margin-left: 12px;
  color: var(--color-silver-mist);
}
.gallery-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.review-more-card {
  max-width: 720px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--surface-card);
  border-radius: var(--radius-cards);
  padding: 24px 28px;
  color: var(--color-ink);
  transition: transform var(--dur-primary) var(--ease);
}
.review-more-card:hover {
  transform: translateY(-2px);
}
.review-more-card:focus-visible {
  outline: 3px solid var(--color-ink);
  outline-offset: 4px;
}
.review-more-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.review-more-kicker {
  font-size: var(--text-caption);
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: var(--tracking-caption);
  color: var(--color-graphite);
}
.review-more-title {
  font-size: var(--text-subheading);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: var(--tracking-subheading);
  color: var(--color-ink);
}
.review-more-action {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 16px;
  border-radius: var(--radius-buttons);
  background: var(--surface-frosted);
  color: var(--color-ink);
  font-size: var(--text-body-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-caption);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.review-more-action svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--dur-primary) var(--ease);
}
.review-more-card:hover .review-more-action svg {
  transform: translate(2px, -2px);
}
/* ============================================================
 SECTION 8 — CTA (DARK STAGE)
============================================================ */
.cta-inner {
  text-align: center;
}
.cta-eyebrow {
  font-size: var(--text-body-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, var(--text-heading-lg));
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: var(--tracking-heading-lg);
  color: var(--color-snow);
  margin-bottom: 20px;
}
.cta-sub {
  font-size: var(--text-subheading);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: var(--tracking-subheading);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-azure {
  font-family: var(--font-text);
  font-size: var(--text-body);
  font-weight: 400;
  letter-spacing: var(--tracking-body);
  color: var(--color-snow);
  background: var(--color-azure);
  border-radius: var(--radius-buttons);
  padding: 9px 22px;
  border: none;
  cursor: pointer;
  transition: opacity var(--dur-quick) var(--ease);
}
.btn-azure:hover {
  opacity: 0.85;
}

/* ============================================================
 SECTION — TRAINERS
 Snow band → Fog cards (portrait + info)
============================================================ */
.trainers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.trainer-card {
  background: var(--surface-canvas);
  border-radius: var(--radius-cards);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.trainer-photo {
  flex: 0 0 360px;
  width: 360px;
  height: 360px;
  overflow: hidden;
}
.trainer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s var(--ease);
}
.trainer-card:hover .trainer-photo img {
  transform: scale(1.03);
}
.trainer-info {
  flex: 1;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
}
.trainer-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: var(--tracking-heading);
  color: var(--color-ink);
  margin-bottom: 10px;
}
.trainer-role {
  font-size: var(--text-body-sm);
  font-weight: 400;
  color: var(--color-graphite);
  letter-spacing: var(--tracking-caption);
  line-height: 1.7;
  margin-bottom: 24px;
}
.trainer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.trainer-tag {
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: var(--tracking-caption);
  color: var(--color-ink);
  background: rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-small);
  padding: 5px 12px;
}
.trainer-bio {
}
.bio-intro {
  font-size: var(--text-body);
  line-height: 1.7;
  letter-spacing: var(--tracking-body);
  color: var(--color-ink);
  margin-bottom: 12px;
}
.bio-tagline {
  font-size: var(--text-body-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-caption);
  color: var(--color-ink);
  margin-bottom: 12px;
}
.bio-sns {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--text-body-sm);
  color: var(--color-ink);
  letter-spacing: var(--tracking-caption);
  margin-bottom: 24px;
  text-decoration: none;
}
.bio-sns:hover {
  opacity: 0.7;
}
.bio-sns-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bio-sns-icon svg {
  display: block;
}
.bio-sns-icon--yt {
  background: #ff0000;
  border-radius: 5px;
}
.bio-sns-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.bio-sns-row .bio-sns {
  margin-bottom: 0;
}
.bio-divider {
  height: 1px;
  background: var(--color-silver-mist);
  margin: 24px 0;
}
.bio-section {
  margin-bottom: 18px;
}
.bio-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-graphite);
  margin-bottom: 8px;
}
.bio-text {
  font-size: var(--text-body-sm);
  color: var(--color-ink);
  margin-bottom: 6px;
  letter-spacing: var(--tracking-caption);
}
.bio-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bio-list li {
  font-size: var(--text-body-sm);
  line-height: 1.5;
  letter-spacing: var(--tracking-caption);
  color: var(--color-graphite);
  padding-left: 14px;
  position: relative;
}
.bio-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-silver-mist);
}
@media (max-width: 900px) {
  .trainer-card {
    flex-direction: column;
  }
  .trainer-photo {
    flex: none;
    width: 100%;
    height: 280px;
  }
  .trainer-info {
    padding: var(--card-pad);
  }
}

/* ============================================================
 FOOTER
============================================================ */
.footer {
  background: var(--surface-canvas);
  border-top: 1px solid var(--color-silver-mist);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.footer-brand img {
  height: 16px;
  width: auto;
  mix-blend-mode: multiply;
}
.footer-brand span {
  font-size: var(--text-body-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-caption);
  color: var(--color-ink);
}
.footer-info {
  font-size: var(--text-caption);
  line-height: 1.8;
  letter-spacing: var(--tracking-caption);
  color: var(--color-graphite);
}
.footer-copy {
  width: 100%;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--color-silver-mist);
  font-size: var(--text-caption);
  letter-spacing: var(--tracking-caption);
  color: var(--color-graphite);
}

/* ============================================================
 RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  :root {
    --section-v: 80px;
    --navbar-mobile-height: 92px;
    --hero-mobile-offset: 28px;
    --hero-mobile-top-clearance: calc(
      var(--navbar-mobile-height) + var(--hero-mobile-offset)
    );
  }
  .wrap {
    padding: 0 24px;
  }
  .section-fog,
  .section-snow,
  .section-dark {
    padding: 80px 0;
  }
  .navbar {
    padding: 0 16px;
  }
  .hero {
    padding: var(--hero-mobile-top-clearance) 24px 72px;
  }
  .hero-stage {
    margin-top: 38px;
  }
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cred-grid {
    grid-template-columns: 1fr;
  }
  .system-split {
    grid-template-columns: 1fr;
  }
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-card {
    flex-basis: calc((100% - 12px) / 2);
  }
  .gallery-slide {
    flex-basis: calc((100% - 12px) / 2);
  }
}
@media (max-width: 600px) {
  .wrap {
    padding: 0 20px;
  }
  .hero {
    padding: 86px 20px 60px;
  }
  .hero-headline {
    font-size: 44px;
  }
  .hero-sub {
    font-size: 18px;
  }
  .hero-stage img {
    height: 320px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .case-card,
  .gallery-slide,
  .review-slide {
    flex-basis: 84%;
    width: 84%;
  }
}

/* ============================================================
 HERO ANIMATION
============================================================ */
.hero-animate {
  animation: heroFadeIn 0.42s var(--ease) forwards;
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-animate-delay {
  animation: heroFadeIn 0.42s var(--ease) 0.04s both;
}
.hero-animate-delay2 {
  animation: heroFadeIn 0.42s var(--ease) 0.08s both;
}
.hero-animate-delay3 {
  animation: heroFadeIn 0.42s var(--ease) 0.1s both;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
 MOBILE FIT & RESPONSIVE POLISH
============================================================ */
html,
body {
  max-width: 100%;
}
section,
main,
.wrap,
.navbar,
.hero,
.gallery-slider-wrap,
.cases-slider-wrap {
  max-width: 100%;
}
.wrap {
  width: min(100%, var(--max-width));
}
.navbar-logo span,
.navbar-cta,
.sh-title,
.hero-headline,
.case-title,
.program-name,
.trainer-name,
.footer-info {
  min-width: 0;
}
.navbar-cta {
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .navbar {
    height: var(--navbar-mobile-height);
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 16px 10px;
  }
  .navbar-logo {
    flex: 1 1 auto;
    max-width: calc(100% - 150px);
  }
  .navbar-logo span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .navbar-links {
    position: static;
    order: 3;
    flex: 0 0 100%;
    transform: none;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin: 0 -4px;
    padding: 4px 4px 2px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-padding-inline: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .navbar-links::-webkit-scrollbar {
    display: none;
  }
  .navbar-links a {
    flex: 0 0 auto;
    padding: 6px 12px;
    color: var(--color-graphite);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .navbar-links a:hover,
  .navbar-links a:focus-visible {
    color: var(--color-obsidian);
  }
  .navbar-links a:active {
    color: var(--color-obsidian);
  }
  .navbar-links a:focus-visible {
    outline: none;
    box-shadow:
      inset 0 0 0 2px rgba(0, 113, 227, 0.42),
      0 0 0 2px rgba(255, 255, 255, 0.72);
  }
  .hero-headline {
    font-size: clamp(46px, 10vw, 72px);
  }
  .hero-sub,
  .sh-sub {
    max-width: 100%;
  }
  .cred-img-half {
    padding: 32px 28px 18px;
  }
  .cred-text-half {
    padding: 12px 28px 36px;
  }
  .system-split {
    gap: 36px;
  }
  .review-slide {
    flex: 0 0 calc((100% - 12px) / 2);
    width: auto;
  }
  .lightbox-img,
  .lightbox-video {
    max-width: 92vw;
    max-height: 82vh;
  }
}

@media (max-width: 600px) {
  :root {
    --section-v: 64px;
    --card-pad: 20px;
    --radius-cards: 22px;
    --navbar-mobile-height: 96px;
    --hero-mobile-offset: 40px;
    --hero-mobile-top-clearance: calc(
      var(--navbar-mobile-height) + var(--hero-mobile-offset)
    );
  }
  body {
    overflow-x: clip;
  }
  .wrap {
    padding: 0 16px;
  }
  .section-fog,
  .section-snow,
  .section-dark {
    padding: 64px 0;
  }
  .navbar {
    height: var(--navbar-mobile-height);
    padding: 0 12px;
  }
  .navbar-logo {
    flex: 0 1 auto;
    max-width: 72px;
    gap: 0;
  }
  .navbar-logo img {
    height: 24px;
  }
  .navbar-logo span {
    display: none;
  }
  .navbar-cta {
    font-size: 11px;
    padding: 6px 11px;
  }
  .hero {
    min-height: auto;
    padding: var(--hero-mobile-top-clearance) 16px 56px;
  }
  .hero::after {
    font-size: clamp(72px, 24vw, 112px);
    bottom: -0.12em;
  }
  .hero-eyebrow {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .hero-headline {
    font-size: clamp(38px, 11.5vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.2px;
    max-width: 100%;
  }
  .hero-sub {
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 24px;
    max-width: 100%;
  }
  .hero-stage {
    width: 100%;
    margin-top: 28px;
    border-radius: var(--radius-cards);
  }
  .hero-stage img {
    height: clamp(238px, 70vw, 320px);
  }
  .sh {
    margin-bottom: 36px;
  }
  .sh-title {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.12;
  }
  .sh-sub {
    font-size: 17px;
    line-height: 1.55;
  }
  .pain-card,
  .step-card,
  .program-card {
    min-height: auto;
  }
  .pain-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
  }
  .pain-title,
  .step-title {
    font-size: 21px;
  }
  .step-num {
    font-size: 44px;
  }
  .cred-img-half {
    padding: 24px 20px 12px;
  }
  .cred-text-half {
    padding: 12px 20px 28px;
  }
  .cred-badge {
    font-size: 30px;
    margin-bottom: 16px;
  }
  .cred-org {
    font-size: 20px;
  }
  .cred-name {
    font-size: clamp(30px, 9vw, 40px);
  }
  .system-list {
    gap: 22px;
  }
  .system-item {
    gap: 12px;
  }
  .case-card,
  .gallery-slide,
  .review-slide {
    flex: 0 0 100%;
    width: 100%;
  }
  .review-more-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
    padding: 22px;
  }
  .review-more-action {
    width: 100%;
    justify-content: center;
  }
  .case-body {
    padding: 20px;
  }
  .case-title {
    font-size: 21px;
  }
  .case-desc,
  .bio-text,
  .bio-list li,
  .footer-info {
    overflow-wrap: anywhere;
  }
  .dotnav {
    max-width: calc(100vw - 32px);
    padding: 8px 10px;
  }
  .dotnav-items {
    gap: 6px;
    height: 6px;
  }
  .dotnav-items li {
    height: 6px;
  }
  .dotnav-item {
    flex-basis: 6px;
    width: 6px;
    height: 6px;
  }
  .carousel-control {
    width: 38px;
    height: 38px;
  }
  .carousel-control--prev {
    left: 8px;
  }
  .carousel-control--next {
    right: 8px;
  }
  .carousel-control svg {
    width: 16px;
    height: 16px;
  }
  .mini-slider-btn {
    width: 28px;
    height: 28px;
  }
  .trainer-photo {
    height: clamp(240px, 82vw, 320px);
  }
  .trainer-info {
    padding: 22px 20px 24px;
  }
  .trainer-name {
    font-size: clamp(28px, 8vw, 34px);
  }
  .bio-sns-row {
    gap: 10px;
  }
  .cta-headline {
    font-size: clamp(32px, 9vw, 42px);
  }
  .cta-sub {
    font-size: 17px;
  }
  .btn-azure {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
  .footer {
    padding: 32px 0;
  }
  .footer-inner {
    gap: 18px;
  }
  .footer-brand {
    align-items: flex-start;
  }
  .footer-brand span {
    line-height: 1.35;
  }
  .lightbox-content {
    width: 100%;
    padding: 0 12px;
  }
  .lightbox-img,
  .lightbox-video {
    max-width: 94vw;
    max-height: 76vh;
    border-radius: 10px;
  }
  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
  .lightbox-nav {
    width: 42px;
    height: 42px;
  }
  .lightbox-nav.prev {
    left: 10px;
  }
  .lightbox-nav.next {
    right: 10px;
  }
}

@media (max-width: 360px) {
  .wrap {
    padding: 0 14px;
  }
  .navbar-cta {
    padding-inline: 10px;
  }
  .hero-headline {
    font-size: 37px;
  }
  .hero-sub,
  .sh-sub,
  .cta-sub {
    font-size: 16px;
  }
  .dotnav {
    max-width: calc(100vw - 28px);
  }
  .dotnav-items {
    gap: 5px;
  }
}
