/* ==========================================================
   JAI STUDIO — style.css
   Scandinavian Editorial · Japanese Boutique · Calm Luxury
   ========================================================== */

:root {
  --rose:        #B76E79;
  --rose-mid:    #CA8E96;
  --rose-pale:   #EDD8DB;
  --rose-bg:     #F8F4FB;
  --sage:        #8FA8C8;
  --sage-mid:    #AABDD8;
  --sage-pale:   #D8E4F0;
  --cream:       #FBF8F4;   /* 웜 크림 메인 배경 */
  --ivory:       #F5F1EB;   /* 웜 아이보리 서브 배경 */
  --surface:     #FDFCFB;   /* 카드 배경 — 거의 흰색 */
  --dark:        #1A1620;
  --dark-2:      #241E2E;
  --footer-bg:   #110E18;
  --text:        #1C1828;
  --muted:       #5A5470;
  --soft:        #8E88A4;
  --border:      rgba(100, 90, 140, 0.12);
  --border-mid:  rgba(100, 90, 140, 0.2);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Pretendard Variable', 'Pretendard', 'Noto Sans KR', sans-serif;
  --font-sans:    'Pretendard Variable', 'Pretendard', 'Noto Sans KR', sans-serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-accent:  'Cormorant Garamond', serif;

  --max-w: 1240px;
  --pad:   clamp(28px, 6vw, 88px);
  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur:   0.6s;
  --dur-f: 0.2s;

  /* editorial additions */
  --brown:       #2E2840;
  --brown-2:     #453E58;
  --border-warm: #E4DDD5;   /* 웜 베이지 보더 */
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }


body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ── SCROLL ANIMATION — handled by GSAP ────────────────── */
.fade-up { visibility: hidden; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { visibility: visible !important; }
  .mockup-main { animation: none !important; transform: rotate(-3deg) !important; }
}

/* ── HERO ANIMATIONS ───────────────────────────────────── */
@keyframes logoLine {
  from { width: 0; opacity: 0; }
  10%  { opacity: 1; }
  to   { width: 100%; opacity: 1; }
}
@keyframes ticker-move {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── NAVIGATION ────────────────────────────────────────── */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.nav.scrolled {
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1E120D;
  position: relative;
  transition: opacity var(--dur-f);
  text-decoration: none;
}
.nav-logo:hover { opacity: 0.65; }
.nav-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.nav-logo-text {
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a:not(.nav-cta) {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
  position: relative;
  transition: color var(--dur-f);
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  inset-block-end: -2px;
  inset-inline-start: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width var(--dur) var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--text); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0em;
  background: #EF3B35;
  border-radius: 10px;
  padding: 9px 18px;
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(239,59,53,0.28);
}
.nav-cta:hover {
  background: #d0302a;
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(239,59,53,0.36);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--text);
  transition: transform var(--dur) var(--ease);
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  background: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(20px);
  transition: max-height 0.4s var(--ease);
  border-block-end: 1px solid var(--border);
}
.nav-mobile.is-open { max-height: 320px; }
.nav-mobile a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  padding: 16px var(--pad);
  border-block-end: 1px solid var(--border);
  min-height: 52px;
  display: flex;
  align-items: center;
  transition: color var(--dur-f);
}
.nav-mobile a:last-child { border-block-end: none; color: var(--rose); font-weight: 400; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  min-height: 52px;
  transition: background var(--dur-f), color var(--dur-f), border-color var(--dur-f), box-shadow var(--dur-f), transform 0.2s;
}
.btn:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }

.btn-primary {
  background: #C9504A;
  color: #fff;
  border-color: #C9504A;
  box-shadow: 0 4px 18px rgba(201,80,74,0.22);
}
.btn-primary:hover {
  background: #B8403B;
  border-color: #B8403B;
  box-shadow: 0 6px 24px rgba(201,80,74,0.30);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-mid);
}
.btn-ghost:hover {
  background: var(--ivory);
  border-color: rgba(183, 110, 121, 0.3);
  transform: translateY(-1px);
}

.btn-light {
  background: rgba(255,255,255,0.08);
  color: rgba(253, 249, 246, 0.85);
  border-color: rgba(255,255,255,0.15);
}
.btn-light:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

.btn-accent {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}
.btn-accent:hover { background: #A55E69; }

/* ── SECTION LABELS ─────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  color: rgba(30,18,13,0.42);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-block-end: 20px;
  display: block;
}

.section-title {
  font-family: var(--font-body);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.055em;
  color: #1b1715;
  margin-block-end: clamp(32px, 4vw, 48px);
  word-break: keep-all;
}

/* ── 01. HERO ───────────────────────────────────────────── */
.hero {
  display: flex; flex-direction: column;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 58% 52% at 98% 4%,  rgba(183,110,121,0.1)  0%, transparent 65%),
    radial-gradient(ellipse 52% 46% at 2%  96%,  rgba(168,189,168,0.12) 0%, transparent 62%);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(183,110,121,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183,110,121,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 76% at 50% 38%, black 10%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 76% at 50% 38%, black 10%, transparent 100%);
  pointer-events: none;
}

.hero-wm {
  position: absolute;
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  font-size: clamp(20rem, 42vw, 56rem);
  color: var(--brown);
  opacity: 0.038;
  pointer-events: none; user-select: none;
  top: 50%; left: -3%;
  transform: translateY(-52%);
  line-height: 0.88;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.hero-body {
  flex: 1;
  position: relative; z-index: 1;
  display: flex; align-items: center;
  padding: clamp(120px, 12vw, 164px) var(--pad) clamp(80px, 9vw, 116px);
}

.hero-inner {
  width: 100%; max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Left */
.hero-left { display: flex; flex-direction: column; max-width: 780px; width: 100%; }

.hero-label {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.625rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--rose);
  margin-block-end: 60px; width: fit-content;
}
.hero-label-rule {
  width: 36px; height: 1px;
  background: linear-gradient(to right, var(--rose), rgba(183,110,121,0.08));
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(2.75rem, 5.5vw, 5.5rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin-block-end: 56px;
}
.tl { display: block; clip-path: inset(0 -100vw 0 -100vw); padding-block-end: 0.08em; margin-block-end: -0.08em; }
.ti { display: block; white-space: nowrap; }

.t-light { font-weight: 400; color: var(--text); }
.t-bold  { font-weight: 800; color: var(--brown); }
.t-rose  { font-weight: 800; color: var(--rose); }
.t-em    { color: var(--rose); }

.hero-sub {
  font-size: clamp(0.9375rem, 1.25vw, 1.0625rem);
  font-weight: 400; color: #3E312D;
  line-height: 1.95; max-width: 452px;
  margin-block-end: 56px;
}

.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  align-items: center;
  margin-block-end: 72px;
}

.hero-stats { display: flex; align-items: center; gap: 30px; }
.stat-item  { display: flex; flex-direction: column; gap: 5px; }
.stat-n {
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  font-weight: 600; color: var(--brown);
  letter-spacing: -0.04em; line-height: 1;
}
.stat-l {
  font-size: 0.6875rem; font-weight: 500;
  color: var(--muted); letter-spacing: 0.04em; white-space: nowrap;
}
.stat-divider {
  width: 1px; height: 40px; background: var(--border); flex-shrink: 0;
}

/* Right */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* ── HERO RESPONSIVE PREVIEW ─────────────────────────────── */
.hero-resp {
  position: relative;
  width: min(100%, 460px);
  padding-bottom: 52px; /* room for laptop base + overlapping mobile */
}

/* ── Desktop / Laptop frame ── */
.hr-desk {
  width: 100%;
  position: relative;
}

.hr-lid {
  background: #1D1D1F;
  border-radius: 12px 12px 2px 2px;
  padding: 12px 10px 0;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.45),
    0 4px 16px rgba(0,0,0,0.18),
    0 22px 58px rgba(0,0,0,0.17),
    0 48px 100px rgba(0,0,0,0.12);
}

/* Camera dot */
.hr-lid::before {
  content: '';
  position: absolute;
  top: 5px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px;
  background: #3A3A3C;
  border-radius: 50%;
}

.hr-desk-canvas {
  background: #F8F5F1;
  border-radius: 2px 2px 0 0;
  overflow: hidden;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Keyboard base */
.hr-base {
  background: linear-gradient(180deg, #2C2C2E 0%, #1E1E20 100%);
  height: 16px;
  margin: 0 -2px;
  border-radius: 0 0 3px 3px;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,0.24);
}
.hr-base::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.05);
}
.hr-base-notch {
  position: absolute;
  bottom: -9px; left: 50%; transform: translateX(-50%);
  width: 34%;
  height: 9px;
  background: linear-gradient(180deg, #1E1E20, #161618);
  border-radius: 0 0 5px 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.22);
}

/* ── Mobile / Phone frame ── */
.hr-mob {
  position: absolute;
  bottom: -6px;
  right: -18px;
  width: 29%;
  background: #1D1D1F;
  border-radius: 24px;
  border: 1.5px solid rgba(255,255,255,0.07);
  padding: 10px 5px 9px;
  z-index: 3;
  overflow: visible;
  box-shadow:
    0 4px 18px rgba(0,0,0,0.24),
    0 18px 52px rgba(0,0,0,0.20);
}

/* Volume buttons (left side) */
.hr-mob::before {
  content: '';
  position: absolute;
  left: -3px; top: 32px;
  width: 3px; height: 18px;
  background: #3A3A3C;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 24px 0 #3A3A3C;
}

/* Power button (right side) */
.hr-mob::after {
  content: '';
  position: absolute;
  right: -3px; top: 42px;
  width: 3px; height: 24px;
  background: #3A3A3C;
  border-radius: 0 2px 2px 0;
}

/* Dynamic island */
.hr-mob-island {
  width: 34px; height: 8px;
  background: #000;
  border-radius: 4px;
  margin: 0 auto 6px;
}

.hr-mob-canvas {
  background: #F8F5F1;
  border-radius: 15px;
  overflow: hidden;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Responsive badge */
.hr-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border-warm);
  border-radius: 999px;
  padding: 5px 13px;
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(28, 24, 40, 0.07);
}

.hr-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #28C840;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(40, 200, 64, 0.18);
}

