/* ==========================================================
   Aš – Tavo, Tu – Mano
   Palette: burgundy / cream / beige · Type: Fraunces + Source Sans 3
   ========================================================== */

:root {
  --wine: #5E0F1F;
  --wine-deep: #430A16;
  --red: #8A1F33;
  --cream: #F5EBE0;
  --beige: #E9DCCB;
  --sand: #CDB69B;
  --ink: #2B1A1A;
  --ink-soft: #5C4A4A;
  --white: #FFFDFA;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;

  --container: 1280px;
  --gutter: clamp(20px, 5vw, 48px);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
}
h1, h2 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; margin: 0; }
p { margin: 0 0 1em; }
a { color: inherit; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }
dd { margin: 0; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--wine); color: var(--cream);
  padding: 10px 16px; z-index: 100;
}
.skip-link:focus { top: 16px; }

h2 { font-size: clamp(2.1rem, 4vw, 3rem); letter-spacing: -0.015em; margin-bottom: 0.55em; font-variation-settings: "opsz" 96, "SOFT" 60; }
.section-intro { max-width: 30em; color: var(--ink-soft); margin-bottom: 2.5rem; }
.text-link { color: var(--wine); font-weight: 600; text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 56px; padding: 0.7em 1.8em;
  font: 600 1rem var(--font-body); letter-spacing: .02em;
  text-decoration: none; border: 1.5px solid var(--wine); cursor: pointer;
  transition: color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  transform: scaleX(0); transform-origin: left center;
  transition: transform .35s var(--ease);
}
.btn:hover::before, .btn:focus-visible::before { transform: scaleX(1); }
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -14px rgba(67, 10, 22, .55); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--wine); color: var(--cream); }
.btn-primary::before { background: var(--wine-deep); }
.btn-primary:hover { border-color: var(--wine-deep); }
.btn-outline { background: transparent; color: var(--wine); }
.btn-outline::before { background: var(--wine); }
.btn-outline:hover { color: var(--cream); }
.btn-wide { width: 100%; }

/* ---------- Top bar ---------- */
.topbar { background: var(--wine-deep); color: var(--beige); font-size: 0.9rem; }
.topbar-inner { display: flex; align-items: center; gap: 28px; min-height: 40px; }
.topbar-link { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; color: var(--cream); text-decoration: none; }
.topbar-link:hover span:last-child { text-decoration: underline; text-underline-offset: 3px; }
.topbar .ico {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(245, 235, 224, .08); border: 1px solid rgba(245, 235, 224, .18);
  color: var(--beige);
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.topbar .ico svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.topbar-link:hover .ico, .topbar-social a:hover { background: var(--cream); border-color: var(--cream); color: var(--wine-deep); }
.topbar-note { margin-left: auto; color: var(--sand); letter-spacing: .04em; }
.topbar-social { display: inline-flex; gap: 8px; }
.site-header { border-top: 0 !important; }

/* Service checklist (crawlable text) */
.service-list { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--sand); }
.service-list h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; color: var(--wine); margin: 0 0 16px; }
.service-list ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 40px; }
.service-list li { position: relative; padding-left: 30px; }
.service-list li::before { content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border: 1px solid var(--wine); border-radius: 50%; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6 10.5l2.6 2.5L14 7.5' fill='none' stroke='%235E0F1F' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat; }
.service-list a { color: var(--ink); text-decoration: none; }
.service-list a:hover { color: var(--wine); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 70;
  background: rgba(245, 235, 224, .96); backdrop-filter: blur(8px);
  border-top: 3px solid var(--wine); border-bottom: 1px solid var(--sand);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 12px 32px -24px rgba(67, 10, 22, .45); }
.header-inner { display: flex; align-items: center; gap: 36px; min-height: 72px; padding-block: 8px; }
.brand { display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-display); font-size: 1.5rem; letter-spacing: -0.01em; text-decoration: none; margin-right: auto; white-space: nowrap; color: var(--ink); }
.brand-text { line-height: 1.1; }
.brand-mark { width: 60px; height: 36px; fill: none; stroke: var(--wine); stroke-width: 1.2; flex: none; transition: transform .4s var(--ease); }
.brand:hover .brand-mark { transform: translateX(2px); }
.brand-logo img { display: block; width: 252px; height: auto; transition: opacity .3s var(--ease); }
.brand-logo:hover img { opacity: .85; }
.brand-b { color: var(--red); }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a { position: relative; text-decoration: none; font-weight: 400; font-size: 18px; letter-spacing: .01em; color: var(--ink); white-space: nowrap; padding: 6px 0; transition: color .2s var(--ease); }
/* Highlighted menu item: membership — a permanent underline, nothing more */
.site-nav .nav-highlight { color: var(--wine); font-weight: 600; }
.site-nav .nav-highlight::after { transform: scaleX(1); }
.site-nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--wine); transform: scaleX(0); transform-origin: left center; transition: transform .3s var(--ease); }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--wine); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav .btn { min-height: 48px; padding: 0.4em 1.4em; font-size: 18px; color: var(--cream); border-bottom-color: var(--wine); margin-left: 8px; }
.site-nav .btn:hover { color: var(--cream); border-color: var(--wine-deep); }
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 48px; height: 48px; padding: 0; margin-right: -8px;
  background: none; border: 0; cursor: pointer; color: var(--wine);
}
.nav-toggle svg { width: 26px; height: 26px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- Hero ----------
   Built on the structure of the saying's literary source (Baltakis,
   "Ar daug žmogui reikia?"): small needs listed quietly, the answer lands big. */
.hero { padding-block: clamp(48px, 8vw, 104px) clamp(48px, 7vw, 96px); overflow: hidden; }
.hero .kicker { margin-bottom: 1.4rem; }
.hero-title {
  display: flex; flex-direction: column;
  font-size: clamp(3rem, 9.5vw, 7rem);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.03em; line-height: 0.98;
  color: var(--wine);
}
.hero-needs {
  display: flex; flex-wrap: wrap; gap: 0 0.35em;
  font-size: 0.42em; line-height: 1.25; letter-spacing: -0.01em;
  color: var(--ink-soft);
  margin: 0.25em 0 0.2em;
}
.hero-needs span, .hero-answer { animation: rise .7s var(--ease) both; }
.hero-needs span:nth-child(1) { animation-delay: .5s; }
.hero-needs span:nth-child(2) { animation-delay: .9s; }
.hero-needs span:nth-child(3) { animation-delay: 1.3s; }
.hero-answer { animation-delay: 1.9s; }
@keyframes rise { from { opacity: 0; transform: translateY(0.25em); } to { opacity: 1; transform: none; } }

