/* ============================================================
   SPÉCIMOSÓ - Premium dark-luxury design system
   Art direction: "Cinematic Editorial" + classic restraint + glass chrome
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Palette */
  --bg: #0E0E10;
  --bg-elev: #161619;
  --bg-elev-2: #1C1C20;
  --glass-fill: rgba(20, 20, 23, 0.62);
  --glass-border: rgba(200, 162, 74, 0.16);
  --gold: #C8A24A;
  --gold-hover: #D9B864;
  --gold-press: #A8853A;
  --steel: #8A9BA8;
  --text: #F4F2ED;
  --text-dim: #B9B4A9;
  --text-on-gold: #0E0E10;
  --scrim-top: rgba(14, 14, 16, 0.45);
  --scrim-bottom: rgba(14, 14, 16, 0.88);
  --hairline: rgba(244, 242, 237, 0.10);
  --success: #7FB28A;

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing & shape */
  --radius: 12px;
  --radius-sm: 6px;
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 9vw, 8rem);
  --header-h: 72px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dim);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-locked { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; }

img, picture, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--gold); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-hover); }
button { font: inherit; color: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

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

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 200;
  background: var(--gold); color: var(--text-on-gold);
  padding: .65rem 1rem; border-radius: var(--radius-sm); font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; color: var(--text-on-gold); }

/* Scroll progress bar + back-to-top */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; pointer-events: none; background: linear-gradient(90deg, var(--gold-press), var(--gold), var(--gold-hover)); box-shadow: 0 0 8px rgba(200,162,74,.5); transition: width .08s linear; }
.to-top { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 48px; height: 48px; border-radius: 999px; background: var(--gold); color: var(--text-on-gold); border: 0; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,.4); opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s var(--ease); }
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--gold-hover); transform: translateY(-2px); }
.to-top svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 600px) { .to-top { right: 14px; bottom: 14px; } }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text); font-weight: 600; line-height: 1.1; }
h1 { font-size: clamp(2.75rem, 6vw, 5rem); line-height: 1.04; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: 1.375rem; }
p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--steel); margin-bottom: 1rem;
}
.lead { font-size: clamp(1.0625rem, 1.6vw, 1.25rem); line-height: 1.6; color: var(--text-dim); }
.notice { color: var(--steel); font-size: .95rem; font-style: italic; }

/* ---------- Glass utility ---------- */
.glass { background: var(--bg-elev); border: 1px solid var(--glass-border); }
@supports ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .glass {
    background: var(--glass-fill);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    backdrop-filter: blur(16px) saturate(120%);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-size: .9375rem; font-weight: 600; letter-spacing: .02em;
  padding: 14px 28px; border-radius: var(--radius-sm); border: 1px solid transparent;
  transition: background .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
  text-align: center;
}
.btn--sm { padding: 9px 16px; font-size: .875rem; }
.btn--gold { background: var(--gold); color: var(--text-on-gold); }
.btn--gold:hover { background: var(--gold-hover); color: var(--text-on-gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,162,74,.22); }
.btn--gold:active { background: var(--gold-press); transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--glass-border); }
.btn--ghost:hover { color: var(--text); border-color: var(--gold); background: rgba(200,162,74,.08); transform: translateY(-2px); }
.ico { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: height .24s var(--ease), background .24s var(--ease), border-color .24s var(--ease);
}
@supports ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .site-header { background: rgba(14,14,16,.28); -webkit-backdrop-filter: blur(10px) saturate(120%); backdrop-filter: blur(10px) saturate(120%); }
}
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .site-header { background: rgba(14,14,16,.92); }
}
.site-header.is-scrolled {
  height: 60px;
  border-bottom-color: var(--glass-border);
  background: rgba(14,14,16,.78);
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
}
@supports ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .site-header.is-scrolled { -webkit-backdrop-filter: blur(18px) saturate(130%); backdrop-filter: blur(18px) saturate(130%); }
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 1.5rem; }

.brand {
  font-family: var(--font-display); font-weight: 600; font-size: 1.375rem;
  letter-spacing: .04em; color: var(--text); white-space: nowrap;
}
.brand:hover { color: var(--text); }