/* ── SCROLL CUE (hero bottom-centre) ────────────────────── */
.scroll-cue {
  position: absolute;
  bottom: clamp(28px, 5vw, 52px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(28, 24, 40, 0.10);
  box-shadow: 0 4px 18px rgba(28, 24, 40, 0.09), 0 1px 4px rgba(28, 24, 40, 0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}
.scroll-cue:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 8px 28px rgba(28, 24, 40, 0.13), 0 2px 6px rgba(28, 24, 40, 0.08);
}

/* ── SCROLL-TO-TOP ───────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: clamp(24px, 4vw, 40px);
  right: clamp(20px, 4vw, 40px);
  z-index: 200;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(28, 24, 40, 0.10);
  box-shadow: 0 4px 18px rgba(28, 24, 40, 0.09), 0 1px 4px rgba(28, 24, 40, 0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}
.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(28, 24, 40, 0.13), 0 2px 6px rgba(28, 24, 40, 0.08);
}

/* Marquee ticker */
.ticker {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border-warm);
  overflow: hidden;
  padding-block: 15px;
}
.ticker-track {
  display: flex; align-items: center;
  white-space: nowrap;
  animation: ticker-move 40s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ti-item {
  display: inline-flex; align-items: center;
  font-size: 0.625rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--soft);
  padding-inline: 32px; flex-shrink: 0;
  gap: 32px;
}
.ti-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--rose); opacity: 0.7; flex-shrink: 0;
}

/* ── 02. PROBLEM ───────────────────────────────────────── */
/* ── BAND TICKER — dark editorial divider ──────────────── */

/* ============================================================
   SECTION TICKER DIVIDERS — between major sections
   ============================================================ */
.sec-ticker {
  position: relative;
  background: #2B1D1A;
}

.st-rule {
  height: 1px;
  background: rgba(247,241,234,0.10);
}

.st-wrap {
  overflow: hidden;
}

.st-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: st-scroll 52s linear infinite;
  padding: 7px 0;
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(247,241,234,0.38);
  gap: 0;
}

.st-item {
  padding-inline-end: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.st-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #EF3B35;
  opacity: 0.75;
  flex-shrink: 0;
}

@keyframes st-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.band-ticker {
  background: var(--dark);
  overflow: hidden;
  padding-block: 14px;
}
.bt-track {
  display: flex; align-items: center;
  white-space: nowrap;
  animation: ticker-move 30s linear infinite;
}
.bt-item {
  display: inline-flex; align-items: center;
  font-size: 0.5625rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  padding-inline: clamp(20px, 3vw, 36px);
}
.bt-dot {
  display: inline-block;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--rose);
  margin-inline-start: clamp(20px, 3vw, 36px);
}

/* ── PROBLEM ────────────────────────────────────────────── */
.problem {
  position: relative;
  background: var(--ivory);
  overflow-x: clip;
}

/* Giant faded watermark */
.problem-wm {
  position: absolute;
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  font-size: clamp(12rem, 26vw, 38rem);
  color: var(--brown);
  opacity: 0.032;
  top: 50%; right: -6%;
  transform: translateY(-50%);
  line-height: 0.85;
  letter-spacing: -0.06em;
  pointer-events: none; user-select: none;
  white-space: nowrap;
}

.problem-grid {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: clamp(64px, 8vw, 120px);
  align-items: start;
  padding-block: clamp(80px, 10vw, 130px);
}

/* Sticky editorial anchor — stays in view as blocks scroll */
.problem-left {
  position: sticky;
  top: 108px;
  display: flex; flex-direction: column;
}

/* Weight-contrast headline: Cormorant italic + Pretendard bold */
.problem-title {
  display: flex; flex-direction: column;
  margin-block: 28px clamp(32px, 4vw, 52px);
}
.pt-serif {
  font-family: var(--font-body);
  font-style: normal; font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 3.25rem);
  line-height: 1.1; letter-spacing: -0.04em;
  color: rgba(30,18,13,0.48);
}
.pt-bold {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(2.125rem, 3.8vw, 4.25rem);
  line-height: 1.06; letter-spacing: -0.055em;
  color: var(--text);
  margin-block-start: 6px;
}

.problem-support { display: flex; flex-direction: column; gap: 22px; }

.ps-main {
  font-size: clamp(0.9375rem, 1.3vw, 1rem);
  font-weight: 400; color: #3E312D;
  line-height: 2.0;
}
.ps-detail {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 400; color: #3E312D;
  line-height: 2.1;
}

/* Editorial problem blocks — large stacked, no card boxes */
.problem-right {
  display: flex; flex-direction: column;
  border-block-start: 1px solid var(--border-warm);
}
.prob-block {
  display: flex; align-items: center;
  gap: clamp(18px, 3vw, 36px);
  padding-block: clamp(26px, 4vw, 42px);
  border-block-end: 1px solid var(--border-warm);
  transition: background 0.3s, padding-inline-start 0.3s;
  cursor: default;
}
.prob-block:nth-child(even) {
  padding-inline-start: clamp(18px, 4vw, 36px);
}
.prob-block:hover {
  background: rgba(183,110,121,0.045);
  padding-inline-start: clamp(10px, 2vw, 16px);
}
.prob-block:nth-child(even):hover {
  padding-inline-start: clamp(24px, 5vw, 48px);
}
.pb-mark {
  font-family: var(--font-body);
  font-style: normal; font-weight: 900;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--rose);
  flex-shrink: 0;
  line-height: 1;
  user-select: none;
  letter-spacing: -0.03em;
}
.pb-text {
  font-size: clamp(1.0625rem, 1.9vw, 1.5625rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.32;
  letter-spacing: -0.025em;
}

/* Reverse marquee — section divider to Works */
.prob-ticker {
  overflow: hidden;
  padding-block: 13px;
  border-block: 1px solid var(--border-warm);
}
.prob-ticker-track {
  display: flex; align-items: center;
  white-space: nowrap;
  animation: ticker-move 36s linear infinite reverse;
}
.pti-item {
  display: inline-flex; align-items: center;
  font-size: 0.5625rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--rose);
  padding-inline: 28px; flex-shrink: 0; gap: 28px;
}
.pti-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--rose); opacity: 0.55; flex-shrink: 0;
}

/* ── 03. SOLUTION ───────────────────────────────────────── */
.solution {
  position: relative;
  background: var(--cream);
  overflow-x: clip;
}

/* Giant faded watermark */
.sol-wm {
  position: absolute;
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  font-size: clamp(14rem, 30vw, 44rem);
  color: var(--brown);
  opacity: 0.028;
  top: 8%; left: -3%;
  line-height: 0.85;
  letter-spacing: -0.06em;
  pointer-events: none; user-select: none;
  white-space: nowrap;
}

/* Small all-caps eyebrow */
.sol-eyebrow {
  font-size: 0.475rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--rose);
  padding-block: clamp(72px, 10vw, 116px) 0;
  margin-block-end: clamp(48px, 6vw, 76px);
}

.sol-grid {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: clamp(64px, 8vw, 120px);
  align-items: start;
  padding-block-end: clamp(88px, 11vw, 140px);
}

/* Sticky editorial anchor */
.sol-left {
  position: sticky;
  top: 108px;
  display: flex; flex-direction: column;
  gap: clamp(22px, 3vw, 34px);
}

/* Weight-contrast headline */
.sol-title { display: flex; flex-direction: column; }

.sol-t-light {
  font-family: var(--font-body);
  font-style: normal; font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 3.25rem);
  line-height: 1.1; letter-spacing: -0.04em;
  color: rgba(30,18,13,0.48);
}
.sol-t-bold {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(2.125rem, 3.8vw, 4.25rem);
  line-height: 1.06; letter-spacing: -0.055em;
  color: var(--text);
  margin-block-start: 6px;
}

.sol-sub {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 400; color: #3E312D;
  line-height: 2.05;
}

.sol-cta {
  display: inline-flex; align-items: center;
  width: fit-content;
  font-size: 0.8125rem; font-weight: 400;
  letter-spacing: 0.06em; color: var(--rose);
  text-decoration: none; position: relative;
  transition: color 0.3s var(--ease);
}
.sol-cta::after {
  content: '';
  position: absolute;
  inset-block-end: -2px; inset-inline-start: 0;
  width: 100%; height: 1px;
  background: var(--rose-pale);
  transition: background 0.3s;
}
.sol-cta:hover { color: var(--brown); }
.sol-cta:hover::after { background: var(--border-warm); }

/* Large editorial solution blocks */
.sol-right {
  display: flex; flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
}

.sol-block {
  display: flex;
  gap: clamp(20px, 3vw, 32px);
  align-items: flex-start;
  border: 1px solid var(--border-warm);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 44px);
  background: rgba(253,252,255,0.7);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    background 0.4s,
    border-color 0.4s;
  cursor: default;
}
.sol-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 44px rgba(62,49,45,0.07), 0 2px 8px rgba(62,49,45,0.03);
  border-color: rgba(183,110,121,0.26);
  background: var(--surface);
}

.sb-num {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 300;
  font-size: clamp(1.25rem, 2.2vw, 1.875rem);
  color: var(--rose);
  flex-shrink: 0; min-width: 28px;
  line-height: 1; padding-block-start: 3px;
  opacity: 0.88;
}

.sb-body { display: flex; flex-direction: column; gap: 10px; }

.sb-heading {
  font-size: clamp(1.0625rem, 1.8vw, 1.375rem);
  font-weight: 500; color: var(--text);
  line-height: 1.35; letter-spacing: -0.025em;
}

.sb-desc {
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  font-weight: 400; color: #3E312D;
  line-height: 1.88;
}

/* ── 04. WORKS ──────────────────────────────────────────── */
/* ── 04. SELECTED WORKS ─────────────────────────────────── */
.sw {
  position: relative;
  background-color: #F7F1EA;
  background-image:
    linear-gradient(rgba(30,18,13,0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,18,13,0.024) 1px, transparent 1px);
  background-size: 48px 48px;
  padding-block: clamp(72px, 8vw, 100px) clamp(48px, 5vw, 72px);
  overflow-x: clip;
}

/* Faded watermark */
.sw-wm {
  position: absolute;
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  font-size: clamp(12rem, 24vw, 36rem);
  color: var(--brown);
  opacity: 0.028;
  bottom: 6%; right: -4%;
  line-height: 0.85; letter-spacing: -0.06em;
  pointer-events: none; user-select: none; white-space: nowrap;
}

