/* ============================================================
   Viver Homes - Landing Leads
   Mobile-first vanilla CSS. No frameworks.
   ============================================================ */

/* ─── Tokens ────────────────────────────────────────────────── */
:root {
  /* Neutral palette */
  --bg: #FFFFFF;
  --bg-alt: #FAFAFA;
  --text: #1A1A1A;
  --text-muted: #7C776A;
  --text-soft: #595959;

  /* Viver brand accents (used as accents only) */
  --accent: #65B0CB;      /* Pacific */
  --accent-deep: #4F95B1;
  --positive: #ABC661;    /* Palm */
  --plum: #E7A2D4;
  --bone: #E3D7C5;
  --carbon: #1A1A1A;
  --snow: #FBF5F3;

  /* Borders / hairlines */
  --hairline: rgba(227, 215, 197, 0.5);  /* Bone @ 50% */
  --hairline-strong: rgba(26, 26, 26, 0.1);

  /* Fonts */
  --font-display: 'Space Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-italic: 'Cormorant Garamond', Georgia, serif;

  /* Radius / shadows */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 6px 24px rgba(26, 26, 26, 0.06);
  --shadow-strong: 0 20px 60px rgba(26, 26, 26, 0.12);

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Layout */
  --gutter: 24px;
  --container: 1200px;
  --container-narrow: 760px;
}

/* ─── Base reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

html, body { overflow-x: hidden; }
html { scrollbar-gutter: stable both-edges; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: var(--radius-sm); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 var(--space-5);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2.6vw, 1.5rem); }
h4 { font-size: 0.95rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

p { margin: 0 0 var(--space-4); }

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

::selection { background: var(--accent); color: #fff; }

/* ─── Containers ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

/* ─── Section spacing ───────────────────────────────────────── */
section { padding: var(--space-7) 0; }
@media (min-width: 1024px) { section { padding: var(--space-9) 0; } }

.section-head { margin-bottom: var(--space-7); max-width: 820px; }
.section-head h2 {
  margin-bottom: var(--space-4);
  font-size: clamp(1.75rem, 5.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.section-head p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 640px;
}
@media (max-width: 380px) {
  .section-head h2 { font-size: 1.6rem; }
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 var(--space-5);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn--secondary:hover { background: var(--text); color: #fff; }
.btn--secondary.btn--on-dark { color: #fff; border-color: #fff; }
.btn--secondary.btn--on-dark:hover { background: #fff; color: var(--text); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.cta-row--center { justify-content: center; }

/* ─── Header ────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-4) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__brand { display: flex; align-items: center; gap: var(--space-3); }
.header__logo-full { height: 26px; width: auto; object-fit: contain; display: block; }
.header__cta { min-height: 40px; padding: 0 var(--space-4); font-size: 0.85rem; }
@media (max-width: 380px) { .header__cta { font-size: 0.8rem; padding: 0 var(--space-3); } }

/* ─── Block 1 · Hero ────────────────────────────────────────── */
.hero { padding-top: var(--space-7); padding-bottom: var(--space-8); }
.hero__inner {
  display: grid;
  gap: var(--space-7);
}
.hero__title {
  font-size: clamp(2.05rem, 7vw, 3.4rem);
  margin-bottom: var(--space-5);
  letter-spacing: -0.025em;
  line-height: 1.1;
  hyphens: auto;
  -webkit-hyphens: auto;
}
@media (max-width: 380px) {
  .hero__title { font-size: 1.85rem; }
}
.hero__sub {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: var(--space-5);
}
.hero__anchor {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}
.hero__anchor strong { color: var(--text); font-weight: 700; }
.hero__photo img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    gap: var(--space-8);
  }
  .hero__photo img { aspect-ratio: 3 / 2; }
}

/* Mobile: hero photo full-width (quita el margin por defecto de <figure>) → ~25% más grande */
@media (max-width: 1023px) {
  .hero__photo { margin: 0; }
}

/* ─── Block 2 · Proof strip ─────────────────────────────────── */
.proof {
  padding: var(--space-7) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--bg-alt);
}
.proof__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6) var(--space-4);
  text-align: center;
}
.proof__grid li { display: flex; flex-direction: column; gap: var(--space-1); }
.proof__grid strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.proof__grid span {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.proof__caption {
  margin-top: var(--space-5);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-italic);
  font-size: 1rem;
}
@media (min-width: 768px) {
  .proof__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ─── Block 3 · The problem ─────────────────────────────────── */
.problem { background: var(--snow); }
.problem__grid {
  display: grid;
  gap: var(--space-5);
}
.problem__card {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
}
.problem__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-deep);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--accent);
}
.problem__card h3 { margin-bottom: var(--space-3); font-size: 1.15rem; }
.problem__card p { color: var(--text-soft); margin-bottom: 0; }
@media (min-width: 1024px) {
  .problem__grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
}

