/* WINTERHOLT 1:1 — minimal-luxe SIGNATURE
 * Scroll-Snap + Horizontal Pin + Scrollytelling + Floating Dot Nav
 * Pure B&W · Inter Display Light 200/300
 */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@200;300;400;500&family=Inter:wght@300;400;500&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css');

:root {
  --bg-base:     #ffffff;
  --bg-paper:    #fafafa;
  --ink:         #0a0a0a;
  --ink-soft:    #555555;
  --muted:       #aaaaaa;
  --line:        #e8e8e8;

  --display: 'Inter Tight', 'Inter Display', system-ui, -apple-system, sans-serif;
  --text:    'Inter', 'Pretendard', system-ui, sans-serif;
  --korean:  'Pretendard', system-ui, sans-serif;

  --gap: 32px;

  --z-cursor: 50;
  --z-nav: 80;
  --z-dot: 70;
  --z-overlay: 100;
  --z-banner: 120;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;          /* sig #1 */
}
body {
  background: var(--bg-base);
  color: var(--ink);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea {
  font: inherit; color: var(--ink); font-family: var(--text);
  background: var(--bg-paper);
  border: 0; border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: 12px 0;
  font-size: 16px; font-weight: 300;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: 0;
  border-bottom-color: var(--ink);
  border-bottom-width: 2px;
}

/* ── Demo banner ──────────────────────────────────── */
.demo-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-banner);
  background: var(--ink); color: var(--bg-base);
  font-family: var(--text); font-size: 11px; font-weight: 300;
  padding: 8px 16px; text-align: center; letter-spacing: 0.08em;
}
.demo-banner a { color: var(--bg-base); text-decoration: underline; font-weight: 400; }
body.has-banner { padding-top: 32px; }

/* PC Nav Bar — minimal-luxe B&W thin hairline (T12 unique) */
.nav-bar {
  position: fixed; top: 28px; right: 32px; z-index: var(--z-nav);
  display: inline-flex; gap: 28px; align-items: center;
  padding: 14px 0;
}
body.has-banner .nav-bar { top: 60px; }
.nav-bar a {
  font-family: var(--display); font-weight: 300;
  font-size: 13px; color: var(--ink); letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative; padding-bottom: 4px;
  transition: color .2s;
}
.nav-bar a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-bar a:hover::after { transform: scaleX(1); }
.nav-bar .nav-bar-cta {
  border: 1px solid var(--ink); padding: 10px 18px;
  font-weight: 400; letter-spacing: 0.18em;
}
.nav-bar .nav-bar-cta::after { display: none; }
.nav-bar .nav-bar-cta:hover { background: var(--ink); color: var(--bg-base); }
.nav-bar-user {
  display: inline-flex; gap: 14px; align-items: center;
  margin-left: 8px; padding-left: 16px;
  border-left: 1px solid var(--line);
}
.nav-bar-user-link { font-size: 11px !important; }
.nav-bar-user .nav-bar-user-link:last-child {
  border: 1px solid var(--ink); padding: 6px 12px !important;
  letter-spacing: 0.12em;
}
.nav-bar-user .nav-bar-user-link:last-child::after { display: none !important; }
.nav-bar-user .nav-bar-user-link:last-child:hover { background: var(--ink); color: var(--bg-base) !important; }

/* Mobile hamburger — only ≤768px */
.nav-burger {
  position: fixed; top: 32px; right: 32px; z-index: var(--z-nav);
  width: 32px; height: 32px;
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  align-items: center; cursor: pointer;
}
body.has-banner .nav-burger { top: 64px; }
.nav-burger span {
  width: 22px; height: 1px; background: var(--ink);
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-bar    { display: none; }
  .nav-burger { display: flex; }
}

/* Drawer X close (B&W) */
.drawer-close {
  position: absolute; top: 60px; right: 24px;
  width: 48px; height: 48px;
  background: var(--bg-base); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 30px; font-weight: 200;
  color: var(--ink); line-height: 1; cursor: pointer;
  border: 1px solid var(--ink); box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, background .2s; z-index: 2;
}
body.has-banner .drawer-close { top: 80px; }
.drawer-close:hover { background: var(--ink); color: var(--bg-base); transform: rotate(90deg); }
.drawer-divider { width: 60px; height: 1px; background: var(--ink); opacity: 0.3; margin: 12px auto; }
.drawer-user-link { font-size: 24px !important; color: var(--ink-soft) !important; font-weight: 200; }

