/* ============================================================
   하나타이마사지 — Editorial / Movement
   "흐름과 균형, 매일의 회복"
   ============================================================ */

:root {
  /* palette — bold editorial */
  --plum-900: #1f0d22;
  --plum-800: #2d1b3d;
  --plum-700: #3d2654;
  --plum-100: #efe3f0;

  --coral-500: #ff5a3c;
  --coral-400: #ff7a5e;
  --coral-200: #ffd2c5;

  --peach: #f4cdc1;
  --bone: #faf6f0;
  --sand: #f1ead9;
  --ink:  #15141a;
  --ink-soft: #4a4350;
  --muted: #8b8492;

  /* type */
  --display: "Cormorant Garamond", "Noto Serif KR", serif;
  --serif-ko: "Noto Serif KR", "Nanum Myeongjo", serif;
  --sans: "Noto Sans KR", "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --max: 1320px;
  --pad: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  background: var(--bone);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* 스크롤에 따라 부드럽게 변하는 배경 (script.js가 --bg 변수 갱신) */
  background:
    radial-gradient(at 90% 0%, var(--bg-orb-a, rgba(255, 90, 60, 0.05)), transparent 50%),
    radial-gradient(at 10% 80%, var(--bg-orb-b, rgba(45, 27, 61, 0.04)), transparent 50%),
    var(--bg, var(--bone));
  transition: background-color .8s var(--ease);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.06);
}
.progress__fill {
  height: 100%;
  width: 0%;
  background: var(--coral-500);
  transform-origin: left center;
}

/* ============================================================
   FLOATING ORB — 거대한 그라디언트 오브, 스크롤로 위치/형태 변화
   ============================================================ */
.orb-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.orb {
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform, border-radius;
  mix-blend-mode: multiply;
}
.orb--a {
  top: -20vmax;
  right: -20vmax;
  background: radial-gradient(circle at 30% 30%, var(--coral-400), var(--coral-500) 50%, transparent 70%);
}
.orb--b {
  bottom: -25vmax;
  left: -20vmax;
  background: radial-gradient(circle at 70% 70%, var(--peach), var(--plum-700) 70%, transparent 80%);
  opacity: 0.4;
}
.orb--c {
  top: 30vh;
  left: 40%;
  width: 30vmax;
  height: 30vmax;
  background: radial-gradient(circle, var(--coral-200), transparent 60%);
  opacity: 0.5;
  filter: blur(60px);
}

/* ============================================================
   GRAIN
   ============================================================ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: relative;
  z-index: 6;
  background: var(--plum-900);
  color: var(--peach);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  flex-wrap: wrap;
  gap: 14px;
}
.topbar__group { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral-500);
  box-shadow: 0 0 0 3px rgba(255, 90, 60, 0.2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 90, 60, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(255, 90, 60, 0); }
}
.key { color: var(--coral-400); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.7);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.header.scrolled {
  border-color: rgba(31, 13, 34, 0.08);
  background: rgba(250, 246, 240, 0.92);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand__mark {
  width: 44px; height: 44px;
  background: var(--coral-500);
  color: var(--bone);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}
.brand__name {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  color: var(--plum-900);
  line-height: 1;
}
.brand__sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}
.nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--ink-soft);
}
.nav a {
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 1px;
  background: var(--coral-500);
  transition: width .25s var(--ease), left .25s var(--ease);
}
.nav a:hover { color: var(--plum-800); }
.nav a:hover::after { width: 100%; left: 0; }
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--plum-900);
  color: var(--bone);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.cta:hover { background: var(--coral-500); transform: translateY(-1px); }
.cta svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.cta:hover svg { transform: translate(2px, -2px); }
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--plum-900);
  color: var(--bone);
  align-items: center;
  justify-content: center;
}

main { position: relative; z-index: 3; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(60px, 8vh, 110px) 0 clamp(80px, 14vh, 140px);
}
.hero__pretitle {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral-500);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero__pretitle::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--coral-500);
}
.hero__title {
  font-size: clamp(56px, 11vw, 180px);
  font-weight: 400;
  color: var(--plum-900);
  margin-bottom: 28px;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.hero__title .row { display: block; }
.hero__title .ital {
  font-style: italic;
  color: var(--coral-500);
  font-weight: 500;
}
.hero__title .outline {
  -webkit-text-stroke: 2px var(--plum-800);
  color: transparent;
}
.hero__under {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  margin-top: 80px;
  align-items: end;
}
.hero__sub {
  font-family: var(--serif-ko);
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 560px;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.btn--solid {
  background: var(--coral-500);
  color: var(--bone);
}
.btn--solid:hover { background: var(--plum-900); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--plum-900);
  border: 1px solid var(--plum-800);
}
.btn--ghost:hover { background: var(--plum-900); color: var(--bone); }
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translate(3px, -3px); }

/* ============================================================
   MARQUEE — 끝없이 흐르는 가로 텍스트 스트립
   ============================================================ */
.marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  background: var(--plum-900);
  color: var(--bone);
  padding: 28px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}
.marquee--coral {
  background: var(--coral-500);
  color: var(--plum-900);
}
.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -0.02em;
  will-change: transform;
}
.marquee__track > span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--coral-400);
  display: inline-block;
  flex-shrink: 0;
}
.marquee--coral .marquee__dot { background: var(--plum-900); }

/* ============================================================
   ABOUT — sticky pinned text reveal
   ============================================================ */
.about {
  position: relative;
  padding: clamp(100px, 16vh, 180px) 0;
}
.about__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral-500);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--coral-500);
}
.about__title {
  font-size: clamp(40px, 6vw, 88px);
  color: var(--plum-900);
  letter-spacing: -0.03em;
}
.about__title .ital { font-style: italic; color: var(--coral-500); }
.about__intro {
  font-family: var(--serif-ko);
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  line-height: 1.85;
}

/* sticky reveal block */
.reveal-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.reveal-block__sticky {
  position: sticky;
  top: 120px;
}
.reveal-block__num {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 500;
  color: var(--plum-800);
  line-height: 0.85;
  letter-spacing: -0.04em;
  display: block;
  will-change: transform;
}
.reveal-block__num .small {
  font-size: 0.3em;
  vertical-align: super;
  margin-left: 0.1em;
  color: var(--coral-500);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.reveal-block__caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.reveal-block__list {
  display: grid;
  gap: 60px;
}
.reveal-item {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(31, 13, 34, 0.1);
}
.reveal-item:last-child { border-bottom: 0; padding-bottom: 0; }
.reveal-item h3 {
  font-size: clamp(26px, 2.6vw, 38px);
  color: var(--plum-900);
  margin-bottom: 16px;
}
.reveal-item h3 .ital { font-style: italic; color: var(--coral-500); }
.reveal-item p {
  font-family: var(--serif-ko);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.85;
}
.reveal-item__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--coral-500);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  display: block;
}

/* ============================================================
   HORIZONTAL CAROUSEL — 세로 스크롤 → 가로 이동
   ============================================================ */
.carousel-section {
  position: relative;
  background: var(--plum-900);
  color: var(--bone);
  overflow: hidden;
}
/* 세로로 길게 점유 → 안쪽 sticky 뷰포트가 가로로 이동 */
.carousel-section__track-area {
  height: 360vh; /* 스크롤 거리 */
  position: relative;
}
.carousel-section__viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.carousel-section__inner {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  padding-left: var(--pad);
  padding-right: var(--pad);
  will-change: transform;
}
.carousel-section__heading {
  flex-shrink: 0;
  width: clamp(320px, 30vw, 480px);
  padding-right: 40px;
}
.carousel-section__heading .eyebrow { color: var(--coral-400); }
.carousel-section__heading .eyebrow::before { background: var(--coral-400); }
.carousel-section__heading h2 {
  font-size: clamp(40px, 5vw, 78px);
  color: var(--bone);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.carousel-section__heading h2 .ital { font-style: italic; color: var(--coral-400); }
.carousel-section__heading p {
  font-family: var(--serif-ko);
  font-size: 16px;
  color: rgba(250, 246, 240, 0.7);
  line-height: 1.85;
}
.carousel-section__hint {
  margin-top: 30px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral-400);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.carousel-section__hint svg { width: 28px; height: 14px; }

.card {
  flex-shrink: 0;
  width: clamp(280px, 32vw, 420px);
  height: 540px;
  background: var(--plum-800);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  background: var(--plum-700);
}
.card__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--coral-400);
}
.card__visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  opacity: 0.85;
  color: var(--coral-400);
}
.card__bottom {
  position: relative;
  z-index: 2;
}
.card__name {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  color: var(--bone);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.card__name .ital { font-style: italic; color: var(--coral-400); }
.card__name-ko {
  font-family: var(--serif-ko);
  font-size: 18px;
  color: var(--peach);
  margin-bottom: 18px;
}
.card__desc {
  font-family: var(--serif-ko);
  font-size: 14px;
  color: rgba(250, 246, 240, 0.65);
  line-height: 1.75;
  margin-bottom: 22px;
}
.card__meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 18px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}
.card__time {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(250, 246, 240, 0.6);
  letter-spacing: 0.15em;
}
.card__price {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  color: var(--bone);
  font-weight: 500;
}
.card__price small {
  font-size: 0.5em;
  color: var(--peach);
  font-style: normal;
  margin-left: 3px;
  letter-spacing: 0.1em;
}

/* ============================================================
   QUOTE — sticky pinned with horizontal text scroll
   ============================================================ */
