@import url("_shared/base.css");

/* ── THEME OVERRIDES ──────────────────────────────────────────────────────── */
:root {
  --color-bg:       #0c1a28;
  --color-bg-alt:   #0f2233;
  --color-text:     #ede8e0;
  --color-muted:    #8aa3b0;
  --color-accent:   #c8a56c;
  --color-card:     #132538;
  --color-border:   rgba(237,232,224,0.09);

  --font-display:   'Josefin Sans', system-ui, sans-serif;
  --font-body:      'Plus Jakarta Sans', system-ui, sans-serif;

  --ease-out-quart:    cubic-bezier(.25, 1, .5, 1);
  --ease-in-out-quart: cubic-bezier(.76, 0, .24, 1);
  --ease-elastic:      cubic-bezier(.34, 1.56, .64, 1);
}

/* ── KEYFRAMES ────────────────────────────────────────────────────────────── */

@keyframes hero-panel-enter-left {
  0%   { scale: 1 1; }
  50%  { scale: 0 1; }
  100% { scale: .45 1; }
}
@keyframes hero-panel-enter-right {
  0%, 50% { opacity: .85; scale: 1 1; }
  100%    { opacity: 1;   scale: 0 1; }
}
@keyframes mesh-breathe {
  0%   { background-position: 0% 0%,   60% 100%; }
  50%  { background-position: 100% 50%, 0% 0%;   }
  100% { background-position: 0% 0%,   60% 100%; }
}
@keyframes carousel-move {
  to { transform: translateX(calc(-100% + 100vw - 4rem)); }
}
@keyframes gallery-item-move {
  0%   { translate: 0 -6%; }
  100% { translate: 0  6%; }
}
@keyframes foil-a-move {
  0%   { opacity: 1;   translate: 0  0%; }
  100% { opacity: .25; translate: 0 -5%; }
}
@keyframes foil-b-move {
  0%   { opacity: .25; translate: 0  5%; }
  100% { opacity: 1;   translate: 0  0%; }
}
@keyframes wheel-rotate {
  from { transform: rotate(0deg);    }
  to   { transform: rotate(-360deg); }
}
@keyframes progress-bar-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ── SCROLL PROGRESS ─────────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: var(--color-accent);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 200;
  pointer-events: none;
}
@supports (animation-timeline: scroll()) and (animation-range: 0% 100%) {
  .scroll-progress {
    animation: progress-bar-grow linear both;
    animation-timeline: scroll(root);
    animation-range: 0% 100%;
  }
}

/* ── NAV ─────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-6);
  align-items: center;
  padding: var(--s-4) var(--s-8);
  background: transparent;
  transition: background 0.4s ease, padding 0.35s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(12,26,40,.75) 0%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.4s;
}
.nav.is-stuck {
  background: rgba(11,24,38,.95);
  backdrop-filter: blur(14px);
  padding-block: var(--s-3);
  border-color: var(--color-border);
}
.nav.is-stuck::before { opacity: 0; }
.nav__brand {
  font-family: var(--font-display);
  font-size: var(--fs-14);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
}
.nav__links {
  display: flex;
  gap: var(--s-8);
  justify-content: center;
  list-style: none;
}
.nav__links a {
  font-size: var(--fs-12);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: .65;
  transition: opacity .2s;
}
.nav__links a:hover { opacity: 1; }
.nav__cta {
  font-size: var(--fs-12);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: #0c1a28;
  background: var(--color-accent);
  padding: .6em 1.4em;
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,165,108,.4);
}

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-bg);
}

/* Two-panel curtain */
.hero__bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 0;
}
.hero__bg-panel {
  height: 100%;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  transform-origin: left center;
  will-change: scale;
}
.hero__bg-panel:last-child {
  background-position: right center;
  transform-origin: right center;
}
.hero__bg-panel:first-child {
  animation: hero-panel-enter-left .9s var(--ease-out-quart) both;
  animation-play-state: paused;
}
.hero__bg-panel:last-child {
  animation: hero-panel-enter-right .9s var(--ease-out-quart) both;
  animation-play-state: paused;
}
.hero--loaded .hero__bg-panel:first-child,
.hero--loaded .hero__bg-panel:last-child {
  animation-play-state: running;
}

