/* =====================================================================
   zPhone — styles
   Tokens · base · loader · nav · hero · marquee · manifesto · features
   colors · catalog · why · contact · footer · responsive · motion
   ===================================================================== */

:root {
  --cherry:    #C4102C;
  --cherry-2:  #E9213F;
  --cherry-3:  #FF4D63;
  --burgundy:  #5C0F1F;
  --ink:       #120508;
  --ink-2:     #1C090E;
  --cream:     #F7F1EC;
  --cream-2:   #EFE5DE;
  --white:     #FFF7F6;
  --glacier:   #C6DBEA;
  --glacier-2: #E4EFF7;

  --bg: var(--cherry);
  --fg: var(--white);
  --fg-soft: rgba(255, 247, 246, .72);
  --line: rgba(255, 247, 246, .18);

  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.83, 0, .17, 1);

  --gutter: clamp(20px, 4vw, 64px);
  --nav-h: 76px;
}

/* theme swaps driven by JS (data-theme on <body>) */
body[data-theme="cherry"] { --bg: var(--cherry); --fg: var(--white); --fg-soft: rgba(255,247,246,.72); --line: rgba(255,247,246,.2); }
body[data-theme="ink"]    { --bg: var(--ink);    --fg: var(--white); --fg-soft: rgba(255,247,246,.6);  --line: rgba(255,247,246,.14); }
body[data-theme="cream"]  { --bg: var(--cream);  --fg: var(--ink);   --fg-soft: rgba(18,5,8,.62);     --line: rgba(18,5,8,.14); }
body[data-theme="glacier"] { --bg: var(--glacier); --fg: var(--ink);   --fg-soft: rgba(18,5,8,.62);     --line: rgba(18,5,8,.16);     --glow: #E4EFF7; }
body[data-theme="burgundy"]{ --bg: #5A1424;        --fg: var(--white); --fg-soft: rgba(255,247,246,.7);  --line: rgba(255,247,246,.18); --glow: #9B2B45; }
body[data-theme="silver"]  { --bg: #E3E3E6;        --fg: var(--ink);   --fg-soft: rgba(18,5,8,.62);     --line: rgba(18,5,8,.14);     --glow: #FFFFFF; }
body[data-theme="black"]   { --bg: #131315;        --fg: var(--white); --fg-soft: rgba(255,247,246,.62); --line: rgba(255,247,246,.14); --glow: #3A3A40; }

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; overflow-x: clip; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  transition: background-color .9s var(--ease-in-out), color .9s var(--ease-in-out);
}
body.is-loading { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em; line-height: 1; }
p { margin: 0; }
::selection { background: var(--ink); color: var(--cherry-3); }
:focus-visible { outline: 2px solid var(--cherry-3); outline-offset: 4px; border-radius: 2px; }

/* ---------- grain + cursor + progress ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 90; pointer-events: none;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .07; mix-blend-mode: overlay;
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0,0); } 20% { transform: translate(-3%,2%); }
  40% { transform: translate(2%,-4%); } 60% { transform: translate(-4%,-1%); }
  80% { transform: translate(3%,3%); } 100% { transform: translate(0,0); }
}

.cursor {
  position: fixed; top: 0; left: 0; z-index: 400; pointer-events: none;
  width: 14px; height: 14px; margin: -7px 0 0 -7px;
  display: none;
}
.cursor__dot {
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--fg); mix-blend-mode: difference;
  transition: transform .35s var(--ease-out), background .3s;
}
.cursor__label {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(.5);
  font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: .02em;
  color: var(--ink); opacity: 0; white-space: nowrap;
  transition: opacity .25s, transform .35s var(--ease-out);
}
body.drawer-open .cursor__dot, body.resv-open .cursor__dot { background: var(--cherry-2); mix-blend-mode: normal; box-shadow: 0 0 0 4px rgba(233,33,63,.25); }
body.drawer-open .cursor.is-hover .cursor__dot, body.resv-open .cursor.is-hover .cursor__dot { background: var(--cherry-3); }
.cursor.is-hover .cursor__dot { transform: scale(4); }
.cursor.is-label .cursor__dot { transform: scale(6.5); background: var(--cherry-3); mix-blend-mode: normal; }
.cursor.is-label .cursor__label { opacity: 1; transform: translate(-50%, -50%) scale(1); }
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
}

.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 95; pointer-events: none; }
.progress i { display: block; height: 100%; width: 100%; background: var(--fg); transform-origin: 0 50%; transform: scaleX(0); opacity: .6; }

/* ---------- loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink); color: var(--white);
  display: grid; place-items: center;
}
.loader__inner { text-align: center; }
.loader__word { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 9vw, 120px); letter-spacing: -.04em; line-height: 1; }
.loader__word span { color: var(--cherry-2); }
.loader__count { margin-top: 18px; font-family: var(--font-display); font-weight: 300; font-size: clamp(14px, 1.6vw, 20px); letter-spacing: .2em; color: rgba(255,247,246,.55); font-variant-numeric: tabular-nums; }
.loader__line { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: rgba(255,247,246,.08); }
.loader__line i { display: block; height: 100%; width: 100%; background: var(--cherry-2); transform-origin: 0 50%; transform: scaleX(0); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 88;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 0 var(--gutter);
  color: var(--fg);
  transition: transform .5s var(--ease-out), color .9s var(--ease-in-out);
}
.nav.is-hidden { transform: translateY(-110%); }
body.menu-open .nav { color: var(--white); transform: none; }
body.menu-open .lang__btn.is-active { background: var(--white); color: var(--ink); }
.nav__logo { font-family: var(--font-display); font-weight: 800; font-size: 24px; letter-spacing: -.04em; }
.nav__logo span { font-weight: 300; }
.nav__logo b { font-weight: 800; transition: color .9s var(--ease-in-out); }
body:not([data-theme="cherry"]) .nav__logo b, body.menu-open .nav__logo b { color: var(--cherry-2); }
.nav__links { display: flex; gap: 28px; font-size: 14px; font-weight: 600; }
.nav__links a { position: relative; padding: 6px 0; opacity: .85; transition: opacity .3s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: currentColor; transform: scaleX(0); transform-origin: 100% 50%; transition: transform .5s var(--ease-out); }
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }
.nav__right { display: flex; align-items: center; gap: 14px; }

.lang { display: flex; border: 1px solid var(--line); border-radius: 999px; padding: 3px; font-size: 12px; font-weight: 700; }
.lang__btn { padding: 6px 12px; border-radius: 999px; opacity: .6; transition: background .3s, opacity .3s, color .3s; }
.lang__btn.is-active { background: var(--fg); color: var(--bg); opacity: 1; }

.burger { display: none; width: 44px; height: 44px; position: relative; }
.burger i { position: absolute; left: 10px; right: 10px; height: 2px; background: currentColor; transition: transform .5s var(--ease-out), top .5s var(--ease-out); }
.burger i:first-child { top: 17px; }
.burger i:last-child { top: 25px; }
.burger.is-open i:first-child { top: 21px; transform: rotate(45deg); }
.burger.is-open i:last-child { top: 21px; transform: rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 28px; border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: -.01em;
  overflow: hidden; isolation: isolate;
  transition: color .4s var(--ease-out);
}
.btn span { position: relative; z-index: 1; }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  border-radius: inherit; transform: translateY(101%);
  transition: transform .55s var(--ease-out);
}
.btn:hover::before { transform: translateY(0); }
.btn--solid { background: var(--fg); color: var(--bg); }
.btn--solid::before { background: var(--ink); }
.btn--solid:hover { color: var(--white); }
.btn--ghost { border: 1px solid var(--line); color: var(--fg); }
.btn--ghost::before { background: var(--fg); }
.btn--ghost:hover { color: var(--bg); }
.btn--pill { padding: 10px 18px; font-size: 13px; background: var(--fg); color: var(--bg); }
.btn--pill::before { background: var(--ink); }
.btn--pill:hover { color: var(--white); }

/* ---------- fullscreen menu ---------- */
.menu { position: fixed; inset: 0; z-index: 85; pointer-events: none; }
.menu__bg { position: absolute; inset: 0; background: var(--ink); clip-path: circle(0% at calc(100% - 44px) 38px); transition: clip-path .9s var(--ease-in-out); }
.menu.is-open { pointer-events: auto; }
.menu.is-open .menu__bg { clip-path: circle(150% at calc(100% - 44px) 38px); }
.menu__inner { position: relative; height: 100%; padding: calc(var(--nav-h) + 24px) var(--gutter) 40px; display: flex; flex-direction: column; justify-content: space-between; color: var(--white); }
.menu__links { display: flex; flex-direction: column; gap: 6px; }
.menu__link { font-family: var(--font-display); font-weight: 600; font-size: clamp(34px, 8vw, 72px); letter-spacing: -.03em; line-height: 1.05; opacity: 0; transform: translateY(30px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.menu.is-open .menu__link { opacity: 1; transform: none; }
.menu.is-open .menu__link:nth-child(1) { transition-delay: .25s; }
.menu.is-open .menu__link:nth-child(2) { transition-delay: .32s; }
.menu.is-open .menu__link:nth-child(3) { transition-delay: .39s; }
.menu.is-open .menu__link:nth-child(4) { transition-delay: .46s; }
.menu.is-open .menu__link:nth-child(5) { transition-delay: .53s; }
.menu__link:hover { color: var(--cherry-3); }
.menu__meta { display: flex; flex-wrap: wrap; gap: 8px 32px; font-size: 14px; color: rgba(255,247,246,.7); opacity: 0; transition: opacity .6s .6s; }
.menu.is-open .menu__meta { opacity: 1; }
.menu__meta a:hover { color: var(--cherry-3); }
.menu__meta p { flex-basis: 100%; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); grid-template-rows: 1fr auto;
  padding: calc(var(--nav-h) + 2vh) var(--gutter) 4vh;
  overflow: hidden; isolation: isolate;
}
.hero__glow {
  position: absolute; z-index: -1; width: 70vmax; height: 70vmax; border-radius: 50%;
  right: -20vmax; top: -10vmax;
  background: radial-gradient(closest-side, var(--glow, var(--glacier-2)), transparent 70%);
  opacity: .9; filter: blur(30px);
  transition: background .9s var(--ease-in-out);
  animation: glow 12s ease-in-out infinite alternate;
}
@keyframes glow { from { transform: translate(0,0) scale(1); } to { transform: translate(-8%, 10%) scale(1.15); } }
.hero__ring {
  position: absolute; z-index: -1; width: 120vmax; height: 120vmax; border-radius: 50%;
  left: 50%; top: 60%; transform: translate(-50%, -50%);
  border: 1px solid var(--line);
  animation: ring 40s linear infinite;
}
.hero__ring::before { content: ""; position: absolute; inset: 15%; border-radius: 50%; border: 1px dashed var(--line); }
@keyframes ring { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero__copy { align-self: center; max-width: 620px; position: relative; z-index: 2; }
.hero__kicker { font-size: 14px; font-weight: 600; letter-spacing: .02em; color: var(--fg-soft); margin-bottom: 26px; }
.hero__title { font-size: clamp(56px, 8.6vw, 136px); font-weight: 800; letter-spacing: -.05em; line-height: .92; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; transform: translateY(110%); }
.hero__sub { max-width: 46ch; margin-top: 30px; font-size: clamp(16px, 1.3vw, 20px); line-height: 1.45; color: var(--fg-soft); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero .btn--solid { background: var(--cherry); color: var(--white); }
.hero .btn--solid::before { background: var(--ink); }
body[data-theme="burgundy"] .hero .btn--solid, body[data-theme="black"] .hero .btn--solid { background: var(--white); color: var(--ink); }
body[data-theme="burgundy"] .hero .btn--solid::before, body[data-theme="black"] .hero .btn--solid::before { background: var(--cherry); }
body[data-theme="burgundy"] .hero .btn--solid:hover, body[data-theme="black"] .hero .btn--solid:hover { color: var(--white); }
body[data-theme="burgundy"] .nav__logo b, body[data-theme="black"] .nav__logo b { color: var(--cherry-3); }

.hero__visual { position: relative; align-self: center; justify-self: end; width: min(100%, 700px, 60svh); aspect-ratio: 1 / 1; z-index: 1; }
.hero__tilt { position: absolute; inset: 0; border-radius: 28px; overflow: hidden; transform-style: preserve-3d; will-change: transform; box-shadow: 0 60px 120px -40px rgba(18,5,8,.45); background: var(--ink); }
.hero__imgWrap { position: absolute; inset: 0; transform: scale(1.12); will-change: transform; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 1.2s var(--ease-in-out); }
.hero__img--next { opacity: 0; }
.hero__badge-word { transition: opacity .25s; }
.hero__visual::after { content: ""; position: absolute; inset: 0; border-radius: 28px; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.35); }
.hero__badge {
  position: absolute; left: -8%; bottom: 8%; z-index: 3;
  padding: 16px 22px; border-radius: 18px;
  background: rgba(18,5,8,.55); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,247,246,.15); color: var(--white);
  display: flex; flex-direction: column; gap: 2px; transform: translateY(20px); opacity: 0;
}
.hero__badge-word { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -.02em; }
.hero__badge-sub { font-size: 12px; color: rgba(255,247,246,.65); }

.hero__specs { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); margin-top: 4vh; padding-top: 18px; gap: 20px; }
.hero__specs div { display: flex; flex-direction: column; gap: 4px; opacity: 0; transform: translateY(14px); }
.hero__specs b { font-family: var(--font-display); font-weight: 600; font-size: clamp(18px, 2vw, 28px); letter-spacing: -.03em; }
.hero__specs span { font-size: 13px; color: var(--fg-soft); }

.hero__scroll { position: absolute; right: var(--gutter); bottom: 28px; display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--fg-soft); opacity: 0; }
.hero__scroll i { display: block; width: 1px; height: 44px; background: var(--line); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; inset: 0; background: var(--fg); animation: scrollcue 1.8s var(--ease-in-out) infinite; }
@keyframes scrollcue { 0% { transform: translateY(-100%); } 60% { transform: translateY(100%); } 100% { transform: translateY(100%); } }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; }
.marquee__track { display: flex; align-items: center; gap: 44px; white-space: nowrap; width: max-content; will-change: transform; }
.marquee__track span { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 3.6vw, 52px); letter-spacing: -.03em; }
.marquee__track i { width: 10px; height: 10px; border-radius: 50%; background: var(--fg); flex: none; }