/* The name: two halves and the line that joins them */
.pair {
  display: flex; align-items: center; gap: 24px;
  margin: clamp(28px, 4vw, 48px) 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  color: var(--red);
}
.pair span { white-space: nowrap; }
.pair-line {
  --pair-color: var(--wine);
  position: relative; flex: 1; display: flex; align-items: center; gap: 12px; min-width: 96px;
}
/* two halves of the line grow from the names toward the centre, where they meet */
.pair-line::before, .pair-line::after { content: ""; flex: 1; height: 1px; background: var(--pair-color); }
.pair-line::before { transform-origin: left center; animation: draw 1.4s var(--ease) 2.3s both; }
.pair-line::after { transform-origin: right center; animation: draw 1.4s var(--ease) 2.3s both; }
.pair-mark {
  position: relative; flex: none; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--pair-color); color: var(--pair-color);
  animation: pair-mark-in .8s var(--ease) .6s both;
}
.pair-mark::after {
  content: ""; position: absolute; inset: -1px; border-radius: 50%; border: 1px solid var(--pair-color);
  opacity: 0; animation: pair-ring 4s var(--ease) 1.5s infinite;
}
.pair-mark svg {
  position: absolute; inset: 9px; width: 24px; height: 24px;
  fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0; animation: pair-cycle 16s linear 1.5s infinite;
}
.pair-mark svg path, .pair-mark svg circle { stroke-dasharray: 1; stroke-dashoffset: 1; animation: pair-draw 16s linear 1.5s infinite; }
.pair-mark svg:nth-child(2), .pair-mark svg:nth-child(2) * { animation-delay: 5.5s; }
.pair-mark svg:nth-child(3), .pair-mark svg:nth-child(3) * { animation-delay: 9.5s; }
.pair-mark svg:nth-child(4), .pair-mark svg:nth-child(4) * { animation-delay: 13.5s; }
@keyframes pair-mark-in { from { opacity: 0; transform: scale(.6); } to { opacity: 1; transform: none; } }
@keyframes pair-ring { 0% { opacity: .5; transform: scale(1); } 60%, 100% { opacity: 0; transform: scale(1.9); } }
/* each value owns a quarter of the 16s loop: draw in, hold, fade out */
@keyframes pair-cycle { 0% { opacity: 0; } 4%, 21% { opacity: 1; } 25%, 100% { opacity: 0; } }
@keyframes pair-draw { 0% { stroke-dashoffset: 1; } 9%, 100% { stroke-dashoffset: 0; } }
@keyframes draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Hero grid: text | photo, with the foot row spanning both */
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 0 clamp(32px, 5vw, 72px); align-items: end;
}
.hero-text { min-width: 0; }
.hero-photo { margin: 0; align-self: stretch; }
.hero-photo img { width: 100%; height: 100%; max-height: 640px; object-fit: cover; display: block; }
.hero-foot {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: minmax(0, 36em) auto;
  gap: 32px 64px; align-items: end;
  margin-top: clamp(40px, 6vw, 72px);
  padding-top: 32px; border-top: 1px solid var(--sand);
}

/* Photos */
img { max-width: 100%; height: auto; display: block; }
.photo { margin: 0; }
.photo img { width: 100%; object-fit: cover; }
.framed { outline: 1px solid var(--sand); outline-offset: 12px; margin: 12px; }
.framed-light { outline-color: rgba(245, 235, 224, .4); }
.photo-small { margin-top: 2rem; max-width: 420px; }
.split-photo { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 80px); align-items: center; }
.split-photo .photo img { aspect-ratio: 4 / 3; }
.split-photo .facts { margin-top: 2rem; }
.split-photo p { max-width: 34em; font-size: 1.1rem; }
.lead { font-size: clamp(1.1rem, 1.8vw, 1.3rem); color: var(--ink-soft); margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(72px, 10vw, 136px); }
.section-dark { background: var(--wine); color: var(--cream); }
.section-dark p { color: var(--beige); }
.section-beige { background: var(--beige); }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.split p { max-width: 34em; font-size: 1.1rem; }

/* Ką rasite — a definition list, rows not cards */
.finds { border-top: 1px solid var(--sand); }
.find {
  display: grid; grid-template-columns: 112px minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 8px 40px; padding: 22px 0;
  border-bottom: 1px solid var(--sand);
  align-items: center;
}
.find-img { width: 112px; height: 112px; object-fit: cover; grid-row: span 2; }
.find dt { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.1; color: var(--wine); }
.find dd { color: var(--ink-soft); font-size: 1.1rem; align-self: center; }

/* Kam skirta */
.split-quote {
  font-family: var(--font-display); font-variation-settings: "opsz" 72, "SOFT" 100;
  font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.25;
  color: var(--wine); margin-top: 1.5rem;
}
.section-dark .split-quote { color: var(--cream); }
.facts li { padding: 20px 0; border-top: 1px solid rgba(245, 235, 224, .25); font-size: 1.1rem; color: var(--beige); }
.facts li:last-child { border-bottom: 1px solid rgba(245, 235, 224, .25); }
.facts strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; color: var(--cream); margin-bottom: 2px; }

/* Kaip vyksta — a real sequence, so it is numbered */
.steps { counter-reset: step; }
.steps li {
  counter-increment: step;
  display: grid; grid-template-columns: 2.2em 1fr; gap: 12px;
  padding: 18px 0; border-top: 1px solid var(--sand);
  font-size: 1.1rem; color: var(--ink-soft);
}
.steps li:last-child { border-bottom: 1px solid var(--sand); }
.steps li::before { content: counter(step) "."; font-family: var(--font-display); font-size: 1.4rem; color: var(--red); line-height: 1.3; }
.steps strong { display: block; font-weight: 600; color: var(--ink); }