/* Gradient mesh overlay */
.hero__mesh {
  position: absolute; inset: 0;
  z-index: 1;
  opacity: .55;
  background:
    radial-gradient(ellipse 80% 60% at 18% 45%, rgba(200,165,108,.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 78% 60%, rgba(19,80,130,.22) 0%, transparent 55%);
  animation: mesh-breathe 14s ease-in-out infinite;
  pointer-events: none;
}
.hero__overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(12,26,40,.15) 0%,
    rgba(12,26,40,.35) 50%,
    rgba(12,26,40,.88) 100%
  );
}

/* Content */
.hero__content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px var(--s-8) var(--s-8);
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.hero__eyebrow {
  font-size: var(--fs-12);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--s-4);
  opacity: 0;
  transition: opacity .6s ease .1s;
}
.hero--loaded .hero__eyebrow { opacity: 1; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  font-weight: 300;
  letter-spacing: -.02em;
  line-height: 1.0;
  color: var(--color-text);
  max-width: 18ch;
  margin-bottom: var(--s-6);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line-inner {
  display: block;
  opacity: 0;
  transform: translateY(.9em);
  transition: opacity .7s var(--ease-out-quart), transform .7s var(--ease-out-quart);
}
.hero--loaded .hero__title .line-inner:nth-child(1) { opacity: 1; transform: none; transition-delay: .1s; }
.hero--loaded .hero__title .line-inner:nth-child(2) { opacity: 1; transform: none; transition-delay: .22s; }
.hero--loaded .hero__title .line-inner:nth-child(3) { opacity: 1; transform: none; transition-delay: .34s; }

.hero__lede {
  font-size: var(--fs-18);
  color: rgba(237,232,224,.72);
  max-width: 54ch;
  line-height: 1.65;
  margin-bottom: var(--s-8);
  opacity: 0;
  transition: opacity .7s ease .5s;
  max-width: none;
}
.hero--loaded .hero__lede { opacity: 1; }

.hero__actions {
  display: flex;
  gap: var(--s-4);
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transition: opacity .7s ease .65s;
}
.hero--loaded .hero__actions { opacity: 1; }

.hero__rating {
  display: flex;
  align-items: center;
  gap: .5em;
  font-size: var(--fs-12);
  color: rgba(237,232,224,.55);
  letter-spacing: .08em;
}
.hero__stars { color: var(--color-accent); letter-spacing: -.05em; }
.hero__rating strong { color: var(--color-text); }

/* Video card (CSS mesh) */
.hero__video-card {
  position: absolute;
  right: var(--s-8);
  bottom: 120px;
  width: min(240px, 20vw);
  aspect-ratio: 9/16;
  overflow: hidden;
  z-index: 4;
  border: 1px solid rgba(200,165,108,.25);
  opacity: 0;
  transition: opacity .8s ease .9s;
}
.hero--loaded .hero__video-card { opacity: 1; }
.hero__video-card-inner {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 120% 80% at 30% 70%, rgba(200,165,108,.28) 0%, transparent 55%),
    radial-gradient(ellipse 80% 120% at 70% 30%, rgba(107,136,153,.22) 0%, transparent 55%),
    var(--color-bg);
  animation: mesh-breathe 9s ease-in-out infinite alternate;
}
.hero__video-card-label {
  position: absolute;
  bottom: var(--s-3); left: var(--s-3);
  font-size: var(--fs-12);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(237,232,224,.6);
  pointer-events: none;
}

