/* ============================================================
   Hudba Baránek — redesign
   Direction: modernized original — cool slate, fresh green & lime
   Keeps the original Raleway type; adds smooth motion & SVG icons.
   Signature: animated audio waveform (green → lime)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ivory:  #F6F7F8;   /* cool near-white page bg */
  --cream:  #ECEFF1;   /* alternating section bg (faint slate) */
  --white:  #FFFFFF;
  --slate:  #33506A;   /* THE blue — refined brand slate (story panel, primary) */
  --slate-deep: #223a4d;/* darker slate for overlays/gradients */
  --green:  #4E8A3E;   /* improved green — fresher meadow tone, replaces olive #94b233 */
  --green-bright: #6FA83C; /* livelier green for accents on light */
  --lime:   #C3E152;   /* bright lime — hairline / waveform tip only */
  --night:  #191F27;   /* cool charcoal — nav + one panel */
  --sage:   #9FAAB3;   /* muted slate-grey */
  --rose:   #4E8A3E;   /* alias: primary accent = green (links, buttons, highlights) */
  --rose-deep: #3C6E2E;/* alias: deep green for small accent text & hover */
  --gold:   #C3E152;   /* alias: decorative sparkle = lime */
  --ink:    #1F2E3A;   /* dark slate — headings & strong text */
  --muted:  #5E6E79;   /* slate-grey body/muted text */
  --line:   rgba(31, 46, 58, 0.12);
  --line-2: rgba(31, 46, 58, 0.22);
  --shadow:    0 24px 50px -30px rgba(20, 30, 40, 0.38);
  --shadow-sm: 0 12px 26px -18px rgba(20, 30, 40, 0.28);

  --font-display: "Raleway", system-ui, sans-serif;
  --font-body:    "Raleway", system-ui, sans-serif;

  --wrap: 1180px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.09rem);
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; line-height: 1.05; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Utilities ---------- */
.wrap { width: min(100% - var(--pad) * 2, var(--wrap)); margin-inline: auto; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0 0 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  line-height: 1.18;
  color: var(--ink);
}
.section-title span { color: var(--green); font-weight: 600; }
.lead { color: var(--muted); }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 42ch; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--rose);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.9em 1.7em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(95, 125, 24, 0.55); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: currentColor;
  border-color: currentColor;
  opacity: 0.9;
}
.btn--ghost:hover { background: transparent; border-color: var(--rose); color: var(--rose); box-shadow: none; }

/* ============================================================
   Waveform signature
   ============================================================ */
.waveform {
  display: flex;
  align-items: center;
  gap: clamp(3px, 0.6vw, 6px);
  height: 42px;
}
.waveform span {
  flex: 1;
  min-width: 2px;
  max-width: 6px;
  height: 20%;
  background: linear-gradient(var(--gold), var(--rose));
  border-radius: 999px;
  transform-origin: center;
  animation: wave 1.4s ease-in-out infinite;
}
@keyframes wave {
  0%, 100% { height: 16%; opacity: 0.6; }
  50%      { height: 100%; opacity: 1; }
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(245, 247, 246, 0.85);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.1rem;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.6rem 1.15rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  transition: border-color 0.35s, color 0.35s;
}
.nav__logo span { opacity: 0.5; font-weight: 300; }
.nav.is-scrolled .nav__logo { border-color: var(--line-2); color: var(--ink); }
@media (max-width: 560px) {
  .nav__logo { letter-spacing: 0.12em; font-size: 0.72rem; padding: 0.5rem 0.7rem; }
}