.nav { margin-inline: auto; }
.nav__list { display: flex; gap: clamp(1rem, 2vw, 2rem); }
.nav__list a {
  position: relative; color: var(--steel); font-weight: 600; font-size: .9375rem;
  padding: .4rem 0; transition: color .2s var(--ease);
}
.nav__list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: center;
  transition: transform .3s var(--ease);
}
.nav__list a:hover { color: var(--text); }
.nav__list a:hover::after,
.nav__list a[aria-current="true"]::after { transform: scaleX(1); }
.nav__list a[aria-current="true"] { color: var(--text); }

.header__actions { display: flex; align-items: center; gap: .75rem; }

.lang-toggle {
  display: inline-flex; align-items: center; gap: .25rem;
  background: var(--bg-elev-2); border: 1px solid var(--hairline);
  border-radius: 999px; padding: .3rem .7rem; font-size: .8125rem; font-weight: 600;
  color: var(--steel);
}
.lang-toggle .lang-toggle__sep { color: var(--hairline); }
.lang-toggle [data-lang] { padding: .1rem .25rem; border-radius: 999px; transition: color .2s var(--ease); }
.lang-toggle [data-lang].is-active { color: var(--text-on-gold); background: var(--gold); }

.header__phone .header__phone-text { display: inline; }

/* Hamburger */
.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: transparent; border: 0; }
.nav__toggle-bar { width: 24px; height: 2px; background: var(--text); transition: transform .25s var(--ease), opacity .25s var(--ease); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu sheet */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg-elev);
  padding: calc(var(--header-h) + 2rem) var(--gutter) 2rem;
  display: flex; flex-direction: column;
  transform: translateY(-100%); transition: transform .35s var(--ease);
}
@supports ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .mobile-menu { background: rgba(18,18,22,.96); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
}
.mobile-menu.is-open { transform: translateY(0); }
/* keep transform animatable while closing; hidden also removes it from a11y tree + tab order */
.mobile-menu[hidden] { display: flex; visibility: hidden; pointer-events: none; }
.mobile-menu ul { display: flex; flex-direction: column; gap: .5rem; }
.mobile-menu a { color: var(--text); font-family: var(--font-display); font-size: 1.75rem; padding: .5rem 0; display: block; }
.mobile-menu__phone { margin-top: 1.5rem; align-self: flex-start; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg { position: absolute; left: 0; right: 0; top: -10%; height: 120%; z-index: 0; will-change: transform; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, var(--scrim-top) 0%, rgba(14,14,16,.35) 38%, var(--scrim-bottom) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-top: 6rem; padding-bottom: 7rem; padding-left: clamp(1.5rem, 5vw, 5.5rem); max-width: var(--container); margin-inline: 0; text-align: left; }
.hero__inner .eyebrow, .hero__title, .hero__sub { text-align: left; margin-inline: 0; }
.hero__title { margin-bottom: 1.25rem; max-width: 22ch; }
.hero__sub { max-width: 56ch; margin-bottom: 2rem; color: var(--text); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: flex-start; }
.hero__scroll-cue {
  position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 40px; height: 40px; color: var(--text);
}
.hero__scroll-cue svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0%,100% { transform: translateY(0); opacity: .6; } 50% { transform: translateY(6px); opacity: 1; } }

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); }
.section--elev { background: var(--bg-elev); }
.section__head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section__head h2 { margin-bottom: 1rem; }
.section__lead { margin-top: .5rem; }

.checklist { display: grid; gap: .75rem; margin-top: 1.5rem; }
.checklist li { position: relative; padding-left: 1.9rem; color: var(--text-dim); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .45em; width: 14px; height: 8px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* Split (two-column) */
.split__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split__media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline); }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split--reverse .split__media { order: -1; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  position: relative; overflow: hidden;
  border-radius: var(--radius); padding: 28px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.card { border: 1px solid var(--glass-border); background: var(--bg-elev); }
@supports ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .card { background: var(--glass-fill); -webkit-backdrop-filter: blur(16px) saturate(120%); backdrop-filter: blur(16px) saturate(120%); }
}
.card::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 80%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(200,162,74,.12), transparent);
  transition: left .7s var(--ease); pointer-events: none; z-index: 1;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); }