/* Slow marquee ticker */
.sw-ticker {
  overflow: hidden;
  padding-block: 13px;
  border-block: 1px solid var(--border-warm);
  margin-block-end: clamp(56px, 7vw, 96px);
}
.sw-ticker-track {
  display: flex; align-items: center;
  white-space: nowrap;
  animation: ticker-move 52s linear infinite;
}
.swt-item {
  display: inline-flex; align-items: center;
  font-size: 0.5625rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted);
  padding-inline: clamp(24px, 4vw, 44px);
}
.swt-dot {
  display: inline-block;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--rose); opacity: 0.6;
  margin-inline-start: clamp(24px, 4vw, 44px);
  flex-shrink: 0;
}

/* Section header */
.sw-header {
  display: flex; flex-direction: column;
  gap: clamp(14px, 2vw, 22px);
  margin-block-end: clamp(48px, 7vw, 84px);
}
.sw-eyebrow {
  font-size: 0.5rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--rose);
}
.sw-title {
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 5.25rem);
  line-height: 1.06; letter-spacing: -0.045em;
  color: #1E120D;
  word-break: keep-all;
}
.sw-sub {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 400; color: rgba(30,18,13,0.58); line-height: 2.0;
}

/* ── Portfolio gallery — 2×2 editorial grid ──────────────── */
.pg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  max-width: 960px;
  margin-inline: auto;
  margin-block-end: clamp(28px, 4vw, 44px);
}

/* Tape wrapper for card 01 */
.pg-pin {
  position: relative;
}
.pg-pin .tape {
  width: 80px;
  height: 22px;
  top: -11px;
  left: 28%;
  transform: translateX(-50%) rotate(-3.5deg);
}

/* Gallery card */
.pg-card {
  border-radius: 18px;
  overflow: hidden;
  background: #FDFAF6;
  border: 1px solid rgba(30,18,13,0.08);
  box-shadow: 0 2px 12px rgba(30,18,13,0.05);
  transition:
    transform  0.40s cubic-bezier(0.16,1,0.3,1),
    box-shadow 0.40s cubic-bezier(0.16,1,0.3,1);
}
.pg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(30,18,13,0.11), 0 4px 14px rgba(30,18,13,0.05);
}

/* Full-card link wrapper */
.pg-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

/* Thumbnail — 5:4 ratio */
.pg-thumb {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: #EDE9E2;
}
.pg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.60s cubic-bezier(0.16,1,0.3,1);
}
.pg-card:hover .pg-thumb img {
  transform: scale(1.06);
}

/* Hover overlay */
.pg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,18,13,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.32s ease;
}
.pg-card:hover .pg-overlay {
  opacity: 1;
}
.pg-view {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F7F1EA;
  border: 1px solid rgba(247,241,234,0.45);
  padding: 8px 18px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* Info strip */
.pg-info {
  padding: 15px 18px 17px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid rgba(30,18,13,0.07);
}
.pg-title {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  font-weight: 700;
  color: #1E120D;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.pg-cat {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(30,18,13,0.40);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.sw-footer {
  text-align: center;
  padding-block-start: clamp(28px, 3.5vw, 44px);
}

/* ==========================================================
   PRICING SECTION
   ========================================================== */
.ep {
  background: #F7F1EA;
  padding-block: clamp(64px, 8vw, 96px) clamp(72px, 9vw, 112px);
}
.ep-header {
  max-width: 960px;
  margin-inline: auto;
  margin-block-end: clamp(32px, 4vw, 48px);
}
.ep-eyebrow {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(30,18,13,0.42);
  margin-block-end: 14px;
}
.ep-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #1E120D;
  margin: 0;
}

/* ==========================================================
   PRICING GRID — 3-tier cards (LIGHT / STANDARD / PREMIUM)
   ========================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.2vw, 22px);
  max-width: 960px;
  margin-inline: auto;
  margin-block-end: clamp(16px, 2vw, 24px);
}

/* ── Card base ─────────────────────────────────────────── */
.price-card {
  position: relative;
  background: #FDFAF6;
  border: 1px solid rgba(30,18,13,0.09);
  border-radius: 20px;
  padding: clamp(32px, 3.5vw, 44px) clamp(24px, 3vw, 36px) clamp(28px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    transform  0.38s cubic-bezier(0.16,1,0.3,1),
    box-shadow 0.38s cubic-bezier(0.16,1,0.3,1);
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(30,18,13,0.09), 0 4px 12px rgba(30,18,13,0.04);
}

/* STANDARD: highlighted */
.standard-card {
  background: #FFF7F5;
  border-color: rgba(239,59,53,0.18);
  box-shadow: 0 2px 18px rgba(239,59,53,0.07);
}
.standard-card:hover {
  box-shadow: 0 20px 56px rgba(239,59,53,0.12), 0 4px 14px rgba(239,59,53,0.06);
}

/* ── Masking tape — removed ────────────────────────────── */
.price-tape {
  display: none;
}

/* ── Badge ─────────────────────────────────────────────── */
.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #EF3B35;
  border: 1px solid rgba(239,59,53,0.28);
  border-radius: 100px;
  padding: 4px 10px;
  background: rgba(239,59,53,0.05);
}

/* ── Eyebrow ───────────────────────────────────────────── */
.price-card small {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(30,18,13,0.50);
  margin-top: 8px;
}

/* ── Price ─────────────────────────────────────────────── */
.price-card h3 {
  font-family: var(--font-body);
  font-size: clamp(52px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #1E120D;
  line-height: 1;
  margin: 0;
}

/* ── Description ───────────────────────────────────────── */
.price-desc {
  font-size: clamp(0.9375rem, 1.4vw, 1rem);
  font-weight: 500;
  color: #1E120D;
  line-height: 1.75;
  margin: 0;
}

/* ── VAT notice ────────────────────────────────────────── */
.vat-text {
  font-size: 0.6875rem;
  color: rgba(30,18,13,0.62);
  margin-top: -6px;
}

/* ── Meta (period) ─────────────────────────────────────── */
.price-meta {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(30,18,13,0.52);
  padding: 10px 0;
  border-top: 1px solid rgba(30,18,13,0.09);
  border-bottom: 1px solid rgba(30,18,13,0.09);
}

/* ── Feature list ──────────────────────────────────────── */
.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  margin: 0;
  padding: 0;
}
.price-card ul li {
  font-size: clamp(0.9375rem, 1.4vw, 1rem);
  font-weight: 500;
  color: #1E120D;
  line-height: 1.75;
  padding-left: 18px;
  position: relative;
}
.price-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EF3B35;
}
.standard-card ul li::before {
  background: #EF3B35;
}

/* ── CTA button ────────────────────────────────────────── */
.price-cta {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  margin-top: 6px;
  background: #C9504A;
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 4px 14px rgba(201,80,74,0.18);
  transition:
    background 0.24s ease,
    transform  0.24s ease,
    box-shadow 0.24s ease;
}
.price-cta:hover {
  background: #B8403B;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,80,74,0.28);
}

/* ── Mobile responsive ─────────────────────────────────── */
@media (max-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }
  .standard-card {
    order: unset;
  }
}

/* ── 03. WHY ────────────────────────────────────────────── */

/* ==========================================================
   07. FAQ
   ========================================================== */
.faq {
  background: var(--surface);
  padding-block: clamp(80px, 10vw, 140px);
  overflow-x: clip;
}

.faq-header {
  max-width: 600px;
  margin-block-end: clamp(48px, 7vw, 80px);
}

.faq-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(30,18,13,0.42);
  margin-block-end: 20px;
}

.faq-headline {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-block-end: 18px;
}

.faq-sub {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.85;
  font-weight: 400;
  color: #3E312D;
}

/* Accordion list */
.faq-list {
  border-top: 1px solid var(--border-warm);
}

.faq-item {
  border-bottom: 1px solid var(--border-warm);
}

.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
  padding-block: clamp(22px, 3.5vw, 32px);
  text-align: left;
  cursor: pointer;
  background: transparent;
  transition: background var(--dur-f);
}

.faq-q:hover { background: rgba(183,110,121,0.03); }

.faq-n {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 800;
  font-style: normal;
  color: rgba(30,18,13,0.30);
  line-height: 1;
  letter-spacing: 0.04em;
}

.faq-q-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.4;
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  justify-self: end;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--rose);
  border-radius: 2px;
  transition: transform 0.36s var(--ease-out), opacity 0.3s;
}

.faq-icon::before {
  width: 14px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.44s cubic-bezier(0.16, 1, 0.3, 1),
    opacity    0.32s ease;
}

.faq-item.is-open .faq-body {
  max-height: 400px;
  opacity: 1;
}

.faq-body > p {
  font-size: clamp(0.9375rem, 1.4vw, 1rem);
  font-weight: 500;
  line-height: 1.85;
  color: #1E120D;
  padding-inline-start: calc(44px + clamp(14px, 2.5vw, 28px));
  padding-block-end: clamp(20px, 3vw, 28px);
  padding-block-start: 4px;
  margin: 0;
}

/* ==========================================================
   ENDING — process + CTA + footer unified section
   ========================================================== */
.ending {
  background: var(--cream);
  padding: clamp(72px, 9vw, 112px) 0 0;
}
.ending .container {
  padding-block-end: clamp(52px, 7vw, 80px);
}