/* ─── Block 4 · The room ────────────────────────────────────── */
.room__grid { display: grid; gap: var(--space-6); }
.room__photos { display: flex; flex-direction: column; gap: var(--space-4); }
.room__photo img {
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
}
.room__photo--lg img { aspect-ratio: 4 / 3; }
.room__photo--sm img { aspect-ratio: 4 / 3; }
.room__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-content: flex-start;
}
.room__pills li {
  background: var(--positive);
  color: var(--text);
  padding: var(--space-3) var(--space-4);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.3;
  max-width: 100%;
}
@media (max-width: 480px) {
  .room__pills li { font-size: 0.82rem; padding: 8px 14px; }
}
.room__inline-link {
  display: inline-block;
  margin-top: var(--space-6);
  font-weight: 600;
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
}
.room__inline-link:hover { color: var(--accent-deep); border-bottom-color: var(--accent-deep); }
@media (min-width: 1024px) {
  .room__grid { grid-template-columns: 1fr; align-items: start; gap: var(--space-7); }
  .room__photo--sm img { aspect-ratio: 4 / 3; }
}

/* ─── Block 5 · Cities ──────────────────────────────────────── */
.cities__grid {
  display: grid;
  gap: var(--space-6);
}
.city-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.city-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.city-card__stamp {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  width: 80px;
  height: 80px;
  object-fit: contain;
  opacity: 0.85;
  pointer-events: none;
}
.city-card__photo {
  margin-bottom: var(--space-5);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.city-card__photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.city-card__name {
  font-size: 1.6rem;
  margin-bottom: var(--space-2);
}
.city-card__hoods {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}
.city-card__caption {
  color: var(--text-soft);
  margin-bottom: var(--space-5);
  flex-grow: 1;
}
.city-card__cta {
  font-weight: 600;
  color: var(--accent-deep);
  border-bottom: 1px solid var(--accent-deep);
  align-self: flex-start;
  padding-bottom: 2px;
}
.city-card__cta:hover { color: var(--text); border-bottom-color: var(--text); }
@media (min-width: 1024px) {
  .cities__grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
}

/* ─── Block 6 · How it works ────────────────────────────────── */
.how__steps {
  display: grid;
  gap: var(--space-7);
  counter-reset: step;
}
.how__steps li {
  position: relative;
  padding-left: 0;
}
.how__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent-deep);
  margin-bottom: var(--space-2);
  font-weight: 700;
}
.how__steps h3 { margin-bottom: var(--space-3); }
.how__steps p { color: var(--text-soft); margin-bottom: 0; }
@media (min-width: 1024px) {
  .how__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-7);
  }
}

/* ─── Block 7 · Pricing ─────────────────────────────────────── */
.pricing { background: var(--bg-alt); }
.pricing__block { margin-bottom: var(--space-8); }
.pricing__block:last-of-type { margin-bottom: var(--space-5); }
.pricing__sub {
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}
.pricing__lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}
.pricing__lead strong { font-weight: 700; }
.pricing__block p { color: var(--text-soft); max-width: 720px; }
.pricing__list {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.pricing__list li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--text-soft);
}
.pricing__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}
.pricing__list strong { color: var(--text); }

.pricing__tiers {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.tier {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.tier--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.tier__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
}
.tier__range {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.tier ul { display: grid; gap: var(--space-2); margin-top: var(--space-3); }
.tier ul li {
  font-size: 0.95rem;
  color: var(--text-soft);
  padding-left: var(--space-4);
  position: relative;
}
.tier ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: -2px;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent);
}