.card:hover::before { left: 130%; }
/* blurred photo background per service card */
.card__media { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; filter: blur(1px) brightness(.9) saturate(1.08); transform: scale(1.02); }
.card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,14,16,.18), rgba(14,14,16,.6)); }
.card > *:not(.card__media) { position: relative; z-index: 2; }
.card:hover .card__media { filter: blur(0.5px) brightness(1) saturate(1.12); transform: scale(1.01); }
.card__icon { display: inline-flex; margin-bottom: 1.1rem; }
.card__icon svg { width: 30px; height: 30px; fill: none; stroke: var(--gold); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .98rem; }

/* ---------- Parallax divider ---------- */
.divider { position: relative; min-height: 70vh; display: flex; align-items: center; overflow: hidden; }
.divider__media { position: absolute; left: 0; right: 0; top: -15%; height: 130%; z-index: 0; }
.divider__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.divider__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, var(--scrim-top), var(--scrim-bottom)); }
.divider__inner { position: relative; z-index: 2; text-align: center; max-width: 760px; }
.divider__statement { font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.75rem); line-height: 1.2; color: var(--text); }

/* ---------- Sliced parallax divider ---------- */
.slices { position: relative; min-height: 80vh; display: flex; align-items: center; overflow: hidden; background: var(--bg); }
.slices__track { position: absolute; inset: 0; z-index: 0; }
.slice {
  position: absolute; inset: -22% 0; z-index: 0;
  background-image: url('../img/lamborghini-huracan.webp');
  background-size: cover; background-position: center;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.5));
  will-change: transform; backface-visibility: hidden;
}
.slice:nth-child(1) { clip-path: polygon(-30% 0, 12% 0, 28% 100%, -30% 100%); }
.slice:nth-child(2) { clip-path: polygon(12% 0, 32% 0, 48% 100%, 28% 100%); }
.slice:nth-child(3) { clip-path: polygon(32% 0, 52% 0, 68% 100%, 48% 100%); }
.slice:nth-child(4) { clip-path: polygon(52% 0, 72% 0, 88% 100%, 68% 100%); }
.slice:nth-child(5) { clip-path: polygon(72% 0, 130% 0, 130% 100%, 88% 100%); }
.slices__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(14,14,16,.5), rgba(14,14,16,.55) 45%, rgba(14,14,16,.8)); }
.slices__inner { position: relative; z-index: 2; text-align: center; max-width: 820px; }
.slices__inner .eyebrow { text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.slices__statement { font-family: var(--font-display); font-size: clamp(1.7rem, 3.6vw, 2.9rem); line-height: 1.18; color: var(--text); text-shadow: 0 2px 18px rgba(0,0,0,.6); }
@media (max-width: 700px) { .slices { min-height: 68vh; } .slice { filter: none; } }
@media (prefers-reduced-motion: reduce) { .slice { transform: none !important; } }

/* ---------- Advantages ---------- */
.advantages { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.advantage__rule { display: block; width: 40px; height: 2px; background: var(--gold); margin-bottom: 1.25rem; }
.advantage__icon { display: inline-flex; margin-bottom: .9rem; }
.advantage__icon svg { width: 32px; height: 32px; fill: none; stroke: var(--gold); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.advantage h3 { margin-bottom: .5rem; }
.advantage p { font-size: .95rem; }

/* ---------- Packages ---------- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.package {
  position: relative; border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid var(--glass-border); background: var(--bg-elev);
  display: flex; flex-direction: column; height: 100%;
}
@supports ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .package { background: var(--glass-fill); -webkit-backdrop-filter: blur(16px) saturate(120%); backdrop-filter: blur(16px) saturate(120%); }
}
.package::after { display: none; } /* dashed marching ring replaces the top accent bar on all tiers */
.package__badge {
  position: absolute; top: -1rem; left: 28px; z-index: 5;
  background: var(--gold); color: var(--text-on-gold);
  font-size: .92rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .42rem 1.05rem; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .3);
}
.package h3 { margin-bottom: .35rem; }
.package__tag { color: var(--steel); font-size: .9rem; margin-bottom: 1.5rem; }
.package__features { display: grid; gap: .7rem; margin-bottom: 1.75rem; flex: 1; }
.package__features li { position: relative; padding-left: 1.7rem; font-size: .95rem; color: var(--text-dim); }
.package__features li::before {
  content: ""; position: absolute; left: 0; top: .4em; width: 12px; height: 7px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg);
}
.package__cta { width: 100%; }
.package__price { display: flex; flex-direction: column; gap: .12rem; margin-bottom: 1.1rem; }
.package__amount { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--gold); line-height: 1.15; }
.package__price-note { font-size: .8rem; color: var(--steel); }
/* tier differentiation: level pips + top accent bar */
.package__level { display: inline-flex; gap: 6px; margin-bottom: 1rem; }
.package__level i { width: 9px; height: 9px; transform: rotate(45deg); border: 1px solid var(--gold); border-radius: 2px; }
.package__level i.on { background: var(--gold); }
.package::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: var(--radius) var(--radius) 0 0; }
.package--t1::after { background: var(--steel); }
.package--t2::after { background: var(--gold); }
.package--t3::after { background: linear-gradient(90deg, var(--gold), var(--gold-hover)); }
.package--t3 { border-color: rgba(200, 162, 74, .4); }

