/* Skin Life Clinic — landing page
   Palette from the clinic itself: white marble and glass, the Tallinn daylight through the
   12th-floor windows, one warm accent taken from the red armchair, gold only for the licence.
   Type: Italiana (thin high-contrast display, like the "S" monogram) + Instrument Sans. */

:root {
  --white: #FFFFFF;
  --glass: #F3F5F7;      /* marble / frosted glass: section ground */
  --glass-2: #E7EBEF;    /* lines on glass */
  --sky: #DCE6EE;        /* window stage */
  --sky-deep: #C9D7E2;
  --ink: #14161B;
  --ink-soft: #3A3E46;
  --stone: #5F646D;      /* secondary text, 5.9:1 on white */
  --line: rgba(20, 22, 27, .12);
  --coral: #E4562F;      /* the armchair */
  --coral-ink: #B23A17;  /* coral for text, 4.7:1 on white */
  --coral-soft: #FBE8E1;
  --gold: #A8843C;

  --font: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --display: "Italiana", "Didot", "Bodoni MT", Georgia, serif;

  --t-h1: clamp(2.7rem, 6.2vw, 5.6rem);
  --t-h2: clamp(2rem, 4.2vw, 3.5rem);
  --t-h3: clamp(1.25rem, 1.8vw, 1.5rem);
  --t-lead: clamp(1.0625rem, 1.35vw, 1.25rem);
  --t-body: 1rem;
  --t-small: .875rem;
  --t-eyebrow: .75rem;
  --t-phone: clamp(1.9rem, 3.4vw, 3.2rem);
  --t-rating: clamp(4rem, 8vw, 7rem);

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 20px; --s-6: 24px;
  --s-8: 32px; --s-10: 40px; --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px; --s-32: 128px;
  --section: clamp(72px, 9vw, 128px);
  --gutter: clamp(20px, 4vw, 56px);
  --rail: 64px;
  --max: 1320px;
  --radius: 2px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
body {
  margin: 0; background: var(--white); color: var(--ink);
  font-family: var(--font); font-size: var(--t-body); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Italiana has no Cyrillic; Oranienbaum is the closest Didone with it, so Russian keeps the same voice. */
html[lang="ru"] { --display: "Oranienbaum", "Italiana", "Didot", Georgia, serif; }
html[lang="ru"] .display, html[lang="ru"] .h1 { letter-spacing: .03em; }
@media (max-width: 1600px) { html[lang="ru"] .header .phone { display: none; } html[lang="ru"] .nav { gap: var(--s-4); } }

/* language toggle: three copies of every line, one shown */
html[lang="en"] .et, html[lang="en"] .ru,
html[lang="et"] .en, html[lang="et"] .ru,
html[lang="ru"] .en, html[lang="ru"] .et { display: none !important; }

/* ---------- type ---------- */
.display { font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: .06em; line-height: 1.02; }
.h1 { font-size: var(--t-h1); letter-spacing: .04em; line-height: 1; }
.h2 { font-size: var(--t-h2); }
.h3 { font-size: var(--t-h3); font-family: var(--font); font-weight: 500; letter-spacing: 0; text-transform: none; line-height: 1.25; }
.eyebrow { font-size: var(--t-eyebrow); letter-spacing: .22em; text-transform: uppercase; color: var(--stone); display: flex; align-items: center; gap: var(--s-3); }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--coral); flex: none; }
.lead { font-size: var(--t-lead); line-height: 1.5; color: var(--ink-soft); max-width: 34em; }
.muted { color: var(--stone); }
.small { font-size: var(--t-small); }
.rule { height: 1px; background: var(--line); }