/* ---------- Registration ---------- */
.form-wrap { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 88px); align-items: start; }
.form-intro { position: sticky; top: 96px; }
.form-intro p { max-width: 28em; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.next-steps { counter-reset: ns; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.next-steps li { counter-increment: ns; position: relative; display: grid; gap: 4px; padding: 0 0 22px 52px; }
.next-steps li::before {
  content: counter(ns); position: absolute; left: 0; top: 0;
  width: 36px; height: 36px; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--wine);
  border: 1px solid var(--wine); border-radius: 50%; background: var(--white);
}
.next-steps li:not(:last-child)::after { content: ""; position: absolute; left: 18px; top: 40px; bottom: 4px; width: 1px; background: var(--sand); }
.next-steps strong { font-weight: 600; color: var(--ink); }
.next-steps span { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.5; }
.intro-phone { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 10px; margin-top: 8px; padding: 18px 20px; background: var(--white); border-left: 3px solid var(--wine); }
.intro-phone span { color: var(--ink-soft); }
.intro-phone a { font-weight: 600; }
.trust { margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid var(--sand); }
.trust li { padding: 6px 0; color: var(--ink-soft); }
.trust strong { color: var(--ink); }

/* Registration form: boxed, grouped, numbered */
.reg-form { background: var(--white); border: 1px solid var(--sand); box-shadow: 0 24px 60px -32px rgba(67, 10, 22, .28); }
.reg-group { padding: clamp(24px, 3.4vw, 40px) clamp(22px, 3.4vw, 44px); border-bottom: 1px solid var(--beige); }
.reg-group-head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.reg-group-head h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.45rem; color: var(--wine); margin: 0 0 2px; line-height: 1.2; }
.reg-group-head p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
.reg-n {
  flex: none; width: 38px; height: 38px; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.15rem; color: var(--cream); background: var(--wine); border-radius: 50%;
}
.reg-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.reg-fields .field { margin: 0; }
.reg-fields .field-span { grid-column: 1 / -1; }
.reg-form label, .reg-form legend { font-weight: 600; font-size: 1rem; margin-bottom: 8px; color: var(--ink); }
.reg-form input[type="text"], .reg-form input[type="number"], .reg-form input[type="tel"], .reg-form input[type="email"], .reg-form textarea {
  min-height: 56px; padding: 14px 16px; font-size: 1.05rem;
  background: var(--cream); border: 1px solid var(--sand);
  transition: border-color .15s var(--ease), background-color .15s var(--ease), box-shadow .15s var(--ease);
}
.reg-form input::placeholder, .reg-form textarea::placeholder { color: rgba(92, 74, 74, .55); }
.reg-form input:hover, .reg-form textarea:hover { border-color: var(--wine); }
.reg-form input:focus, .reg-form textarea:focus { background: var(--white); border-color: var(--wine); outline: none; box-shadow: 0 0 0 3px rgba(94, 15, 31, .14); }
.reg-form textarea { min-height: 120px; line-height: 1.5; }
.reg-form .field.is-invalid input, .reg-form .field.is-invalid textarea { border-color: var(--red); background: #FBF0F0; }
.reg-form .chips { padding-top: 0; gap: 10px; }
.reg-form .chip span { min-height: 46px; padding: 8px 20px 8px 16px; font-size: 1rem; background: var(--cream); gap: 8px; }
.reg-form .chip span::before { content: ""; width: 10px; height: 10px; border: 1px solid var(--sand); border-radius: 50%; background: var(--white); transition: background-color .15s var(--ease), border-color .15s var(--ease); }
.reg-form .chip:hover span::before { border-color: var(--wine); }
.reg-form .chip input:checked + span::before { background: var(--cream); border-color: var(--cream); box-shadow: inset 0 0 0 2px var(--wine); }
.reg-submit { padding: clamp(24px, 3.4vw, 36px) clamp(22px, 3.4vw, 44px); background: var(--cream); }
.reg-submit .field { margin: 0 0 16px; }
.reg-submit .consent { font-weight: 400; line-height: 1.5; }
.reg-submit .consent input { width: 24px; height: 24px; margin-top: 1px; }
.reg-submit .form-status { margin: 0 0 8px; }
.btn-tall { min-height: 60px; font-size: 1.1rem; }
.reg-submit .lux-trust { justify-content: center; margin-top: 14px; }

.form { background: var(--white); padding: clamp(24px, 4vw, 40px); border: 1px solid var(--sand); }
.field { margin-bottom: 20px; border: 0; padding: 0; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label, legend { display: block; font-weight: 600; margin-bottom: 6px; padding: 0; }
.req { color: var(--red); }
.opt { font-weight: 400; color: var(--ink-soft); }

input[type="text"], input[type="number"], input[type="tel"], input[type="email"], textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: 12px 14px; min-height: 52px;
  background: var(--cream); border: 1px solid var(--sand); border-radius: 0;
}
textarea { resize: vertical; }
input:focus, textarea:focus { border-color: var(--wine); outline: 2px solid var(--wine); outline-offset: 0; }
.field.is-invalid input, .field.is-invalid textarea { border-color: var(--red); background: #FBF0F0; }

.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.checks label, .consent { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; margin: 0; cursor: pointer; }
input[type="checkbox"], input[type="radio"] { width: 22px; height: 22px; margin: 2px 0 0; accent-color: var(--wine); flex: none; }

.form-status { min-height: 1.5em; font-weight: 600; margin-bottom: 12px; }
.form-status.is-error { color: var(--red); }
.form-status.is-success { color: #2E6B3A; }

/* ---------- Contact ---------- */
.contact-links { display: grid; gap: 16px; }
.contact-link {
  display: flex; flex-direction: column; gap: 2px;
  padding: 20px 0; border-top: 1px solid rgba(245, 235, 224, .25);
  text-decoration: none;
}
.contact-link:last-child { border-bottom: 1px solid rgba(245, 235, 224, .25); }
.contact-link:hover .contact-value { text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.contact-label { font-size: 0.85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--beige); font-weight: 600; }
.contact-value { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); }

/* ---------- Footer ---------- */
.site-footer { background: var(--wine-deep); color: var(--beige); padding: clamp(64px, 8vw, 112px) 0 32px; }
.site-footer .watermark { stroke: rgba(245, 235, 224, .06); right: -6%; bottom: -10%; width: min(40vw, 520px); }
.footer-statement { text-align: center; padding-bottom: clamp(48px, 6vw, 80px); margin-bottom: clamp(48px, 6vw, 72px); border-bottom: 1px solid rgba(245, 235, 224, .16); }
.pair-footer { justify-content: center; max-width: 480px; margin: 0 auto 28px; color: var(--sand); font-size: clamp(1.2rem, 2vw, 1.5rem); }
.pair-footer .pair-line { --pair-color: var(--sand); }
.pair-footer .pair-line::before, .pair-footer .pair-line::after { animation: none; }
.pair-footer .pair-mark { animation-delay: .6s; }
.footer-claim { font-family: var(--font-display); font-variation-settings: "opsz" 144, "SOFT" 100; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--cream); margin: 0 0 2rem; }
.footer-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.footer-actions .btn-light { border-color: var(--cream); }
.footer-actions .btn-ghost { border-color: rgba(245, 235, 224, .55); }

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 48px 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(245, 235, 224, .16); }
.footer-brand .brand-lg { font-size: 1.5rem; color: var(--cream); margin-bottom: 18px; }
.footer-brand .brand-lg .brand-mark { stroke: var(--sand); }
.footer-brand .brand-b { color: var(--sand); }
.footer-brand p { max-width: 24em; color: var(--beige); margin: 0; font-size: 1rem; }
.footer-col h3 { font-family: var(--font-body); font-weight: 600; font-size: 0.75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sand); margin: 8px 0 20px; }
.footer-col a { position: relative; display: inline-block; color: var(--cream); text-decoration: none; padding: 5px 0; margin-right: auto; }
.footer-col a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: var(--sand); transform: scaleX(0); transform-origin: left center; transition: transform .3s var(--ease); }
.footer-col a:hover::after { transform: scaleX(1); }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; }
.footer-contact { font-family: var(--font-display); font-size: 1.3rem; }
.footer-small { margin: 16px 0 0; font-size: 0.9rem; color: var(--sand); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; font-size: 0.88rem; color: var(--sand); }
.footer-bottom a { color: var(--sand); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-credit { display: inline-flex; align-items: center; gap: 10px; }
.footer-credit img { width: auto; height: 22px; opacity: .85; transition: opacity .2s var(--ease); }
.footer-credit:hover { text-decoration: none; }
.footer-credit:hover img { opacity: 1; }

/* ---------- Mobile call bar ---------- */
.call-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 16px; min-height: 60px;
  background: var(--wine); color: var(--cream);
  font-weight: 600; font-size: 1.05rem; text-align: center; text-decoration: none;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-block: clamp(48px, 7vw, 96px) clamp(32px, 5vw, 56px); border-bottom: 1px solid var(--sand); background: var(--beige); }
.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.025em; line-height: 1;
  color: var(--wine); max-width: 14em;
}
.page-hero .lead { margin-top: 1.2rem; max-width: 34em; }
.kicker { font-family: var(--font-body); font-weight: 600; font-size: 0.78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin: 0 0 1rem; }
.kicker::before { content: ""; display: inline-block; width: 28px; height: 1px; background: var(--red); vertical-align: middle; margin-right: 12px; }
.why .kicker::before { display: none; }

/* Two-column prose */
.prose p { max-width: 34em; font-size: 1.1rem; }
.prose h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-top: 2.2rem; }
.prose h2:first-child { margin-top: 0; }
.prose ul { margin: 0 0 1.2em; padding-left: 1.2em; list-style: disc; max-width: 34em; font-size: 1.1rem; }
.prose li { margin-bottom: 0.4em; }