/* ---------- manifesto ---------- */
.manifesto { padding: 22vh var(--gutter); display: grid; place-items: center; }
.manifesto__text { max-width: 1100px; font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 4.2vw, 62px); line-height: 1.16; letter-spacing: -.03em; text-align: center; }
.manifesto__text .w { display: inline-block; opacity: .16; transition: opacity .3s; }
.manifesto__text .w.is-on { opacity: 1; }

/* ---------- features (pinned horizontal) ---------- */
.features { position: relative; }
.features__pin { height: 100svh; overflow: hidden; display: flex; align-items: center; }
.features__track { display: flex; gap: 4vw; padding: 0 var(--gutter); will-change: transform; }
.feat {
  flex: none; width: min(88vw, 1080px); height: min(78svh, 720px);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0;
  border-radius: 28px; overflow: hidden;
  background: var(--ink-2); border: 1px solid var(--line);
}
.feat__media { position: relative; overflow: hidden; }
.feat__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); will-change: transform; }
.feat__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, var(--ink-2)); }
.feat__body { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(22px, 3vw, 48px); gap: 14px; }
.feat__num { font-family: var(--font-display); font-weight: 300; font-size: clamp(22px, 2.6vw, 40px); letter-spacing: -.02em; color: var(--cherry-3); }
.feat h3 { font-size: clamp(22px, 2.3vw, 36px); line-height: 1.1; }
.feat p { color: var(--fg-soft); max-width: 42ch; font-size: 15px; }