.quote {
  background: var(--coral-500);
  color: var(--plum-900);
  padding: clamp(100px, 18vh, 180px) 0;
  position: relative;
  overflow: hidden;
}
.quote__inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.quote__mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 120px;
  line-height: 0.4;
  color: var(--plum-900);
  margin-bottom: 30px;
  display: block;
}
.quote__text {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.2;
  color: var(--plum-900);
  max-width: 920px;
  margin: 0 auto 36px;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.quote__attr {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--plum-900);
  opacity: 0.8;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: clamp(100px, 16vh, 180px) 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
}
.contact__copy h2 {
  font-size: clamp(44px, 6vw, 96px);
  color: var(--plum-900);
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}
.contact__copy h2 .ital { font-style: italic; color: var(--coral-500); }
.contact__copy p {
  font-family: var(--serif-ko);
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 480px;
}

.contact__list { display: grid; gap: 0; }
.contact__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(31, 13, 34, 0.1);
  align-items: baseline;
}
.contact__item:first-child { border-top: 1px solid rgba(31, 13, 34, 0.1); }
.contact__label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--coral-500);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.contact__value {
  font-family: var(--display);
  font-size: 22px;
  color: var(--plum-900);
  font-weight: 500;
}
.contact__value .ital { font-style: italic; }
.contact__value a:hover { color: var(--coral-500); }

.contact__card {
  background: var(--plum-900);
  color: var(--bone);
  padding: 56px 48px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}
.contact__card::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--coral-500), transparent 70%);
  opacity: 0.4;
  filter: blur(40px);
}
.contact__card-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral-400);
  margin-bottom: 24px;
}
.contact__card h3 {
  font-size: clamp(30px, 3.4vw, 44px);
  color: var(--bone);
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  font-weight: 500;
}
.contact__card h3 .ital { font-style: italic; color: var(--coral-400); }
.contact__card p {
  font-family: var(--serif-ko);
  color: rgba(250, 246, 240, 0.78);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}
.contact__card .btn--solid {
  background: var(--coral-500);
  color: var(--plum-900);
  position: relative;
  z-index: 2;
}
.contact__card .btn--solid:hover { background: var(--bone); color: var(--plum-900); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--plum-900);
  color: rgba(250, 246, 240, 0.55);
  padding: 80px 0 30px;
  position: relative;
  z-index: 4;
}
.footer__giant {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(80px, 16vw, 220px);
  font-weight: 500;
  color: var(--coral-500);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: 60px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250, 246, 240, 0.1);
}
.footer__brand .brand__name { color: var(--bone); }
.footer__brand .brand__sub { color: var(--coral-400); }
.footer__brand p {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.85;
  max-width: 360px;
  font-family: var(--serif-ko);
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral-400);
  margin-bottom: 18px;
  font-weight: 400;
}
.footer__col ul { display: grid; gap: 10px; font-size: 13px; }
.footer__col a:hover { color: var(--coral-400); }
.footer__bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: 0.12em;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__biz { color: rgba(250, 246, 240, 0.4); }

/* ============================================================
   reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: .08s; }
.reveal--d2 { transition-delay: .16s; }
.reveal--d3 { transition-delay: .24s; }

/* split text reveal */
.split-line {
  display: block;
  overflow: hidden;
}
.split-line__inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .9s var(--ease);
}
.split-line.in .split-line__inner { transform: translateY(0); }
.split-line--d1 .split-line__inner { transition-delay: .08s; }
.split-line--d2 .split-line__inner { transition-delay: .16s; }
.split-line--d3 .split-line__inner { transition-delay: .24s; }

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 960px) {
  .nav { display: none; }
  .menu-toggle { display: inline-grid; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: var(--pad);
    background: var(--bone);
    padding: 22px 26px;
    border-radius: 16px;
    box-shadow: 0 24px 60px -30px rgba(0,0,0,.25);
    border: 1px solid rgba(0,0,0,.06);
    gap: 18px;
  }
  .header__inner > .cta { display: none; }
  .hero__under { grid-template-columns: 1fr; gap: 30px; margin-top: 50px; }
  .about__head { grid-template-columns: 1fr; gap: 28px; }
  .reveal-block { grid-template-columns: 1fr; gap: 50px; }
  .reveal-block__sticky { position: relative; top: auto; }
  .contact__grid { grid-template-columns: 1fr; gap: 50px; }
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .carousel-section__track-area { height: 320vh; }
  .carousel-section__heading { width: 80vw; }
  .card { width: 75vw; height: 480px; }
}

@media (max-width: 560px) {
  .marquee__track { font-size: 38px; gap: 36px; }
  .marquee__track > span { gap: 36px; }
  .footer__bottom { justify-content: flex-start; }
  .topbar__inner { font-size: 10px; }
  .topbar__group { gap: 14px; }
  .contact__card { padding: 36px 28px; }
  .reveal-block__num { font-size: 32vw; }
}

@media (prefers-reduced-motion: reduce) {
  .orb, .marquee__track, .carousel-section__inner, .reveal-block__num { transition: none !important; transform: none !important; }
  .carousel-section__track-area { height: auto; }
  .carousel-section__viewport { position: relative; height: auto; }
  .carousel-section__inner { flex-wrap: wrap; }
  html { scroll-behavior: auto; }
}