/* Service detail blocks */
.service { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 24px 64px; padding: clamp(32px, 5vw, 56px) 0; border-top: 1px solid var(--sand); }
.service:last-child { border-bottom: 1px solid var(--sand); }
.service h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); color: var(--wine); margin: 0; }
.service p { font-size: 1.1rem; max-width: 32em; }
.service p:last-child { margin: 0; }
.service .note { font-family: var(--font-display); color: var(--red); }

/* FAQ */
.faq { border-top: 1px solid var(--sand); }
.section-beige .faq details { border-bottom-color: var(--sand); }

/* FAQ accordion — hairline rows, same pattern as the page */
.faq-split { align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-cta { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--sand); display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.faq-cta p { margin: 0; font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); }
.acc-list { border-top: 1px solid var(--sand); }
.acc { border-bottom: 1px solid var(--sand); }
.acc summary {
  list-style: none; cursor: pointer;
  display: grid; grid-template-columns: 2.4rem 1fr 40px; align-items: center; gap: 12px;
  padding: 24px 0; color: var(--ink);
  transition: color .25s var(--ease);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover, .acc[open] summary { color: var(--wine); }
.acc-n { font-size: 0.78rem; font-weight: 600; letter-spacing: .12em; color: var(--red); }
.acc-q { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.25; }
.acc-i { position: relative; width: 40px; height: 40px; border: 1px solid var(--sand); border-radius: 50%; transition: background-color .3s var(--ease), border-color .3s var(--ease), transform .4s var(--ease); }
.acc-i::before, .acc-i::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--wine); transition: background-color .3s var(--ease); }
.acc-i::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.acc-i::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.acc summary:hover .acc-i { border-color: var(--wine); }
.acc[open] .acc-i { background: var(--wine); border-color: var(--wine); transform: rotate(45deg); }
.acc[open] .acc-i::before, .acc[open] .acc-i::after { background: var(--cream); }
.acc-a { padding: 0 52px 26px calc(2.4rem + 12px); }
.acc-a p { margin: 0; max-width: 34em; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.6; animation: acc-in .35s var(--ease); }
@keyframes acc-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
 to { opacity: 1; transform: none; } }
.faq details { border-bottom: 1px solid var(--sand); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: 20px 0; font-family: var(--font-display); font-size: 1.35rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.6rem; color: var(--red); flex: none; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { max-width: 34em; color: var(--ink-soft); font-size: 1.05rem; padding-bottom: 20px; margin: 0; }

/* Membership plans */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.plans-lux { grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr); gap: 32px; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--sand);
  padding: clamp(32px, 4vw, 48px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover { transform: translateY(-3px); box-shadow: 0 24px 48px -24px rgba(67, 10, 22, .35); }
.plan-featured { background: var(--wine); color: var(--cream); border-color: var(--wine); outline: 1px solid var(--sand); outline-offset: 8px; }
.plan-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin: 0 0 12px; }
.plan-featured .plan-eyebrow { color: var(--sand); }
.plan h3 { font-family: var(--font-display); font-weight: 400; font-size: 2.1rem; line-height: 1.05; margin: 0 0 0.35em; font-variation-settings: "opsz" 96, "SOFT" 60; }
.plan-for { color: var(--ink-soft); margin-bottom: 1.6rem; max-width: 26em; }
.plan-featured .plan-for { color: var(--beige); }
.plan-price {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 0; margin-bottom: 8px;
  border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand);
}
.plan-featured .plan-price { border-color: rgba(245, 235, 224, .3); }
.plan-price-label { font-size: 0.75rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.plan-featured .plan-price-label { color: var(--sand); }
.plan-price-value { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.2; }
.plan-price-value small { font-family: var(--font-body); font-size: 0.95rem; color: var(--ink-soft); margin-left: 8px; }
.plan-featured .plan-price-value small { color: var(--beige); }
.plan-list { margin: 8px 0 2rem; flex: 1; }
.plan-list li { position: relative; padding: 8px 0 8px 32px; }
.plan-list li::before {
  content: ""; position: absolute; left: 0; top: 11px; width: 20px; height: 20px;
  border: 1px solid var(--wine); border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6 10.5l2.6 2.5L14 7.5' fill='none' stroke='%235E0F1F' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.plan-featured .plan-list li::before {
  border-color: var(--sand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6 10.5l2.6 2.5L14 7.5' fill='none' stroke='%23F5EBE0' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.plan-note { margin: 14px 0 0; font-size: 0.95rem; color: var(--ink-soft); text-align: center; }
.plan-featured .plan-note { color: var(--beige); }
.plan-badge {
  position: absolute; top: -1px; right: 28px;
  padding: 8px 14px; margin: 0;
  background: var(--sand); color: var(--wine);
  font-size: 0.72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
}
.plan .btn-outline.on-dark { color: var(--cream); border-color: var(--cream); }
.plan .btn-outline.on-dark:hover { background: var(--cream); color: var(--wine); }

.assurance {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 40px;
  margin-top: clamp(32px, 4vw, 48px); padding-top: 28px; border-top: 1px solid var(--sand);
  color: var(--ink-soft);
}
.assurance li { display: flex; gap: 14px; align-items: flex-start; }
.assurance svg { width: 24px; height: 24px; flex: none; fill: none; stroke: var(--wine); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }
.assurance strong { color: var(--ink); }

.pay-note { display: flex; flex-wrap: wrap; gap: 8px 32px; margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--sand); color: var(--ink-soft); }
.pay-note strong { color: var(--ink); }

/* Profile sketch (what a member profile contains — no real person) */
.profile-card { background: var(--white); border: 1px solid var(--sand); padding: 28px; max-width: 420px; }
.profile-card .profile-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--beige); border: 1px solid var(--sand); margin-bottom: 18px; }
.profile-card dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 20px; }
.profile-card dt { font-size: 0.8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--ink-soft); padding-top: 3px; }
.profile-card dd { color: var(--ink); }
.profile-card .line { display: block; height: 10px; background: var(--beige); border-radius: 2px; }
.profile-card .line-gap { margin-top: 6px; }
.w-20 { width: 20%; } .w-40 { width: 40%; } .w-50 { width: 50%; } .w-70 { width: 70%; } .w-90 { width: 90%; }

/* Facts list on a light background */
.facts-light li { border-color: var(--sand); color: var(--ink-soft); }
.facts-light li:last-child { border-bottom-color: var(--sand); }
.facts-light strong { color: var(--wine); }

/* Three ways to start — whole row is the tap target */
.ways { border-top: 1px solid var(--sand); }
.way {
  display: grid; grid-template-columns: minmax(0, 14rem) minmax(0, 1fr) auto;
  gap: 8px 40px; align-items: center;
  padding: 26px 0; border-bottom: 1px solid var(--sand);
  text-decoration: none; color: var(--ink);
}
.way strong { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem, 2.8vw, 2rem); color: var(--wine); line-height: 1.1; }
.way .way-text { color: var(--ink-soft); font-size: 1.1rem; }
.way .way-meta { font-weight: 600; color: var(--wine); white-space: nowrap; }
.way:hover strong, .way:focus-visible strong { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; }

/* Form groups */
.form-group { padding-top: 12px; margin-top: 28px; border-top: 1px solid var(--beige); }
.form-group:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.form-group-title { font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; color: var(--wine); margin: 0 0 16px; }

/* Header phone (mobile only) */
.header-call { display: none; width: 48px; height: 48px; align-items: center; justify-content: center; color: var(--wine); }
.header-call svg { width: 24px; height: 24px; fill: currentColor; }