.nav__links {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  list-style: none;
  margin: 0; padding: 0;
  align-items: center;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.4em 0;
  position: relative;
  transition: color 0.2s;
}
.nav.is-scrolled .nav__links a { color: var(--muted); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav.is-scrolled .nav__links a:hover { color: var(--rose); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
}
.nav.is-scrolled .nav__toggle { color: var(--ink); }
.nav__toggle svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
  /* IMPORTANT: backdrop-filter creates a containing block for fixed-position
     descendants, which would trap the menu panel + backdrop inside the nav bar.
     Must stay off at mobile widths. */
  .nav, .nav.is-scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }

  /* dim backdrop behind the open menu */
  .nav::after {
    content: "";
    position: fixed; inset: 0;
    background: rgba(16, 24, 32, 0.55);
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s var(--ease);
    z-index: 90;
  }
  .nav.is-menu-open::after { opacity: 1; pointer-events: auto; }

  /* toggle stays above the panel so it can always close the menu */
  .nav__toggle { display: inline-flex; position: relative; z-index: 120; }
  .nav.is-menu-open .nav__toggle { color: var(--ink); }

  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 320px);
    z-index: 110;
    flex-direction: column;
    align-items: flex-start;
    /* flex-start + scroll so short/landscape viewports never clip links */
    justify-content: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    gap: 1.4rem;
    padding: 5.5rem var(--pad) 2rem;
    background: var(--white);
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.05rem; color: var(--ink); }
  /* keep the logo from colliding with the open panel */
  .nav.is-menu-open .nav__logo { opacity: 0; pointer-events: none; transition: opacity 0.25s; }
}

/* ============================================================
   Hero — photographic, elegant, lets the image breathe
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-block: 8rem 5rem;
  overflow: hidden;
  color: #FBF7F3;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url(../img/header-bg.jpg) center/cover no-repeat;
}
/* portrait/narrow viewports crop to the middle and cut his face off —
   shift the focal point left so he stays in frame */
@media (max-width: 860px) {
  .hero__bg { background-position: 30% center; }
}
@media (max-width: 560px) {
  .hero__bg { background-position: 27% center; }
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 70% at 30% 40%, rgba(148, 178, 51, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(20, 30, 40, 0.34) 0%, rgba(20, 30, 40, 0.46) 55%, rgba(16, 24, 32, 0.66) 100%);
}
.hero__inner { position: relative; z-index: 2; text-align: center; }
.hero__eyebrow {
  display: inline-flex;
  gap: 0.9em;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #FBF7F3;
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 7.5vw, 5.4rem);
  line-height: 1.08;
  letter-spacing: 0.12em;
  margin: 0;
  text-shadow: 0 2px 30px rgba(12, 18, 24, 0.45);
}
.hero__title .amber { color: #fff; }
.hero__wave {
  max-width: 420px;
  margin: clamp(1.25rem, 2.5vw, 2rem) 0;
  opacity: 0.95;
}
.hero__sub {
  max-width: 46ch;
  margin-inline: auto;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-shadow: 0 1px 16px rgba(30, 20, 24, 0.4);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center; }
.hero__social { display: flex; gap: 0.6rem; list-style: none; margin: 0; padding: 0; }
.hero__social a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid rgba(251, 247, 243, 0.4);
  border-radius: 50%;
  color: #FBF7F3;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.hero__social a:hover { background: var(--rose); color: #fff; border-color: var(--rose); transform: translateY(-2px); }
.hero__social svg { width: 18px; height: 18px; }

.hero__cue {
  position: absolute;
  left: 50%; bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(251, 247, 243, 0.8);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero__cue::after {
  content: "";
  width: 1px; height: 42px;
  background: linear-gradient(var(--gold), transparent);
  animation: cue 2s ease-in-out infinite;
}
@keyframes cue { 0%,100%{opacity:0.3; height:28px} 50%{opacity:1; height:46px} }

/* ============================================================
   Services
   ============================================================ */
.services { padding-block: var(--section-y); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.25rem 1.9rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  color: var(--rose-deep);
  background: rgba(148, 178, 51, 0.14);
  border-radius: 14px;
  margin-bottom: 1.4rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.12rem;
  letter-spacing: 0.09em;
  line-height: 1.25;
  margin-bottom: 0.7rem;
}
.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.25rem; }
.card__link {
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose-deep); font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.4em;
  transition: gap 0.25s, color 0.25s;
}
.card__link:hover { gap: 0.75em; color: var(--rose); }

