/* ==========================================================================
   원더트립 / WonderTrip — #5 HORIZONTAL FILMSTRIP REEL
   Pure static. System fonts only. Cinematic cool slate theme.
   ========================================================================== */

:root {
  --bg: #0b1120;
  --bg-2: #111827;
  --bg-3: #172033;
  --panel: #1e293b;
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(148, 163, 184, 0.34);
  --text: #e8edf5;
  --muted: #9aa7bd;
  --faint: #6b7890;
  --accent: #2dd4bf;
  --accent-2: #38bdf8;
  --accent-warm: #fca35c;
  --white: #f7fafc;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.35);
  --maxw: 1280px;
  --pad-inline: clamp(16px, 5vw, 40px);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.1px;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

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

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

p { margin: 0; word-break: keep-all; }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- layout helpers ---------- */
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}

.section { padding-block: clamp(56px, 8vw, 104px); }

.section--tight { padding-block: clamp(40px, 6vw, 72px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow svg { width: 16px; height: 16px; }

.section-head { max-width: 660px; margin-bottom: clamp(28px, 4vw, 44px); }
.section-head.center { margin-inline: auto; text-align: center; }

.section-title {
  font-size: clamp(1.7rem, 4.4vw, 2.9rem);
}

.section-sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
}

.accent { color: var(--accent); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: var(--accent);
  color: #05201d;
  box-shadow: 0 10px 26px rgba(45, 212, 191, 0.28);
}
.btn--primary:hover { transform: translateY(-2px); background: #45e0cd; }

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  color: var(--white);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--sm { padding: 10px 18px; font-size: 0.86rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 17, 32, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}
.brand .brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}
.brand-name { font-size: 1.12rem; }
.brand-name small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  color: var(--accent);
  font-weight: 700;
  margin-top: 1px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
}
.nav-desktop a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0.86;
  transition: opacity 0.15s ease, color 0.15s ease;
}
.nav-desktop a:hover { opacity: 1; color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0;
  position: relative;
  z-index: 90;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.24s ease, opacity 0.2s ease, top 0.24s ease;
}
.hamburger span { top: 50%; transform: translate(-50%, -50%); }
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }
body.drawer-open .hamburger span { background: transparent; }
body.drawer-open .hamburger span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
body.drawer-open .hamburger span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ---------- drawer ---------- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.6);
  backdrop-filter: blur(2px);
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
body.drawer-open .drawer-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 340px);
  height: 100dvh;
  overflow-y: auto;
  background: #0d1526;
  border-left: 1px solid var(--line-strong);
  z-index: 80;
  padding: 22px 22px calc(30px + env(safe-area-inset-bottom));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.26s ease, visibility 0.26s ease;
  display: flex;
  flex-direction: column;
}
body.drawer-open .drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.drawer-close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.drawer-close svg { width: 20px; height: 20px; }

.drawer-nav { display: flex; flex-direction: column; gap: 4px; }
.drawer-nav a {
  padding: 14px 8px;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-nav a:hover { color: var(--accent); }
.drawer-nav a svg { width: 18px; height: 18px; opacity: 0.5; }

.drawer-cta {
  display: none; /* base hidden — shown in mobile media query */
  margin-top: 26px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: radial-gradient(120% 90% at 80% -10%, rgba(56, 189, 248, 0.16), transparent 55%),
    radial-gradient(90% 80% at 0% 0%, rgba(45, 212, 191, 0.12), transparent 50%),
    var(--bg);
  overflow: hidden;
  padding-block: clamp(48px, 7vw, 92px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.hero-copy { min-width: 0; }

.hero h1 {
  font-size: clamp(2.3rem, 6.4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.hero h1 .line-accent { color: var(--accent); }

.hero-lead {
  margin-top: 22px;
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  color: var(--muted);
  max-width: 30ch;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-meta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 42px);
}
.hero-meta .stat-num {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
}
.hero-meta .stat-lbl {
  font-size: 0.82rem;
  color: var(--faint);
  letter-spacing: 0.02em;
}

/* hero visual — featured cinematic image + film frame accents */
.hero-visual {
  position: relative;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-strong);
}
.hero-visual img {
  width: 100%;
  height: 100%;
}
.hero-visual .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.1) 0%, rgba(11, 17, 32, 0.05) 45%, rgba(11, 17, 32, 0.82) 100%);
}
.hero-visual .tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(45, 212, 191, 0.18), rgba(56, 189, 248, 0.14));
  mix-blend-mode: overlay;
}
.hero-visual .caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
}
.hero-visual .caption .loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-visual .caption .loc svg { width: 14px; height: 14px; }
.hero-visual .caption h3 {
  margin-top: 6px;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--white);
}
.film-perf {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 12px 0;
  z-index: 2;
}
.film-perf.left { left: 0; }
.film-perf.right { right: 0; }
.film-perf i {
  display: block;
  width: 8px;
  height: 12px;
  margin-inline: auto;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 2px;
}

/* ==========================================================================
   FILMSTRIP REEL
   ========================================================================== */
.reel-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow: hidden;
}