/* ---- Marching dashed edge on the recommended (featured) package ---- */
.package__ring { position: absolute; top: 2px; left: 2px; width: calc(100% - 4px); height: calc(100% - 4px); z-index: 1; pointer-events: none; overflow: visible; }
.package__ring rect { fill: none; stroke-width: 2; stroke-dasharray: 9 7; stroke-linecap: round; }
/* per-tier ring colors */
.package--t2 .package__ring rect { stroke: var(--gold); stroke-dasharray: none; filter: drop-shadow(0 0 3px rgba(200, 162, 74, .5)); }
/* tiers 1 & 3: matching solid white lines - same weight, dimmed brightness */
.package--t1 .package__ring rect,
.package--t3 .package__ring rect { stroke: rgba(255, 255, 255, .6); stroke-dasharray: none; stroke-width: 2; filter: drop-shadow(0 0 2px rgba(255, 255, 255, .18)); }

@media (prefers-reduced-motion: no-preference) {
  .package--featured { animation: breathe 4s ease-in-out infinite; }
  @keyframes breathe { 0%,100% { box-shadow: 0 0 0 0 rgba(200,162,74,0); } 50% { box-shadow: 0 0 24px 0 rgba(200,162,74,.18); } }
}

/* ---------- Gallery ---------- */
.gallery__filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.chip {
  background: transparent; border: 1px solid var(--hairline); color: var(--steel);
  padding: .5rem 1.1rem; border-radius: 999px; font-size: .875rem; font-weight: 600;
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.chip:hover { color: var(--text); border-color: var(--gold); }
.chip.is-active { color: var(--text-on-gold); background: var(--gold); border-color: var(--gold); }

.gallery { columns: 3; column-gap: 1rem; }
.gallery__item { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline); transition: opacity .25s var(--ease), transform .25s var(--ease); }
.gallery__item.is-hidden { display: none; }
.gallery__btn { display: block; width: 100%; padding: 0; border: 0; background: none; position: relative; }
.gallery__btn img { width: 100%; transition: transform .5s var(--ease), filter .3s var(--ease); }
.gallery__btn::after { content: ""; position: absolute; inset: 0; background: rgba(14,14,16,.18); opacity: 0; transition: opacity .3s var(--ease); }
.gallery__item:hover .gallery__btn img { transform: scale(1.05); }
.gallery__item:hover .gallery__btn::after { opacity: 1; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 250; display: flex; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem); opacity: 0; transition: opacity .3s var(--ease); }
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox::before { content: ""; position: absolute; inset: 0; background: rgba(8,8,10,.85); z-index: -1; }
@supports ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .lightbox::before { background: rgba(8,8,10,.6); -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); }
}
.lightbox__figure { max-width: min(1100px, 92vw); max-height: 86vh; display: flex; flex-direction: column; gap: .75rem; }
.lightbox__figure img { max-height: 78vh; width: auto; max-width: 100%; margin-inline: auto; border-radius: var(--radius-sm); }
.lightbox__figure figcaption { display: flex; justify-content: space-between; gap: 1rem; color: var(--steel); font-size: .875rem; }
.lightbox__counter { color: var(--gold); font-variant-numeric: tabular-nums; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: var(--glass-fill); border: 1px solid var(--glass-border);
  color: var(--text); width: 48px; height: 48px; border-radius: 999px; font-size: 1.6rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .2s var(--ease), border-color .2s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__close { top: 1.25rem; right: 1.25rem; }
.lightbox__nav--prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* ---------- Process: before/after comparison sliders ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2.5vw, 1.75rem); }
.ba-slider { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline); cursor: ew-resize; touch-action: pan-y; isolation: isolate; }
.ba-slider__img { position: absolute; inset: 0; }
.ba-slider__img img { width: 100%; height: 100%; object-fit: cover; display: block; user-select: none; -webkit-user-drag: none; }
.ba-slider__before { position: absolute; inset: 0; clip-path: inset(0 50% 0 0); }
.ba-slider__tag { z-index: 3; transition: opacity .2s ease; }
.ba-slider__tag--after { left: auto; right: 1rem; }
.ba-slider__handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; margin-left: -1px; background: var(--gold); z-index: 3; pointer-events: none; box-shadow: 0 0 0 1px rgba(14,14,16,.4); }
.ba-slider__grip { position: absolute; top: 50%; left: 50%; width: 42px; height: 42px; transform: translate(-50%, -50%); border-radius: 999px; background: var(--gold); display: flex; align-items: center; justify-content: center; gap: 4px; box-shadow: 0 2px 12px rgba(0,0,0,.45); }
.ba-slider__grip::before, .ba-slider__grip::after { content: ""; width: 0; height: 0; border-block: 5px solid transparent; }
.ba-slider__grip::before { border-right: 7px solid var(--text-on-gold); }
.ba-slider__grip::after { border-left: 7px solid var(--text-on-gold); }
.ba-slider__range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; pointer-events: none; }
.ba-slider__range:focus-visible ~ .ba-slider__handle .ba-slider__grip { outline: 2px solid var(--text); outline-offset: 3px; }
.tag { position: absolute; top: 1rem; left: 1rem; z-index: 2; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 999px; }
.tag--steel { background: rgba(20,20,23,.8); color: var(--steel); border: 1px solid var(--hairline); }
.tag--gold { background: var(--gold); color: var(--text-on-gold); }
.process__note { max-width: 64ch; margin: 1.5rem auto 0; text-align: center; color: var(--text-dim); }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review {
  position: relative; border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--glass-border); background: var(--bg-elev); margin: 0;
}
@supports ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .review { background: var(--glass-fill); -webkit-backdrop-filter: blur(16px) saturate(120%); backdrop-filter: blur(16px) saturate(120%); }
}
.review__sample { position: absolute; top: 14px; right: 14px; font-size: .65rem; font-weight: 700; letter-spacing: .14em; color: var(--gold); border: 1px solid var(--glass-border); padding: .15rem .45rem; border-radius: 4px; }
.review__stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 3px; line-height: 1; margin-bottom: .9rem; }
.review blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; line-height: 1.45; color: var(--text); margin-bottom: 1.25rem; }
.review figcaption { display: flex; flex-direction: column; gap: .15rem; }
.review__author { color: var(--text); font-weight: 600; font-size: .95rem; }
.review__car { color: var(--steel); font-size: .85rem; }
.rev-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem; }