/* Stats band */
.hero__band {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(237,232,224,.08);
  opacity: 0;
  transition: opacity .6s ease .8s;
}
.hero--loaded .hero__band { opacity: 1; }
.hero__band-item {
  padding: var(--s-4) var(--s-8);
  border-right: 1px solid rgba(237,232,224,.08);
}
.hero__band-item:last-child { border-right: none; }
.hero__band-item dt {
  font-size: var(--fs-12);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(237,232,224,.45);
  margin-bottom: var(--s-2);
}
.hero__band-item dd {
  font-family: var(--font-display);
  font-size: var(--fs-28);
  color: var(--color-text);
  font-weight: 300;
}
.hero__band-item dd small {
  font-family: var(--font-body);
  font-size: var(--fs-14);
  color: rgba(237,232,224,.5);
  margin-left: .3em;
}

/* ── PIRMA VIZITE — horizontal scroll carousel ───────────────────────────── */
.pirma-vizite {
  position: relative;
}
.pirma-vizite__header {
  position: sticky;
  top: 0; z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: var(--s-6) var(--s-8) var(--s-4);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}
.pirma-vizite__eyebrow {
  font-size: var(--fs-12);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-2);
}
.pirma-vizite__heading {
  font-family: var(--font-display);
  font-size: var(--fs-28);
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: -.01em;
}
.pirma-vizite__counter {
  font-family: var(--font-display);
  font-size: var(--fs-36);
  color: rgba(237,232,224,.25);
  font-weight: 300;
}

.pirma-vizite__track-wrapper {
  height: 350vh;
  position: relative;
}
.pirma-vizite__track {
  position: sticky;
  top: 73px;
  height: calc(100vh - 73px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.pirma-vizite__carousel {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: stretch;
  padding: var(--s-6) var(--s-8);
  gap: var(--s-4);
  will-change: transform;
}
@supports (animation-timeline: scroll()) and (animation-range: 0% 100%) {
  .pirma-vizite__carousel {
    animation: carousel-move linear both;
    animation-timeline: view(block);
    animation-range: entry 5% exit 95%;
  }
}

.pirma-vizite__slide {
  flex: 0 0 min(520px, 82vw);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}
.pirma-vizite__slide-img {
  width: 100%;
  height: 62%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s var(--ease-out-quart);
  flex-shrink: 0;
}
.pirma-vizite__slide:hover .pirma-vizite__slide-img { transform: scale(1.04); }
.pirma-vizite__slide-body {
  flex: 1;
  padding: var(--s-6);
  background: var(--color-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pirma-vizite__step {
  font-size: var(--fs-12);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-2);
}
.pirma-vizite__slide-title {
  font-family: var(--font-display);
  font-size: var(--fs-22);
  color: var(--color-text);
  font-weight: 400;
  margin-bottom: var(--s-3);
}
.pirma-vizite__slide-desc {
  font-size: var(--fs-14);
  color: var(--color-muted);
  line-height: 1.6;
  max-width: none;
}

/* ── GALLERY ──────────────────────────────────────────────────────────────── */
.gallery {
  padding: var(--s-16) var(--s-8);
}
.gallery__header {
  max-width: 1280px;
  margin: 0 auto var(--s-8);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}
.gallery__eyebrow {
  font-size: var(--fs-12);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-3);
}
.gallery__heading {
  font-family: var(--font-display);
  font-size: var(--fs-48);
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: -.02em;
}
.gallery__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 260px);
  gap: 3px;
}
.gallery__item { overflow: hidden; position: relative; }
.gallery__item:nth-child(1) { grid-column: 1 / 3; }
.gallery__item:nth-child(8) { grid-column: 2 / 4; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s var(--ease-out-quart);
}
.gallery__item:hover img { transform: scale(1.05); }
@supports (animation-timeline: scroll()) and (animation-range: 0% 100%) {
  .gallery__item:nth-child(odd) img {
    animation: gallery-item-move linear both;
    animation-timeline: view(block);
    animation-range: entry 0% exit 100%;
  }
}