/* Event announcement (atidarymo vakaras) */
.event { scroll-margin-top: 80px; }
.event .kicker { color: var(--sand); }
.event-light .kicker { color: var(--red); }
.event .split-quote { margin-top: 0; font-size: clamp(1.5rem, 2.6vw, 2rem); font-style: italic; }
.event .facts a { color: inherit; text-decoration-color: rgba(245, 235, 224, .4); text-underline-offset: 3px; }
.event-light .facts a { text-decoration-color: var(--sand); }
.event-program { font-size: 1.05rem; color: var(--beige); max-width: 34em; margin: 1.5rem 0 0; }
.event-program span { font-family: var(--font-display); font-style: italic; color: var(--cream); }
.event-program a { color: var(--cream); font-weight: 600; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.event-actions { margin-top: 2rem; }
.event-actions .text-link { align-self: center; }
.event-posters .photo-main { aspect-ratio: 4 / 5; object-position: top; }
.event-posters a { display: block; }
.event-posters .photo-inset-link { position: absolute; right: -28px; bottom: -40px; width: 38%; }
.event-posters .photo-inset-link .photo-inset { position: static; width: 100%; }
.event-posters .photo-inset-link:hover .photo-inset { transform: translateY(-3px); }
.event-posters .photo-inset { transition: transform .3s var(--ease); }
@media (max-width: 900px) {
  .event-posters .photo-inset-link { width: 40%; right: -8px; bottom: -28px; }
}

/* CTA band */
.cta-band { background: var(--wine); color: var(--cream); padding-block: clamp(56px, 8vw, 96px); }
.cta-band .container { display: grid; grid-template-columns: minmax(0, 1.4fr) auto; gap: 32px 64px; align-items: center; }
.cta-band h2 { margin: 0 0 0.4em; }
.cta-band p { color: var(--beige); margin: 0; max-width: 30em; }
.cta-band .btn-primary { background: var(--cream); color: var(--wine); border-color: var(--cream); }
.cta-band .btn-primary:hover { background: var(--white); }
.cta-band .btn-outline { color: var(--cream); border-color: var(--cream); }
.cta-band .btn-outline:hover { background: var(--cream); color: var(--wine); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-light { background: var(--beige); color: var(--ink); }
.cta-light h2 { color: var(--wine); }
.cta-light p { color: var(--ink-soft); }
.cta-light .btn-primary { background: var(--wine); color: var(--cream); border-color: var(--wine); }
.cta-light .btn-primary:hover { background: var(--wine-deep); border-color: var(--wine-deep); }
.cta-light .btn-outline { color: var(--wine); border-color: var(--wine); }
.cta-light .btn-outline:hover { background: var(--wine); color: var(--cream); }

.pair-small { margin: 0; font-size: clamp(1.4rem, 2.6vw, 2rem); }
.quote-big { font-family: var(--font-display); font-variation-settings: "opsz" 144, "SOFT" 100; font-size: clamp(1.6rem, 3.4vw, 2.6rem); line-height: 1.25; max-width: 20em; margin: 0; color: var(--wine); }
.section-dark .quote-big { color: var(--cream); }
.more-link { margin-top: 28px; }


/* ---------- Full-bleed photo hero ---------- */
.hero-full {
  position: relative; min-height: min(86vh, 800px);
  display: grid; place-items: center;
  color: var(--cream); text-align: center;
  padding: clamp(64px, 10vw, 120px) var(--gutter);
  overflow: hidden;
}
.hero-full-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
}
.hero-full { --hero-fade: var(--cream); }
.hero-full.fade-beige { --hero-fade: var(--beige); }
.hero-full.fade-dark { --hero-fade: var(--wine); }
.hero-full::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(43, 26, 26, .30) 0%, rgba(67, 10, 22, .55) 60%, color-mix(in srgb, var(--hero-fade) 55%, rgba(67, 10, 22, .55)) 84%, var(--hero-fade) 100%);
}
.hero-frame { position: absolute; inset: clamp(16px, 3vw, 40px); border: 1px solid rgba(245, 235, 224, .35); pointer-events: none; z-index: 1; }
.hero-full-content { position: relative; z-index: 1; max-width: 820px; }
.hero-kicker { display: flex; align-items: center; justify-content: center; gap: 16px; font-weight: 600; font-size: clamp(0.72rem, 2vw, 0.85rem); letter-spacing: .16em; text-transform: uppercase; color: var(--beige); margin-bottom: 1.6rem; }
.hero-kicker::before, .hero-kicker::after { content: ""; width: 40px; height: 1px; background: rgba(245, 235, 224, .6); flex: none; }
.hero-full h1 { display: block; font-size: 1rem; font-weight: 400; margin: 0; }
.hero-full h1 .hero-kicker { display: flex; font-family: var(--font-body); font-variation-settings: normal; letter-spacing: .16em; line-height: 1.4; text-shadow: none; color: var(--beige); }
.hero-full h1 .hero-h1-main {
  display: block;
  font-size: clamp(3rem, 7.5vw, 6.2rem); font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 500;
  letter-spacing: -0.02em; line-height: 1;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, .25);
}
.hero-tagline { font-family: var(--font-body); font-size: clamp(1.1rem, 1.7vw, 1.3rem); color: var(--cream); max-width: 34em; margin: 1.4rem auto 2.4rem; opacity: .92; }
.hero-full .hero-actions { justify-content: center; }
.btn-light { background: var(--cream); color: var(--wine); border-color: var(--cream); }
.btn-light::before { background: var(--white); }
.btn-ghost { background: rgba(255, 253, 250, .06); color: var(--cream); border-color: rgba(255, 253, 250, .7); }
.btn-ghost::before { background: var(--cream); }
.btn-ghost:hover { color: var(--wine); border-color: var(--cream); }

/* ---------- Brand hero (index): text | globe logo ---------- */
.hero-brand {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--white) 0%, var(--cream) 48%, var(--beige) 100%);
  border-bottom: 1px solid var(--sand);
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 112px);
}
.hero-brand-inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); align-items: center; gap: clamp(32px, 5vw, 72px); }
.hero-brand .hero-kicker { justify-content: flex-start; color: var(--wine); margin-bottom: 1.4rem; }
.hero-brand .hero-kicker::before { background: var(--wine); width: 32px; }
.hero-brand .hero-kicker::after { display: none; }
.hero-brand h1 { display: block; font-size: 1rem; font-weight: 400; margin: 0; }
.hero-brand h1 .hero-kicker { display: flex; font-family: var(--font-body); font-variation-settings: normal; letter-spacing: .16em; line-height: 1.4; }
.hero-brand .hero-h1-main {
  display: block;
  font-size: clamp(2.8rem, 6.4vw, 5.6rem); font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 500;
  letter-spacing: -0.02em; line-height: 1;
  color: var(--wine);
}
.hero-brand .hero-tagline { color: var(--ink-soft); opacity: 1; margin: 1.4rem 0 2.2rem; max-width: 30em; }
.hero-brand .hero-actions { justify-content: flex-start; }
.hero-brand-logo { position: relative; margin: 0; padding: clamp(8px, 2vw, 24px); }
/* Soft halo so the transparent illustration sits on the cream instead of floating */
.hero-brand-logo::before {
  content: ""; position: absolute; inset: 6% 4% 2%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 253, 250, .95), rgba(233, 220, 203, .55) 70%, rgba(233, 220, 203, 0));
}
.hero-brand-logo img { position: relative; display: block; width: 100%; height: auto; max-width: 620px; margin-inline: auto; filter: drop-shadow(0 24px 40px rgba(43, 26, 26, .18)); }