/* ---------- Contact ---------- */
.section--contact { border-top: 1px solid var(--hairline); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__list { display: grid; gap: 1.5rem; margin: 2rem 0; }
.contact__list li { display: flex; gap: 1rem; }
.contact__ico { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; }
.contact__ico svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.contact__label { display: block; color: var(--steel); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .15rem; }
.contact__list a, .contact__list span:not(.contact__label) { color: var(--text); }
.contact__list a:hover { color: var(--gold); }
.contact__notes { display: grid; gap: .5rem; margin-bottom: 1.5rem; }
.contact__notes li { position: relative; padding-left: 1.5rem; color: var(--text-dim); font-size: .9rem; }
.contact__notes li::before { content: "•"; position: absolute; left: .3rem; color: var(--gold); }
.contact__social { display: flex; gap: .75rem; margin-bottom: 1.5rem; }
.contact__social a, .footer__social a { width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; }
.contact__social a:hover, .footer__social a:hover { border-color: var(--gold); }
.contact__social svg, .footer__social svg { width: 20px; height: 20px; fill: var(--gold); }
.contact__map { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline); }
.contact__map iframe { width: 100%; height: 320px; border: 0; filter: grayscale(.4) contrast(1.05) brightness(.85); }
.contact__directions { position: absolute; right: 12px; bottom: 12px; margin: 0; z-index: 2; box-shadow: 0 6px 18px rgba(0,0,0,.45); }
.contact__map .contact__directions { width: auto; }   /* stay compact as a map overlay, even on mobile */