/* ============================================================
   Feature blocks (story / svatby / vecirky)
   Full-bleed split: solid colour panel + edge-to-edge photo
   ============================================================ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(90vh, 860px);
}
.feature__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.75rem, 5.5vw, 6.5rem);
  color: #fff;
}
.feature__panel .feature__body { max-width: 46ch; width: 100%; }
.feature--slate .feature__panel { background: var(--slate); }
.feature--green .feature__panel { background: var(--green); }
.feature--night .feature__panel { background: var(--night); }
.feature--reverse .feature__panel { order: 2; }   /* photo on the left */

.feature__media { position: relative; overflow: hidden; min-height: 58vh; }
.feature__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.feature:hover .feature__media img { transform: scale(1); }

/* text treatment inside colour panels */
.feature__body .section-title { margin-bottom: 1.4rem; color: #fff; }
.feature__body .section-title span { color: var(--lime); }
.feature__body .eyebrow { color: rgba(255, 255, 255, 0.72); }
.feature__body p { color: rgba(255, 255, 255, 0.92); text-align: justify; hyphens: auto; }
.feature--green .feature__body p { color: rgba(255, 255, 255, 0.95); }

/* timeline (story) */
.timeline { list-style: none; margin: 2rem 0 0; padding: 0; }
.timeline li {
  position: relative;
  padding: 0 0 1.75rem 2.5rem;
  border-left: 1px solid var(--line-2);
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute; left: -6px; top: 6px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(148, 178, 51, 0.22);
}
.timeline .year {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--rose-deep);
  font-size: 1.7rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}
.timeline p { margin: 0; color: var(--muted); font-size: 0.97rem; }

/* pullquote */
.pullquote {
  margin: 2rem 0 0;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--rose);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}
.pullquote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

/* logo strip */
.logos-label {
  margin: 2rem 0 1rem;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
.logos {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 1.4rem 2rem;
}
.logos a, .logos span { display: inline-flex; }
.logos img {
  height: 34px; width: auto;
  filter: grayscale(1);
  opacity: 0.5;
  transition: opacity 0.3s, filter 0.3s;
}
.logos a:hover img { opacity: 1; filter: none; }

/* ---- light variants for content sitting inside colour panels ---- */
.feature__panel .timeline li::before { background: var(--lime); box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.14); }
.feature__panel .timeline li { border-left-color: rgba(255, 255, 255, 0.28); }
.feature__panel .timeline .year { color: var(--lime); font-weight: 700; letter-spacing: 0.02em; }
.feature__panel .timeline p { color: rgba(255, 255, 255, 0.85); }
.feature__panel .pullquote {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
  border-left-color: var(--lime);
  box-shadow: none;
  color: #fff;
}
.feature__panel .pullquote cite { color: rgba(255, 255, 255, 0.72); }
.feature__panel .logos-label { color: rgba(255, 255, 255, 0.62); }
.feature__panel .logos { gap: 1.4rem 1.8rem; }
.feature__panel .logos a, .feature__panel .logos span { background: none; padding: 0; }
/* white monochrome logos directly on the colour panel, no frame */
.feature__panel .logos img {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.72;
  transition: opacity 0.25s;
}
.feature__panel .logos a:hover img,
.feature__panel .logos span:hover img { opacity: 1; }

/* ============================================================
   Band (Správná / Jedinečná / Skvělá + quote)
   ============================================================ */