/* Shorter photo hero for inner pages */
.hero-full.hero-page .hero-full-img { object-position: center 25%; }
.hero-full.hero-page { min-height: min(56vh, 520px); padding: clamp(56px, 8vw, 96px) var(--gutter) clamp(72px, 9vw, 112px); }
.hero-full.hero-page .hero-h1-main { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
.hero-full.hero-page .hero-tagline { margin-bottom: 0; }
.hero-full.hero-page .hero-actions { margin-top: 2rem; }

/* ---------- Why us ---------- */
.why { text-align: center; }
.why h2 { max-width: 16em; margin-inline: auto; }
.section-intro.center { margin-inline: auto; text-align: center; }
.pair-center { justify-content: center; max-width: 560px; margin: 0 auto clamp(32px, 5vw, 56px); font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
.pair-center .pair-line::before, .pair-center .pair-line::after { animation-delay: .3s; }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.why-grid-3 { grid-template-columns: repeat(3, 1fr); }
.why-grid {
  margin-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand);
}
.why-grid li {
  position: relative; padding: 44px 28px 48px; border-left: 1px solid var(--sand);
  background: transparent;
  transition: background-color .4s var(--ease), transform .4s var(--ease);
}
.why-grid li:first-child { border-left: 0; }
.why-grid li::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--wine); transform: scaleX(0); transform-origin: center;
  transition: transform .45s var(--ease);
}
.why-grid li:hover { background: rgba(255, 253, 250, .75); }
.why-grid li:hover::after { transform: scaleX(1); }
.why-icon {
  width: 80px; height: 80px; padding: 22px; margin: 0 auto 24px;
  border: 1px solid var(--sand); border-radius: 50%;
  fill: none; stroke: var(--wine); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  background: transparent;
  transition: background-color .4s var(--ease), border-color .4s var(--ease), stroke .4s var(--ease), transform .5s var(--ease);
}
.why-grid li:hover .why-icon { background: var(--wine); border-color: var(--wine); stroke: var(--cream); transform: translateY(-4px); }
.why h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; margin: 0 0 0.45em; color: var(--wine); transition: color .3s var(--ease); }
.why-grid p { color: var(--ink-soft); margin: 0; max-width: 20em; margin-inline: auto; font-size: 1.02rem; line-height: 1.55; }

/* ---------- Garbės svečiai (opening-night guests) ---------- */
.guests { background: var(--white); }
.guests-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--sand); border: 1px solid var(--sand); }
.guests-grid li {
  position: relative; display: grid; grid-template-columns: 64px minmax(0, 1fr); column-gap: 20px; align-items: start;
  padding: 32px 28px 34px; background: var(--white);
  transition: background-color .4s var(--ease);
}
.guests-grid li:hover { background: var(--cream); }
.guest-n { position: absolute; top: 18px; right: 22px; font-family: var(--font-display); font-variation-settings: "opsz" 144, "SOFT" 100; font-size: 1.6rem; line-height: 1; color: var(--sand); }
.guest-icon {
  grid-row: span 2; width: 64px; height: 64px; padding: 16px;
  border: 1px solid var(--sand); border-radius: 50%;
  fill: none; stroke: var(--wine); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  transition: background-color .4s var(--ease), border-color .4s var(--ease), stroke .4s var(--ease), transform .5s var(--ease);
}
.guests-grid li:hover .guest-icon { background: var(--wine); border-color: var(--wine); stroke: var(--cream); transform: translateY(-3px); }
.guests-grid h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; color: var(--wine); margin: 8px 0 0.3em; padding-right: 36px; }
.guests-grid p { color: var(--ink-soft); margin: 0; font-size: 1.02rem; line-height: 1.55; max-width: 22em; }

/* ---------- Pokalbio laiko rezervacija (Calendly) ---------- */
.intro-booking { border-left-color: var(--sand); }
.booking-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 32px; counter-reset: bs; margin: 0 0 clamp(24px, 3vw, 36px); }
.booking-steps li { counter-increment: bs; position: relative; padding-left: 48px; }
.booking-steps li::before {
  content: counter(bs); position: absolute; left: 0; top: 0;
  width: 34px; height: 34px; display: grid; place-items: center;
  border: 1px solid var(--wine); border-radius: 50%;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--wine);
}
.booking-steps strong { display: block; font-weight: 600; color: var(--ink); }
.booking-steps span { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.5; }
.calendly-box {
  position: relative; height: 720px;
  background: var(--white); border: 1px solid var(--sand);
  outline: 1px solid var(--sand); outline-offset: 12px; margin: 12px;
}
.calendly-box iframe { display: block; width: 100%; height: 100%; border: 0; }
.calendly-fallback { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 24px; margin: 0; color: var(--ink-soft); max-width: 32em; margin-inline: auto; }
.calendly-box.is-failed .calendly-fallback { color: var(--ink); }

/* ---------- Section head with side link ---------- */
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head-row .section-intro { margin-bottom: 0; }
.section-head-row .text-link { white-space: nowrap; margin-bottom: 6px; }

/* ---------- Editorial tiles (what you can find) ---------- */
.tiles { display: grid; grid-template-columns: 1.25fr 1fr 1fr; grid-auto-rows: 300px; gap: 20px; }
.tile-lead { grid-row: span 2; }
.tile {
  position: relative; display: block; overflow: hidden;
  background: var(--wine-deep); color: var(--cream); text-decoration: none;
  outline-offset: 6px;
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(67, 10, 22, .88) 0%, rgba(67, 10, 22, .45) 38%, rgba(67, 10, 22, 0) 70%);
  transition: opacity .3s var(--ease);
}
.tile-text { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 24px 26px 22px; display: flex; flex-direction: column; gap: 6px; }
.tile-title { font-family: var(--font-display); font-size: clamp(1.5rem, 2.2vw, 2rem); line-height: 1.05; font-variation-settings: "opsz" 96, "SOFT" 60; }
.tile-lead .tile-title { font-size: clamp(2rem, 3vw, 2.8rem); }
.tile-desc { color: var(--beige); font-size: 1rem; max-width: 28em; }
.tile-lead .tile-desc { font-size: 1.1rem; }
.tile-more { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font-weight: 600; font-size: 0.9rem; letter-spacing: .04em; color: var(--cream); opacity: .85; }
.tile-more span { display: inline-block; transition: transform .3s var(--ease); }
.tile:hover img, .tile:focus-visible img { transform: scale(1.04); }
.tile:hover .tile-more span, .tile:focus-visible .tile-more span { transform: translateX(6px); }
.tile:hover .tile-more, .tile:focus-visible .tile-more { opacity: 1; }

.tiles-foot {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px 32px;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--sand);
}
.tiles-foot p { margin: 0; font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); max-width: 30em; }