/* ---------- layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); position: relative; }
.section.glass { background: var(--glass); }
.section.sky { background: var(--sky); }
.section-head { display: grid; gap: var(--s-4); margin-bottom: var(--s-12); max-width: 44rem; }
.section-head .h2 { margin-top: var(--s-2); }
.section-head.split { max-width: none; grid-template-columns: minmax(0, 1fr) auto; align-items: end; }
.section-head.split .more { justify-self: end; }
@media (max-width: 720px) { .section-head.split { grid-template-columns: 1fr; } .section-head.split .more { justify-self: start; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  min-height: 48px; padding: 0 var(--s-6); border-radius: 999px; white-space: nowrap;
  font-size: var(--t-small); font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid var(--ink); color: var(--ink); background: transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn:hover { background: var(--ink); color: var(--white); }
.btn.primary { background: var(--ink); color: var(--white); }
.btn.primary:hover { background: var(--coral); border-color: var(--coral); }
.btn.coral { background: var(--coral); border-color: var(--coral); color: var(--white); }
.btn.coral:hover { background: var(--ink); border-color: var(--ink); }
.more { display: inline-flex; align-items: center; gap: var(--s-2); min-height: 44px; font-size: var(--t-small); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.more::after { content: "→"; transition: transform .25s var(--ease); }
.more:hover::after { transform: translateX(4px); }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 40; background: rgba(255, 255, 255, .92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header .wrap { display: flex; align-items: center; gap: var(--s-6); min-height: 76px; }
.brand { display: flex; align-items: center; gap: var(--s-3); margin-right: auto; }
.brand img { width: 40px; height: 40px; object-fit: contain; }
.brand b { font-family: var(--display); font-weight: 400; font-size: 1.25rem; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap; }
.nav { display: flex; gap: var(--s-6); }
.nav a { font-size: var(--t-small); letter-spacing: .04em; padding: var(--s-3) 0; position: relative; white-space: nowrap; }
@media (max-width: 1400px) { .nav { gap: var(--s-4); } .header .wrap { gap: var(--s-4); } }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 1px; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a:hover::after, .nav a[aria-current="true"]::after { transform: scaleX(1); }
.lang { display: flex; gap: 2px; border: 1px solid var(--line); border-radius: 999px; padding: 2px; }
.lang button { min-width: 40px; min-height: 36px; border-radius: 999px; font-size: .75rem; letter-spacing: .1em; font-weight: 600; color: var(--stone); }
.lang button[aria-pressed="true"] { background: var(--ink); color: var(--white); }
.header .phone { font-weight: 600; font-size: var(--t-small); letter-spacing: .02em; white-space: nowrap; }
.header .btn { min-height: 44px; padding-inline: var(--s-5); }
@media (max-width: 1100px) { .nav { display: none; } }
@media (max-width: 640px) { .header .phone, .brand b { display: none; } .header .wrap { min-height: 64px; gap: var(--s-3); } }

/* ---------- floor rail (the signature: an elevator plate that shows where you are) ---------- */
.rail {
  position: fixed; left: 0; top: 0; bottom: 0; width: var(--rail); z-index: 30;
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: var(--s-6);
  border-right: 1px solid var(--line); background: var(--white);
}
.rail .floor { font-family: var(--display); font-size: 2rem; line-height: 1; letter-spacing: .04em; }
.rail .floor small { display: block; font-family: var(--font); font-size: .5625rem; letter-spacing: .22em; text-transform: uppercase; color: var(--stone); margin-top: var(--s-1); text-align: center; }
.rail ol { display: flex; flex-direction: column; gap: var(--s-2); list-style: none; margin: 0; padding: 0; }
.rail li a { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; position: relative; }
.rail li a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--glass-2); border: 1px solid var(--stone); transition: transform .3s var(--ease), background .3s var(--ease); }
.rail li a[aria-current="true"]::before { background: var(--coral); border-color: var(--coral); transform: scale(1.5); }
.rail li a span { position: absolute; left: calc(100% + 4px); top: 50%; transform: translateY(-50%); white-space: nowrap; font-size: .6875rem; letter-spacing: .14em; text-transform: uppercase; background: var(--ink); color: var(--white); padding: 4px 8px; opacity: 0; pointer-events: none; transition: opacity .2s; }
.rail li a:hover span, .rail li a:focus-visible span { opacity: 1; }
.rail .addr { writing-mode: vertical-rl; transform: rotate(180deg); font-size: .625rem; letter-spacing: .26em; text-transform: uppercase; color: var(--stone); }
@media (min-width: 1200px) {
  .rail { display: flex; }
  body { padding-left: var(--rail); }
  .header { left: var(--rail); }
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 96px) var(--section); }
.hero .wrap { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.hero-copy { display: grid; gap: var(--s-6); }
.hero-copy .h1 { max-width: 12ch; }
.hero-copy .h1 em { font-style: normal; color: var(--coral-ink); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-2); }
.hero-facts { display: grid; grid-template-columns: repeat(3, auto); gap: var(--s-8); margin-top: var(--s-6); padding-top: var(--s-6); border-top: 1px solid var(--line); }
.fact { display: grid; gap: 2px; }
.fact b { font-family: var(--display); font-weight: 400; font-size: 1.75rem; line-height: 1; letter-spacing: .04em; }
.fact span { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); }
.fact.gold b { color: var(--gold); }
.pane { position: relative; margin: 0; aspect-ratio: 3 / 4; overflow: hidden; background: var(--sky); }
.pane img { width: 100%; height: 100%; object-fit: cover; }
.pane figcaption { position: absolute; left: var(--s-4); bottom: var(--s-4); font-size: .6875rem; letter-spacing: .18em; text-transform: uppercase; color: var(--white); background: rgba(20, 22, 27, .55); padding: 6px 10px; backdrop-filter: blur(6px); }
.hero-pane { position: relative; }
.hero-pane::before { /* the Skyon lattice, drawn as a thin diagonal grid behind the pane */
  content: ""; position: absolute; inset: -12% -30% -12% 18%; z-index: 0; pointer-events: none;
  background:
    repeating-linear-gradient(45deg, transparent 0 46px, var(--sky-deep) 46px 47px),
    repeating-linear-gradient(-45deg, transparent 0 46px, var(--sky-deep) 46px 47px),
    var(--sky);
}
.hero-pane .pane { position: relative; z-index: 1; margin-right: clamp(16px, 4vw, 48px); }
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-pane { order: -1; }
  .hero-pane .pane { aspect-ratio: 4 / 3; margin-right: 0; }
  .hero-pane::before { inset: 0 -20% -12% 30%; }
  .hero-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-4); }
  .fact b { font-size: 1.5rem; }
  .fact span { font-size: .6875rem; letter-spacing: .08em; }
}