.band {
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(3rem, 5vw, 4.5rem);
  background: var(--cream);
  border-top: 1px solid var(--line);
  text-align: center;
}
.band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
}
.band__col { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.band__label {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--slate);
}
.band__word {
  font-family: "Kaushan Script", cursive;
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1.1;
  padding: 0.04em 0.12em;
  background: linear-gradient(115deg, var(--slate) 0%, var(--green) 52%, var(--lime) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (max-width: 620px) { .band__grid { grid-template-columns: 1fr; } }
.band__quote {
  max-width: 46ch; margin-inline: auto;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--muted);
}
.band__quote b { color: var(--ink); font-style: italic; font-weight: 600; }

/* ============================================================
   Videos
   ============================================================ */
.videos { padding: 0; }
.videos .section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }

/* full-bleed video carousel */
.vcar { position: relative; width: 100%; background: var(--night); overflow: hidden; }
.vcar__track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.vcar__slide {
  position: relative;
  flex: 0 0 100%;
  height: clamp(340px, 56.25vw, 80vh);
  background: #000;
}
.vcar__slide iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.vfacade {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; padding: 0; margin: 0;
  cursor: pointer;
  background-size: cover; background-position: center;
  display: block;
}
.vfacade::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,20,26,0.18), rgba(16,20,26,0.58));
  transition: background 0.35s;
}
.vfacade:hover::after { background: linear-gradient(180deg, rgba(16,20,26,0.05), rgba(16,20,26,0.42)); }
.vfacade__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 78px; height: 78px; border-radius: 50%; z-index: 2;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.85);
  display: grid; place-items: center;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s;
}
.vfacade:hover .vfacade__play { transform: translate(-50%, -50%) scale(1.08); background: var(--green); border-color: var(--green); }
.vfacade__play svg { width: 26px; height: 26px; fill: #fff; margin-left: 3px; }
.vfacade__title {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.4rem clamp(1rem, 4vw, 3rem);
  color: #fff; font-size: 0.98rem; letter-spacing: 0.01em;
  text-align: left; text-shadow: 0 1px 12px rgba(0,0,0,0.55);
}
.vfacade__title span {
  display: block; font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 0.35rem;
}
.vcar__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.4);
  color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: background 0.2s, border-color 0.2s;
}
.vcar__arrow:hover { background: var(--green); border-color: var(--green); }
.vcar__arrow.prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.vcar__arrow.next { right: clamp(0.5rem, 2vw, 1.5rem); }
.vcar__arrow svg { width: 22px; height: 22px; }

.videos__cta { margin-top: 1.75rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.vcar__dots { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.vcar__dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line-2); border: 0; padding: 0; cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.vcar__dots button.is-active { background: var(--green); transform: scale(1.4); }

@media (max-width: 560px) {
  .vfacade__play { width: 62px; height: 62px; }
  .vcar__arrow { width: 44px; height: 44px; }
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery { padding: 0; background: var(--night); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(160px, 25vw, 420px);
  gap: 0;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); opacity: 1; }
/* lead with two big squares, then a row of four */
.gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(2) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
.gallery__item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.gallery__item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
.gallery__item:nth-child(6) { grid-column: span 1; grid-row: span 1; }
@media (max-width: 760px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 46vw; }
  .gallery__item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  place-items: center;
  padding: var(--pad);
  background: rgba(14, 21, 28, 0.92);
  backdrop-filter: blur(6px);
}
.lightbox.is-open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; width: auto; box-shadow: var(--shadow); }
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-size: 1.2rem;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--rose); border-color: var(--rose); }
.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav.prev { left: 1.4rem; }
.lightbox__nav.next { right: 1.4rem; }

/* ============================================================
   Reviews — full-bleed testimonial over photo (one at a time)
   ============================================================ */