@media (max-width: 900px) {
  .tiles { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
  .tile-lead { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 520px) {
  .tiles { grid-template-columns: 1fr; grid-auto-rows: 220px; gap: 14px; }
  .tile-lead { grid-column: span 1; }
  .tile-text { padding: 18px; }
  .tile-desc { font-size: 0.95rem; }
}

/* ---------- Steps with large numerals ---------- */
.steps-big { counter-reset: step; margin: 1.5rem 0 2rem; }
.steps-big li {
  counter-increment: step; position: relative;
  padding: 22px 0 22px 4.5rem; border-top: 1px solid var(--sand);
}
.steps-big li:last-child { border-bottom: 1px solid var(--sand); }
.steps-big li::before {
  content: counter(step);
  position: absolute; left: 0; top: 8px;
  font-family: var(--font-display); font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 3.6rem; line-height: 1; color: var(--sand);
}
.steps-big h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; color: var(--ink); margin: 0 0 0.3em; }
.steps-big p { color: var(--ink-soft); margin: 0; max-width: 30em; }
.split-photo-reverse { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); }
.split-photo-reverse .photo, .split-photo-reverse .photo-stack { order: 2; }
.photo-tall img { aspect-ratio: 9 / 11; }

/* Photo stack: tall main photo with a small overlapping inset */
.photo-stack { position: relative; margin: 12px 12px 48px; }
.photo-stack .photo-main { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.photo-stack .photo-inset {
  position: absolute; right: -28px; bottom: -40px; width: 38%; aspect-ratio: 1; object-fit: cover;
  border: 8px solid var(--cream); box-shadow: 0 24px 48px -20px rgba(43, 26, 26, .45);
}
.photo-stack .inset-dark { border-color: var(--wine); }
.split-photo .photo-stack .photo-main { aspect-ratio: 4 / 5; }

/* Facts with icons (dark section) */
.facts-icons li { display: flex; gap: 16px; align-items: flex-start; }
.facts-icons svg { width: 26px; height: 26px; flex: none; margin-top: 6px; fill: none; stroke: var(--sand); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* Brand watermark */
.has-watermark { position: relative; overflow: hidden; }
.watermark { position: absolute; left: -6%; bottom: -14%; width: min(46vw, 560px); height: auto; fill: none; stroke: rgba(245, 235, 224, .07); stroke-width: .6; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.watermark.wm-light { stroke: rgba(94, 15, 31, .07); }
/* Quiet motion: the line draws itself once, then drifts very slowly */
.watermark path, .watermark circle { stroke-dasharray: 1; stroke-dashoffset: 1; }
.has-watermark.wm-in .watermark path, .has-watermark.wm-in .watermark circle { animation: wm-draw 2.6s var(--ease) forwards; }
.has-watermark.wm-in .watermark circle:nth-child(2), .has-watermark.wm-in .watermark path:nth-child(2) { animation-delay: .5s; }
.has-watermark.wm-in .watermark { animation: wm-drift 14s ease-in-out 2.6s infinite; }
@keyframes wm-draw { to { stroke-dashoffset: 0; } }
@keyframes wm-drift { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.watermark.wm-tr { left: auto; bottom: auto; right: -4%; top: -8%; }
.watermark.wm-br { left: auto; right: -5%; bottom: -12%; }
.watermark.wm-bl { left: -5%; bottom: -4%; }
.watermark.wm-inside { left: 2%; bottom: 8%; width: min(30vw, 380px); }
.watermark.wm-br.wm-inside { left: auto; right: 2%; bottom: 6%; }
.has-watermark .container, .has-watermark .contact-split-form, .has-watermark .contact-split-photo { position: relative; z-index: 1; }
.has-watermark.contact-split { overflow: hidden; }
.why-grid li[data-reveal]:nth-child(2) { transition-delay: .1s; }
.why-grid li[data-reveal]:nth-child(3) { transition-delay: .2s; }
.why-grid li[data-reveal]:nth-child(4) { transition-delay: .3s; }
.tiles .tile[data-reveal]:nth-child(2), .plans .plan[data-reveal]:nth-child(2) { transition-delay: .1s; }
.tiles .tile[data-reveal]:nth-child(3) { transition-delay: .2s; }
.tiles .tile[data-reveal]:nth-child(4) { transition-delay: .3s; }
.tiles .tile[data-reveal]:nth-child(5) { transition-delay: .4s; }

/* Human note under the steps */
.step-note { display: flex; gap: 16px; align-items: flex-start; margin: 0 0 1.6rem; padding: 20px 24px; background: var(--beige); border-left: 2px solid var(--wine); }
.step-note svg { width: 24px; height: 24px; flex: none; fill: var(--wine); margin-top: 4px; }
.step-note p { margin: 0; font-family: var(--font-display); font-size: 1.15rem; line-height: 1.4; color: var(--ink); }

/* Scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal="photo"] { transform: scale(.96); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.facts li[data-reveal]:nth-child(2), .steps-big li[data-reveal]:nth-child(2) { transition-delay: .12s; }
.facts li[data-reveal]:nth-child(3), .steps-big li[data-reveal]:nth-child(3) { transition-delay: .24s; }
.steps-big li[data-reveal]:nth-child(4) { transition-delay: .36s; }

/* ---------- Form | photo closing section ---------- */
.contact-split { display: grid; grid-template-columns: 60fr 40fr; background: var(--wine); }
.contact-split-form { padding: clamp(40px, 6vw, 88px) var(--gutter); display: flex; justify-content: center; align-items: center; }
.contact-card {
  width: 100%; max-width: 640px;
  background: var(--cream); color: var(--ink);
  padding: clamp(32px, 4.5vw, 56px);
  border: 1px solid var(--sand);
  outline: 1px solid rgba(245, 235, 224, .35); outline-offset: 8px;
}
.contact-card h2 { font-size: clamp(1.9rem, 3.2vw, 2.5rem); }
.contact-card-intro { color: var(--ink-soft); margin-bottom: 2rem; }
.contact-card-plain { background: var(--white); outline-color: var(--sand); max-width: none; }
.form-lux .form-group { border-top-color: var(--beige); }
.form-lux .form-group:first-child { padding-top: 0; }
.form-lux .consent { display: flex; gap: 10px; font-size: inherit; letter-spacing: 0; text-transform: none; color: var(--ink); font-weight: 400; margin: 0; }
.form-lux .consent input { width: 22px; height: 22px; accent-color: var(--wine); flex: none; margin-top: 2px; }
.form-lux .form-status { margin: 0 0 12px; }
.form-lux input[type="number"], .form-lux input[type="email"] { width: 100%; min-height: 0; padding: 10px 0; font-size: 1.1rem; background: transparent; border: 0; border-bottom: 1px solid var(--sand); border-radius: 0; color: var(--ink); }
.form-lux .lux-field.is-invalid input { border-bottom-color: var(--red); }

.form-lux .lux-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.lux-field { margin: 0 0 26px; padding: 0; border: 0; min-width: 0; }
.lux-field label, .lux-field legend {
  display: block; padding: 0; margin: 0 0 4px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft);
}
.form-lux input[type="text"], .form-lux input[type="tel"], .form-lux textarea {
  width: 100%; min-height: 0; padding: 10px 0; font-size: 1.1rem;
  background: transparent; border: 0; border-bottom: 1px solid var(--sand); border-radius: 0; color: var(--ink);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.form-lux input:focus, .form-lux textarea:focus { outline: none; border-bottom-color: var(--wine); box-shadow: inset 0 -1px 0 var(--wine); }
.form-lux textarea { resize: none; }
.form-lux .btn-wide { margin-top: 6px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 8px; }
.lux-field label.chip { display: inline-flex; margin: 0; font-size: inherit; letter-spacing: 0; text-transform: none; color: inherit; }
.chip { position: relative; display: inline-flex; margin: 0; cursor: pointer; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0; }
.chip span {
  display: inline-flex; align-items: center; min-height: 40px; padding: 6px 16px;
  border: 1px solid var(--sand); border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; color: var(--wine); background: var(--white);
  transition: background-color .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
}
.chip:hover span { border-color: var(--wine); }
.chip input:checked + span { background: var(--wine); color: var(--cream); border-color: var(--wine); }
.chip input:focus-visible + span { outline: 3px solid var(--red); outline-offset: 2px; }

.lux-trust { display: flex; align-items: center; gap: 10px; margin: 18px 0 0; font-size: 0.95rem; color: var(--ink-soft); }
.lux-trust svg { width: 20px; height: 20px; flex: none; fill: none; stroke: var(--wine); stroke-width: 1.6; stroke-linecap: round; }
.lux-alt { margin: 8px 0 0 30px; font-size: 0.95rem; color: var(--ink-soft); }

.contact-split-photo { position: relative; margin: 0; min-height: 520px; }
.contact-split-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 72px var(--gutter) 32px;
  background: linear-gradient(to top, rgba(67, 10, 22, .78), rgba(67, 10, 22, 0));
}
.pair-caption { margin: 0; max-width: 420px; color: var(--cream); font-size: clamp(1.3rem, 2vw, 1.7rem); }
.pair-caption .pair-line { --pair-color: var(--cream); }
.pair-caption .pair-line::before, .pair-caption .pair-line::after { animation: none; }
.pair-caption .pair-mark { animation-delay: .6s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .header-call { display: inline-flex; }
  .header-inner { gap: 4px; }
  .brand { margin-right: auto; }
  .way { grid-template-columns: 1fr; gap: 4px; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--sand);
    padding: 8px var(--gutter) 20px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--beige); font-size: 1.1rem; }
  .site-nav .btn { margin-top: 16px; border-bottom: 2px solid var(--wine); }
  .service, .cta-band .container, .split-photo, .contact-split, .plans-lux { grid-template-columns: 1fr; }
  .site-nav .nav-highlight::after { display: none; }
  .topbar-note, .topbar-link:first-child span:last-child { display: none; }
  .topbar-inner { gap: 16px; }
  .topbar-social { margin-left: auto; }
  .service-list ul { grid-template-columns: 1fr; }
  .hero-full .hero-actions .btn { flex: 1 1 100%; }
  /* Brand hero: logo first, text centred under it */
  .hero-brand-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .hero-brand-logo { order: -1; }
  .hero-brand-logo img { max-width: min(70vw, 360px); }
  .hero-brand .hero-kicker { justify-content: center; }
  .hero-brand .hero-kicker::before { display: none; }
  .hero-brand .hero-tagline { margin-inline: auto; }
  .hero-brand .hero-actions { justify-content: center; }
  .hero-brand .hero-actions .btn { flex: 1 1 100%; }
  .assurance { grid-template-columns: 1fr; gap: 16px; }
  .faq-intro { position: static; }
  /* FAQ: questions first, phone CTA after them */
  .faq-split .faq-intro { display: contents; }
  .faq-split .faq-cta { order: 2; margin-top: 8px; }
  .faq-split .acc-list { order: 1; }
  .acc summary { grid-template-columns: 1fr 36px; padding: 18px 0; }
  .acc-n { display: none; }
  .acc-q { font-size: 1.15rem; }
  .acc-i { width: 36px; height: 36px; }
  .acc-a { padding: 0 0 20px; }
  .split-photo-reverse .photo, .split-photo-reverse .photo-stack { order: 0; }
  .photo-stack { margin: 12px 12px 40px; }
  .photo-stack .photo-inset { width: 40%; right: -8px; bottom: -28px; border-width: 5px; }
  /* Watermarks stay fully inside their section on small screens */
  .watermark { width: 56vw; left: 4%; bottom: 3%; }
  .watermark.wm-tr { right: 4%; top: 3%; }
  .watermark.wm-br { right: 4%; bottom: 3%; }
  .watermark.wm-bl { left: 4%; bottom: 3%; }
  .watermark.wm-inside { left: 4%; bottom: 3%; }
  .watermark.wm-br.wm-inside { left: auto; right: 4%; }
  .contact-split-photo { min-height: 320px; order: -1; }
  .contact-split-form { justify-content: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px 0; }
  .hero-photo img { max-height: 420px; aspect-ratio: 4 / 3; }
  .split, .form-wrap { grid-template-columns: 1fr; }
  .form-intro { position: static; }
  .hero-foot { grid-template-columns: 1fr; }
  .call-bar { display: block; }
  .site-footer { padding-bottom: 110px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-brand { grid-column: span 2; }
  .footer-actions .btn { flex: 1 1 100%; }
  .guests-grid { grid-template-columns: 1fr 1fr; }
  .guests-grid li { padding: 24px 18px 26px; column-gap: 14px; }
  .booking-steps { grid-template-columns: 1fr; gap: 14px; }
  .calendly-box { margin: 8px; outline-offset: 8px; height: 1000px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-grid li { border-left: 0; border-top: 1px solid var(--sand); padding: 30px 16px 34px; }
  .why-grid li:nth-child(-n+2) { border-top: 0; }
  .why-grid li:nth-child(even) { border-left: 1px solid var(--sand); }
}

@media (max-width: 600px) {
  body { font-size: 17px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .brand { font-size: 1.15rem; }
  .brand-logo img { width: 190px; }
  .field-row, .checks, .form-lux .lux-row, .reg-fields { grid-template-columns: 1fr; }
  .reg-group-head { gap: 12px; }
  /* Kodėl mes: one column, icon beside text */
  .why-grid { grid-template-columns: 1fr; }
  .why-grid li { display: grid; grid-template-columns: 64px minmax(0, 1fr); column-gap: 18px; align-items: start; text-align: left; padding: 22px 4px; border-left: 0 !important; border-top: 1px solid var(--sand); }
  .why-grid li:first-child { border-top: 0; }
  .why-icon { width: 64px; height: 64px; padding: 16px; margin: 0; grid-row: span 2; }
  .why h3 { font-size: 1.3rem; margin-bottom: 0.25em; }
  .why-grid p { margin-inline: 0; max-width: none; }
  .guests-grid { grid-template-columns: 1fr; }
  .footer-col a { padding: 9px 0; }
  .hero-full:not(.hero-page) .hero-full-img { object-position: 70% 40%; }
  .hero-kicker::before, .hero-kicker::after { display: none; }
  .hero-kicker { max-width: 22em; margin-inline: auto; }
  .contact-card { outline: none; }
  .find { grid-template-columns: 88px minmax(0, 1fr); gap: 2px 18px; }
  .find-img { width: 88px; height: 88px; }
  .find dt { grid-column: 2; }
  .find dd { grid-column: 2; }
  .pair { gap: 16px; font-size: 1.35rem; }
  .hero-actions .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pair-line::before, .pair-line::after, .pair-mark, .pair-mark::after, .hero-needs span, .hero-answer { animation: none; }
  .pair-mark svg, .pair-mark svg * { animation: none; }
  .pair-mark svg:first-child { opacity: 1; }
  .pair-mark svg:first-child * { stroke-dashoffset: 0; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .watermark path, .watermark circle { stroke-dashoffset: 0; animation: none !important; }
  .watermark { animation: none !important; }
  .btn, .btn::before, .site-nav a::after, .tile img, .plan, .why-grid li, .why-grid li::after, .why-icon, .acc-i { transition: none; }
  .acc-a p { animation: none; }
}