.cl-block {
  max-width: var(--max-w);
  margin-inline: auto;
  background-color: #FAF7F2;
  background-image:
    linear-gradient(rgba(30,18,13,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,18,13,0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  border: 1px solid var(--border-warm);
  border-radius: 28px;
  padding: clamp(40px, 6vw, 72px) clamp(32px, 5.5vw, 68px) clamp(24px, 3vw, 36px);
  position: relative;
  overflow: hidden;
}

/* Red dot accent */
.cl-red-dot {
  position: absolute;
  top: clamp(28px, 4vw, 44px);
  right: clamp(28px, 4vw, 44px);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #EF3B35;
  display: block;
}

/* Rotated editorial label */
.cl-accent-label {
  position: absolute;
  bottom: clamp(44px, 6vw, 64px);
  right: -18px;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(30,18,13,0.10);
  transform: rotate(90deg);
  transform-origin: right center;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

/* Poster CTA */
.cl-cta {
  margin-block-end: clamp(40px, 7vw, 80px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cl-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(30,18,13,0.38);
  margin-block-end: 20px;
}
.cl-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EF3B35;
  flex-shrink: 0;
}

.cl-headline {
  font-family: var(--font-body);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.04em;
  color: #1b1715;
  margin-block-end: clamp(28px, 4vw, 44px);
  max-width: 760px;
  word-break: keep-all;
  overflow-wrap: normal;
}

.cl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #C9504A;
  color: #F7F1EA;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 16px clamp(28px, 3.5vw, 40px);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.24s ease, transform 0.22s ease, box-shadow 0.22s ease;
  white-space: nowrap;
}
.cl-btn:hover {
  background: #B8403B;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,80,74,0.28);
}

/* Slim footer bar */
.cl-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block-start: clamp(16px, 2vw, 22px);
  border-block-start: 1px solid rgba(30,18,13,0.08);
  flex-wrap: wrap;
}

.cl-logo {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1E120D;
  margin: 0;
}

.cl-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
}
.cl-nav a {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(30,18,13,0.40);
  text-decoration: none;
  transition: color 0.2s;
}
.cl-nav a:hover { color: #1E120D; }

.cl-sep {
  color: rgba(30,18,13,0.22);
  font-size: 0.5625rem;
  user-select: none;
}

.cl-copy {
  font-size: 0.5rem;
  font-weight: 400;
  color: rgba(30,18,13,0.28);
  letter-spacing: 0.06em;
}

.cl-kakao {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--rose);
  opacity: 0.6;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity var(--dur-f);
}

.cl-kakao:hover { opacity: 1; }