.reviews {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding-block: clamp(5rem, 11vw, 9rem);
}
.reviews__bg { position: absolute; inset: 0; background: url(../img/reviews-bg.jpg) center/cover no-repeat; }
.reviews__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18, 27, 37, 0.74), rgba(18, 27, 37, 0.84));
}
.reviews__inner {
  position: relative; z-index: 2;
  width: min(100% - var(--pad) * 2, 900px);
  margin-inline: auto;
  text-align: center;
}
.reviews__eyebrow {
  font-weight: 600; font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--lime); margin: 0 0 2.25rem;
}
.reviews__viewport { overflow: hidden; }
.reviews__track { display: flex; transition: transform 0.55s var(--ease); will-change: transform; }
.review {
  flex: 0 0 100%;
  margin: 0;
  display: flex; flex-direction: column; align-items: center;
}
.review__quote-mark { display: none; }
.review p {
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  font-weight: 300; line-height: 1.6;
  color: rgba(255, 255, 255, 0.96);
  max-width: 42ch;
  margin: 0;
}
.review cite {
  margin-top: 2rem;
  font-style: normal; font-weight: 600; letter-spacing: 0.04em;
  color: #fff; font-size: 1rem;
}
.review cite span { display: block; margin-top: 0.35rem; color: rgba(255, 255, 255, 0.7); font-weight: 400; letter-spacing: 0.06em; font-size: 0.85rem; }
.reviews__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: background 0.2s, border-color 0.2s;
}
.reviews__arrow:hover { background: var(--green); border-color: var(--green); }
.reviews__arrow.prev { left: clamp(0.75rem, 3vw, 2.5rem); }
.reviews__arrow.next { right: clamp(0.75rem, 3vw, 2.5rem); }
.reviews__arrow svg { width: 24px; height: 24px; }
.reviews__dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 2.25rem; }
.reviews__dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.35); border: 0; padding: 0; cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.reviews__dots button.is-active { background: var(--lime); transform: scale(1.4); }

/* on phones the side arrows sit on top of the quote — rely on swipe + dots */
@media (max-width: 700px) {
  .reviews__arrow { display: none; }
  .reviews__dots { gap: 0.85rem; margin-top: 2rem; }
  .reviews__dots button { width: 10px; height: 10px; }
}

/* ============================================================
   Contact
   ============================================================ */
.contact {
  background: var(--slate);
  color: #fff;
  padding-block: clamp(4rem, 8vw, 6.5rem);
}
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.contact .eyebrow { color: var(--lime); }
.contact__info .section-title { margin-bottom: 2rem; color: #fff; }
.contact .section-title span { color: #fff; font-weight: inherit; }
.contact-list { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ic {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--lime);
}
.contact-list .ic svg { width: 18px; height: 18px; }
.contact-list b { display: block; font-weight: 600; color: #fff; }
.contact-list b a { color: #fff; }
.contact-list span { color: rgba(255, 255, 255, 0.65); font-size: 0.92rem; }
.contact-list a:hover { color: var(--lime); }

.contact__socials { display: flex; gap: 0.6rem; }
.contact__socials a {
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 50%;
  color: #fff;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.contact__socials a:hover { background: var(--lime); color: var(--slate); border-color: var(--lime); }
.contact__socials svg { width: 18px; height: 18px; }

.form { display: grid; gap: 1rem; }
.field label {
  display: block;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7); margin-bottom: 0.5rem; font-weight: 600;
}
.field input, .field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--ink);
  font-family: inherit; font-size: 1rem;
  padding: 0.9rem 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(31, 46, 58, 0.45); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(195, 225, 82, 0.35);
}
#mail-status { font-size: 0.9rem; }
.form .btn { justify-self: start; --btn-bg: var(--lime); --btn-fg: var(--slate); }
.form .btn:hover { background: #fff; box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.4); }
.form__note { font-size: 0.72rem; color: rgba(255, 255, 255, 0.6); }
.form__note a { color: rgba(255, 255, 255, 0.6); text-decoration: underline; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--slate);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}
.footer a { color: rgba(255, 255, 255, 0.75); }
.footer a:hover { color: var(--lime); }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; }
  .feature__panel { order: 2; }
  .feature--reverse .feature__panel { order: 2; }
  .feature__media { order: 1; min-height: 52vh; }
  .contact__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