/* Form */
.contact__form-wrap { position: sticky; top: calc(var(--header-h) + 1rem); }
.appointment { border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.25rem); display: grid; gap: 1rem; border: 1px solid var(--glass-border); background: var(--bg-elev); }
@supports ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .appointment { background: var(--glass-fill); -webkit-backdrop-filter: blur(16px) saturate(120%); backdrop-filter: blur(16px) saturate(120%); }
}
.appointment h3 { margin-bottom: .25rem; }
.form__disclaimer { color: var(--steel); font-size: .85rem; margin-bottom: .5rem; }
.appointment label { display: grid; gap: .4rem; font-size: .85rem; color: var(--steel); }
.appointment input, .appointment select, .appointment textarea {
  width: 100%; background: var(--bg-elev-2); border: 1px solid var(--hairline);
  border-radius: var(--radius-sm); padding: .75rem .9rem; color: var(--text);
  font-family: var(--font-body); font-size: .95rem; transition: border-color .2s var(--ease);
}
.appointment input:focus, .appointment select:focus, .appointment textarea:focus { border-color: var(--gold); }
.appointment input:focus-visible, .appointment select:focus-visible, .appointment textarea:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-color: var(--gold); }
.appointment textarea { resize: vertical; }
.form__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .5rem; }
.form__success { color: var(--success); font-size: .9rem; padding: .75rem .9rem; border: 1px solid rgba(127,178,138,.35); border-radius: var(--radius-sm); background: rgba(127,178,138,.08); }
.form__success[hidden] { display: none; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--hairline); padding-top: clamp(3rem, 6vw, 5rem); background: var(--bg); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__brand p { color: var(--text-dim); margin: 1rem 0 1.25rem; font-size: .95rem; max-width: 32ch; }
.footer__social { display: flex; gap: .6rem; }
.footer__col h4 { font-family: var(--font-body); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--steel); margin-bottom: 1rem; }
.footer__col ul { display: grid; gap: .55rem; }
.footer__col a { color: var(--text-dim); font-size: .95rem; }
.footer__col a:hover { color: var(--gold); }
.footer__contact li { color: var(--text-dim); font-size: .95rem; margin-bottom: .55rem; }
.footer__bottom { border-top: 1px solid var(--hairline); padding: 1.5rem 0; text-align: center; }
.footer__bottom p { color: var(--steel); font-size: .85rem; }

/* ---------- Readability: larger type in Services + Why-us sections ---------- */
#rolunk .lead { font-size: clamp(1.2rem, 1.9vw, 1.45rem); }
#rolunk .checklist li { font-size: 1.15rem; }
#szolgaltatasok .card h3 { font-size: 1.55rem; }
#szolgaltatasok .card p { font-size: 1.125rem; line-height: 1.7; color: var(--text); }
#elonyok .advantage h3 { font-size: 1.55rem; }
#elonyok .advantage p { font-size: 1.125rem; line-height: 1.7; }

/* ---------- Scroll-reveal ---------- */
html.js [data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
html.js [data-reveal].is-revealed { opacity: 1; transform: none; }

/* sections get scroll-margin so anchor jumps clear the fixed header */
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .advantages { grid-template-columns: repeat(2, 1fr); }
  .packages { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .reviews { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .gallery { columns: 2; }
}
@media (max-width: 860px) {
  .nav, .header__phone .header__phone-text { display: none; }
  .nav__toggle { display: flex; }
  .split__grid, .contact__grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .contact__form-wrap { position: static; }
  .ba-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .cards, .advantages { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .hero__inner { padding-block: 6rem; }
  .btn { width: 100%; }
  .header__actions .btn { width: auto; }
  .hero__cta .btn { width: auto; flex: 1 1 auto; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__scroll-cue svg { animation: none; }
  .package--featured { animation: none; }
  .card::before { display: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