/* ── MANIFEST — foil alternation ─────────────────────────────────────────── */
.manifest {
  padding: var(--s-24) var(--s-8);
}
.manifest__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: var(--s-12);
}
.manifest__images {
  position: sticky;
  top: var(--s-16);
  height: 70vh;
}
.manifest__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.manifest__img--a { z-index: 2; }
.manifest__img--b { z-index: 1; }
@supports (animation-timeline: scroll()) and (animation-range: 0% 100%) {
  .manifest__img--a {
    animation: foil-a-move linear both;
    animation-timeline: view(block);
    animation-range: entry 0% exit 100%;
  }
  .manifest__img--b {
    animation: foil-b-move linear both;
    animation-timeline: view(block);
    animation-range: entry 0% exit 100%;
  }
}
.manifest__text {
  padding: var(--s-8) 0;
  display: grid;
  gap: var(--s-10);
}
.manifest__eyebrow {
  font-size: var(--fs-12);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-3);
}
.manifest__quote {
  font-family: var(--font-display);
  font-size: var(--fs-36);
  line-height: 1.12;
  color: var(--color-text);
  font-weight: 300;
  letter-spacing: -.01em;
}
.manifest__body {
  font-size: var(--fs-18);
  color: var(--color-muted);
  line-height: 1.68;
  max-width: none;
}
.manifest__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  border-top: 1px solid var(--color-border);
  padding-top: var(--s-6);
}
.manifest__stat-value {
  font-family: var(--font-display);
  font-size: var(--fs-48);
  color: var(--color-text);
  line-height: 1;
  font-weight: 300;
}
.manifest__stat-label {
  font-size: var(--fs-12);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: var(--s-2);
}
:root { --s-10: clamp(2.5rem, 2rem + 2.5vw, 5rem); }

/* ── INFO BOX — portrait + bio ───────────────────────────────────────────── */
.info-box {
  padding: var(--s-24) var(--s-8);
  background: var(--color-card);
  overflow: hidden;
}
.info-box__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: center;
}
.info-box__portrait {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.info-box__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .8s var(--ease-out-quart);
}
.info-box:hover .info-box__portrait img { transform: scale(1.03); }
.info-box__portrait-caption {
  position: absolute;
  bottom: var(--s-4); left: var(--s-4);
  font-size: var(--fs-12);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text);
  background: rgba(12,26,40,.8);
  padding: .35em .8em;
  backdrop-filter: blur(4px);
}
.info-box__content { padding: var(--s-4) 0; }
.info-box__eyebrow {
  font-size: var(--fs-12);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-4);
}
.info-box__name {
  font-family: var(--font-display);
  font-size: var(--fs-48);
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: var(--s-6);
}
.info-box__bio {
  font-size: var(--fs-18);
  color: var(--color-muted);
  line-height: 1.68;
  max-width: none;
  margin-bottom: var(--s-8);
}
.info-box__credentials {
  display: grid;
  gap: var(--s-3);
  border-top: 1px solid var(--color-border);
  padding-top: var(--s-6);
}
.info-box__credential {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
  font-size: var(--fs-14);
  color: var(--color-muted);
  line-height: 1.5;
}
.info-box__credential::before {
  content: '—';
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: .1em;
}

/* ── WHEEL BLOCK — services ──────────────────────────────────────────────── */
.wheel-block {
  padding: var(--s-24) var(--s-8);
  overflow: hidden;
}
.wheel-block__header {
  max-width: 1280px;
  margin: 0 auto var(--s-12);
}
.wheel-block__eyebrow {
  font-size: var(--fs-12);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-4);
}
.wheel-block__heading {
  font-family: var(--font-display);
  font-size: var(--fs-48);
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: -.02em;
  max-width: 22ch;
}
.wheel-block__body {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: center;
}
.wheel-block__wheel-wrap {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
}
.wheel-block__svg {
  width: 100%; height: 100%;
  overflow: visible;
}
@supports (animation-timeline: scroll()) and (animation-range: 0% 100%) {
  .wheel-block__svg circle,
  .wheel-block__svg .wheel-ring {
    animation: wheel-rotate linear both;
    animation-timeline: view(block);
    animation-range: entry 0% exit 100%;
    transform-origin: 50% 50%;
    transform-box: fill-box;
  }
}
.wheel-block__services {
  display: grid;
  gap: var(--s-2);
}
.service-item {
  padding: var(--s-4) 0;
  border-top: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: var(--s-3);
  align-items: start;
  cursor: default;
  transition: background .2s;
}
.service-item:last-child { border-bottom: 1px solid var(--color-border); }
.service-item__num {
  font-family: var(--font-display);
  font-size: var(--fs-12);
  color: var(--color-accent);
  letter-spacing: .1em;
  padding-top: 3px;
}
.service-item__name {
  font-family: var(--font-display);
  font-size: var(--fs-22);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--s-2);
  transition: color .2s;
}
.service-item:hover .service-item__name { color: var(--color-accent); }
.service-item__desc {
  font-size: var(--fs-14);
  color: var(--color-muted);
  max-width: none;
  line-height: 1.52;
}