/* ── Ending mobile ─────────────────────────────────────── */
@media (max-width: 768px) {
  .cl-block {
    padding: 48px 24px 24px;
  }
  .cl-headline {
    font-size: clamp(28px, 9vw, 44px);
    line-height: 1.0;
    word-break: keep-all;
  }
  .cl-btn {
    width: 100%;
    max-width: 340px;
  }
  .cl-footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ── TABLET ≤ 1024px ────────────────────────────────────── */
@media (max-width: 1024px) {
  /* hero single column — no overrides needed */
  .fc-stat { right: 0; }

  .problem-grid { grid-template-columns: 1fr; gap: 52px; padding-block: clamp(64px, 8vw, 96px); }
  .problem-left { position: static; }
  .problem-wm { font-size: clamp(10rem, 20vw, 24rem); right: -8%; }

  .sol-grid { grid-template-columns: 1fr; gap: 52px; padding-block-end: clamp(64px, 8vw, 96px); }
  .sol-left { position: static; }
  .sol-wm { font-size: clamp(10rem, 20vw, 28rem); }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .cl-footer { grid-template-columns: 1fr; gap: 36px; }
  .cl-nav { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 10px 22px; }

    
  .pricing-row { grid-template-columns: 200px 1fr auto; gap: 14px 24px; }
  .pricing-row-right { flex-direction: column; align-items: flex-end; gap: 8px; }
  .pricing-extras { grid-template-columns: 1fr; }
}

/* ==========================================================
   CHAPTER BREAK — between Pricing and Process
   ========================================================== */
.chapter-break {
  background: var(--cream);
  padding: clamp(20px, 2.5vw, 32px) var(--pad);
}

.cb-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cb-rule {
  width: 100%;
  height: 1px;
  background: var(--border-warm);
}

.cb-label {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.cb-dot {
  color: var(--rose);
  opacity: 0.55;
  font-style: normal;
}

/* ==========================================================
   06. PROCESS
   ========================================================== */
.proc {
  position: relative;
  background: var(--cream);
  overflow-x: clip;
  padding: clamp(20px, 3vw, 40px) 0 clamp(88px, 10vw, 140px);
}

.proc-wm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(120px, 22vw, 260px);
  font-weight: 700;
  color: var(--text);
  opacity: 0.035;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Header */
.proc-header {
  max-width: 680px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.proc-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(30,18,13,0.42);
  margin-bottom: 20px;
}

.proc-headline {
  font-family: 'Pretendard Variable', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 18px;
}

.proc-sub {
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  line-height: 1.8;
  font-weight: 400;
  color: #3E312D;
}

/* Ticker */
.proc-ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
  padding: 14px 0;
  margin-bottom: clamp(52px, 8vw, 96px);
}

.proc-ticker-inner {
  display: flex;
  width: max-content;
  animation: proc-ticker-move 18s linear infinite;
}

.proc-ticker-inner span {
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
  padding-right: 0;
}

@keyframes proc-ticker-move {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Blocks */
.proc-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.proc-block {
  display: grid;
  grid-template-columns: 120px 1px 1fr auto;
  align-items: start;
  gap: 0 clamp(24px, 4vw, 52px);
  padding: clamp(32px, 5vw, 52px) 0;
  border-bottom: 1px solid var(--border-warm);
  position: relative;
}

.proc-block:first-child {
  border-top: 1px solid var(--border-warm);
}

.proc-num {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  font-style: normal;
  line-height: 1;
  color: rgba(30,18,13,0.14);
  letter-spacing: -0.04em;
  padding-top: 4px;
}

.proc-divider {
  width: 1px;
  background: var(--border-warm);
  align-self: stretch;
  margin: 4px 0;
}

.proc-content {
  padding-top: 6px;
}

.proc-title {
  font-family: 'Pretendard Variable', sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.proc-desc {
  font-size: clamp(0.875rem, 1.4vw, 0.9375rem);
  line-height: 1.85;
  font-weight: 400;
  color: #3E312D;
  max-width: 500px;
}

.proc-tag {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(30,18,13,0.38);
  border: 1px solid var(--border-warm);
  padding: 5px 10px;
  border-radius: 2px;
  align-self: center;
  white-space: nowrap;
}

/* CTA */
.proc-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: clamp(48px, 7vw, 88px);
}

.proc-cta-note {
  font-size: 0.8125rem;
  color: var(--soft);
  letter-spacing: 0.01em;
}

/* ── MOBILE ≤ 768px ─────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --pad: 22px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }

  .hero-body { padding-top: 100px; padding-bottom: 0; align-items: flex-start; }
  /* hero single column — no overrides needed */
  .ticker { display: none; }
  .hero-label { margin-block-end: 40px; }
  .hero-title { font-size: clamp(2.5rem, 9.5vw, 4rem); line-height: 1.12; margin-block-end: 40px; }
  .hero-sub { font-size: 0.9375rem; line-height: 1.88; margin-block-end: 48px; }
  .hero-cta { gap: 12px; margin-block-end: 56px; }
  .hero-stats { gap: 22px; }
  .stat-n { font-size: 1.5rem; }

  .pt-serif { font-size: clamp(1.5rem, 5.5vw, 2.25rem); }
  .pt-bold  { font-size: clamp(1.875rem, 7vw, 3rem); }
  .ps-detail { font-size: 1rem; }
  .prob-block { padding-block: clamp(20px, 3.5vw, 32px); }

  .sol-t-light { font-size: clamp(1.5rem, 5.5vw, 2.25rem); }
  .sol-t-bold  { font-size: clamp(1.875rem, 7vw, 3rem); }
  .sol-sub     { font-size: 0.9375rem; line-height: 1.95; }
  .sol-block   { padding: clamp(24px, 4.5vw, 36px); }
  .sb-desc     { font-size: 0.875rem; }
  .pb-text { font-size: clamp(1rem, 4.5vw, 1.375rem); }

  .sw { padding-block: 64px; }
  .pg-grid { grid-template-columns: 1fr; max-width: 480px; }
  .pg-pin { grid-column: 1; }
  .sw-title { font-size: clamp(2rem, 7vw, 3.5rem); }

  .why { padding-block: 64px; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-lhs { position: static; }
  .why-title { font-size: clamp(52px, 13vw, 72px); line-height: 0.95; }
  .why-c { padding: 32px; gap: 20px; }
  .why-c-art { width: 72px; height: 62px; }
  .why-c-label { font-size: 28px; }
  .why-c-desc { font-size: 18px; line-height: 1.6; font-weight: 500; color: #1E120D; word-break: keep-all; overflow-wrap: normal; }
      
  .about { padding-block: 64px; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-title { font-size: clamp(1.625rem, 7vw, 2.5rem); }
  .about-body p { font-size: 0.9375rem; line-height: 1.85; margin-block-end: 16px; }

  .ep { padding-block: 64px; }
  .ep-title { font-size: clamp(2rem, 7vw, 3.5rem); }
  .ep-cards { grid-template-columns: 1fr; gap: 16px; }
  .ep-price-n { font-size: clamp(4rem, 14vw, 7rem); }
  .ep-addons-grid { grid-template-columns: repeat(2, 1fr); }
  .ep-addon-price { font-size: clamp(1.125rem, 4.5vw, 1.375rem); }
  .ep-care-grid { grid-template-columns: 1fr; }
  .ep-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ep-bottom-q { font-size: clamp(1rem, 4.5vw, 1.375rem); }
  .ep-bottom .btn { width: 100%; justify-content: center; }
  .pricing-cta .btn { width: 100%; justify-content: center; }

  .cl-block { border-radius: 18px; padding-inline: clamp(24px, 5vw, 40px); }
  .cl-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .cl-btn { width: 100%; justify-content: center; }

  .faq { padding-block: 64px; }
  .faq-q { grid-template-columns: 36px 1fr 24px; gap: 14px; }
  .faq-body > p { padding-inline-start: calc(36px + 14px); }

  .chapter-break { padding: clamp(14px, 3vw, 22px) var(--pad); }
  .proc { padding-block: 24px 64px; }
  .proc-block {
    grid-template-columns: 80px 1px 1fr;
    grid-template-rows: auto auto;
  }
  .proc-tag {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
    justify-self: end;
    font-size: 0.6rem;
  }
  .proc-content { grid-column: 3; grid-row: 2; }
  .proc-num { font-size: clamp(2.75rem, 9vw, 4.5rem); }
  .proc-cta { flex-direction: column; align-items: flex-start; gap: 14px; }
  .proc-cta .btn { width: 100%; justify-content: center; }
}

/* ── SMALL MOBILE ≤ 480px ───────────────────────────────── */
@media (max-width: 480px) {
  .pt-serif { font-size: clamp(1.375rem, 7vw, 2rem); }
  .pt-bold  { font-size: clamp(1.625rem, 8.5vw, 2.5rem); }
  .pb-text  { font-size: clamp(0.9375rem, 4.5vw, 1.25rem); }

  .sol-t-light { font-size: clamp(1.375rem, 7vw, 2rem); }
  .sol-t-bold  { font-size: clamp(1.625rem, 8.5vw, 2.5rem); }
  .sol-block   { padding: clamp(22px, 5vw, 32px); }
  .sb-heading  { font-size: clamp(1rem, 4.5vw, 1.25rem); }

  .hero-title { font-size: clamp(1.75rem, 9vw, 2.75rem); }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { gap: 18px; }
  .stat-divider { height: 28px; }

  .sw-cs-title { font-size: clamp(0.8125rem, 3.5vw, 0.9375rem); }
  .sw-cs-img-wrap { height: clamp(80px, 20vw, 110px); }

  .why-title { font-size: clamp(52px, 13vw, 68px); line-height: 0.95; }
  .why-c { gap: 16px; padding: 28px 24px; }
  .why-c-art { width: 62px; height: 54px; }
  .why-c-label { font-size: 26px; }
  .why-c-desc { font-size: 17px; }

  .cl-logo { font-size: clamp(1.125rem, 6vw, 1.5rem); }
  .cl-headline { font-size: clamp(1.875rem, 9vw, 3rem); }
  .ep-addons-grid { grid-template-columns: 1fr; }
  .sw-footer .btn { width: 100%; }
  .faq-headline { font-size: clamp(1.625rem, 8vw, 2.5rem); }
  .proc-headline { font-size: clamp(1.625rem, 8vw, 2.5rem); }
  .proc-block { grid-template-columns: 64px 1px 1fr; }
  .proc-tag { display: none; }
}

/* ==========================================================
   WHY IT MATTERS — section
   2-column: LEFT headline / RIGHT stacked horizontal cards
   ========================================================== */
.why {
  padding: 96px 0 108px;
  background-color: #F7F1EA;
  background-image:
    linear-gradient(rgba(185,167,255,0.055) 0%, transparent 55%),
    linear-gradient(rgba(30,18,13,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,18,13,0.028) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
  border-top: 1px solid rgba(30,18,13,0.07);
  position: relative;
}

.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 72px;
  align-items: start;
}

/* ── Left: sticky headline ────────────────────────────────── */
.why-lhs {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(30,18,13,0.38);
}

.why-title {
  font-family: var(--font-body);
  font-size: clamp(1.875rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #1E120D;
  word-break: keep-all;
  margin: 0;
}

.why-t-accent { color: #EF3B35; }

/* ── Right: stacked horizontal cards ─────────────────────── */
.why-rhs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Card: horizontal layout (inherits .hv2-card base) */
.why-c {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 26px;
}

.why-c-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.why-c-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-c-num {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(30,18,13,0.28);
}

.why-c-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1E120D;
}

.why-c-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(30,18,13,0.52);
  line-height: 1.65;
  margin: 0;
  word-break: keep-all;
}

/* ── Art box (mini UI illustration) ──────────────────────── */
.why-c-art {
  width: 92px;
  height: 74px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

/* 01 첫인상: mini website preview */
.why-c-art--first {
  background: #FDFAF6;
  border: 1px solid rgba(30,18,13,0.08);
  display: flex;
  flex-direction: column;
}
.wca-topbar {
  height: 3px;
  background: #EF3B35;
  flex-shrink: 0;
}
.wca-chrome {
  height: 10px;
  background: #ECEAE7;
  border-bottom: 1px solid rgba(30,18,13,0.07);
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0 5px;
  flex-shrink: 0;
}
.wca-chrome-dots {
  display: flex; gap: 2px;
}
.wca-chrome-dots i {
  display: block; width: 3px; height: 3px; border-radius: 50%;
}
.wca-chrome-dots i:nth-child(1) { background: #FF5F57; }
.wca-chrome-dots i:nth-child(2) { background: #FEBC2E; }
.wca-chrome-dots i:nth-child(3) { background: #28C840; }
.wca-chrome-url {
  flex: 1; max-width: 40px; margin: 0 auto;
  height: 4px; background: rgba(30,18,13,0.10); border-radius: 2px;
}
.wca-body {
  flex: 1; padding: 6px 7px;
  background: rgba(255,248,242,0.8);
  display: flex; flex-direction: column; gap: 4px;
}
.wca-hl {
  height: 5px; border-radius: 2px; background: rgba(30,18,13,0.20);
}
.wca-hl--2 { width: 75%; background: rgba(30,18,13,0.14); }
.wca-hl--3 { width: 52%; background: rgba(30,18,13,0.09); }
.wca-act {
  width: 30px; height: 9px;
  background: #EF3B35; border-radius: 3px; margin-top: 2px;
}

/* 02 모바일 구조: phone mockup */
.why-c-art--mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30,18,13,0.04);
  border: 1px solid rgba(30,18,13,0.08);
}
.wca-phone {
  width: 34px;
  background: #DDD9D3;
  border-radius: 10px;
  border: 1.5px solid rgba(30,18,13,0.18);
  padding: 4px 3px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 4px 14px rgba(30,18,13,0.12);
}
.wca-ph-island {
  width: 14px; height: 3px;
  background: rgba(30,18,13,0.28); border-radius: 2px; flex-shrink: 0;
}
.wca-ph-screen {
  background: #FDFAF6; border-radius: 3px; width: 100%; overflow: hidden;
  display: flex; flex-direction: column; gap: 1px; padding: 1px;
  border: 1px solid rgba(30,18,13,0.06);
}
.wca-ph-s {
  height: 12px; border-radius: 2px;
}
.wca-ph-s--1 { background: rgba(239,59,53,0.28); }
.wca-ph-s--2 { background: rgba(199,242,58,0.28); }
.wca-ph-s--3 { background: rgba(30,18,13,0.13); }
.wca-ph-home {
  width: 14px; height: 2px;
  background: rgba(30,18,13,0.18); border-radius: 2px; flex-shrink: 0;
}

/* 03 CTA 흐름: flow diagram */
.why-c-art--cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  padding: 10px 10px;
  background: #FDFAF6;
  border: 1px solid rgba(30,18,13,0.08);
}
.wca-f1, .wca-f2 {
  height: 14px;
  background: rgba(30,18,13,0.05);
  border: 1px solid rgba(30,18,13,0.09);
  border-radius: 5px;
}
.wca-arrow {
  text-align: center;
  font-size: 9px;
  line-height: 1.2;
  color: rgba(30,18,13,0.22);
}
.wca-fbtn {
  background: #EF3B35;
  color: #fff;
  font-family: var(--font-body);
  font-size: 7px;
  font-weight: 700;
  padding: 5px 7px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(239,59,53,0.30);
}

/* ==========================================================
   EP-EXPAND — add-ons accordion
   ========================================================== */
.ep-domain-notice {
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
  margin: 0 0 clamp(10px, 1.2vw, 16px);
}
.ep-expand {
  margin-top: clamp(12px, 1.5vw, 20px);
}
.ep-bottom {
  margin-top: clamp(20px, 2.5vw, 32px);
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
}
.ep-bottom .btn-primary {
  background: #C9504A;
  border-color: #C9504A;
  box-shadow: 0 4px 18px rgba(201,80,74,0.22);
}
.ep-bottom .btn-primary:hover {
  background: #B8403B;
  border-color: #B8403B;
  box-shadow: 0 6px 24px rgba(201,80,74,0.30);
}
.ep-expand-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 1px solid var(--border-warm);
  border-radius: 4px;
  padding: 14px 22px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  width: 100%;
  justify-content: space-between;
  text-align: left;
}
.ep-expand-btn:hover {
  background: var(--cream);
  border-color: var(--rose);
}
.ep-expand-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  display: inline-block;
}
.ep-expand-icon::before,
.ep-expand-icon::after {
  content: '';
  position: absolute;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.ep-expand-icon::before {
  width: 2px; height: 14px;
  top: 2px; left: 8px;
}
.ep-expand-icon::after {
  width: 14px; height: 2px;
  top: 8px; left: 2px;
}
.ep-expand-btn[aria-expanded="true"] .ep-expand-icon::before {
  transform: rotate(90deg);
  opacity: 0;
}
.ep-expand-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ep-expand-body.is-open {
  max-height: 800px;
}
.ep-addons-header {
  padding-top: 32px;
  margin-bottom: 20px;
}
.ep-addons-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ep-addons-sub {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0;
}

/* ==========================================================
   ENDING — process steps sub-styles
   ========================================================== */
.pf-header {
  text-align: center;
  margin-bottom: 72px;
}
.pf-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}
.pf-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0;
}
.pf-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  margin-bottom: 0;
}
.pf-step {
  padding: clamp(28px, 4vw, 44px) clamp(22px, 3vw, 36px) clamp(28px, 4vw, 40px);
  border: 1px solid rgba(30,18,13,0.09);
  border-radius: 16px;
  background: #FDFAF6;
}
.pf-step-num {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  color: #EF3B35;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.pf-step-title {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 900;
  color: #1E120D;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}
.pf-step-desc {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-weight: 500;
  color: #1E120D;
  line-height: 1.75;
  margin: 0;
}
.pf-faq {
  max-width: 680px;
  margin: 0 auto 56px;
  border-top: 1px solid var(--border-warm);
}
.pf-cta {
  text-align: center;
}

/* ==========================================================
   RESPONSIVE — why + proc-faq
   ========================================================== */
@media (max-width: 768px) {
  .why {
    padding: 80px 0 88px;
  }
  .why-header {
    padding: 0 var(--pad);
    margin-bottom: 48px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ending {
    padding-block-start: 56px;
  }
  .pf-steps {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }
  .pf-step {
    padding: 28px 22px 24px;
  }
  .pf-faq {
    max-width: 100%;
  }
}

/* ----------------------------------------------------------
   EP-ADDONS inner wrapper
   ---------------------------------------------------------- */
.ep-addons-inner {
  padding: 28px 0 8px;
}
.ep-addons-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

/* (duplicate proc-faq/closing blocks removed — unified into .ending above) */

/* ----------------------------------------------------------
   EP-EXPAND accordion
   ---------------------------------------------------------- */
.ep-expand {
  margin-top: 36px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.ep-expand-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: 1px solid var(--border-warm);
  border-radius: 4px;
  padding: 14px 20px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, border-color 0.2s;
}
.ep-expand-btn:hover {
  background: var(--cream);
  border-color: var(--rose);
}
.ep-expand-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
}
.ep-expand-icon::before,
.ep-expand-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
.ep-expand-icon::before { width: 2px; height: 14px; top: 2px; left: 8px; }
.ep-expand-icon::after  { width: 14px; height: 2px; top: 8px; left: 2px; }
.ep-expand-btn[aria-expanded="true"] .ep-expand-icon::before {
  transform: rotate(90deg);
  opacity: 0;
}
.ep-expand-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ep-expand-body.is-open {
  max-height: 1000px;
}
.ep-addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.ep-addon {
  background: #FDFAF6;
  border: 1px solid rgba(30,18,13,0.08);
  border-radius: 14px;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ep-addon-price {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 800;
  color: #EF3B35;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ep-addon-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(30,18,13,0.72);
}

/* ── BEFORE WE START ───────────────────────────────────── */
.bws-card {
  background: #FDFAF6;
  border: 1px solid rgba(30,18,13,0.08);
  border-radius: 20px;
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3.5vw, 44px);
  margin-top: clamp(20px, 2.5vw, 32px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  max-width: 960px;
  margin-inline: auto;
}
.bws-eyebrow {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(30,18,13,0.40);
  margin: 0 0 12px;
}
.bws-title {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: #1E120D;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0;
}
.bws-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bws-list li {
  font-size: clamp(0.9375rem, 1.4vw, 1rem);
  font-weight: 500;
  color: #1E120D;
  line-height: 1.75;
  padding-left: 18px;
  position: relative;
}
.bws-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #EF3B35;
}
@media (max-width: 680px) {
  .bws-card {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: clamp(16px, 3vw, 24px);
  }
}

@media (max-width: 768px) {
  .pf-steps { grid-template-columns: 1fr !important; gap: 14px !important; }
  .ep-addons-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .ep-care-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .ep-addons-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   HERO V2 — Scrapbook / Kitsch Editorial
   Cream · Coral · Lime · Lavender · Hot Pink
   ============================================================ */

:root {
  --hv2-cream:  #F7F1EA;
  --hv2-lav-bg: #F3F0FF;
  --hv2-coral:  #EF3B35;
  --hv2-lime:   #C7F23A;
  --hv2-lav:    #B9A7FF;
  --hv2-pink:   #FFADD3;
  --hv2-accent: #EF3B35;
  --hv2-ink:    #1E120D;
  --hv2-navy:   #120E1C;
  --hv2-border: rgba(30,18,13,0.12);
}

@keyframes hv2-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes hv2-draw {
  to { stroke-dashoffset: 0; }
}

/* ── Section root ───────────────────────────────────────────── */
.hero-v2 {
  position: relative;
  background-color: var(--hv2-cream);
  background-image:
    linear-gradient(rgba(30,18,13,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,18,13,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── Split grid ────────────────────────────────────────────────── */
.hv2-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 44fr 56fr;
  gap: 0 52px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(28px, 5vw, 72px);
  width: 100%;
  align-items: center;
  min-height: calc(100vh - 72px);
}

/* ── Left: typography ─────────────────────────────────────────── */
.hv2-left {
  display: flex;
  flex-direction: column;
  padding-top: clamp(100px, 13vh, 160px);
  padding-bottom: clamp(48px, 7vh, 80px);
  position: relative;
  z-index: 2;
}

/* Label badge */
.hv2-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(28,15,10,0.52);
  border: 1px solid rgba(28,15,10,0.20);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 22px;
  background: rgba(255,255,255,0.55);
  width: fit-content;
}
.hv2-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #EF3B35;
  flex-shrink: 0;
}

/* ── Right: editorial card stage ─────────────────────────────── */
.hv2-right {
  padding-top: clamp(80px, 11vh, 130px);
  padding-bottom: clamp(40px, 6vh, 72px);
  display: flex;
  align-items: center;
}

/* ── Cards grid — 3 cards, main spans both rows ──────────────── */
.hv2-cards {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  width: 100%;
}
.hv2-card--main     { grid-column: 1; grid-row: 1 / 3; display: flex; flex-direction: column; }
.hv2-card--identity { grid-column: 2; grid-row: 1; }
.hv2-card--content  { grid-column: 2; grid-row: 2; }

/* Base card style */
.hv2-card {
  background: rgba(255,252,248,0.94);
  border: 1px solid rgba(28,15,10,0.08);
  border-radius: 16px;
  padding: 20px 20px 18px;
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 4px rgba(28,15,10,0.04), 0 4px 16px rgba(28,15,10,0.05);
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
}
.hv2-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 8px rgba(28,15,10,0.06), 0 12px 32px rgba(28,15,10,0.09);
}

/* ── Washi / Masking Tape ──────────────────────────────────────
   HTML <div class="tape tape--X"> elements only.
   Pseudo-elements avoided: backdrop-filter creates stacking
   context on hero cards; overflow:hidden clips portfolio cards.
   ─────────────────────────────────────────────────────────── */

/* Base tape strip */
.tape {
  position: absolute;
  border-radius: 2px;
  z-index: 50;
  pointer-events: none;
  /* layered bg: edge shadow + fiber grain + base color */
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.10) 0px,
      rgba(0,0,0,0.03) 4px,
      transparent 7px,
      transparent calc(100% - 7px),
      rgba(0,0,0,0.03) calc(100% - 4px),
      rgba(0,0,0,0.10) 100%
    ),
    repeating-linear-gradient(
      90deg,
      transparent            0px,
      transparent            3px,
      rgba(255,255,255,0.20) 3px,
      rgba(255,255,255,0.20) 4.5px,
      transparent            4.5px,
      transparent            8px
    ),
    var(--tape-color, rgba(252,230,35,0.86));
  box-shadow:
    0 4px 14px rgba(30,18,13,0.22),
    0 1px 3px  rgba(30,18,13,0.10),
    inset 0 0 0 0.5px rgba(0,0,0,0.04);
}