/* ---------- treatments ---------- */
.treat { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.treat li { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.treat a { display: grid; grid-template-rows: auto 1fr auto; gap: var(--s-4); min-height: 260px; padding: var(--s-6); transition: background .3s var(--ease); }
.treat a:hover { background: var(--white); }
.treat .n { font-family: var(--display); font-size: 2rem; line-height: 1; color: var(--sky-deep); transition: color .3s; }
.treat a:hover .n { color: var(--coral); }
.treat h3 { font-size: 1.125rem; font-weight: 600; letter-spacing: 0; line-height: 1.3; margin-bottom: var(--s-2); }
.treat p { color: var(--stone); font-size: var(--t-small); line-height: 1.55; }
.treat .go { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.treat .brands { display: flex; flex-wrap: wrap; gap: 6px; }
.treat .brands > span { font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; border: 1px solid var(--line); padding: 3px 8px; border-radius: 999px; color: var(--stone); }
@media (max-width: 900px) { .treat { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .treat { grid-template-columns: 1fr; } .treat a { min-height: 0; } }

/* ---------- devices marquee ---------- */
.devices { padding-block: var(--s-10); border-block: 1px solid var(--line); overflow: hidden; }
.devices .wrap { display: grid; grid-template-columns: auto 1fr; gap: var(--s-8); align-items: center; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent); }
.marquee ul { display: flex; gap: var(--s-12); width: max-content; animation: marquee 48s linear infinite; }
.marquee li { font-family: var(--display); font-size: 1.5rem; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; display: flex; align-items: center; gap: var(--s-12); }
.marquee li::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover ul { animation-play-state: paused; }
@media (max-width: 720px) { .devices .wrap { grid-template-columns: 1fr; gap: var(--s-4); } }

/* ---------- results ---------- */
.results { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-6); }
.results figure { margin: 0; display: grid; gap: var(--s-3); align-content: start; }
.results .ph { aspect-ratio: 1; overflow: hidden; background: var(--glass); }
.results .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.results figure:hover .ph img { transform: scale(1.03); }
.results figcaption { display: grid; gap: 2px; }
.results figcaption b { font-weight: 600; }
.results figcaption span { color: var(--stone); font-size: var(--t-small); }
.results .pair { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; aspect-ratio: 1; }
.results .pair .ph { aspect-ratio: auto; height: 100%; }
.results .tag { position: absolute; }
@media (max-width: 900px) { .results { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .results { grid-template-columns: 1fr; } }

/* ---------- prices ---------- */
.prices { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(32px, 5vw, 80px); align-items: start; }
.price-list { display: grid; }
.price-list li { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: var(--s-4); align-items: baseline; padding: var(--s-4) 0; border-bottom: 1px solid var(--line); }
.price-list li:first-child { border-top: 1px solid var(--line); }
.price-list .name { font-weight: 500; }
.price-list .note { display: block; color: var(--stone); font-size: var(--t-small); }
.price-list .amt { font-family: var(--display); font-size: 1.75rem; letter-spacing: .04em; white-space: nowrap; }
.price-lists { display: grid; gap: var(--s-3); position: sticky; top: 96px; }
.price-lists a { display: flex; justify-content: space-between; align-items: center; min-height: 52px; padding: 0 var(--s-4); border: 1px solid var(--line); background: var(--white); font-weight: 500; transition: border-color .25s, transform .25s var(--ease); }
.price-lists a:hover { border-color: var(--ink); transform: translateX(4px); }
.price-lists a::after { content: "→"; color: var(--stone); }
.price-lists .fin { margin-top: var(--s-2); padding: var(--s-4); background: var(--coral-soft); font-size: var(--t-small); line-height: 1.5; }
.price-lists .fin b { display: block; font-weight: 600; margin-bottom: 2px; }
.price-note { margin-top: var(--s-4); color: var(--stone); font-size: var(--t-small); }
@media (max-width: 900px) { .prices { grid-template-columns: 1fr; } .price-lists { position: static; } }

/* ---------- team ---------- */
.team { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s-8) var(--s-6); }
.team li { display: grid; gap: var(--s-3); justify-items: start; }
.team .por { width: min(100%, 220px); aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: var(--glass); filter: grayscale(1); transition: filter .5s var(--ease); }
.team li:hover .por { filter: grayscale(0); }
.team .por img { width: 100%; height: 100%; object-fit: cover; }
.team b { display: block; font-weight: 600; margin-top: var(--s-2); }
.team span { color: var(--stone); font-size: var(--t-small); }
@media (max-width: 900px) { .team { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 560px) { .team { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-6) var(--s-4); } }

/* ---------- reviews ---------- */
.reviews { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.rating { position: sticky; top: 96px; display: grid; gap: var(--s-2); }
.rating .score { font-family: var(--display); font-size: var(--t-rating); line-height: .9; letter-spacing: .02em; }
.rating .stars { color: var(--coral); letter-spacing: .1em; font-size: 1.25rem; }
.rating .of { color: var(--stone); font-size: var(--t-small); }
.rating .more { margin-top: var(--s-4); justify-self: start; }
.quotes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-6); }
.quote { padding: var(--s-6); background: var(--white); border: 1px solid var(--line); display: grid; gap: var(--s-4); align-content: start; }
.quote p { font-size: 1.0625rem; line-height: 1.55; }
.quote p::before { content: "“"; font-family: var(--display); font-size: 2.5rem; line-height: 0; vertical-align: -.35em; margin-right: 2px; color: var(--coral); }
.quote footer { display: flex; justify-content: space-between; gap: var(--s-3); font-size: var(--t-small); color: var(--stone); }
.quote footer b { color: var(--ink); font-weight: 600; }
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } .rating { position: static; } }
@media (max-width: 640px) { .quotes { grid-template-columns: 1fr; } }