.reel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.reel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reel-counter {
  font-size: 0.9rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  min-width: 60px;
  text-align: center;
}
.reel-counter b { color: var(--white); font-weight: 800; }

.reel-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.reel-arrow:hover:not(:disabled) {
  background: var(--accent);
  color: #05201d;
  border-color: var(--accent);
  transform: translateY(-2px);
}
.reel-arrow:disabled { opacity: 0.35; cursor: not-allowed; }
.reel-arrow svg { width: 20px; height: 20px; }

/* The horizontal scroller — clipped inside its OWN container */
.reel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.reel-viewport::-webkit-scrollbar { display: none; }

.reel-track {
  display: flex;
  gap: clamp(14px, 2vw, 22px);
}

.reel-slide {
  position: relative;
  flex: 0 0 clamp(280px, 78vw, 720px);
  min-width: 0;
  scroll-snap-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.reel-slide img {
  width: 100%;
  height: 100%;
  transition: transform 6s ease;
}
.reel-viewport:not(.no-motion) .reel-slide:hover img { transform: scale(1.08); }

.reel-slide .slide-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.05) 0%, rgba(11, 17, 32, 0.15) 40%, rgba(11, 17, 32, 0.9) 100%);
}
.reel-slide .slide-tint {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  mix-blend-mode: overlay;
}
.reel-slide .slide-body {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 2;
}
.reel-slide .slide-idx {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}
.reel-slide .slide-title {
  margin-top: 6px;
  font-size: clamp(1.4rem, 3.4vw, 2.4rem);
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}
.reel-slide .slide-mood {
  margin-top: 8px;
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  color: rgba(232, 237, 245, 0.9);
  max-width: 42ch;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}
.reel-slide .slide-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
}
.reel-slide .slide-link svg { width: 16px; height: 16px; transition: transform 0.18s ease; }
.reel-slide .slide-link:hover svg { transform: translateX(4px); }

.reel-hint {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--faint);
  display: flex;
  align-items: center;
  gap: 8px;
}
.reel-hint svg { width: 16px; height: 16px; }

/* ==========================================================================
   CURATED GRID (기획전 / 시즌)
   ========================================================================== */
.curated-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: clamp(16px, 2.4vw, 26px);
}

.curated-card {
  position: relative;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.curated-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.curated-card img { position: absolute; inset: 0; width: 100%; height: 100%; }
.curated-card .cc-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.1) 30%, rgba(11, 17, 32, 0.9) 100%);
}
.curated-card .cc-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(16px, 2.4vw, 22px);
  z-index: 2;
}
.curated-card .cc-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #05201d;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.curated-card .cc-title { font-size: 1.2rem; color: var(--white); }
.curated-card .cc-desc { margin-top: 6px; font-size: 0.9rem; color: var(--muted); }
.curated-card .cc-meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--faint);
}
.curated-card .cc-price { color: var(--accent); font-weight: 800; font-size: 0.98rem; }

/* ==========================================================================
   MAGAZINE PREVIEW / ARTICLE CARDS
   ========================================================================== */
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: clamp(18px, 2.6vw, 28px);
}

.mag-card {
  min-width: 0;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.mag-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.mag-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.mag-thumb img { width: 100%; height: 100%; transition: transform 0.5s ease; }
.mag-card:hover .mag-thumb img { transform: scale(1.06); }
.mag-thumb .mag-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  background: rgba(11, 17, 32, 0.72);
  border: 1px solid var(--line-strong);
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.mag-body {
  padding: clamp(18px, 2.4vw, 24px);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mag-body .mag-date { font-size: 0.8rem; color: var(--faint); letter-spacing: 0.03em; }
.mag-body h3 { margin-top: 8px; font-size: 1.18rem; color: var(--white); }
.mag-body p { margin-top: 10px; color: var(--muted); font-size: 0.94rem; }
.mag-body .mag-read {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
}
.mag-body .mag-read svg { width: 16px; height: 16px; transition: transform 0.18s ease; }
.mag-card:hover .mag-read svg { transform: translateX(4px); }

/* ==========================================================================
   STATS COUNT-UP
   ========================================================================== */
.stats-section {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(56, 189, 248, 0.1), transparent 55%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: clamp(18px, 3vw, 30px);
}
.stat-box {
  min-width: 0;
  text-align: center;
  padding: clamp(20px, 3vw, 30px) 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}
.stat-box .num {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat-box .num .suffix { color: var(--white); font-size: 0.6em; }
.stat-box .lbl { margin-top: 12px; color: var(--muted); font-size: 0.96rem; }

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}
.review-card {
  min-width: 0;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-stars { display: flex; gap: 3px; color: var(--accent-warm); }
.review-stars svg { width: 18px; height: 18px; }
.review-card p { color: var(--text); font-size: 0.98rem; line-height: 1.7; }
.review-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #05201d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.review-who .rw-name { font-weight: 700; color: var(--white); font-size: 0.94rem; }
.review-who .rw-trip { font-size: 0.82rem; color: var(--faint); }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  padding: clamp(34px, 6vw, 68px) clamp(24px, 5vw, 60px);
  background:
    linear-gradient(120deg, rgba(45, 212, 191, 0.14), rgba(56, 189, 248, 0.1)),
    var(--bg-3);
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.7rem, 4.4vw, 2.8rem);
  color: var(--white);
}
.cta-banner p {
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.8vw, 1.12rem);
  max-width: 46ch;
  margin-inline: auto;
}
.cta-banner .cta-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
  position: relative;
  padding-block: clamp(48px, 8vw, 92px);
  background:
    radial-gradient(90% 120% at 90% -10%, rgba(56, 189, 248, 0.14), transparent 55%),
    radial-gradient(80% 100% at 0% 0%, rgba(45, 212, 191, 0.1), transparent 50%),
    var(--bg);
  overflow: hidden;
}
.page-hero .crumbs {
  font-size: 0.84rem;
  color: var(--faint);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.page-hero .crumbs a:hover { color: var(--accent); }
.page-hero h1 {
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  max-width: 18ch;
}
.page-hero .page-lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  max-width: 52ch;
}