.pricing__dont {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.pricing__dont li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--text-soft);
}
.pricing__dont li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text);
  font-weight: 700;
}
.pricing__dont strong { color: var(--text); }
.pricing__dont em {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (min-width: 1024px) {
  .pricing__tiers { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
}

/* ─── Block 8 · Vivers Club ─────────────────────────────────── */
.club { background: #F5EFE3; }
.club__grid {
  display: grid;
  gap: var(--space-7);
}
.club__photo img {
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.club__items { display: grid; gap: var(--space-6); }
.club__item { display: flex; flex-direction: column; }
.club__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: var(--space-3);
}
.club__item h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-3);
}
.club__item p {
  color: var(--text-soft);
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .club__grid { grid-template-columns: 1fr 1.4fr; gap: var(--space-9); align-items: start; }
  .club__photo img { aspect-ratio: 4 / 5; }
}

/* ─── Block 9 · Social proof ────────────────────────────────── */
.proof2 { background: var(--bg-alt); }

.featured {
  margin-bottom: var(--space-7);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.featured__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
  text-align: center;
}
.featured__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5) var(--space-4);
  text-align: center;
}
.featured__items li {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: 0 var(--space-3);
}
.featured__items li + li {
  border-left: 1px solid var(--hairline);
}
.featured__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--text);
}
.featured__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}
@media (min-width: 768px) {
  .featured__items { grid-template-columns: repeat(4, 1fr); }
}
.proof2__stats {
  background: var(--carbon);
  color: var(--snow);
  padding: var(--space-7);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
}
.proof2__stats ul { display: grid; gap: var(--space-4); }
.proof2__stats li {
  font-size: 1.05rem;
  color: rgba(251, 245, 243, 0.92);
  line-height: 1.4;
}
.proof2__stats strong {
  display: inline-block;
  font-family: var(--font-display);
  color: var(--snow);
  font-size: 1.4rem;
  font-weight: 700;
  margin-right: var(--space-3);
  min-width: 70px;
}
.proof2__credit {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: var(--space-7);
  max-width: 720px;
}

.testimonials {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-6);
}
.testimonial {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}
.testimonial__stars {
  color: #E2A33B;
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: var(--space-3);
}
.testimonial blockquote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 var(--space-4);
  quotes: none;
}
.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.9rem;
}
.testimonial__name { font-weight: 600; color: var(--text); }
.testimonial__city { color: var(--text-muted); }
.testimonial__pending {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
  font-style: italic;
  margin-top: var(--space-1);
}
@media (min-width: 1024px) {
  .testimonials { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Block 10 · FAQ ────────────────────────────────────────── */
.faq__list { display: grid; gap: var(--space-3); }
.faq details {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  background: var(--bg);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq details[open] { border-color: var(--text); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  position: relative;
  padding-right: var(--space-8);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: var(--space-5);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  padding: 0 var(--space-6) var(--space-5);
  color: var(--text-soft);
  margin: 0;
}

/* ─── Block 11 · Final CTA ──────────────────────────────────── */
.final {
  position: relative;
  overflow: hidden;
  padding: var(--space-9) 0;
  color: var(--snow);
  text-align: center;
}
.final__bg { position: absolute; inset: 0; z-index: 1; }
.final__bg img { width: 100%; height: 100%; object-fit: cover; }
.final__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.65);
  z-index: 2;
}
.final__content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto;
}
.final h2 { color: var(--snow); margin-bottom: var(--space-4); }
.final p { color: rgba(251, 245, 243, 0.92); font-size: 1.1rem; margin-bottom: var(--space-6); }
.final .cta-row { justify-content: center; }

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  padding: var(--space-8) 0 var(--space-5);
  border-top: 1px solid var(--hairline);
}
.footer__inner {
  display: grid;
  gap: var(--space-6);
}
.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}
.footer__col p { margin: 0 0 var(--space-2); font-size: 0.95rem; color: var(--text-soft); }
.footer__col a { color: var(--text); }
.footer__col a:hover { color: var(--accent-deep); }
.footer__strip {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid var(--hairline);
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .footer__inner { grid-template-columns: repeat(3, 1fr); gap: var(--space-7); }
}

/* ─── Sticky mobile CTA ─────────────────────────────────────── */
.sticky {
  position: fixed;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  z-index: 40;
  display: flex;
  gap: var(--space-3);
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sticky.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sticky__main {
  flex: 1;
  box-shadow: var(--shadow-strong);
  min-height: 56px;
}
@media (min-width: 1024px) {
  .sticky { display: none; }
}

/* Scroll-reveal animations removed per request. */