/* ---------- clinic ---------- */
.clinic .wrap { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.clinic-copy { display: grid; gap: var(--s-5); }
.clinic-copy p { color: var(--ink-soft); max-width: 36em; }
.clinic-copy .h2 { margin-top: var(--s-2); }
.clinic-copy .addr { display: grid; gap: 2px; margin-top: var(--s-4); padding-top: var(--s-6); border-top: 1px solid rgba(20, 22, 27, .18); }
.clinic-copy .addr b { font-family: var(--display); font-size: 1.5rem; letter-spacing: .06em; text-transform: uppercase; }
.panes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-3); align-items: end; }
.panes .pane:nth-child(2) { margin-bottom: clamp(24px, 4vw, 56px); }
.panes .pane:nth-child(3) { margin-bottom: clamp(48px, 8vw, 112px); }
@media (max-width: 900px) { .clinic .wrap { grid-template-columns: 1fr; } .panes .pane:nth-child(2), .panes .pane:nth-child(3) { margin-bottom: 0; } }
@media (max-width: 560px) { .panes { grid-template-columns: repeat(2, 1fr); } .panes .pane:nth-child(3) { display: none; } }

/* ---------- good to know ---------- */
.rules { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--s-6); }
.rules li { display: grid; gap: var(--s-3); padding-top: var(--s-4); border-top: 1px solid var(--ink); }
.rules b { font-family: var(--display); font-size: 2rem; line-height: 1; letter-spacing: .04em; }
.rules b.info { width: 36px; height: 36px; border: 1px solid var(--ink); border-radius: 50%; display: grid; place-items: center; font-size: 1.5rem; line-height: 1; padding-top: 2px; }
.rules p { font-size: var(--t-small); line-height: 1.55; color: var(--ink-soft); }
@media (max-width: 1000px) { .rules { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 600px) { .rules { grid-template-columns: 1fr 1fr; } }

/* ---------- contact ---------- */
.contact .wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); }
.contact-main { display: grid; gap: var(--s-6); align-content: start; }
.contact-phone { font-family: var(--display); font-size: var(--t-phone); letter-spacing: .04em; line-height: 1; white-space: nowrap; }
.contact-phone:hover { color: var(--coral-ink); }
.contact-lines { display: grid; gap: var(--s-4); }
.contact-lines div { display: grid; gap: 2px; padding-top: var(--s-4); border-top: 1px solid var(--line); }
.contact-lines .lbl { font-size: .6875rem; letter-spacing: .18em; text-transform: uppercase; color: var(--stone); }
.contact-lines a:hover { color: var(--coral-ink); }
.contact-side { display: grid; gap: var(--s-4); align-content: start; }
.map { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sky); position: relative; }
.map img { width: 100%; height: 100%; object-fit: cover; }
.map a { position: absolute; left: var(--s-4); bottom: var(--s-4); }
.contact-side .btns { display: flex; flex-wrap: wrap; gap: var(--s-3); }
@media (max-width: 900px) { .contact .wrap { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding-block: var(--s-8); font-size: var(--t-small); color: var(--stone); }
.footer .wrap { display: flex; flex-wrap: wrap; gap: var(--s-4) var(--s-8); justify-content: space-between; align-items: center; }
.footer .lic { display: flex; align-items: center; gap: var(--s-3); }
.footer .lic img { width: 22px; height: 22px; }
.footer .lic b { color: var(--gold); font-weight: 600; letter-spacing: .04em; }
.footer nav { display: flex; gap: var(--s-5); }
.footer nav a:hover { color: var(--ink); }

/* ---------- sticky phone CTA ---------- */
.sticky-cta { position: fixed; left: var(--s-4); right: var(--s-4); bottom: calc(var(--s-4) + env(safe-area-inset-bottom, 0px)); z-index: 35; display: none; gap: var(--s-2); }
.sticky-cta .btn { flex: 1; min-height: 52px; box-shadow: 0 12px 32px rgba(20, 22, 27, .18); }
@media (max-width: 720px) { .sticky-cta { display: flex; } .footer { padding-bottom: calc(var(--s-8) + 72px); } }

/* ---------- motion ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
html.gsap .reveal { opacity: 1; transform: none; transition: none; } /* GSAP animates the children instead */
html.js-anim .header, html.js-anim .rail, html.js-anim .hero-copy > *, html.js-anim .hero-pane .pane { visibility: hidden; } /* until the load timeline sets them inline */
.w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .1em; margin-bottom: -.1em; }
.w > span { display: inline-block; will-change: transform; }
.hero-pane::before { opacity: var(--lat, .8); }
.rating .stars i { font-style: normal; display: inline-block; }
html.no-anim .reveal { opacity: 1; transform: none; transition: none; }
html.no-anim .marquee ul { animation: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee ul { animation: none; }
  html { scroll-behavior: auto; }
}