/* ── REVEAL BLOCK — testimonials ─────────────────────────────────────────── */
.reveal-block {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.reveal-block__bg {
  position: absolute; inset: 0; z-index: 0;
}
.reveal-block__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .22;
  display: block;
}
.reveal-block__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,26,40,.97) 45%, rgba(12,26,40,.72) 100%);
  z-index: 1;
}
.reveal-block__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--s-24) var(--s-8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: start;
}
.reveal-block__intro { }
.reveal-block__eyebrow {
  font-size: var(--fs-12);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-4);
}
.reveal-block__heading {
  font-family: var(--font-display);
  font-size: var(--fs-48);
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: -.02em;
  line-height: 1.08;
}
.reveal-block__quotes {
  display: grid;
  gap: var(--s-6);
}
.reveal-block__quote {
  padding: var(--s-6) var(--s-6) var(--s-6) var(--s-6);
  border-left: 2px solid var(--color-accent);
  background: rgba(237,232,224,.04);
  clip-path: inset(0 100% 0 0);
  transition: clip-path .8s var(--ease-out-quart);
}
.reveal-block__quote.is-visible { clip-path: inset(0 0% 0 0); }
.reveal-block__quote-text {
  font-family: var(--font-display);
  font-size: var(--fs-22);
  color: var(--color-text);
  line-height: 1.38;
  font-weight: 300;
  margin-bottom: var(--s-4);
}
.reveal-block__quote-text::before { content: '„'; color: var(--color-accent); }
.reveal-block__quote-text::after  { content: '"'; color: var(--color-accent); }
.reveal-block__attribution {
  font-size: var(--fs-12);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.reveal-block__stars { color: var(--color-accent); }

/* ── APPOINTMENT FORM ─────────────────────────────────────────────────────── */
.appointment {
  padding: var(--s-24) var(--s-8);
  background: var(--color-card);
}
.appointment__inner {
  max-width: 800px;
  margin: 0 auto;
}
.appointment__eyebrow {
  font-size: var(--fs-12);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-4);
}
.appointment__heading {
  font-family: var(--font-display);
  font-size: var(--fs-48);
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: -.02em;
  margin-bottom: var(--s-3);
}
.appointment__sub {
  font-size: var(--fs-16);
  color: var(--color-muted);
  max-width: none;
  margin-bottom: var(--s-10);
  line-height: 1.6;
}
.appointment__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.appointment__form label {
  display: grid;
  gap: var(--s-2);
}
.appointment__form label.full { grid-column: 1 / -1; }
.appointment__form .label-text {
  font-size: var(--fs-12);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.appointment__form input,
.appointment__form select,
.appointment__form textarea {
  font: inherit;
  font-size: var(--fs-16);
  background: rgba(237,232,224,.04);
  border: 1px solid var(--color-border);
  border-radius: 0;
  color: var(--color-text);
  padding: var(--s-3) var(--s-4);
  transition: border-color .2s;
  appearance: none;
}
.appointment__form input:focus,
.appointment__form select:focus,
.appointment__form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
.appointment__form input::placeholder,
.appointment__form textarea::placeholder { color: var(--color-muted); opacity: .45; }
.appointment__form option { background: var(--color-bg); }
.appointment__form textarea { resize: vertical; min-height: 100px; }
.appointment__consent {
  grid-column: 1 / -1;
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: var(--fs-14);
  color: var(--color-muted);
  text-transform: none;
  letter-spacing: 0;
}
.appointment__consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--color-accent); }
.appointment__consent a { color: var(--color-accent); }
.appointment__submit { grid-column: 1 / -1; justify-self: start; }

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .8em 1.8em;
  font-size: var(--fs-14);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn--primary {
  background: var(--color-accent);
  color: #0c1a28;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,165,108,.35);
}
.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(237,232,224,.28);
}
.btn--outline:hover {
  border-color: rgba(237,232,224,.65);
  transform: translateY(-1px);
}

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer {
  padding: var(--s-12) var(--s-8) var(--s-8);
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s-8);
  margin-bottom: var(--s-8);
}
.footer__brand {
  font-family: var(--font-display);
  font-size: var(--fs-22);
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: var(--s-3);
  letter-spacing: .02em;
}
.footer__tagline {
  font-size: var(--fs-14);
  color: var(--color-muted);
  line-height: 1.6;
  max-width: none;
}
.footer__col-heading {
  font-size: var(--fs-12);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-4);
}
.footer__col-links {
  list-style: none;
  display: grid;
  gap: var(--s-2);
}
.footer__col-links a {
  font-size: var(--fs-14);
  color: var(--color-muted);
  transition: color .2s;
}
.footer__col-links a:hover { color: var(--color-text); }
.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: var(--s-6);
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-4);
}
.footer__legal {
  font-size: var(--fs-12);
  color: var(--color-muted);
  opacity: .65;
  max-width: none;
}
.footer__credit {
  font-size: var(--fs-12);
  color: var(--color-muted);
  opacity: .45;
  max-width: none;
}
.footer__credit a {
  color: var(--color-text);
  border-bottom: 1px solid currentColor;
  opacity: .7;
}