/* ---------- colors ---------- */
.colors { padding: 16vh var(--gutter) 14vh; text-align: center; }
.colors__head h2 { font-size: clamp(30px, 5vw, 72px); letter-spacing: -.04em; }
.colors__head p { margin-top: 16px; color: var(--fg-soft); font-size: 17px; }
.colors__stage { position: relative; margin: 6vh auto 0; width: min(100%, 820px); aspect-ratio: 4 / 3; border-radius: 32px; overflow: hidden; background: #1E1A1C; isolation: isolate; }
.colors__glow { position: absolute; inset: -20%; z-index: 0; background: radial-gradient(circle at 50% 60%, var(--c) 0%, transparent 55%); opacity: .75; filter: blur(30px); transition: background .8s var(--ease-out); }
.colors__img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; transition: filter .8s var(--ease-out), transform 1.1s var(--ease-out); will-change: filter; }
.colors__img.is-switching { transform: scale(1.04); }
.colors__name { position: absolute; z-index: 2; left: 0; right: 0; bottom: 4%; font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 8vw, 120px); letter-spacing: -.05em; color: rgba(255,247,246,.9); mix-blend-mode: difference; pointer-events: none; line-height: 1; }
.colors__note { margin: 22px auto 0; max-width: 46ch; font-size: 14px; color: var(--fg-soft); }
.colors__picker { display: flex; justify-content: center; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.swatch { display: flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; border-radius: 999px; border: 1px solid var(--line); font-weight: 600; font-size: 14px; transition: background .4s, color .4s, border-color .4s; }
.swatch i { width: 26px; height: 26px; border-radius: 50%; background: var(--c); box-shadow: inset 0 0 0 1px rgba(0,0,0,.15), inset -4px -6px 10px rgba(0,0,0,.25), inset 3px 4px 8px rgba(255,255,255,.25); }
.swatch:hover, .swatch.is-active { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* ---------- catalog ---------- */
.catalog { padding: 10vh var(--gutter) 16vh; }
.catalog__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.catalog__head h2 { font-size: clamp(34px, 6vw, 96px); letter-spacing: -.05em; }
.catalog__head p { max-width: 40ch; color: var(--fg-soft); }
.catalog__filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.chip { padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line); font-size: 13px; font-weight: 700; transition: background .35s, color .35s, border-color .35s; }
.chip:hover, .chip.is-active { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.catalog__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.card {
  position: relative; grid-column: span 4; min-height: 440px; text-align: left;
  border-radius: 24px; overflow: hidden; background: var(--ink); color: var(--white);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
  isolation: isolate; border: 1px solid rgba(255,247,246,.06);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out), opacity .4s, scale .4s;
}
.card.is-hidden { display: none; }
.card--wide { grid-column: span 8; min-height: 520px; }
.card__img { position: absolute; inset: 0; z-index: -2; background: var(--ink); width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 1.2s var(--ease-out); }
.card__finish { position: absolute; inset: 0; z-index: -3; background:
  radial-gradient(120% 90% at 85% 10%, color-mix(in srgb, var(--c) 85%, white) 0%, transparent 45%),
  radial-gradient(90% 80% at 15% 100%, var(--c) 0%, transparent 60%),
  linear-gradient(160deg, color-mix(in srgb, var(--c) 40%, #1a0a0f) 0%, #120508 100%);
  transition: transform 1.2s var(--ease-out), background .6s; transform: scale(1.02); }
.card__finish::after { content: ""; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; opacity: .5; }
.card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(18,5,8,0) 40%, rgba(18,5,8,.82)); }
.card:hover { transform: translateY(-6px); box-shadow: 0 40px 80px -30px rgba(18,5,8,.5); }
.card:hover .card__img, .card:hover .card__finish { transform: scale(1.08); }
.card__tag { position: absolute; top: 18px; left: 18px; padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; background: var(--cherry); color: var(--white); }
.card__tag--soft { background: rgba(255,247,246,.14); backdrop-filter: blur(8px); }
.card__dots { position: absolute; top: 20px; right: 18px; display: flex; gap: 6px; }
.card__dots i { width: 14px; height: 14px; border-radius: 50%; background: var(--c); box-shadow: inset 0 0 0 1px rgba(0,0,0,.2), 0 0 0 1px rgba(255,247,246,.12); }
.card__name { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 2vw, 30px); letter-spacing: -.03em; line-height: 1; }
.card--wide .card__name { font-size: clamp(28px, 3.4vw, 54px); }
.card__meta { display: block; margin-top: 8px; color: rgba(255,247,246,.7); font-size: 14px; }
.card__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: 16px; }
.card__price { font-family: var(--font-display); font-weight: 600; font-size: clamp(18px, 1.8vw, 26px); letter-spacing: -.02em; }
.card__price small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 12px; color: rgba(255,247,246,.6); letter-spacing: 0; }
.card__btn { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: var(--white); color: var(--ink); flex: none; transition: background .3s, color .3s, transform .5s var(--ease-out); }
.card__btn svg { width: 18px; height: 18px; }
.card:hover .card__btn { background: var(--cherry); color: var(--white); transform: rotate(-45deg); }