/* ── Tape colors ─────────────────────────────────────────────── */
.tape--yellow { --tape-color: rgba(252, 230, 34, 0.88); }
.tape--coral  { --tape-color: rgba(238, 126,  96, 0.82); }
.tape--cream  { --tape-color: rgba(216, 203, 180, 0.80); }

/* ── Hero main card tape (neon yellow) ───────────────────────── */
.hv2-card--main .tape {
  width: 96px;
  height: 26px;
  top: -13px;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
}

/* ── Portfolio card wrapper ──────────────────────────────────── */
.sw-card-pin {
  position: relative;
  display: flex;
  flex-direction: column;
}
.sw-card-pin > .sw-card {
  flex: 1;
}
.sw-card-pin .tape {
  width: 88px;
  height: 24px;
  top: -12px;
  left: 36%;
  transform: translateX(-50%) rotate(-3.5deg);
}

/* ── Main card ────────────────────────────────────────────────── */
.hv2-card--main {
  padding: 22px 22px 20px;
  gap: 12px;
  min-height: 280px;
}
.hv2-card-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(28,15,10,0.38);
}
.hv2-card-words {
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 900;
  line-height: 0.87;
  letter-spacing: -0.04em;
  color: var(--hv2-ink);
}
.hv2-card-words span { display: block; }
.hv2-card-bar {
  width: 36px;
  height: 4px;
  background: #EF3B35;
  border-radius: 2px;
  margin-top: auto;
}

/* ── Identity card ────────────────────────────────────────────── */
.hv2-card-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(28,15,10,0.38);
  margin-bottom: 12px;
}
.hv2-swatches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.hv2-swatches div {
  height: 28px;
  border-radius: 6px;
}