/* ── COOKIE BANNER ────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: var(--s-6); left: var(--s-6);
  max-width: 520px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  padding: var(--s-5);
  z-index: 999;
  display: none;
  gap: var(--s-4);
  align-items: flex-start;
  flex-wrap: wrap;
  transform: translateY(120%);
  transition: transform .5s var(--ease-out-quart);
}
:root { --s-5: clamp(1.25rem, 1rem + 1.25vw, 2.5rem); }
.cookie-banner.is-ready { display: flex; }
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p {
  font-size: var(--fs-14);
  color: var(--color-muted);
  flex: 1 1 240px;
  max-width: none;
}
.cookie-banner a { color: var(--color-accent); }
.cookie-banner__actions { display: flex; gap: var(--s-3); align-items: center; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .manifest__inner { grid-template-columns: 1fr; }
  .manifest__images {
    position: relative; top: auto;
    height: 55vw; max-height: 420px;
  }
  .info-box__inner { grid-template-columns: 1fr; }
  .info-box__portrait { aspect-ratio: 4/3; max-height: 55vw; }
  .wheel-block__body { grid-template-columns: 1fr; }
  .wheel-block__wheel-wrap { max-width: 300px; margin: 0 auto var(--s-8); }
  .reveal-block__content { grid-template-columns: 1fr; gap: var(--s-8); }
}
@media (max-width: 900px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(8) { grid-column: auto; }
  .gallery__grid { grid-template-rows: repeat(5, 220px); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav { grid-template-columns: auto auto; }
  .nav__links { display: none; }
  .hero__video-card { display: none; }
  .hero__band { grid-template-columns: 1fr; }
  .hero__band-item {
    border-right: none;
    border-bottom: 1px solid rgba(237,232,224,.08);
  }
  .hero__band-item:last-child { border-bottom: none; }
  .pirma-vizite__slide { flex: 0 0 min(320px, 90vw); }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-rows: repeat(9, 220px); }
  .appointment__form { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ── A11Y ────────────────────────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }
::selection { background: var(--color-accent); color: #0c1a28; }