/* ---------- product drawer ---------- */
.drawer { position: fixed; inset: 0; z-index: 120; pointer-events: none; }
.drawer__overlay { position: absolute; inset: 0; background: rgba(18,5,8,.6); backdrop-filter: blur(6px); opacity: 0; transition: opacity .5s; }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(100%, 560px);
  background: var(--ink); color: var(--white); overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; touch-action: pan-y;
  transform: translateX(100%); transition: transform .7s var(--ease-in-out);
  display: flex; flex-direction: column; height: 100dvh;
}
.drawer.is-open { pointer-events: auto; }
.drawer.is-open .drawer__overlay { opacity: 1; }
.drawer.is-open .drawer__panel { transform: none; }
.drawer__close { position: absolute; top: 16px; right: 16px; z-index: 3; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,247,246,.12); backdrop-filter: blur(8px); }
.drawer__close i { position: absolute; left: 12px; right: 12px; top: 21px; height: 2px; background: var(--white); }
.drawer__close i:first-child { transform: rotate(45deg); } .drawer__close i:last-child { transform: rotate(-45deg); }
.drawer__visual { position: relative; aspect-ratio: 4 / 3; flex: none; overflow: hidden; background: var(--ink-2); isolation: isolate; }
.drawer__finish { position: absolute; inset: 0; z-index: 0; transition: background .7s var(--ease-out);
  background: radial-gradient(110% 80% at 80% 15%, color-mix(in srgb, var(--c, #6B1A2A) 85%, white) 0%, transparent 45%),
  radial-gradient(90% 90% at 20% 100%, var(--c, #6B1A2A) 0%, transparent 60%),
  linear-gradient(160deg, color-mix(in srgb, var(--c, #6B1A2A) 40%, #1a0a0f) 0%, #120508 100%); }
.drawer__visual img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center; display: none; transition: opacity .45s var(--ease-out), transform .8s var(--ease-out); }
.drawer__visual img.is-swapping { opacity: 0; transform: scale(1.03); }
.drawer__visual.has-img img { display: block; }
.drawer__visual.has-img .drawer__finish { display: none; }
.drawer__body { padding: 26px 28px 40px; display: flex; flex-direction: column; gap: 22px; }
.drawer__tag { align-self: flex-start; padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; background: var(--cherry); }
.drawer__body h3 { font-size: clamp(28px, 3vw, 40px); letter-spacing: -.04em; margin-top: -8px; }
.drawer__desc { color: rgba(255,247,246,.65); font-size: 15px; margin-top: -10px; }
.drawer__group { display: flex; flex-direction: column; gap: 10px; }
.drawer__label { font-size: 12px; font-weight: 700; color: rgba(255,247,246,.55); }
.drawer__colors { display: flex; flex-wrap: wrap; gap: 8px; }
.dcolor { display: flex; align-items: center; gap: 8px; padding: 6px 12px 6px 6px; border-radius: 999px; border: 1px solid rgba(255,247,246,.14); font-size: 13px; font-weight: 600; transition: border-color .3s, background .3s; }
.dcolor i { width: 22px; height: 22px; border-radius: 50%; background: var(--c); box-shadow: inset 0 0 0 1px rgba(0,0,0,.2), inset -3px -4px 8px rgba(0,0,0,.25), inset 2px 3px 6px rgba(255,255,255,.3); }
.dcolor:hover { border-color: rgba(255,247,246,.4); }
.dcolor.is-active { background: var(--white); color: var(--ink); border-color: var(--white); }
.drawer__storage { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.dstore { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-radius: 14px; border: 1px solid rgba(255,247,246,.14); font-weight: 700; font-size: 14px; transition: border-color .3s, background .3s; }
.dstore small { font-weight: 600; color: rgba(255,247,246,.6); }
.dstore:hover { border-color: rgba(255,247,246,.4); }
.dstore.is-active { background: var(--white); color: var(--ink); border-color: var(--white); }
.dstore.is-active small { color: rgba(18,5,8,.6); }
.drawer__price { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 18px 0; border-top: 1px solid rgba(255,247,246,.14); border-bottom: 1px solid rgba(255,247,246,.14); }
.drawer__price span { font-size: 14px; color: rgba(255,247,246,.65); }
.drawer__price b { font-family: var(--font-display); font-weight: 600; font-size: clamp(26px, 3vw, 38px); letter-spacing: -.03em; color: var(--cherry-3); white-space: nowrap; }
.drawer__perks { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 14px; color: rgba(255,247,246,.75); }
.drawer__perks li { display: flex; gap: 10px; align-items: baseline; }
.drawer__perks li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--cherry-2); flex: none; transform: translateY(-1px); }
.drawer__cta { display: grid; gap: 10px; position: sticky; bottom: 0; margin: 8px -28px -40px; padding: 14px 28px calc(20px + env(safe-area-inset-bottom)); background: linear-gradient(180deg, rgba(18,5,8,0), var(--ink) 26%); }
.drawer__cta .btn { width: 100%; }
.drawer__cta .btn--solid { background: var(--white); color: var(--ink); }
.drawer__cta .btn--solid::before { background: var(--cherry); }
.drawer__cta .btn--ghost { border-color: rgba(255,247,246,.2); color: var(--white); }
.drawer__cta .btn--ghost::before { background: var(--white); }
.drawer__cta .btn--ghost:hover { color: var(--ink); }
body.drawer-open { overflow: hidden; }

/* ---------- why ---------- */
.why { padding: 18vh var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.why__big h2 { font-size: clamp(38px, 6vw, 104px); letter-spacing: -.05em; line-height: .95; position: sticky; top: 15vh; }
.why__list { list-style: none; margin: 0; padding: 0; }
.why__list li { padding: 30px 0; border-top: 1px solid var(--line); }
.why__list li:last-child { border-bottom: 1px solid var(--line); }
.why__list b { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 2vw, 30px); letter-spacing: -.03em; margin-bottom: 10px; }
.why__list p { color: var(--fg-soft); max-width: 44ch; }

/* ---------- contact ---------- */
.contact { padding: 16vh var(--gutter) 14vh; }
.contact__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 6vw; align-items: start; }
.contact__copy h2 { font-size: clamp(40px, 7vw, 120px); letter-spacing: -.05em; line-height: .95; }
.contact__copy > p { margin-top: 22px; color: var(--fg-soft); max-width: 44ch; font-size: 18px; }
.contact__links { margin-top: 48px; display: flex; flex-direction: column; }
.contact__link { display: grid; grid-template-columns: 120px 1fr; gap: 16px; align-items: baseline; padding: 22px 0; border-top: 1px solid var(--line); transition: padding-left .5s var(--ease-out); }
.contact__link:last-child { border-bottom: 1px solid var(--line); }
.contact__link span { font-size: 13px; color: var(--fg-soft); }
.contact__link b { font-family: var(--font-display); font-weight: 600; font-size: clamp(18px, 2.2vw, 32px); letter-spacing: -.03em; line-height: 1.2; }
.contact__link:hover { padding-left: 14px; }
.contact__link:hover b { color: var(--cherry-3); }
.contact__map { position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--ink-2); border: 1px solid var(--line); }
.contact__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.92) contrast(1.1) hue-rotate(180deg) saturate(.4); }
.contact__hours { position: absolute; left: 16px; bottom: 16px; padding: 12px 16px; border-radius: 14px; background: rgba(18,5,8,.7); color: var(--white); backdrop-filter: blur(12px); font-size: 13px; font-weight: 600; }

/* ---------- footer ---------- */
.footer { position: relative; padding: 6vh var(--gutter) 24px; overflow: hidden; }
.footer__word { font-family: var(--font-display); font-weight: 900; font-size: clamp(90px, 22vw, 400px); letter-spacing: -.06em; line-height: .8; text-align: center; color: var(--cherry); opacity: .9; user-select: none; }
.footer__row { display: flex; flex-wrap: wrap; gap: 14px 30px; justify-content: space-between; align-items: center; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13px; color: var(--fg-soft); }
.footer__top { display: inline-flex; align-items: center; gap: 8px; color: var(--fg); font-weight: 700; }
.footer__top::before { content: "↑"; }


/* ---------- footer credit (Smart Agent) ---------- */
.footer__credit { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.footer__creditLabel { font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--fg-soft); }
.credit {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: -.02em;
  overflow: hidden; isolation: isolate;
  transition: color .45s var(--ease-out), border-color .45s var(--ease-out), transform .5s var(--ease-out);
}
.credit::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--cherry); transform: translateY(101%); transition: transform .5s var(--ease-out); }
.credit:hover { color: var(--white); border-color: var(--cherry); transform: translateY(-2px); }
.credit:hover::before { transform: translateY(0); }
.credit__mark { display: grid; place-items: center; width: 22px; height: 22px; flex: none; }
.credit__mark svg { width: 100%; height: 100%; transition: transform .6s var(--ease-out); }
.credit:hover .credit__mark svg { transform: rotate(180deg); }
/* rolling text */
.credit__text { display: block; overflow: hidden; height: 1.15em; }
.credit__line { display: flex; flex-direction: column; transition: transform .5s var(--ease-out); }
.credit__line > span { display: block; line-height: 1.15em; white-space: nowrap; }
.credit:hover .credit__line { transform: translateY(-1.15em); }
.credit__arrow { display: grid; place-items: center; width: 15px; height: 15px; flex: none; }
.credit__arrow svg { width: 100%; height: 100%; transition: transform .45s var(--ease-out); }
.credit:hover .credit__arrow svg { transform: translate(2px, -2px); }
@media (max-width: 900px) {
  .footer__credit { gap: 10px; margin-top: 20px; padding-right: 76px; justify-content: flex-start; }
  .footer__creditLabel { font-size: 11px; }
  .credit { font-size: 13px; padding: 9px 14px; }
}

/* ---------- floating telegram (mobile) ---------- */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 70; width: 56px; height: 56px; border-radius: 50%; display: none; place-items: center; background: var(--cherry); color: var(--white); box-shadow: 0 16px 40px -10px rgba(18,5,8,.5); }

