/* ============================================================
   GRAPE — Mobile experience (phone-first, ~390px canvas)
   Act 1  Intro   Act 2  Film   Act 3  Consultation
   Loads after grape.css (tokens, .btn) and
   grape-contact.css (form fields, .thanks).
   ============================================================ */

html, body { background: #151314; }
body { color: var(--white); }

/* Vertical swipe must work wherever the finger lands — cards, images and SVGs
   never swallow the page scroll gesture. */
image-slot, .scard, .scard *, .cj__card, .cj__card *, img, svg, video { touch-action: pan-y pinch-zoom; }

/* Dark-surface type system — brand black & white */
:root {
  --font-mono: var(--font-grotesk);
  --font-serif: var(--font-grotesk);
  --font-sans: var(--font-grotesk);
}

/* ---------------- Loader ---------------- */
#mload {
  position: fixed; inset: 0; z-index: 999; background: #151314;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease);
}
#mload.hide { opacity: 0; pointer-events: none; }
#mload .mload__logo { display: flex; flex-direction: column; align-items: center; gap: 15px; }
#mload .mload__word { height: 20px; width: auto; display: block; filter: brightness(0) invert(1); }
#mload .mload__mark {
  height: 30px; width: auto; display: block; filter: brightness(0) invert(1);
  /* a soft dip travels right→left across the mark, fading the shapes in sequence */
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 36%, rgba(0,0,0,0.1) 50%, #000 64%, #000 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 36%, rgba(0,0,0,0.1) 50%, #000 64%, #000 100%);
  -webkit-mask-size: 300% 100%; mask-size: 300% 100%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  animation: markwave 1.5s linear infinite;
}
@keyframes markwave {
  0% { -webkit-mask-position: 130% 0; mask-position: 130% 0; }
  100% { -webkit-mask-position: -30% 0; mask-position: -30% 0; }
}

/* ---------------- Top bar ---------------- */
.mbar {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 14px; padding-top: max(46px, calc(env(safe-area-inset-top) + 11px));
}
.mbar__scrim {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(16,11,14,0.6) 0%, rgba(16,11,14,0.26) 56%, transparent 100%);
  transition: background 0.4s var(--ease);
}
.mbar.condensed .mbar__scrim {
  background: linear-gradient(180deg, rgba(16,11,14,0.86) 0%, rgba(16,11,14,0.55) 62%, rgba(16,11,14,0.12) 100%);
}
.mbar .mbar-logo { display: inline-flex; flex-direction: column; align-items: center; gap: 3px; line-height: 0; flex: 0 0 auto; }
.mbar .mbar-logo img {
  width: auto; display: block;
  filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}