/* ── Content card — site structure map ───────────────────────── */
.hv2-site-map {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Each section row */
.hv2-sm-row {
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 7px;
  padding: 6px 8px;
  background: rgba(28,15,10,0.03);
  border: 1px solid rgba(28,15,10,0.06);
}
.hv2-sm-tag {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(28,15,10,0.35);
  width: 32px;
  flex-shrink: 0;
}
.hv2-sm-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hv2-sm-body--split {
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.hv2-sm-body--grid {
  flex-direction: row;
  gap: 4px;
}
.hv2-sm-body--center {
  align-items: center;
}

/* Hero row */
.hv2-sm-row--hero {
  background: rgba(255,248,242,0.8);
  border-color: rgba(239,59,53,0.12);
}
.hv2-sm-h {
  height: 5px; border-radius: 2px; background: rgba(28,15,10,0.20);
}
.hv2-sm-h--1 { width: 88%; }
.hv2-sm-h--2 { width: 65%; background: rgba(28,15,10,0.12); }
.hv2-sm-cta-pill {
  width: 36px; height: 10px;
  background: #EF3B35; border-radius: 5px; margin-top: 2px;
}

/* About row */
.hv2-sm-row--about { background: rgba(28,15,10,0.025); }
.hv2-sm-text-col { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.hv2-sm-line {
  height: 4px; border-radius: 2px; background: rgba(28,15,10,0.14);
}
.hv2-sm-line--s { width: 70%; background: rgba(28,15,10,0.09); }
.hv2-sm-img-block {
  width: 26px; height: 20px; border-radius: 3px;
  background: linear-gradient(135deg, rgba(198,229,96,0.5), rgba(196,181,253,0.5));
  border: 1px solid rgba(28,15,10,0.05); flex-shrink: 0;
}

/* Portfolio row */
.hv2-sm-row--portfolio { background: rgba(28,15,10,0.025); }
.hv2-sm-pcard {
  flex: 1; height: 22px; border-radius: 4px;
  overflow: hidden; position: relative; border: 1px solid rgba(28,15,10,0.05);
}
.hv2-sm-pcard::before {
  content: ''; display: block; height: 9px;
}
.hv2-sm-pcard::after {
  content: ''; display: block;
  margin: 3px 4px; height: 3px; border-radius: 2px;
  background: rgba(28,15,10,0.09);
}
.hv2-sm-pcard--a::before { background: rgba(230,57,53,0.45); }
.hv2-sm-pcard--b::before { background: rgba(196,181,253,0.55); }

/* CTA row */
.hv2-sm-row--cta {
  background: rgba(239,59,53,0.04);
  border-color: rgba(239,59,53,0.10);
}
.hv2-sm-cta-block {
  height: 11px; border-radius: 5px;
  background: rgba(239,59,53,0.22);
  width: 60%; align-self: center;
}

/* ── Browser/monitor preview (main card) ────────────────────── */
.hv2-monitor {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(28,15,10,0.10);
  background: #fff;
  margin-bottom: 14px;
  flex: 1;
  box-shadow: 0 2px 12px rgba(28,15,10,0.07);
}
.hv2-mon-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  background: #ECEAE7;
  border-bottom: 1px solid rgba(28,15,10,0.07);
}
.hv2-mon-dots {
  display: flex; gap: 5px; flex-shrink: 0;
}
.hv2-mon-dots i {
  display: block; width: 7px; height: 7px; border-radius: 50%;
}
.hv2-mon-url {
  flex: 1; max-width: 130px; margin: 0 auto;
  height: 12px; background: rgba(255,255,255,0.75);
  border-radius: 4px; border: 1px solid rgba(28,15,10,0.07);
}
.hv2-mon-body {
  background: #FDFAF6;
  display: flex; flex-direction: column;
}

/* Mini site nav */
.hv2-ms-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 11px;
  background: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(28,15,10,0.05);
}
.hv2-ms-logo {
  width: 38px; height: 6px;
  background: rgba(28,15,10,0.26); border-radius: 2px;
}
.hv2-ms-navlinks { display: flex; gap: 7px; }
.hv2-ms-navlinks i {
  display: block; width: 19px; height: 4px;
  background: rgba(28,15,10,0.11); border-radius: 2px;
}
.hv2-ms-navcta {
  width: 40px; height: 14px; background: #EF3B35; border-radius: 3px;
}

/* Mini site hero */
.hv2-ms-hero {
  display: grid; grid-template-columns: 1fr 0.65fr;
  gap: 10px; padding: 13px 11px 11px;
  background: rgba(255,248,242,0.8);
  align-items: center;
}
.hv2-ms-hcol { display: flex; flex-direction: column; gap: 4px; }
.hv2-ms-badge {
  width: 52px; height: 5px;
  background: rgba(28,15,10,0.13); border-radius: 10px; margin-bottom: 2px;
}
.hv2-ms-hl {
  border-radius: 2px; background: rgba(28,15,10,0.22);
}
.hv2-ms-hl--1 { height: 8px; width: 95%; }
.hv2-ms-hl--2 { height: 8px; width: 80%; background: rgba(28,15,10,0.18); }
.hv2-ms-hl--3 { height: 6px; width: 58%; background: rgba(28,15,10,0.10); }
.hv2-ms-btns { display: flex; gap: 5px; margin-top: 5px; }
.hv2-ms-btn-p { width: 50px; height: 14px; background: #EF3B35; border-radius: 3px; }
.hv2-ms-btn-g {
  width: 38px; height: 14px; background: transparent;
  border: 1px solid rgba(28,15,10,0.22); border-radius: 3px;
}
.hv2-ms-hvisual {
  height: 58px;
  background: linear-gradient(135deg, rgba(198,229,96,0.35) 0%, rgba(196,181,253,0.35) 100%);
  border-radius: 6px;
  border: 1px solid rgba(28,15,10,0.05);
  position: relative; overflow: hidden;
}
.hv2-ms-hvisual::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 8px,
    rgba(255,255,255,0.12) 8px, rgba(255,255,255,0.12) 9px
  );
}

/* Mini site works grid */
.hv2-ms-works {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 5px; padding: 8px 11px;
}
.hv2-ms-wcard {
  height: 34px; border-radius: 5px; overflow: hidden;
  border: 1px solid rgba(28,15,10,0.05); position: relative;
}
.hv2-ms-wcard::before {
  content: ''; display: block; height: 12px;
}
.hv2-ms-wcard::after {
  content: ''; display: block;
  margin: 3px 5px; height: 4px;
  border-radius: 2px; background: rgba(28,15,10,0.08);
}
.hv2-ms-wcard--a { background: rgba(239,59,53,0.08); }
.hv2-ms-wcard--a::before { background: rgba(239,59,53,0.55); }
.hv2-ms-wcard--b { background: rgba(199,242,58,0.10); }
.hv2-ms-wcard--b::before { background: rgba(199,242,58,0.60); }
.hv2-ms-wcard--c { background: rgba(185,167,255,0.10); }
.hv2-ms-wcard--c::before { background: rgba(185,167,255,0.65); }

/* ── Responsive card ─────────────────────────────────────────── */
.hv2-card--responsive {
  display: flex; flex-direction: column; gap: 12px;
}
.hv2-resp-row {
  display: flex; align-items: flex-end; gap: 10px;
}
.hv2-resp-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(28,15,10,0.32);
  text-align: center; margin-top: 2px;
}

/* ── Device frames — light cream editorial ───────────────────── */
.hv2-dev { flex-shrink: 0; }

/* Laptop */
.hv2-dev--laptop {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
}
.hv2-dev-lid {
  width: 100%;
  background: #DDD9D3;
  border-radius: 7px 7px 0 0;
  padding: 5px 5px 0;
  border: 1px solid rgba(28,15,10,0.18);
  border-bottom: none;
}
.hv2-dev-cam {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(28,15,10,0.22);
  margin: 0 auto 3px;
}
.hv2-dev-base {
  width: 114%; height: 8px;
  background: linear-gradient(180deg, #D0CCC6, #C4C0BA);
  border-radius: 0 0 4px 4px;
  display: flex; align-items: flex-end; justify-content: center;
  border: 1px solid rgba(28,15,10,0.14); border-top: none;
}
.hv2-dev-foot {
  width: 30%; height: 100%;
  background: rgba(28,15,10,0.12); border-radius: 0 0 3px 3px;
}

/* Tablet */
.hv2-dev--tablet {
  width: 46px;
  background: #DDD9D3;
  border-radius: 8px;
  border: 1px solid rgba(28,15,10,0.16);
  padding: 6px 5px;
  box-shadow: 0 2px 8px rgba(28,15,10,0.08);
}

/* Phone */
.hv2-dev--phone {
  width: 30px;
  background: #DDD9D3;
  border-radius: 12px;
  border: 1px solid rgba(28,15,10,0.16);
  padding: 5px 3px 7px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  box-shadow: 0 2px 8px rgba(28,15,10,0.08);
}
.hv2-dev-island {
  width: 12px; height: 4px;
  background: rgba(28,15,10,0.30);
  border-radius: 2px; flex-shrink: 0;
}
.hv2-dev-home {
  width: 14px; height: 3px;
  background: rgba(28,15,10,0.18); border-radius: 2px; flex-shrink: 0;
}

/* Shared screen canvas */
.hv2-dev-canvas {
  background: #FDFAF6;
  border-radius: 3px; overflow: hidden;
  display: flex; flex-direction: column;
  width: 100%;
  border: 1px solid rgba(28,15,10,0.06);
}
.hv2-dev--phone .hv2-dev-canvas { flex: 1; }

/* Screen content helpers */
.hv2-dc-nav {
  height: 8px;
  background: rgba(28,15,10,0.07);
  border-bottom: 1px solid rgba(28,15,10,0.05);
  flex-shrink: 0;
}
.hv2-dc-hero {
  height: 26px; flex-shrink: 0;
  background: rgba(255,248,242,0.9);
  position: relative;
}
.hv2-dc-hero::before {
  content: '';
  position: absolute; top: 6px; left: 5px; right: 38%;
  height: 4px; background: rgba(28,15,10,0.20); border-radius: 2px;
}
.hv2-dc-hero::after {
  content: '';
  position: absolute; top: 14px; left: 5px; right: 52%;
  height: 3px; background: rgba(28,15,10,0.12); border-radius: 2px;
}
.hv2-dc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px; padding: 4px;
}
.hv2-dc-grid > div {
  height: 10px; border-radius: 2px; background: rgba(28,15,10,0.08);
}
.hv2-dc-card {
  margin: 3px 3px 0;
  height: 14px; border-radius: 3px;
  background: rgba(28,15,10,0.07); flex-shrink: 0;
}

/* Eyebrow */
.hv2-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(28,15,10,0.40);
  margin: 0;
}

/* Headline — NOW the star of the show */
.hv2-title {
  font-family: var(--font-body);
  font-size: clamp(38px, 5.2vw, 80px);
  font-weight: 900;
  line-height: 1.04;
  color: var(--hv2-ink);
  word-break: keep-all;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 24px 0;
}
.hv2-line {
  display: block;
  overflow: hidden;
}
.hv2-period {
  color: #EF3B35;
}
em.hv2-accent {
  font-style: normal;
  color: var(--hv2-accent);
}

/* Doodle SVG underline */
.hv2-doodle {
  display: block;
  width: clamp(220px, 36vw, 460px);
  height: auto;
  margin-top: -6px;
  margin-bottom: 32px;
}
.hv2-doodle-path {
  animation: hv2-draw 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.85s forwards;
}

/* Sub text */
.hv2-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(28,15,10,0.55);
  line-height: 1.65;
  margin: 0 0 32px;
  word-break: keep-all;
  max-width: 560px;
}

/* CTA */
.hv2-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
}
.hv2-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: #EF3B35;
  color: #ffffff;
  border-radius: 12px;
  border: none;
  font-size: clamp(14px, 1.2vw, 15px);
  font-weight: 700;
  letter-spacing: 0em;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(239,59,53,0.30);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  flex-shrink: 0;
}
.hv2-btn-primary:hover {
  background: #d0302a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(239,59,53,0.38);
}
.hv2-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  border: 1.5px solid rgba(30,18,13,0.28);
  border-radius: 12px;
  color: var(--hv2-ink);
  background: rgba(255,255,255,0.55);
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
  flex-shrink: 0;
}
.hv2-btn-ghost:hover {
  border-color: rgba(30,18,13,0.50);
  background: rgba(255,255,255,0.80);
  transform: translateY(-1px);
}