/* filter chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.chip:hover, .chip.is-active {
  background: var(--accent);
  color: #05201d;
  border-color: var(--accent);
}

/* ==========================================================================
   MAGAZINE FEATURE (magazine.html big image + text)
   ========================================================================== */
.mag-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.mag-feature .mf-media {
  position: relative;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.mag-feature .mf-media img { width: 100%; height: 100%; }
.mag-feature .mf-media .mf-tint {
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(45, 212, 191, 0.14), rgba(56, 189, 248, 0.1));
  mix-blend-mode: overlay;
}
.mag-feature .mf-body { min-width: 0; }
.mag-feature .mf-cat {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
}
.mag-feature .mf-body h2 {
  margin-top: 12px;
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  color: var(--white);
}
.mag-feature .mf-body p { margin-top: 16px; color: var(--muted); font-size: 1.02rem; }
.mag-feature .mf-body .mf-meta {
  margin-top: 20px; display: flex; gap: 18px; flex-wrap: wrap;
  font-size: 0.86rem; color: var(--faint);
}

/* article body prose (magazine tips) */
.prose { max-width: 720px; margin-inline: auto; }
.prose h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--white);
  margin-top: clamp(28px, 4vw, 44px);
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin-top: 16px; color: var(--text); font-size: 1.04rem; line-height: 1.8; }
.prose ul.tips { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.prose ul.tips li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.7;
}
.prose ul.tips li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 16px; height: 16px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.prose blockquote {
  margin: clamp(24px, 4vw, 36px) 0;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  background: var(--bg-3);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text);
  font-size: 1.08rem;
  font-style: italic;
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.contact-info { min-width: 0; }
.contact-info .info-list { margin-top: 26px; display: flex; flex-direction: column; gap: 20px; }
.contact-info .info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info .info-item .ii-ico {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.contact-info .info-item .ii-ico svg { width: 20px; height: 20px; }
.contact-info .info-item .ii-label { font-size: 0.8rem; color: var(--faint); letter-spacing: 0.04em; }
.contact-info .info-item .ii-value { color: var(--white); font-weight: 600; margin-top: 2px; }

.form-card {
  min-width: 0;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.field { margin-bottom: 18px; min-width: 0; }
.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.field label .req { color: var(--accent); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.96rem;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--faint); }
.field select { appearance: none; cursor: pointer; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.16);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.14);
}
.field .err-msg {
  display: none;
  margin-top: 6px;
  font-size: 0.8rem;
  color: #f87171;
}
.field.has-error .err-msg { display: block; }

.form-success {
  display: none;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid var(--accent);
  color: var(--text);
  align-items: center;
  gap: 12px;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; color: var(--accent); flex: 0 0 auto; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #070c17;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding-block: clamp(44px, 6vw, 72px);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
}
.footer-brand .brand { color: var(--white); }
.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--faint);
  max-width: 34ch;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li {
  font-size: 0.9rem;
  color: var(--muted);
}
.footer-col a:hover { color: var(--accent); }

.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.footer-social a:hover { background: var(--accent); color: #05201d; border-color: var(--accent); }
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  margin-top: clamp(30px, 4vw, 48px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--faint);
}
.footer-reg { line-height: 1.7; }

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-visual { aspect-ratio: 16 / 11; order: -1; }
  .mag-feature { grid-template-columns: minmax(0, 1fr); }
  .contact-layout { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 760px) {
  .nav-desktop { display: none; }
  .header-actions .btn { display: none; } /* hide header CTA on mobile */
  .hamburger { display: inline-flex; }
  .drawer-cta { display: block; } /* shown inside drawer */
  .form-row { grid-template-columns: minmax(0, 1fr); }
  .reel-head { align-items: flex-start; }
}

@media (max-width: 560px) {
  .contact-info .info-item .ii-ico + span {
    display: flex;
    flex-direction: column;
  }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-bottom { flex-direction: column; }
  .hero-meta { gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reel-viewport { scroll-behavior: auto; }
  .reel-slide img { transition: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  * { animation-duration: 0.001ms !important; }
}