.mbar .mbar-logo .mbar-logo__mark { height: 11px; }
.mbar .mbar-logo .mbar-logo__word { height: 14px; }
.mbar__pills { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.mbar-cta {
  flex: 0 0 auto;
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.04em; color: rgba(255,255,255,0.92);
  padding: 0.5em 0.85em; border: 1px solid rgba(255,255,255,0.2); border-radius: 999px;
  background: rgba(216,216,224,0.15); backdrop-filter: blur(10px) saturate(1.1); -webkit-backdrop-filter: blur(10px) saturate(1.1);
  text-shadow: 0 1px 3px rgba(0,0,0,0.45); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 0.42em;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s, transform 0.15s;
}
.mbar-cta--book { background: rgba(255,255,255,0.17); }
.mbar-cta .dotmark { width: 5px; height: 5px; border-radius: 999px 999px 0 0; background: var(--grad-warm); display: inline-block; }
.mbar-cta:hover { background: rgba(234,234,239,0.26); border-color: rgba(255,255,255,0.4); }
.mbar-cta:active { transform: scale(0.96); background: rgba(255,255,255,0.92); color: var(--ink); border-color: transparent; text-shadow: none; }
@media (max-width: 380px) {
  .mbar-cta { font-size: 0.55rem; padding: 0.5em 0.72em; letter-spacing: 0.02em; }
  .mbar__pills { gap: 6px; }
}

/* ============================================================
   ACT 2 — Film
   ============================================================ */
.mfilm { position: relative; height: auto; background: #15100f; }
.mfilm__drive { height: 200vh; position: relative; z-index: 0; pointer-events: none; }
.mfilm__stage { position: sticky; top: 0; height: 100svh; overflow: hidden; background: #15100f; }
.mfilm__v { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transform: scale(1.12); opacity: 0; pointer-events: none; z-index: 0; }
.mfilm__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 1; background: #15100f; }
.mfilm__scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(20,14,12,0.4) 0%, transparent 18%, transparent 44%, rgba(20,14,12,0.66) 82%, rgba(20,14,12,0.88) 100%);
}

/* progress ticks (01·02·03) */
.mticks {
  position: absolute; top: calc(104px + env(safe-area-inset-top)); left: 16px; right: auto; z-index: 4;
  display: flex; flex-direction: column; gap: 8px; align-items: flex-start;
}
.mtick { display: flex; align-items: center; gap: 7px; opacity: 0.4; transition: opacity 0.35s var(--ease); }
.mtick.on { opacity: 1; }
.mtick b { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.14em; color: rgba(255,255,255,0.85); text-shadow: 0 1px 5px rgba(0,0,0,0.5); }
.mtick i { width: 14px; height: 2px; border-radius: 2px; background: rgba(255,255,255,0.4); transition: width 0.35s var(--ease), background-color 0.35s; }
.mtick.on i { width: 24px; background: var(--grad-warm-x); }

/* caption beats — small, docked at the very bottom */
.beat {
  position: absolute; left: 0; right: 0; bottom: calc(34px + env(safe-area-inset-bottom)); z-index: 5;
  padding: 0 28px; text-align: center; color: #fff; opacity: 0; will-change: opacity, transform;
}
.beat .b-eyebrow {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-size: 0.54rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); margin-bottom: 8px;
}
.beat .b-eyebrow::before, .beat .b-eyebrow::after { content:""; width: 15px; height: 2px; background: var(--grad-warm-x); }
.beat h2 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; font-size: clamp(1.2rem, 5.4vw, 1.45rem); text-shadow: 0 3px 22px rgba(0,0,0,0.55); }
/* beat 01 title held to a single line (it's a long sentence, so type scales down to fit) */
#beat1 h2 { white-space: nowrap; letter-spacing: -0.028em; font-size: clamp(0.78rem, 3.9vw, 1.05rem); }
/* small greyish voice-command example under the beat 01 title */
.beat__voice { margin: 5px auto 0; max-width: 30ch; font-size: 0.6rem; font-weight: 300; font-style: italic; letter-spacing: 0.01em; color: rgba(255,255,255,0.45); text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
.beat p { margin: 7px auto 0; max-width: 34ch; font-size: 0.78rem; font-weight: 300; line-height: 1.45; color: rgba(255,255,255,0.86); text-shadow: 0 2px 12px rgba(0,0,0,0.6); }

/* end / hand-off CTA */
.mend {
  position: absolute; left: 0; right: 0; bottom: calc(40px + env(safe-area-inset-bottom)); z-index: 7;
  padding: 0 28px; text-align: center; opacity: 0; pointer-events: none; will-change: opacity, transform;
}
.mend.live { pointer-events: auto; }
.mend .b-eyebrow { display: inline-flex; align-items: center; gap: 0.55em; font-size: 0.54rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.mend .b-eyebrow::before, .mend .b-eyebrow::after { content:""; width: 15px; height: 2px; background: var(--grad-warm-x); }
.mend h2 { color: #fff; font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; font-size: clamp(1.35rem,5.8vw,1.6rem); text-shadow: 0 3px 22px rgba(0,0,0,0.55); }
.mend p { margin: 8px auto 16px; max-width: 30ch; font-size: 0.78rem; color: rgba(255,255,255,0.86); text-shadow: 0 2px 12px rgba(0,0,0,0.6); line-height: 1.45; }
.mend .btn { font-size: 0.8rem; padding: 0.78em 1.3em; box-shadow: 0 14px 36px -14px rgba(0,0,0,0.7); }
.mend__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
@media (max-width: 400px) { .mend__actions { flex-direction: column; align-items: center; } .mend__actions .btn { width: 100%; max-width: 260px; justify-content: center; } }

/* opening hero overlay + animated begin cue */
.mhero {
  position: absolute; inset: 0; z-index: 6; pointer-events: none; will-change: opacity;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 26px calc(28px + env(safe-area-inset-bottom));
}
.mhero__text { margin-bottom: 0; }
/* ring diagram composited over the dim first frame, above the headline */
.mhero__ring { width: 100%; display: flex; justify-content: center; margin: 0 0 4px; }
.mhero__ring svg { width: min(82vw, 360px); height: auto; display: block; }
@media (max-height: 720px){ .mhero__ring svg { width: min(64vw, 290px); } }
/* dark scrim behind the ring — guarantees a dark room for the warm glow to
   pop against; fades out with #filmCue as the lights come up on scroll */
.mhero__dim { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(78% 56% at 50% 42%, rgba(8,6,8,0.82), rgba(11,8,10,0.6) 62%, rgba(11,8,10,0.42)); }
.mhero__ring, .mhero__begin { position: relative; z-index: 1; }
/* hero ring is glyphs-only on the dark room — no labels, no grey halo */
.mhero__ring .hh-label { display: none; }
/* clean opening — no progress ticks competing with the ring */
.mticks { display: none; }

/* headline overlay — fades IN over the waking room as the ring fades out */
.mfilm__hl {
  position: absolute; inset: 0; z-index: 6; pointer-events: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 26px; opacity: 0; will-change: opacity, transform;
}
.mfilm__hl-eyebrow {
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.8);
  margin-bottom: 16px; text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.mfilm__hl-title {
  font-family: var(--font-grotesk); font-weight: 700; line-height: 1.08;
  font-size: clamp(2rem, 9vw, 2.7rem); color: #fff; text-shadow: 0 3px 26px rgba(0,0,0,0.6);
  max-width: 14ch; margin: 0 auto;
}
.mfilm__hl-title em { font-style: italic; background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: none; }
.mhero__eyebrow {
  display: block; font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.78);
  margin-bottom: 16px; text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.mhero__title {
  font-family: var(--font-grotesk); font-weight: 700; letter-spacing: 0; line-height: 1.08;
  font-size: clamp(2rem, 9vw, 2.7rem); color: #fff; text-shadow: 0 3px 26px rgba(0,0,0,0.55);
  max-width: 14ch; margin: 0 auto;
}
.mhero__title em { font-style: italic; background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: none; }
.mhero__begin {
  position: absolute; left: 26px; right: 26px;
  bottom: calc(34px + env(safe-area-inset-bottom)); z-index: 7;
  pointer-events: auto; background: none; border: 0; cursor: pointer; padding: 10px 0;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.9); -webkit-tap-highlight-color: transparent;
}
.mhero__label {
  font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); text-shadow: 0 2px 8px rgba(0,0,0,0.55);
  transition: color 0.25s, letter-spacing 0.4s var(--ease);
}
.mhero__rule {
  position: relative; width: 100%; max-width: 360px; height: 16px;
  display: flex; align-items: center; justify-content: center;
}
/* the smooth hairline, fading at both ends, with a clear gap in the very middle */
.mhero__rule::before, .mhero__rule::after {
  content: ""; position: absolute; top: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55));
}
.mhero__rule::before { left: 0; right: calc(50% + 16px); }
.mhero__rule::after  { right: 0; left: calc(50% + 16px); transform: scaleX(-1); }
/* minimal chevron, centred on the line — original shape, gradient-filled via mask */
.mhero__chev {
  position: relative; width: 13px; height: 13px; margin-top: -3px;
  background: var(--grad-warm, linear-gradient(100deg, #ED173D 0%, #F49173 50%, #F1B528 100%));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 8.5l7 7 7-7' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='square'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 8.5l7 7 7-7' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='square'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
  animation: mbounce 1.8s ease-in-out infinite;
}
.mhero__begin:hover .mhero__label { color: #fff; letter-spacing: 0.34em; }
.mhero__begin:hover .mhero__chev,
.mhero__begin:active .mhero__chev { color: #fff; }
@keyframes mbounce {
  0%,100% { transform: translateY(-2px); opacity: 0.75; }
  50% { transform: translateY(2px); opacity: 1; }
}

/* ============================================================
   ACT 3 — Consultation (mobile-native)
   ============================================================ */
/* Consultation rises UP over the held Solutions/film scene on its own opaque
   aubergine background (the sticky film stage stays pinned behind it). */
.mc { position: relative; z-index: 20; overflow: hidden; background: var(--black-deep); color: var(--white); padding: calc(96px + env(safe-area-inset-top)) 22px calc(40px + env(safe-area-inset-bottom)); min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-start; }
.mc__glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 65%); filter: blur(30px); top: -180px; right: -160px; }
.mc__glow.g2 { top: auto; right: auto; bottom: -200px; left: -160px; width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(255,255,255,0.04), transparent 65%); }
.mc__inner { position: relative; z-index: 1; max-width: 460px; margin: 0 auto; }

.mc .eyebrow { color: var(--gray-on-dark); justify-content: center; font-size: 0.6rem; letter-spacing: 0.28em; }
.mc .eyebrow::before, .mc .eyebrow::after { background: rgba(255,255,255,0.3); }
.mc__title { text-align: center; color: #fff; font-weight: 800; letter-spacing: -0.025em; line-height: 1.1;
  font-size: clamp(1.4rem, 6.4vw, 1.68rem); margin: 6px 0 7px; }
.mc__lead { text-align: center; color: rgba(255,255,255,0.65); font-size: 0.86rem; line-height: 1.5; max-width: 34ch; margin: 0 auto; }

/* direct-contact buttons — big tap targets */
.mc__contact { display: flex; flex-direction: column; gap: 9px; margin: 18px 0 13px; }
.mc__btn {
  display: flex; align-items: center; gap: 14px; padding: 15px 16px; border-radius: 15px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); min-height: 54px;
  transition: transform 0.2s var(--ease), border-color 0.2s, background-color 0.2s;
}
.mc__btn:active { transform: scale(0.985); }
.mc__btn .ci { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.mc__btn .ci svg { width: 21px; height: 21px; }
.mc__btn .cm { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1 1 auto; }
.mc__btn .cm b { font-size: 0.98rem; font-weight: 700; color: #fff; }
.mc__btn .cm small { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.mc__btn .go { color: rgba(255,255,255,0.4); font-size: 1.1rem; transition: transform 0.2s var(--ease); }
.mc__btn:active .go { transform: translateX(3px); }
.mc__btn.wa .ci { background: rgba(37,211,102,0.14); color: var(--whatsapp); }
.mc__btn.wa { border-color: rgba(37,211,102,0.28); }
.mc__btn.em .ci { background: rgba(255,255,255,0.1); color: #fff; }

.mc__or { display: flex; align-items: center; gap: 14px; margin: 2px 2px 13px; color: rgba(255,255,255,0.4);
  font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; }
.mc__or::before, .mc__or::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,0.13); }

/* form */
.mc__form { display: flex; flex-direction: column; gap: 11px; }
.mc__phead { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mc__phead .lbl { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.mc__phead .progress-count { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color 0.25s; }
.mc__phead .progress-count.done { color: #fff; }
.mc__track { height: 2px; background: rgba(255,255,255,0.1); border-radius: 1px; overflow: hidden; margin: -4px 0 4px; }
.mc__track .progress-fill { height: 100%; width: 0%; background: var(--grad-warm-x); transition: width 0.4s var(--ease); }

.mc__field { display: flex; flex-direction: column; gap: 7px; }
.mc__field label { font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.72); font-weight: 500; }
.mc__field .req { color: rgba(255,255,255,0.7); }
.mc__field input, .mc__field select, .mc__field textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.16);
  padding: 13px 14px; border-radius: 11px; color: #fff; font-family: var(--font);
  font-size: 16px; font-weight: 300; line-height: 1.4;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.mc__field input::placeholder, .mc__field textarea::placeholder { color: rgba(255,255,255,0.38); }
.mc__field input:focus, .mc__field select:focus, .mc__field textarea:focus {
  outline: none; border-color: rgba(255,255,255,0.65); box-shadow: 0 0 0 4px rgba(255,255,255,0.10); background: rgba(255,255,255,0.08);
}
.mc__field textarea { resize: vertical; min-height: 62px; }
.mc__field select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' opacity='0.6'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.mc__field select option { background: var(--night-2); color: #fff; }
.mc__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.mc__submit {
  margin-top: 4px; width: 100%; padding: 16px 22px; border-radius: 999px; cursor: pointer;
  background: var(--grad-warm); color: #fff; border: 0; font-family: var(--font);
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.01em;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  transition: transform 0.2s var(--ease), box-shadow 0.25s, opacity 0.2s;
}
.mc__submit .arr { transition: transform 0.2s var(--ease); }
.mc__submit:active { transform: scale(0.99); }
.mc__submit[disabled] { opacity: 0.65; cursor: progress; }

.mc .form-error { display: none; margin-top: 4px; padding: 11px 13px; border-radius: 10px;
  background: rgba(255,90,90,0.12); border: 1px solid rgba(255,90,90,0.3); color: #ffc2c2; font-size: 0.85rem; }
.mc .form-error.show { display: block; }
.mc .thanks { display: none; flex-direction: column; align-items: flex-start; gap: 12px; padding: 34px 24px;
  border-radius: 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.13); }
.mc .thanks.show { display: flex; }
.mc .thanks .chk { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-cool); color: #fff; display: flex; align-items: center; justify-content: center; }
.mc .thanks h3 { font-size: 1.35rem; font-weight: 800; color: #fff; }
.mc .thanks p { color: rgba(255,255,255,0.68); line-height: 1.55; font-size: 0.9rem; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; } .reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; } .reveal.d6 { transition-delay: 0.48s; }


/* ============================================================
   Consultation → premium smart-home journey + bottom sheet
   ============================================================ */
.cj__intro { text-align: center; margin-bottom: 4px; }
.mc__eyebrow { display: inline-block; font-family: var(--font-grotesk,'Archivo',sans-serif);
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray-on-dark); margin-bottom: 11px; }
.cj__intro .mc__title { font-family: var(--font-grotesk,'Archivo',sans-serif); font-weight: 700;
  font-size: clamp(1.78rem, 7.4vw, 2.15rem); letter-spacing: -0.01em; line-height: 1.08; margin: 0 0 10px; }
.cj__intro .mc__lead { margin-left: auto; margin-right: auto; }

/* timeline */
.cj { --em:#FFFFFF; list-style: none; margin: 24px 0 0; padding: 0; position: relative; display: flex; flex-direction: column; gap: 14px; }
.cj__step { position: relative; display: grid; grid-template-columns: 44px 1fr; gap: 14px; }
.cj__step { opacity: 0; transform: translateY(20px); transition: opacity 0.55s var(--ease-out,ease), transform 0.55s var(--ease-out,ease); }
.cj__step.in { opacity: 1; transform: none; }
.cj__rail { position: relative; display: flex; justify-content: center; align-items: center; }
.cj__node { position: relative; z-index: 1; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-grotesk,'Archivo',sans-serif);
  font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.6); background: rgba(26,24,25,0.92);
  border: 0; transition: color 0.45s, border-color 0.45s, background-color 0.45s, box-shadow 0.45s; }
.cj__node::after { content:""; position:absolute; inset:0; border-radius:50%; padding:1.5px; pointer-events:none; z-index:3;
  background: #ffffff;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; }
.cj__step:not(:last-child) .cj__rail::before,
.cj__step:not(:last-child) .cj__rail::after { content: ""; position: absolute; left: 50%; top: 46px; bottom: -16px; width: 2px; border-radius: 2px; }
.cj__step:not(:last-child) .cj__rail::before { background: rgba(255,255,255,0.13); transform: translateX(-50%); }
.cj__step:not(:last-child) .cj__rail::after { background: linear-gradient(180deg, #ED173D, #F1B528); transform: translateX(-50%) scaleY(0); transform-origin: top; transition: transform 0.6s var(--ease-out) 0.1s; }
.cj__step.line:not(:last-child) .cj__rail::after { transform: translateX(-50%) scaleY(1); }
.cj__step.in .cj__node { color: #fff; border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.12); box-shadow: 0 0 0 5px rgba(255,255,255,0.06); }

.cj__card { background: none;
  border: 0; border-radius: 16px; padding: 15px 16px 16px;
  box-shadow: none;
  transition: transform 0.3s var(--ease); }
.cj__card:active { transform: scale(0.995); }
.cj__step.in .cj__card { border-color: rgba(255,255,255,0.22); }
.cj__icon { display: inline-flex; width: 34px; height: 34px; border-radius: 10px; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); color: #fff; margin-bottom: 10px; }
.cj__icon svg { width: 19px; height: 19px; }
.cj__title { font-family: var(--font-grotesk,'Archivo',sans-serif); font-weight: 700; font-size: 1.3rem; line-height: 1.14; color: #fff; margin: 0 0 5px; }
.cj__desc { font-size: 0.85rem; line-height: 1.5; color: var(--gray-on-dark); margin: 0; }

/* CTA */
.cj__begin { text-align: center; margin-top: 28px; }
.cj__beginq { font-family: var(--font-grotesk,'Archivo',sans-serif); font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: #fff; margin: 0 0 13px; }
.cj__cta { width: 100%; max-width: 360px; margin: 0 auto; padding: 16px 24px; border-radius: 999px; cursor: pointer; border: 0;
  background: var(--grad-warm); color: #fff; font-family: var(--font); font-size: 0.96rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform 0.2s var(--ease), box-shadow 0.25s; box-shadow: 0 10px 30px rgba(0,0,0,0.28); }
.cj__cta:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.36); }
.cj__cta:active { transform: scale(0.99); }
.cj__cta-arr { transition: transform 0.25s var(--ease); }
.cj__cta:hover .cj__cta-arr { transform: translateX(3px); }

/* premium bottom sheet */
.sheet { position: fixed; inset: 0; z-index: 200; }
.sheet[hidden] { display: none; }
.sheet__backdrop { position: absolute; inset: 0; background: rgba(10,10,10,0.6); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.35s var(--ease); }
.sheet.open .sheet__backdrop { opacity: 1; }
.sheet__panel { --em:#FFFFFF; position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, #262324, #161415); border-top: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px 22px 0 0; padding: 14px 18px calc(24px + env(safe-area-inset-bottom));
  box-shadow: 0 -20px 60px rgba(0,0,0,0.5); transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.32,0.72,0,1); }
.sheet.open .sheet__panel { transform: translateY(0); }
.sheet__grab { display: block; width: 40px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.24); margin: 0 auto 14px; }
.sheet__close { position: absolute; top: 12px; right: 14px; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.7);
  font-size: 1.15rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.sheet__close:active { transform: scale(0.95); }
.sheet__title { font-family: var(--font-grotesk,'Archivo',sans-serif); font-weight: 700; font-size: 1.42rem; color: #fff; text-align: center; margin: 0 0 3px; }
.sheet__sub { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.55); margin: 0 0 16px; }
.sheet__opts { display: flex; flex-direction: column; gap: 10px; }
.sheet__opt { display: flex; align-items: center; gap: 14px; text-align: left; width: 100%; padding: 14px 15px; border-radius: 15px; cursor: pointer;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); color: var(--white); font-family: var(--font);
  transition: transform 0.2s var(--ease), border-color 0.2s, background-color 0.2s; }
.sheet__opt:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.sheet__opt:active { transform: scale(0.985); }
.sheet__ic { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); }
.sheet__ic svg { width: 21px; height: 21px; }
.sheet__meta { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.sheet__meta b { font-size: 0.98rem; font-weight: 700; color: #fff; }
.sheet__meta small { font-size: 0.8rem; color: rgba(255,255,255,0.58); }
.sheet__go { flex: 0 0 auto; color: rgba(255,255,255,0.4); font-size: 1.05rem; transition: transform 0.2s var(--ease); }
.sheet__opt:hover .sheet__go { transform: translateX(3px); }
.sheet__opt.wa .sheet__ic { background: rgba(37,211,102,0.14); color: var(--whatsapp); }
.sheet__opt.em .sheet__ic { background: rgba(255,255,255,0.1); color: #fff; }
.sheet__opt.form .sheet__ic { background: rgba(255,255,255,0.08); color: #fff; }

.mc__formwrap { margin-top: 18px; }
.mc__formwrap[hidden] { display: none; }

@media (min-width: 760px) {
  .sheet__panel { left: 50%; right: auto; width: 430px; max-width: 430px; transform: translate(-50%, 100%); }
  .sheet.open .sheet__panel { transform: translate(-50%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .cj__step { transition: none; }
  .cj__step .cj__rail::after { transition: none; }
  .sheet__backdrop, .sheet__panel { transition: none; }
}


/* ---- compact one-screen mobile (journey) ---- */
.mc { padding-top: calc(112px + env(safe-area-inset-top)); padding-bottom: calc(56px + env(safe-area-inset-bottom)); min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-start; }
.mc__inner { position: relative; z-index: 1; flex: 1 1 auto; display: flex; flex-direction: column; justify-content: space-between; gap: clamp(14px, 3vh, 28px); }
.cj__intro { margin-bottom: 0; }
.mc__eyebrow { font-size: 0.58rem; margin-bottom: 8px; }
.cj__intro .mc__title { font-size: clamp(1.55rem, 6.6vw, 1.95rem); margin: 0 0 7px; }
.cj__intro .mc__lead { font-size: 0.82rem; line-height: 1.45; max-width: 34ch; }
.cj { margin-top: 0; --cj-gap: clamp(28px, 5vh, 52px); gap: var(--cj-gap); }
.cj__step { grid-template-columns: 40px 1fr; gap: 12px; }
.cj__node { width: 40px; height: 40px; font-size: 0.76rem; }
.cj__step:not(:last-child) .cj__rail::before,
.cj__step:not(:last-child) .cj__rail::after { top: calc(50% + 24px); bottom: calc(-50% - var(--cj-gap) + 24px); }
.cj__card { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; row-gap: 1px; align-items: center; padding: 11px 13px; min-height: 80px; }
.cj__icon { grid-row: 1 / span 2; align-self: center; margin-bottom: 0; width: 32px; height: 32px; border-radius: 9px; }
.cj__icon svg { width: 17px; height: 17px; }
.cj__title { align-self: end; font-size: 1.08rem; line-height: 1.12; margin: 0; }
.cj__desc { align-self: start; font-size: 0.78rem; line-height: 1.35; }
.cj__begin { margin-top: 0; }
.cj__beginq { font-size: 0.62rem; margin: 26px 0 10px; }
.cj__cta { padding: 14px 22px; font-size: 0.92rem; }


/* ---- conversion uplift: tags, reassurance, bg, CTA ---- */
.cj { position: relative; }
.cj::before { display: none; content: ""; position: absolute; left: -8px; right: -8px; top: -8px; bottom: -8px; z-index: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'400'%20height%3D'620'%20viewBox%3D'0%200%20400%20620'%20fill%3D'none'%20stroke%3D'%23FFFFFF'%20stroke-width%3D'1'%3E%3Crect%20x%3D'34'%20y%3D'24'%20width%3D'332'%20height%3D'572'%20rx%3D'12'%20stroke-opacity%3D'0.06'%2F%3E%3Cpath%20d%3D'M34%20224%20H366%20M34%20404%20H366%20M200%2024%20V596'%20stroke-opacity%3D'0.05'%2F%3E%3Cpath%20d%3D'M118%20120%20L286%20300%20L150%20486%20L286%20300%20L200%20150'%20stroke-opacity%3D'0.05'%2F%3E%3Ccircle%20cx%3D'118'%20cy%3D'120'%20r%3D'5'%20stroke-opacity%3D'0.10'%2F%3E%3Ccircle%20cx%3D'286'%20cy%3D'300'%20r%3D'5'%20stroke-opacity%3D'0.10'%2F%3E%3Ccircle%20cx%3D'150'%20cy%3D'486'%20r%3D'5'%20stroke-opacity%3D'0.10'%2F%3E%3Ccircle%20cx%3D'200'%20cy%3D'150'%20r%3D'4'%20stroke-opacity%3D'0.09'%2F%3E%3Ccircle%20cx%3D'300'%20cy%3D'470'%20r%3D'4'%20stroke-opacity%3D'0.09'%2F%3E%3C%2Fsvg%3E") no-repeat center top; background-size: 100% 100%; }
.cj__step { position: relative; z-index: 1; }
.cj__card { row-gap: 3px; }
.cj__head { grid-column: 2; align-self: end; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.cj__desc { grid-column: 2; }
.cj__title { align-self: auto; font-size: 1rem; }
.cj__tag { display: inline-flex; align-items: center; font-family: var(--font-grotesk,'Archivo',sans-serif);
  font-size: 0.47rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; white-space: nowrap;
  color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.28); background: rgba(255,255,255,0.07); padding: 2px 6px; border-radius: 999px; transform: translateY(-1px); }
.cj__reassure { font-size: 0.72rem; line-height: 1.4; color: var(--gray-on-dark); margin: 0 auto 12px; white-space: nowrap; }
.cj__beginq { margin: 26px 0 5px; }
.cj__cta { padding: 15px 24px; box-shadow: 0 12px 34px rgba(0,0,0,0.34), 0 0 0 1px rgba(255,255,255,0.05); }
.cj__cta:hover { box-shadow: 0 16px 44px rgba(0,0,0,0.42), 0 0 0 1px rgba(255,255,255,0.08); }


/* ============================================================
   Living timeline uplift — warm palette, glow, atmosphere
   ============================================================ */
/* atmospheric background */
.mc { background: linear-gradient(180deg, #201D1E 0%, #171515 55%, #131112 100%); }
.mc__glow { background: radial-gradient(circle, rgba(255,255,255,0.07), transparent 65%); filter: blur(34px); }
.mc__glow.g2 { background: radial-gradient(circle, rgba(255,255,255,0.045), transparent 65%); }
.mc::after { content: ""; position: absolute; left: 0; right: 0; top: -90px; bottom: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxNDAnIGhlaWdodD0nMTQwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC44NScgbnVtT2N0YXZlcz0nMicgc3RpdGNoVGlsZXM9J3N0aXRjaCcvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPScxNDAnIGhlaWdodD0nMTQwJyBmaWx0ZXI9J3VybCgjbiknLz48L3N2Zz4="); background-size: 140px 140px; opacity: 0.05; mix-blend-mode: overlay; }
.mc__inner { position: relative; z-index: 1; }
.mc__glow, .mc::after { display: none; }

/* warm the timeline */
.cj { --em: #FFFFFF; }
.cj__icon { background: rgba(255,255,255,0.08); color: #fff; }
.cj__step:not(:last-child) .cj__rail::after { background: linear-gradient(180deg, #ED173D, #F1B528); }
.cj__step.in .cj__card { border-color: rgba(255,255,255,0.22); }
.cj__step.in .cj__node { color: #fff; border-color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12); box-shadow: 0 0 0 5px rgba(255,255,255,0.06), 0 0 14px rgba(255,255,255,0.14);
  animation: cjBloom 0.85s ease; }
@keyframes cjBloom {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.4), 0 0 0 rgba(255,255,255,0); }
  55%  { box-shadow: 0 0 0 8px rgba(255,255,255,0.08), 0 0 22px rgba(255,255,255,0.3); }
  100% { box-shadow: 0 0 0 5px rgba(255,255,255,0.06), 0 0 14px rgba(255,255,255,0.14); }
}

/* two on-site visits — stronger */
.cj__head { display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; grid-column: 2; align-self: end; }
.cj__visit { display: inline-flex; align-items: center; font-family: var(--font-grotesk,'Archivo',sans-serif);
  font-size: 0.46rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; white-space: nowrap;
  color: #fff; border: 1px solid transparent; background: var(--grad-warm); background-repeat: no-repeat; background-size: 100% 100%; padding: 2px 6px; border-radius: 999px; transform: translateY(-1px); }
.cj__step:nth-child(2) .cj__node, .cj__step:nth-child(4) .cj__node { border-color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.cj__step:nth-child(2).in .cj__node, .cj__step:nth-child(4).in .cj__node {
  transform: scale(1.14); border-color: #FFFFFF;
  background: rgba(255,255,255,0.16); box-shadow: 0 0 0 6px rgba(255,255,255,0.1), 0 0 24px rgba(255,255,255,0.3); }
.cj__step:nth-child(2).in .cj__rail::after, .cj__step:nth-child(4).in .cj__rail::after { filter: brightness(1.12); }

/* completion beat — whole home online for ~1s, then settles */
.cj--complete .cj__node { border-color: #FFFFFF !important; box-shadow: 0 0 0 6px rgba(255,255,255,0.12), 0 0 26px rgba(255,255,255,0.35) !important; transition: box-shadow 0.4s ease, border-color 0.4s ease; }
.cj--complete .cj__step:not(:last-child) .cj__rail::after { transform: translateX(-50%) scaleY(1) !important; filter: brightness(1.3); }

/* CTA — the hero moment */
.cj__cta { position: relative; overflow: hidden; background: var(--grad-warm);
  box-shadow: 0 10px 30px rgba(0,0,0,0.32); animation: cjCtaPulse 3.4s ease-in-out infinite; }
.cj__cta:hover { box-shadow: 0 14px 40px rgba(0,0,0,0.4); }
@keyframes cjCtaPulse {
  0%,100% { box-shadow: 0 10px 30px rgba(0,0,0,0.32), 0 0 20px rgba(255,255,255,0.10); }
  50%     { box-shadow: 0 12px 34px rgba(0,0,0,0.36), 0 0 34px rgba(255,255,255,0.22); }
}
.cj__cta::after { content: ""; position: absolute; top: 0; left: -70%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent); transform: skewX(-18deg);
  animation: cjSheen 5s ease-in-out infinite; pointer-events: none; }
@keyframes cjSheen { 0% { left: -70%; } 22% { left: 130%; } 100% { left: 130%; } }
.cj__cta > * { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .cj__cta { animation: none; }
  .cj__cta::after { display: none; }
  .cj__step.in .cj__node { animation: none; }
}


/* ===== Header burger + slide-in menu ===== */
.mbar-burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 4px; width: 42px; height: 34px; padding: 0 10px; border: 0; background: transparent; cursor: pointer; flex: 0 0 auto; }
.mbar-burger span { display: block; height: 1.6px; width: 100%; background: var(--grad-warm-x, linear-gradient(90deg,#ED173D,#F1B528)); border-radius: 2px; }
.mbar-burger:active { transform: scale(0.96); }

.navmenu { position: fixed; inset: 0; z-index: 210; }
.navmenu[hidden] { display: none; }
.navmenu__backdrop { position: absolute; inset: 0; background: rgba(10,10,10,0.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.35s var(--ease); }
.navmenu.open .navmenu__backdrop { opacity: 1; }
.navmenu__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(82vw, 330px);
  background: linear-gradient(180deg, #262324, #151314); border-left: 1px solid rgba(255,255,255,0.12);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  padding: calc(26px + env(safe-area-inset-top)) 26px calc(28px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.32,0.72,0,1); }
.navmenu.open .navmenu__panel { transform: translateX(0); }
.navmenu__close { align-self: flex-end; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.navmenu__close:active { transform: scale(0.94); }
.navmenu__links { display: flex; flex-direction: column; gap: 2px; margin-top: 24px; }
.navmenu__links a { font-family: var(--font-grotesk,'Archivo',sans-serif); font-size: 1.85rem; font-weight: 700; color: #FFFFFF; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); transition: color 0.2s, padding-left 0.25s var(--ease); }
.navmenu__links a:hover, .navmenu__links a:active { color: #fff; padding-left: 6px; }
.navmenu__contact { margin-top: auto; display: flex; gap: 10px; }
.navmenu__c { flex: 1; text-align: center; padding: 13px; border-radius: 12px; font-family: var(--font); font-weight: 500; font-size: 0.86rem; border: 1px solid rgba(255,255,255,0.14); color: #FFFFFF; transition: background-color 0.2s, border-color 0.2s; }
.navmenu__c.wa { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.3); }
.navmenu__c.em { background: transparent; border-color: rgba(255,255,255,0.35); }

@media (min-width: 760px) { .navmenu__panel { right: 50%; margin-right: -215px; } }
@media (prefers-reduced-motion: reduce) { .navmenu__backdrop, .navmenu__panel { transition: none; } }


/* ===== Burger menu — premium redesign ===== */
.navmenu__panel { width: min(86vw, 360px); background: linear-gradient(160deg, #242122 0%, #181617 55%, #121011 100%); overflow: hidden; padding-top: calc(24px + env(safe-area-inset-top)); }
.navmenu__panel::before { content: ""; position: absolute; top: -70px; right: -90px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.07), transparent 68%); filter: blur(8px); pointer-events: none; z-index: 0; }
.navmenu__panel::after { content: ""; position: absolute; inset: 0; background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxNDAnIGhlaWdodD0nMTQwJz48ZmlsdGVyIGlkPSdnJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC44NScgbnVtT2N0YXZlcz0nMicgc3RpdGNoVGlsZXM9J3N0aXRjaCcvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPScxNDAnIGhlaWdodD0nMTQwJyBmaWx0ZXI9J3VybCgjZyknLz48L3N2Zz4="); background-size: 140px 140px; opacity: 0.05; mix-blend-mode: overlay; pointer-events: none; z-index: 0; }
.navmenu__panel > * { position: relative; z-index: 1; }
.navmenu__top { display: flex; align-items: center; justify-content: space-between; }
.navmenu__logo { display: inline-flex; flex-direction: column; gap: 3px; line-height: 0; }
.navmenu__logo img { filter: brightness(0) invert(1); width: auto; display: block; }
.navmenu__logo .navmenu__mark { height: 13px; }
.navmenu__logo .navmenu__word { height: 15px; }
.navmenu__close { color: #fff; border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.06); }
.navmenu__links { display: flex; flex-direction: column; gap: 0; margin-top: 34px; }
.navmenu__links a { display: flex; align-items: baseline; gap: 14px; font-family: var(--font-grotesk,'Archivo',sans-serif); font-size: 2rem; font-weight: 700; line-height: 1; color: #FFFFFF; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.08); opacity: 0; transform: translateX(16px); }
.navmenu__links a .n { font-family: var(--font-grotesk,'Archivo',sans-serif); font-size: 0.64rem; letter-spacing: 0.1em; color: var(--gray-on-dark); min-width: 22px; }
.navmenu__links a .t { position: relative; }
.navmenu__links a .t::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1.5px; background: rgba(255,255,255,0.7); transition: right 0.3s var(--ease); }
.navmenu__links a:not(:last-child):hover .t, .navmenu__links a:not(:last-child):active .t { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.navmenu__links a:hover .t::after, .navmenu__links a:active .t::after { right: 0; }
.navmenu.open .navmenu__links a { opacity: 1; transform: none; transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out); }
.navmenu.open .navmenu__links a:nth-child(1) { transition-delay: 0.08s; }
.navmenu.open .navmenu__links a:nth-child(2) { transition-delay: 0.14s; }
.navmenu.open .navmenu__links a:nth-child(3) { transition-delay: 0.20s; }
.navmenu.open .navmenu__links a:nth-child(4) { transition-delay: 0.26s; }
.navmenu.open .navmenu__links a:nth-child(5) { transition-delay: 0.32s; }
.navmenu__label { display: block; font-family: var(--font-grotesk,'Archivo',sans-serif); font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 11px; }
.navmenu__cbtns { display: flex; gap: 10px; }
.navmenu__c.em { background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }
@media (prefers-reduced-motion: reduce) { .navmenu__links a { opacity: 1; transform: none; } }


/* ===== Burger menu — grape moment + refined contact ===== */
.navmenu__panel::before { background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%); }
.navmenu__foot { margin-top: auto; position: relative; z-index: 2; }
.navmenu__line { display: block; font-family: var(--font); font-size: 0.98rem; color: rgba(255,255,255,0.86); padding: 5px 0; letter-spacing: 0.01em; transition: color 0.2s; }
.navmenu__line:hover, .navmenu__line:active { color: #fff; }
.navmenu__brand { display: block; margin-top: 15px; font-family: var(--font-grotesk,'Archivo',sans-serif); font-size: 1.15rem; font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; text-transform: none; white-space: nowrap; color: #fff; }
.navmenu__brand-x-unused { color: rgba(255,255,255,0.42); line-height: 1.6; max-width: 26ch; }
.navmenu__grape { position: relative; z-index: 0; flex: 1 1 auto; display: flex; align-items: center; justify-content: center; min-height: 90px; pointer-events: none; opacity: 0.46; animation: grapeBreath 3s ease-in-out infinite; }
.navmenu__grape svg { width: 150px; max-width: 46vw; height: auto; display: block; overflow: visible; }
@keyframes grapeBreath { 0%,100% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(1.05); opacity: 0.54; } }
@media (prefers-reduced-motion: reduce) { .navmenu__grape { animation: none; } }


/* ===== menu: no grape, taller links, icons ===== */
.navmenu__grape { display: none !important; }
.navmenu__links { flex: 0 0 auto; justify-content: flex-start; margin-top: 24px; margin-bottom: 30px; }
.navmenu__links a { align-items: center; gap: 13px; padding: 13px 0; font-size: 1.85rem; }
.navmenu__links a .n { transform: none; align-self: center; }
.navmenu__links a .i { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; color: rgba(255,255,255,0.8); flex: 0 0 auto; }
.navmenu__links a .i svg { width: 21px; height: 21px; }
.navmenu__links a .t { flex: 1 1 auto; }
.navmenu__line { display: flex; align-items: center; justify-content: flex-start; gap: 12px; }
.navmenu__line .ci { display: inline-flex; align-items: center; color: var(--gray-on-dark); flex: 0 0 auto; order: -1; margin-right: 10px; }
.navmenu__line .ci svg { width: 16px; height: 16px; }


/* ===== menu: Book-a-visit CTA (last link) ===== */
.navmenu__links a:last-child { margin-top: 22px; border-bottom: 0; padding: 14px 18px; border-radius: 14px; background: var(--grad-warm); box-shadow: 0 10px 28px rgba(0,0,0,0.35); gap: 13px; position: relative; }
.navmenu__links a:last-child::before { content: ""; position: absolute; left: 2px; right: 2px; top: -12px; height: 1px; background: rgba(255,255,255,0.12); }
.navmenu__links a:last-child .i { color: #fff; width: 26px; height: 26px; }
.navmenu__links a:last-child .i svg { width: 22px; height: 22px; }
.navmenu__links a:last-child .ct { display: flex; flex-direction: column; gap: 3px; }
.navmenu__links a:last-child .t { font-size: 1.55rem; line-height: 1; color: #fff; }
.navmenu__links a:last-child .t::after { display: none; }
.navmenu__links a:last-child .sub { font-family: var(--font-grotesk,'Archivo',sans-serif); font-size: 0.56rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.navmenu__links a:last-child:hover, .navmenu__links a:last-child:active { color: #fff; filter: brightness(1.05); padding-left: 18px; }


/* ===== menu polish: CTA + contact connection ===== */
.navmenu__foot { margin-top: 20px; border-top: 1px solid rgba(255,255,255,0.09); padding-top: 18px; }
.navmenu__links { margin-bottom: 0; }
.navmenu__links a:last-child { margin-top: 20px; padding: 12px 18px; }
.navmenu__links a:last-child .t { font-size: 1.48rem; }
.navmenu__links a:last-child .sub { letter-spacing: 0.1em; }
.navmenu__line { gap: 9px; }
.navmenu__line .ci { margin-right: 8px; }


/* ===== menu micro-refinements ===== */
.navmenu__links a:last-child::before { display: none; }
.navmenu__foot { margin-top: auto; }
.navmenu__panel { border-left-color: rgba(255,255,255,0.05); }
/* secondary Support button — lighter than the gold Book CTA (for existing clients) */
.navmenu__support{ display:flex; align-items:center; gap:13px; margin-top:10px; padding:12px 18px; border-radius:14px;
  background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.28); color:#fff; text-decoration:none;
  transition:background-color .2s var(--ease), border-color .2s var(--ease); }
.navmenu__support:hover, .navmenu__support:active{ background:rgba(255,255,255,0.09); border-color:rgba(255,255,255,0.45); }
.navmenu__support .i{ display:inline-flex; align-items:center; justify-content:center; width:26px; height:26px; color:rgba(255,255,255,0.9); flex:0 0 auto; }
.navmenu__support .i svg{ width:22px; height:22px; }
.navmenu__support .ct{ display:flex; flex-direction:column; gap:3px; }
.navmenu__support .t{ font-family:var(--font-grotesk,'Archivo',sans-serif); font-size:1.48rem; font-weight:700; line-height:1; color:#FFFFFF; }
.navmenu__support .sub{ font-family:var(--font-grotesk,'Archivo',sans-serif); font-size:0.56rem; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.55); }

/* ---------------- Footer (mobile) ---------------- */
.mfoot { background: var(--ink); color: rgba(255,255,255,0.55); padding: 54px 22px calc(48px + env(safe-area-inset-bottom)); text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1); }
.mfoot__logo { height: 18px; width: auto; margin: 0 auto 16px; filter: brightness(0) invert(1); opacity: 0.9; }
.mfoot__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; margin-bottom: 18px; }
.mfoot__links a { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.mfoot__links a:active { color: #fff; }
.mfoot__bottom { font-size: 0.7rem; color: rgba(255,255,255,0.4); line-height: 1.7; letter-spacing: 0.02em; }

@media (prefers-reduced-motion: reduce) {
  .mfilm { height: 100svh; }
  .mhero__chev { animation: none; }
  .mhero { display: none; }
  .mfilm__hl { opacity: 1; }
  .mreveal, .reveal { opacity: 1; transform: none; transition: none; }
  #mload .mload__mark { animation: none; -webkit-mask-image: none; mask-image: none; }
}

/* ============================================================
   Desktop/wide preview — box the mobile experience into a
   centered phone-width column so it always reads as "mobile".
   Real phones (< 760px) stay full-bleed and edge-to-edge.
   ============================================================ */
@media (min-width: 760px) {
  html {
    background:
      radial-gradient(900px 640px at 50% -8%, rgba(255,255,255,0.05), transparent 60%),
      radial-gradient(720px 520px at 50% 116%, rgba(255,255,255,0.03), transparent 60%),
      #121011;
    min-height: 100%;
  }
  body {
    position: relative;
    max-width: 430px;
    margin: 0 auto;
    min-height: 100vh;
    overflow-x: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 40px 120px rgba(0,0,0,0.6);
  }
  /* fixed/full-viewport overlays must be re-centered onto the column */
  .mbar { left: 50%; right: auto; transform: translateX(-50%); width: 430px; max-width: 430px; }
  #mload { left: 50%; right: auto; transform: translateX(-50%); width: 430px; }
}


/* End-of-film cue — reuses the landing hairline+chevron, centered in flow */
.mend__cue{ pointer-events:auto; background:none; border:0; cursor:pointer; padding:6px 0; margin-top:10px;
  width:100%; display:flex; flex-direction:column; align-items:center; gap:8px; color:rgba(255,255,255,.9);
  -webkit-tap-highlight-color:transparent; }
.mend__cue .mhero__label{ text-align:center; }
.mend__cue .mhero__rule{ width:100%; max-width:360px; margin:0 auto; }
.mend__cue:hover .mhero__label{ color:#fff; letter-spacing:.34em; }
.mend__cue:hover .mhero__chev, .mend__cue:active .mhero__chev{ color:#fff; }


/* Loader progress bar — fills as the film + images preload */
#mload .mload__bar{ width:128px; height:2px; margin-top:9px; border-radius:2px; background:rgba(255,255,255,.16); overflow:hidden; }
#mload .mload__fill{ display:block; height:100%; width:5%; background:var(--grad-warm-x, linear-gradient(90deg,#ED173D,#F1B528)); border-radius:2px; transition:width .35s ease; }

/* ===== Brand pattern band — glyph row over the warm gradient (used once per page, max) ===== */
.brandband{ position:relative; height:56px; background:var(--grad-warm); overflow:hidden; }
.brandband::after{ content:""; position:absolute; inset:0; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='40' viewBox='0 0 128 40'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.9'%3E%3Cpath d='M22 8 a12 12 0 0 0 0 24 z'/%3E%3Cpath d='M50 8 a12 12 0 0 1 0 24 z' transform='rotate(45 50 20)'/%3E%3Cpath d='M78 8 a12 12 0 0 1 0 24 z'/%3E%3Ccircle cx='106' cy='20' r='12'/%3E%3C/g%3E%3C/svg%3E"); background-repeat:repeat-x; background-position:center; }