/* Trust line */
.hv2-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 700;
  color: rgba(28,15,10,0.42);
  letter-spacing: 0.01em;
}
.hv2-trust span::before {
  content: '✓ ';
  color: var(--hv2-accent);
  font-weight: 900;
}

/* ── (wireframe / old right-side CSS removed) ─── */

/* ___placeholder_start___ */
.hv2-wf--noop {
  background: #FEFCF9;
  border-radius: 14px;
  border: 1px solid rgba(28,15,10,0.09);
  box-shadow:
    0 2px 8px rgba(28,15,10,0.06),
    0 12px 40px rgba(28,15,10,0.09),
    0 28px 72px rgba(28,15,10,0.06);
  overflow: hidden;
  transform: rotate(-1.5deg);
  transform-origin: center 25%;
  width: 100%;
}

/* Chrome bar */
.hv2-wf-chrome {
  background: #EDEBE8;
  border-bottom: 1px solid rgba(28,15,10,0.07);
  padding: 0 12px;
  height: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hv2-wf-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.hv2-wf-dots i {
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
}
.hv2-wf-dots i:nth-child(1) { background: #FF5F57; }
.hv2-wf-dots i:nth-child(2) { background: #FEBC2E; }
.hv2-wf-dots i:nth-child(3) { background: #28C840; }
.hv2-wf-url {
  flex: 1;
  max-width: 150px;
  margin: 0 auto;
  height: 13px;
  background: rgba(28,15,10,0.08);
  border-radius: 4px;
}
.hv2-wf-chrome-r { flex: 1; }

/* Body */
.hv2-wf-body { display: flex; flex-direction: column; }

/* Nav */
.hv2-wf-nav {
  background: #FEFCF9;
  border-bottom: 1px solid rgba(28,15,10,0.06);
  padding: 0 14px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.hv2-wf-logo {
  width: 48px; height: 7px;
  background: rgba(28,15,10,0.18);
  border-radius: 4px;
}
.hv2-wf-nav-r {
  display: flex;
  align-items: center;
  gap: 9px;
}
.hv2-wf-nl {
  width: 20px; height: 4px;
  background: rgba(28,15,10,0.11);
  border-radius: 2px;
}
.hv2-wf-nc {
  width: 38px; height: 16px;
  background: var(--hv2-accent);
  border-radius: 8px;
  opacity: 0.88;
}

/* Hero block */
.hv2-wf-hero {
  background: linear-gradient(140deg, #FF3B6B 0%, #FF6B6B 40%, #FFAB8A 100%);
  padding: 18px 16px 16px;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 12px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hv2-wf-hero::before {
  content: '';
  position: absolute;
  top: -30px; right: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  pointer-events: none;
}
.hv2-wf-hero-l {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hv2-wf-eyebrow {
  width: 60px; height: 5px;
  background: rgba(255,255,255,0.45);
  border-radius: 3px;
  margin-bottom: 2px;
}
.hv2-wf-hl {
  height: 9px;
  background: rgba(255,255,255,0.92);
  border-radius: 5px;
}
.hv2-wf-hl--1 { width: 100%; }
.hv2-wf-hl--2 { width: 82%; }
.hv2-wf-hl--3 { width: 58%; background: rgba(255,255,255,0.50); height: 6px; }
.hv2-wf-btns {
  display: flex;
  gap: 7px;
  margin-top: 8px;
}
.hv2-wf-btn-p {
  width: 60px; height: 18px;
  background: #fff;
  border-radius: 9px;
}
.hv2-wf-btn-g {
  width: 46px; height: 18px;
  background: rgba(255,255,255,0.22);
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.50);
}
.hv2-wf-hero-r { display: flex; }
.hv2-wf-img {
  flex: 1;
  height: 76px;
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.35);
  position: relative;
  overflow: hidden;
}
/* Abstract image shimmer blocks inside */
.hv2-wf-img::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: rgba(255,255,255,0.12);
  border-radius: 0 0 8px 8px;
}
.hv2-wf-img::after {
  content: '';
  position: absolute;
  top: 12px; left: 12px;
  width: 40%; height: 8px;
  background: rgba(255,255,255,0.55);
  border-radius: 4px;
}

/* Cards strip */
.hv2-wf-cards {
  background: #F5F3F0;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  border-top: 1px solid rgba(28,15,10,0.05);
}
.hv2-wf-card {
  border-radius: 9px;
  padding: 9px 9px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hv2-wf-card--coral { background: #FFE8E5; }
.hv2-wf-card--lav   { background: #EDE6FF; }
.hv2-wf-card--lime  { background: #EDFFD6; }

.hv2-wf-cic {
  width: 18px; height: 18px;
  border-radius: 6px;
  flex-shrink: 0;
}
.hv2-wf-card--coral .hv2-wf-cic { background: var(--hv2-coral); }
.hv2-wf-card--lav   .hv2-wf-cic { background: var(--hv2-lav); }
.hv2-wf-card--lime  .hv2-wf-cic { background: var(--hv2-lime); }

.hv2-wf-cl {
  height: 4px;
  width: 88%;
  background: rgba(28,15,10,0.12);
  border-radius: 2px;
}
.hv2-wf-cl--s { width: 62%; opacity: 0.7; }

/* MOBILE WIREFRAME CSS REMOVED */
.hv2-wmf {
  position: absolute;
  bottom: 0;
  right: -10px;
  width: 114px;
  border-radius: 22px;
  background: #FEFCF9;
  border: 1px solid rgba(28,15,10,0.09);
  box-shadow:
    0 6px 20px rgba(28,15,10,0.10),
    0 18px 52px rgba(28,15,10,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 5px 5px;
  transform: rotate(2.5deg);
  transform-origin: bottom center;
  z-index: 5;
}
.hv2-wmf-notch {
  width: 36%; height: 5px;
  background: rgba(28,15,10,0.13);
  border-radius: 10px;
  margin-bottom: 5px;
  flex-shrink: 0;
}
.hv2-wmf-screen {
  background: #FEFCF9;
  border-radius: 13px;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(28,15,10,0.05);
}
.hv2-wmf-home {
  width: 32px; height: 3px;
  background: rgba(28,15,10,0.13);
  border-radius: 2px;
  margin-top: 5px;
  flex-shrink: 0;
}

/* Mobile wireframe nav */
.hv2-wmf-nav {
  background: #EDEBE8;
  padding: 5px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(28,15,10,0.06);
}
.hv2-wmf-logo {
  width: 28px; height: 5px;
  background: rgba(28,15,10,0.20);
  border-radius: 3px;
}
.hv2-wmf-ham {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hv2-wmf-ham i {
  display: block;
  width: 10px; height: 1.5px;
  background: rgba(28,15,10,0.30);
  border-radius: 1px;
}

/* Mobile hero block */
.hv2-wmf-hero {
  background: linear-gradient(155deg, #FF3B6B 0%, #FF6B6B 55%, #FFAB8A 100%);
  padding: 14px 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hv2-wmf-hl {
  height: 8px;
  width: 90%;
  background: rgba(255,255,255,0.90);
  border-radius: 4px;
}
.hv2-wmf-hl--s { width: 65%; background: rgba(255,255,255,0.52); height: 6px; }
.hv2-wmf-btn {
  width: 68%; height: 17px;
  background: #fff;
  border-radius: 9px;
  margin-top: 6px;
}

/* Mobile wireframe cards */
.hv2-wmf-cards {
  background: #F5F3F0;
  padding: 7px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hv2-wmf-card {
  border-radius: 7px;
  height: 22px;
}
.hv2-wmf-card--lav  { background: #DDD6FF; }
.hv2-wmf-card--lime { background: #D9FFAB; }

/* ── Bottom ticker ──────────────────────────────────────────── */
.hv2-ticker {
  border-top: 1px solid rgba(28,15,10,0.18);
  overflow: hidden;
  padding-block: 12px;
  background: #2B1A10;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.hv2-ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: hv2-ticker 30s linear infinite;
}
.hv2-ti {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,248,240,0.55);
  padding-inline: 28px;
}
.hv2-t-dot {
  font-size: 12px;
  color: rgba(230,57,53,0.70);
  flex-shrink: 0;
  font-weight: 900;
  line-height: 1;
}

/* ── Nav: dark text on cream hero ───────────────────── */
.nav:not(.scrolled) .nav-logo,
.nav:not(.scrolled) .nav-links a:not(.nav-cta) {
  color: var(--hv2-ink);
}
.nav:not(.scrolled) .nav-cta {
  background: #E63935;
  color: #ffffff !important;
}
.nav:not(.scrolled) .nav-toggle span {
  background: var(--hv2-ink);
}

/* ── Mobile responsive ─────────────────────────────────────── */
@media (max-width: 960px) {
  .hv2-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hv2-right {
    padding-top: 0;
    padding-bottom: clamp(40px, 6vh, 56px);
  }
  .hv2-left {
    padding-top: clamp(100px, 14vh, 150px);
    padding-bottom: 32px;
  }
}

@media (max-width: 768px) {
  .hv2-title { font-size: clamp(32px, 8.5vw, 52px); }
  .hv2-sub { font-size: 15px; }
  .hv2-cards {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .hv2-card--main     { grid-column: 1 / -1; grid-row: 1; }
  .hv2-card--identity { grid-column: 1;       grid-row: 2; }
  .hv2-card--content  { grid-column: 2;       grid-row: 2; }
}

@media (max-width: 520px) {
  .hv2-title { font-size: clamp(28px, 8.5vw, 44px); }
  .hv2-cta { flex-direction: column; align-items: stretch; }
  .hv2-btn-primary, .hv2-btn-ghost { justify-content: center; }
  .hv2-cards {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .hv2-card--main     { grid-column: 1; grid-row: 1; }
  .hv2-card--identity { grid-column: 1; grid-row: 2; }
  .hv2-card--content  { grid-column: 1; grid-row: 3; }
}

@media (max-width: 380px) {
  .hv2-title { font-size: 26px; }
}

/* ── Portfolio gallery: single column on mobile ──────────── */
@media (max-width: 600px) {
  .pg-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
  .pg-pin {
    grid-column: 1;
  }
}