.nav-brand {
  position: fixed; top: 32px; left: 32px; z-index: var(--z-nav);
  font-family: var(--display); font-weight: 200;
  font-size: 16px; letter-spacing: 0.08em;
  color: var(--ink);
  display: inline-flex; gap: 8px; align-items: baseline;
}
body.has-banner .nav-brand { top: 64px; }
.nav-brand .dot { display: inline-block; width: 4px; height: 4px; background: var(--ink); }

/* ── Floating Dot Nav (right) — sig #4 ────────────── */
.dot-nav {
  position: fixed; right: 32px; top: 50%;
  transform: translateY(-50%); z-index: var(--z-dot);
  display: flex; flex-direction: column; gap: 14px;
}
.dot-nav .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--muted); opacity: 0.4;
  cursor: pointer;
  transition: opacity .25s, background .25s, transform .25s;
}
.dot-nav .dot.active { background: var(--ink); opacity: 1; transform: scale(1.4); }
.dot-nav .dot:hover { opacity: 0.85; }

/* ── Cursor Thin Line — sig #5 ────────────────────── */
.cursor-line {
  position: fixed; top: 0; left: 0;
  width: 30px; height: 1px;
  background: var(--ink);
  pointer-events: none; z-index: var(--z-cursor);
  transform: translate(-100px, -100px);
  transition: transform 0.06s linear;
  display: none;
}
@media (pointer: fine) { .cursor-line { display: block; } }

/* ── Section base ─────────────────────────────────── */
.section {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 32px;
  position: relative;
}
.container { max-width: 1080px; margin: 0 auto; width: 100%; }

.eyebrow {
  font-family: var(--text); font-size: 11px;
  color: var(--ink-soft); letter-spacing: 0.32em;
  text-transform: uppercase; margin-bottom: 24px; font-weight: 400;
}