/* ---------- reveal helpers ---------- */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.split .ch { display: inline-block; }

/* ---------- responsive ---------- */





/* ---------- trade-in ---------- */
.tradein { padding: 14vh var(--gutter) 12vh; }
.tradein__head { max-width: 720px; margin-bottom: 44px; }
.tradein__head h2 { font-size: clamp(34px, 6vw, 92px); letter-spacing: -.05em; line-height: .95; }
.tradein__head p { margin-top: 18px; color: var(--fg-soft); font-size: 17px; }
.ti { display: grid; grid-template-columns: 1.4fr .9fr; gap: 24px; align-items: start; }
.ti__steps { display: flex; flex-direction: column; gap: 16px; }
.ti__step { border: 1px solid var(--line); border-radius: 22px; padding: 24px; margin: 0; min-inline-size: 0; }
.ti__step legend { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: clamp(18px, 2vw, 26px); letter-spacing: -.03em; padding: 0; margin-bottom: 18px; }
.ti__n { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--fg); color: var(--bg); font-size: 15px; flex: none; }
.ti__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ti__field { display: flex; flex-direction: column; gap: 8px; font-size: 13px; font-weight: 600; color: var(--fg-soft); min-width: 0; }
.ti__field > span:first-child { display: block; line-height: 1.3; }
.ti__step > .ti__field + .ti__field, .ti__step > .ti__row + .ti__field, .ti__step > .ti__field + .ti__row { margin-top: 14px; }
.ti__row > .ti__field { margin-top: 0; }
.ti__field b { color: var(--fg); }
.ti select, .ti input[type="text"], .ti input[type="tel"], .resv input {
  width: 100%; min-width: 0; box-sizing: border-box; padding: 14px 16px; border-radius: 12px; font: inherit; font-size: 15px; font-weight: 500;
  color: var(--fg); background: color-mix(in srgb, var(--fg) 5%, transparent);
  border: 1px solid var(--line); transition: border-color .3s, background .3s;
}
.ti select:focus, .ti input:focus, .resv input:focus { outline: none; border-color: var(--fg); background: color-mix(in srgb, var(--fg) 8%, transparent); }
.ti select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.ti input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--cherry-2), var(--cherry-3)); outline: none; }
.ti input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--fg); border: 3px solid var(--bg); cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.3); }
.ti input[type="range"]::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: var(--fg); border: 3px solid var(--bg); cursor: pointer; }
.ti__hint { font-weight: 500; color: var(--fg-soft); font-size: 12px; }
.ti__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ti__chip { padding: 11px 15px; border-radius: 999px; border: 1px solid var(--line); font-size: 13px; font-weight: 700; color: var(--fg); transition: background .3s, color .3s, border-color .3s; }
.ti__chip:hover { border-color: var(--fg); }
.ti__chip.is-active { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.ti__drop { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 30px 20px; border: 1.5px dashed var(--line); border-radius: 16px; color: var(--fg-soft); font-size: 14px; font-weight: 600; cursor: pointer; transition: border-color .3s, background .3s, color .3s; }
.ti__drop:hover, .ti__drop.is-drag { border-color: var(--cherry-2); color: var(--fg); background: color-mix(in srgb, var(--cherry) 6%, transparent); }
.ti__thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.ti__thumb { position: relative; width: 76px; height: 76px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.ti__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ti__thumb button { position: absolute; top: 3px; right: 3px; width: 22px; height: 22px; border-radius: 50%; background: rgba(18,5,8,.7); color: #fff; font-size: 15px; line-height: 1; display: grid; place-items: center; }
.ti__estimate { position: sticky; top: calc(var(--nav-h) + 16px); border: 1px solid var(--line); border-radius: 22px; padding: 26px; background: color-mix(in srgb, var(--fg) 4%, transparent); display: flex; flex-direction: column; gap: 12px; }
.ti__estLabel { font-size: 13px; font-weight: 700; color: var(--fg-soft); }
.ti__estVal { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 4vw, 48px); letter-spacing: -.04em; color: var(--cherry-2); line-height: 1; }
body[data-theme="ink"] .ti__estVal { color: var(--cherry-3); }
.ti__estNote { font-size: 12px; color: var(--fg-soft); line-height: 1.45; }
.ti__submit, .ti__tg { width: 100%; margin-top: 4px; }
.ti__estimate .btn--solid { background: var(--cherry); color: #fff; }
.ti__estimate .btn--solid::before { background: var(--ink); }
.ti__estimate .btn--ghost { border-color: var(--line); color: var(--fg); }
.ti__estimate .btn--ghost::before { background: var(--fg); }
.ti__estimate .btn--ghost:hover { color: var(--bg); }
.ti__ok, .resv__ok { font-size: 13px; font-weight: 600; color: var(--cherry-2); padding: 12px 14px; border-radius: 12px; background: color-mix(in srgb, var(--cherry) 10%, transparent); }
body[data-theme="ink"] .ti__ok, body[data-theme="ink"] .resv__ok { color: var(--cherry-3); }

/* ---------- reservation modal ---------- */
.resv { position: fixed; inset: 0; z-index: 130; pointer-events: none; }
.resv__overlay { position: absolute; inset: 0; background: rgba(18,5,8,.6); backdrop-filter: blur(6px); opacity: 0; transition: opacity .4s; }
.resv__panel { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -46%) scale(.96); opacity: 0; width: min(94vw, 460px); max-height: 92svh; overflow-y: auto; background: var(--ink); color: var(--white); border-radius: 24px; padding: 30px 26px; display: flex; flex-direction: column; gap: 16px; transition: transform .5s var(--ease-out), opacity .4s; }
.resv.is-open { pointer-events: auto; }
.resv.is-open .resv__overlay { opacity: 1; }
.resv.is-open .resv__panel { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.resv__close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,247,246,.12); }
.resv__close i { position: absolute; left: 11px; right: 11px; top: 19px; height: 2px; background: #fff; }
.resv__close i:first-child { transform: rotate(45deg); } .resv__close i:last-child { transform: rotate(-45deg); }
.resv__panel h3 { font-size: clamp(24px, 3vw, 32px); letter-spacing: -.03em; }
.resv__item { font-size: 14px; color: rgba(255,247,246,.7); margin-top: -6px; }
.resv__panel form { display: flex; flex-direction: column; gap: 14px; }
.resv .ti__field span { color: rgba(255,247,246,.6); }
.resv .ti__chip { color: #fff; border-color: rgba(255,247,246,.18); }
.resv .ti__chip.is-active { background: #fff; color: var(--ink); border-color: #fff; }
.resv input { color: #fff; background: rgba(255,247,246,.06); border-color: rgba(255,247,246,.18); }
.resv .btn--solid { background: #fff; color: var(--ink); } .resv .btn--solid::before { background: var(--cherry); }
.resv .btn--ghost { border-color: rgba(255,247,246,.2); color: #fff; } .resv .btn--ghost::before { background: #fff; } .resv .btn--ghost:hover { color: var(--ink); }
body.resv-open { overflow: hidden; }

/* ---------- animation fail-safe: no-anim shows everything ---------- */
.no-anim .loader { display: none !important; }
.no-anim .reveal, .no-anim .hero__title .line > span, .no-anim .hero__badge,
.no-anim .hero__specs div, .no-anim .hero__scroll, .no-anim .hero__kicker, .no-anim .hero__sub { opacity: 1 !important; transform: none !important; }
.no-anim body { overflow: auto !important; }
.no-anim .manifesto__text .w { opacity: 1 !important; }


/* ---------- dual currency (MDL primary, EUR secondary) ---------- */
.drawer__price b em { display: block; font-style: normal; font-family: var(--font-body); font-weight: 500; font-size: 14px; letter-spacing: 0; color: rgba(255,247,246,.5); margin-top: 2px; }
.ti__estVal em { display: block; font-style: normal; font-family: var(--font-body); font-weight: 500; font-size: 15px; color: var(--fg-soft); margin-top: 4px; }


/* ---------- trust ---------- */
.trust { padding: 14vh var(--gutter) 12vh; }
.trust__head { max-width: 680px; margin-bottom: 44px; }
.trust__head h2 { font-size: clamp(34px, 6vw, 92px); letter-spacing: -.05em; line-height: .95; }
.trust__head p { margin-top: 16px; color: var(--fg-soft); font-size: 17px; }
.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; }
.trust__card { border: 1px solid var(--line); border-radius: 22px; padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.trust__k { font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--cherry-2); }
body[data-theme="ink"] .trust__k { color: var(--cherry-3); }
.trust__card b { font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 2.2vw, 30px); letter-spacing: -.03em; }
.trust__card p { color: var(--fg-soft); font-size: 15px; line-height: 1.5; }
.trust__visit { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; }
.trust__visitCopy, .trust__reviews { border: 1px solid var(--line); border-radius: 22px; padding: 32px; }
.trust__visitCopy { display: flex; flex-direction: column; }
.trust__visitCopy h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(24px, 3vw, 40px); letter-spacing: -.03em; }
.trust__steps { list-style: none; counter-reset: s; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.trust__steps li { counter-increment: s; position: relative; padding-left: 44px; font-size: 16px; color: var(--fg); }
.trust__steps li::before { content: counter(s); position: absolute; left: 0; top: -2px; width: 30px; height: 30px; border-radius: 50%; background: var(--fg); color: var(--bg); font-family: var(--font-display); font-weight: 600; font-size: 14px; display: grid; place-items: center; }
.trust__hours { margin-top: 22px; font-size: 14px; color: var(--fg-soft); }
.trust__visitCta { margin-top: auto; padding-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.trust__reviews { display: flex; flex-direction: column; gap: 14px; }
.trust__quote { margin: 0; padding: 20px; border-radius: 16px; background: color-mix(in srgb, var(--fg) 5%, transparent); }
.trust__quote p { font-size: 17px; line-height: 1.4; }
.trust__quote cite { display: block; margin-top: 12px; font-style: normal; font-size: 13px; color: var(--fg-soft); }
.trust__reviewsLink { margin-top: auto; font-size: 14px; font-weight: 700; color: var(--cherry-2); }
body[data-theme="ink"] .trust__reviewsLink { color: var(--cherry-3); }
.trust__reviewsLink:hover { text-decoration: underline; }

/* ---------- submission pop-up ---------- */
.done { position: fixed; inset: 0; z-index: 140; pointer-events: none; }
.done__overlay { position: absolute; inset: 0; background: rgba(18,5,8,.62); backdrop-filter: blur(6px); opacity: 0; transition: opacity .4s; }
.done__panel { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -46%) scale(.96); opacity: 0; width: min(92vw, 420px); background: var(--ink); color: var(--white); border-radius: 24px; padding: 34px 28px 28px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; transition: transform .5s var(--ease-out), opacity .4s; }
.done.is-open { pointer-events: auto; }
.done.is-open .done__overlay { opacity: 1; }
.done.is-open .done__panel { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.done__icon { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--cherry); color: #fff; box-shadow: 0 0 0 10px rgba(196,16,44,.18); }
.done.is-error .done__icon { background: #444; box-shadow: 0 0 0 10px rgba(255,255,255,.08); }
.done__x { display: none; } .done.is-error .done__x { display: block; } .done.is-error .done__ok { display: none; }
.done__debug { font-family: ui-monospace, Menlo, monospace; font-size: 11px; color: rgba(255,247,246,.45); word-break: break-word; max-width: 100%; }
.done__panel h3 { font-size: clamp(22px, 3vw, 28px); letter-spacing: -.03em; }
.done__panel p { color: rgba(255,247,246,.7); font-size: 15px; line-height: 1.45; }
.done .btn--solid { background: #fff; color: var(--ink); margin-top: 6px; min-width: 140px; }
.done .btn--solid::before { background: var(--cherry); }
.done .btn--solid:hover { color: #fff; }
body.done-open { overflow: hidden; }

/* ---------- hero theme crossfade: text fades at the same speed as the background ---------- */
.hero__kicker, .hero__sub, .hero__specs b, .hero__specs span, .hero__specs, .hero__scroll, .hero__title,
.hero .btn--ghost, .nav__links a, .nav__logo, .marquee, .marquee__track span, .marquee__track i {
  transition-property: color, background-color, border-color; transition-duration: .9s; transition-timing-function: var(--ease-in-out);
}
.hero .btn--solid { transition: color .9s var(--ease-in-out), background-color .9s var(--ease-in-out); }

/* ---------- responsive (kept last so it always wins) ---------- */
@media (max-width: 1100px) {
  .hero__visual { width: min(100%, 560px); }
}
@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  .nav__links, .nav__phone { display: none; }
  .burger { display: block; }
  .fab { display: grid; }

  .hero { grid-template-columns: 1fr; grid-template-rows: auto auto auto; padding-top: calc(var(--nav-h) + 12px); padding-bottom: 12vh; min-height: auto; }
  .hero__copy { order: 2; margin-top: 26px; }
  .hero__visual { order: 1; width: 100%; aspect-ratio: 4 / 3; }
  .hero__imgWrap { transform: none; }
  .hero__img { object-position: center; }
  .hero__tilt { border-radius: 20px; }
  .hero__badge { left: 12px; bottom: 12px; padding: 12px 16px; }
  .hero__title { font-size: clamp(52px, 17vw, 96px); }
  .hero__specs { order: 3; grid-template-columns: 1fr 1fr; gap: 16px 12px; margin-top: 40px; }
  .hero__scroll { display: none; }
  .hero__ring { display: none; }

  .features__pin { height: auto; display: block; overflow: visible; }
  .features__track { flex-direction: column; gap: 16px; padding: 4vh var(--gutter) 10vh; transform: none !important; }
  .feat { width: 100%; height: auto; grid-template-columns: 1fr; border-radius: 22px; }
  .feat__media { aspect-ratio: 4 / 3; }
  .feat__media::after { background: linear-gradient(180deg, transparent 55%, var(--ink-2)); }
  .feat__media img { transform: none !important; }

  .colors__stage { aspect-ratio: 4 / 5; border-radius: 22px; }
  .card, .card--wide { grid-column: span 12; min-height: 360px; }
  .drawer__panel { top: auto; width: 100%; height: auto; max-height: 92dvh; border-radius: 24px 24px 0 0; transform: translateY(100%); -webkit-overflow-scrolling: touch; touch-action: pan-y; }
  .drawer__visual { aspect-ratio: 16 / 10; }
  .drawer__body { padding: 20px 20px 32px; }
  .drawer__cta { margin: 8px -20px -32px; padding: 12px 20px calc(16px + env(safe-area-inset-bottom)); }
  .drawer__cta { grid-template-columns: 1fr 1fr; gap: 8px; }
  .drawer__cta .btn--solid { grid-column: 1 / -1; }
  .drawer__cta .btn { padding: 13px 12px; font-size: 13px; }
  .why { grid-template-columns: 1fr; gap: 24px; }
  .why__big h2 { position: static; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__link { grid-template-columns: 1fr; gap: 6px; }
  .contact__map { aspect-ratio: 4 / 3; }
  .menu__link { font-size: clamp(38px, 11vw, 64px); }
  .ti { grid-template-columns: 1fr; }
  .ti__estimate { position: static; order: 3; }
  .ti__row { grid-template-columns: 1fr; }
  .resv__panel { left: 0; right: 0; bottom: 0; top: auto; width: 100%; transform: translateY(100%); border-radius: 24px 24px 0 0; max-height: 90svh; }
  .resv.is-open .resv__panel { transform: translateY(0); }
  .trust__grid { grid-template-columns: 1fr; }
  .trust__visit { grid-template-columns: 1fr; }
}
@media (min-width: 901px) and (max-width: 1200px) {
  .card { grid-column: span 6; }
  .card--wide { grid-column: span 12; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .grain, .hero__glow, .hero__ring, .hero__scroll i::after { animation: none; }
  .hero__title .line > span { transform: none; }
  .hero__badge, .hero__specs div, .hero__scroll { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; }
  .manifesto__text .w { opacity: 1; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