/* ── Hero ──────────────────────────────────────────── */
#hero { padding: 0; min-height: 100vh; }
.hero-wrap {
  width: 100%; min-height: 100vh;
  display: grid; grid-template-columns: 1.2fr 1fr;
  align-items: center; gap: 0;
}
.hero-img {
  height: 100vh;
  background-size: cover; background-position: center;
  filter: grayscale(100%);
}
.hero-content {
  padding: 80px;
  display: flex; flex-direction: column; gap: 24px;
}
.hero-title {
  font-family: var(--display); font-weight: 200;
  font-size: clamp(48px, 6.5vw, 96px);
  letter-spacing: -0.04em; line-height: 1.0;
  white-space: pre-line; color: var(--ink);
}
.hero-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--ink-soft); max-width: 420px; line-height: 1.85;
  font-weight: 300;
}
.hero-meta {
  font-family: var(--text); font-size: 11px;
  color: var(--muted); letter-spacing: 0.16em;
  text-transform: uppercase; margin-top: 16px;
}
.scroll-cue {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--text); font-size: 10px;
  color: var(--muted); letter-spacing: 0.32em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-cue::after {
  content: ''; width: 1px; height: 32px; background: var(--ink);
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* ── Manifesto Scrollytelling ─────────────────────── */
#manifesto { padding: 0; }
.manifesto-wrap { width: 100%; height: 100vh; position: relative; }
.manifesto-line {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 200;
  font-size: clamp(40px, 6vw, 88px);
  letter-spacing: -0.04em; line-height: 1.0;
  text-align: center;
  opacity: 0;
  transition: opacity .8s ease;
  color: var(--ink);
}
.manifesto-line.active { opacity: 1; }
.manifesto-progress {
  position: absolute; bottom: 80px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
}
.manifesto-progress .pip {
  width: 32px; height: 1px; background: var(--muted); opacity: 0.4;
  transition: opacity .35s, background .35s;
}
.manifesto-progress .pip.active { background: var(--ink); opacity: 1; }

/* ── Faculty Single Card per Snap ─────────────────── */
#faculty { padding: 0; min-height: 100vh; }
.faculty-wrap {
  width: 100%; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
}
.faculty-img-stack {
  position: relative; height: 100vh;
}
.faculty-img-card {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(100%);
  opacity: 0; transition: opacity .8s ease;
}
.faculty-img-card.active { opacity: 1; }
.faculty-info-stack {
  padding: 80px;
  position: relative; min-height: 50vh;
}
.faculty-info-card {
  position: absolute; top: 50%; left: 80px; right: 80px;
  transform: translateY(-50%);
  opacity: 0; transition: opacity .8s ease, transform .8s ease;
}
.faculty-info-card.active { opacity: 1; transform: translateY(-50%); }
.faculty-num {
  font-family: var(--text); font-size: 11px;
  color: var(--muted); letter-spacing: 0.32em;
  margin-bottom: 16px;
}
.faculty-name {
  font-family: var(--display); font-weight: 200;
  font-size: clamp(36px, 4.5vw, 64px);
  letter-spacing: -0.03em; line-height: 1.1;
}
.faculty-role {
  font-family: var(--text); font-size: 13px;
  color: var(--ink-soft); letter-spacing: 0.06em;
  margin-top: 12px;
}
.faculty-prev {
  font-family: var(--text); font-style: italic;
  font-size: 14px; color: var(--ink-soft);
  margin-top: 8px;
}
.faculty-nav {
  position: absolute; bottom: 80px; left: 80px;
  display: flex; gap: 12px;
}
.faculty-pip {
  width: 24px; height: 1px; background: var(--muted); opacity: 0.4;
  cursor: pointer; transition: opacity .25s, background .25s;
}
.faculty-pip.active { background: var(--ink); opacity: 1; }
.faculty-pip:hover { opacity: 0.85; }

/* ── Programs Horizontal Pin — sig #2 ─────────────── */
#programs { padding: 0; min-height: 100vh; }
.programs-pin {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.programs-pin::-webkit-scrollbar { display: none; }
.programs-pin { scrollbar-width: none; }
.programs-track {
  display: flex; height: 100%;
  width: max-content;
}
.program-pane {
  width: 100vw; height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: grid; grid-template-columns: 1fr 1.2fr;
  align-items: center;
}
.program-img {
  height: 100vh;
  background-size: cover; background-position: center;
  filter: grayscale(100%);
}
.program-content {
  padding: 80px;
  display: flex; flex-direction: column; gap: 24px;
}
.program-code {
  font-family: var(--text); font-size: 11px;
  color: var(--muted); letter-spacing: 0.32em;
}
.program-name {
  font-family: var(--display); font-weight: 200;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.03em; line-height: 1.1;
}
.program-desc {
  font-size: 15px; color: var(--ink-soft); line-height: 1.85;
  max-width: 520px; font-weight: 300;
}
.program-progress {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px; pointer-events: none;
}
.program-progress .pip {
  width: 24px; height: 1px; background: var(--muted); opacity: 0.4;
  transition: opacity .25s, background .25s;
}
.program-progress .pip.active { background: var(--ink); opacity: 1; }

/* ── Stats Mega Single per Snap ───────────────────── */
.stat-pane {
  width: 100%; height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px;
  position: relative;
}
.stat-num {
  font-family: var(--display); font-weight: 200;
  font-size: clamp(120px, 18vw, 280px);
  letter-spacing: -0.06em; line-height: 0.9;
  color: var(--ink);
}
.stat-label {
  font-family: var(--text); font-size: 13px;
  color: var(--ink-soft); letter-spacing: 0.16em;
  text-transform: uppercase; margin-top: 32px; max-width: 480px;
  text-align: center; font-weight: 300;
}
.stat-progress {
  position: absolute; bottom: 60px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
}
.stat-progress .pip {
  width: 28px; height: 1px; background: var(--muted); opacity: 0.4;
}
.stat-progress .pip.active { background: var(--ink); opacity: 1; }

/* ── Process Step per Snap ────────────────────────── */
.process-pane {
  width: 100%; height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px;
  max-width: 800px; margin: 0 auto;
  position: relative;
}
.process-num {
  font-family: var(--display); font-weight: 200;
  font-size: clamp(80px, 10vw, 144px);
  letter-spacing: -0.04em; line-height: 1;
  color: var(--muted);
}
.process-name {
  font-family: var(--display); font-weight: 200;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.03em; line-height: 1.1;
  margin-top: 16px;
}
.process-body {
  font-size: 16px; color: var(--ink-soft); line-height: 1.85;
  margin-top: 24px; max-width: 520px; font-weight: 300;
}

/* ── Alumni Single Quote Snap ─────────────────────── */
.alumni-pane {
  width: 100%; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
}
.alumni-img-pane {
  height: 100vh; background-size: cover; background-position: center;
  filter: grayscale(100%);
}
.alumni-content {
  padding: 80px;
  display: flex; flex-direction: column; gap: 24px;
}
.alumni-name {
  font-family: var(--display); font-weight: 200;
  font-size: clamp(36px, 4.5vw, 64px);
  letter-spacing: -0.03em; line-height: 1.1;
}
.alumni-dest {
  font-family: var(--text); font-size: 13px;
  color: var(--ink-soft); letter-spacing: 0.08em;
  text-transform: uppercase;
}
.alumni-quote {
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.01em; line-height: 1.5;
  color: var(--ink); max-width: 520px;
  border-left: 1px solid var(--ink); padding-left: 20px;
}

/* ── Boarding ─────────────────────────────────────── */
.boarding-pane {
  width: 100%; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
}
.boarding-img-pane {
  height: 100vh; background-size: cover; background-position: center;
  filter: grayscale(100%);
}
.boarding-content {
  padding: 80px;
  display: flex; flex-direction: column; gap: 16px;
}
.boarding-name {
  font-family: var(--display); font-weight: 200;
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.03em; line-height: 1.1;
}
.boarding-desc {
  font-size: 15px; color: var(--ink-soft); line-height: 1.85;
  max-width: 480px; font-weight: 300;
}

/* ── Press Single Quote Snap ──────────────────────── */
.press-pane {
  width: 100%; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px;
  text-align: center; max-width: 900px; margin: 0 auto;
  position: relative;
}
.press-source {
  font-family: var(--text); font-size: 11px;
  color: var(--ink-soft); letter-spacing: 0.32em;
  text-transform: uppercase; margin-bottom: 32px;
}
.press-quote {
  font-family: var(--display); font-style: italic; font-weight: 200;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.03em; line-height: 1.3;
  color: var(--ink);
}
.press-img-corner {
  position: absolute; bottom: 60px; right: 60px;
  width: 80px; height: 80px;
  background-size: cover; background-position: center;
  filter: grayscale(100%);
}

/* ── CTA Single ───────────────────────────────────── */
.cta-pane {
  width: 100%; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px;
  text-align: center; max-width: 720px; margin: 0 auto;
  position: relative;
}
.cta-headline {
  font-family: var(--display); font-weight: 200;
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -0.04em; line-height: 1.0;
  margin-bottom: 24px; white-space: pre-line;
}
.cta-body {
  font-size: 16px; color: var(--ink-soft); line-height: 1.85;
  margin-bottom: 48px; max-width: 480px; font-weight: 300;
}
.cta-form {
  width: 100%; display: flex; flex-direction: column; gap: 20px;
  max-width: 480px;
}
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field-label {
  display: block;
  font-family: var(--text); font-size: 11px; color: var(--muted);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 6px; font-weight: 400; text-align: left;
}
.cta-submit {
  width: 100%; padding: 16px;
  background: var(--ink); color: var(--bg-base);
  font-family: var(--text); font-weight: 400; font-size: 13px;
  border: 0;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-top: 12px;
  transition: background .25s, color .25s;
}
.cta-submit:hover { background: var(--bg-base); color: var(--ink); border: 1px solid var(--ink); padding: 15px; }
.cta-meta {
  font-family: var(--text); font-size: 11px;
  color: var(--muted); letter-spacing: 0.08em;
  text-align: center; margin-top: 20px;
}

/* ── Footer Single Line + Signature ───────────────── */
#footer {
  min-height: 60vh;
  scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px 32px;
  background: var(--bg-paper);
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-line {
  font-family: var(--display); font-weight: 200;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.02em; line-height: 1.3;
  color: var(--ink); max-width: 720px;
}
.footer-founder {
  margin-top: 60px; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.footer-founder-img {
  width: 80px; height: 100px;
  background-size: cover; background-position: center;
  filter: grayscale(100%);
}
.footer-founder-name {
  font-family: var(--display); font-style: italic; font-weight: 200;
  font-size: 18px; color: var(--ink);
}
.footer-founder-role {
  font-family: var(--text); font-size: 11px;
  color: var(--muted); letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-meta {
  margin-top: 60px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; gap: 40px; justify-content: center;
  font-family: var(--text); font-size: 11px;
  color: var(--muted); letter-spacing: 0.08em;
  flex-wrap: wrap;
}

/* ── Drawer Overlay ───────────────────────────────── */
.drawer {
  position: fixed; inset: 0;
  background: var(--bg-base);
  z-index: var(--z-overlay);
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
  display: flex; align-items: center; justify-content: center;
  padding: 80px;
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer-inner { display: flex; flex-direction: column; gap: 24px; align-items: center; }
.drawer a {
  font-family: var(--display); font-weight: 200;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.03em; color: var(--ink);
  transform: translateY(20px); opacity: 0;
  transition: opacity .5s, transform .5s, color .25s;
}
.drawer.open a { transform: translateY(0); opacity: 1; }
.drawer.open a:nth-child(1) { transition-delay: 0.1s; }
.drawer.open a:nth-child(2) { transition-delay: 0.15s; }
.drawer.open a:nth-child(3) { transition-delay: 0.20s; }
.drawer.open a:nth-child(4) { transition-delay: 0.25s; }
.drawer.open a:nth-child(5) { transition-delay: 0.30s; }
.drawer.open a:nth-child(6) { transition-delay: 0.35s; }
.drawer a:hover { color: var(--muted); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-wrap, .faculty-wrap, .alumni-pane, .boarding-pane { grid-template-columns: 1fr; }
  .hero-img, .faculty-img-stack, .alumni-img-pane, .boarding-img-pane { height: 50vh; min-height: 320px; }
  .hero-content, .faculty-info-stack, .alumni-content, .boarding-content { padding: 48px 32px; }
  .faculty-info-card { left: 32px; right: 32px; }
  .faculty-nav { left: 32px; bottom: 32px; }
  .program-pane { grid-template-columns: 1fr; height: auto; min-height: 100vh; }
  .program-img { height: 50vh; }
  .program-content { padding: 48px 32px; }
}
@media (max-width: 768px) {
  html { scroll-snap-type: none; }
  .section { min-height: auto; padding: 80px 24px; }
  .stat-pane, .process-pane, .press-pane, .cta-pane, .alumni-pane, .boarding-pane, .manifesto-wrap { min-height: 80vh; }
  .nav-burger { top: 24px; right: 24px; }
  body.has-banner .nav-burger { top: 56px; }
  .nav-brand { top: 24px; left: 24px; font-size: 14px; }
  body.has-banner .nav-brand { top: 56px; }
  .dot-nav { display: none; }
  .scroll-cue { display: none; }
  .footer-meta { flex-direction: column; gap: 12px; }
  .cursor-line { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-snap-type: none; }
  .cursor-line { display: none !important; }
}


/* ===========================================
   RETROFIT v1.27 — motionsites integration
   slug: minimal-luxe
   effects: W, N
   =========================================== */
/* === retrofit v1.27 motionsites card-stack-3d (MIT) === */
@media (prefers-reduced-motion: no-preference) and (min-width: 769px) {
  .card, [class*="-card"], article {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    transform-style: preserve-3d;
  }
  .card:hover, [class*="-card"]:hover, article:hover {
    transform: translate3d(0, -6px, 0) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }
}/* === retrofit v1.27 motionsites liquid-glass (MIT) === */
.btn, .cta-btn, .nav-cta, [class*="-btn"], [class*="-cta"], button[type="submit"] {
  position: relative;
  overflow: hidden;
}
.btn::before, .cta-btn::before, .nav-cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0) 50%, rgba(255,255,255,0.12));
  opacity: 0.7; border-radius: inherit;
  transition: opacity 0.3s;
}
.btn:hover::before, .cta-btn:hover::before, .nav-cta:hover::before { opacity: 1; }