/* ============================================================
   PANTHER — pánske holičstvo
   Dark, minimalist, smooth single-page site
   ============================================================ */

:root {
  /* ---- Panther brand paleta (z brand manuálu) ---- */
  --onyx:      #0B0B0C;   /* pozadie celého webu */
  --krieda:    #F4F1EA;   /* text / biele logo na tmavom */
  --orech:     #9C6B43;   /* drevo (walnut) — teplá atmosféra */
  --beton:     #9B9A95;   /* betón — povrchy */
  --modra:     #2FA6DB;   /* panterová modrá — signature akcent (oči pantera) */
  --modra-2:   #5BBBE5;   /* svetlejšia modrá — hover */
  --modra-ink: #04222e;   /* tmavý text na modrých plochách */
  --bronz:     #C9A57E;   /* teplý bronz */
  --bronz-2:   #E2C7A4;
  --mach:      #5C8A3C;   /* mach — prírodný detail (machová stena v interiéri) */
  --mach-2:    #7DB14F;   /* svetlejší mach — „live"/success na tmavom pozadí */

  --bg:        #0B0B0C;
  --bg-2:      #0F0F11;
  --surface:   #141417;
  --surface-2: #1A1A1E;
  --line:      rgba(244, 241, 234, 0.10);
  --line-soft: rgba(244, 241, 234, 0.06);

  --text:      #F4F1EA;
  --muted:     rgba(244, 241, 234, 0.56);
  --faint:     rgba(244, 241, 234, 0.34);

  /* akčný akcent = modrá — CTA, hover, aktívne stavy, „live" bodka */
  --accent:      var(--modra);
  --accent-2:    var(--modra-2);
  --accent-ink:  var(--modra-ink);
  --accent-soft: rgba(47, 166, 219, 0.16);

  /* teplý akcent = bronz — nadpisy, ceny, ambient (drevo + bronz = atmosféra) */
  --warm:        var(--bronz);
  --warm-2:      var(--bronz-2);
  --warm-soft:   rgba(201, 165, 126, 0.14);

  --font:      'Archivo', system-ui, -apple-system, sans-serif;
  --mono:      'Space Mono', ui-monospace, monospace;

  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --maxw:      1240px;
  --pad:       clamp(1.25rem, 5vw, 6rem);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
html:not(.lenis) { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: normal; color: var(--warm); }
::selection { background: var(--accent); color: #0B0B0C; }

/* ---------- film grain ---------- */
.grain {
  position: fixed; inset: 0; z-index: 2000; pointer-events: none;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 0.6em;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.muted { color: var(--muted); }

/* ---------- pills / štítky (brand manuál s.5) ---------- */
.pill {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.42em 0.9em; border-radius: 100px;
  border: 1px solid var(--line); color: var(--muted); white-space: nowrap;
}
.pill--bronze   { background: rgba(201, 165, 126, 0.16); color: var(--bronz-2); border-color: rgba(201, 165, 126, 0.40); }
.pill--blue     { background: rgba(47, 166, 219, 0.16);  color: #8fd3ef;        border-color: rgba(47, 166, 219, 0.45); }
.pill--concrete { background: rgba(155, 154, 149, 0.18); color: #cfceca;        border-color: rgba(155, 154, 149, 0.40); }
.pill--moss     { background: rgba(92, 138, 60, 0.18);   color: #a6cd84;        border-color: rgba(92, 138, 60, 0.50); }

/* ---------- live status „otvorené teraz" (brand manuál s.5) ---------- */
.status {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.42em 0.95em 0.42em 0.8em; border-radius: 100px;
  border: 1px solid var(--line); color: var(--muted); white-space: nowrap;
  transition: color .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.status__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--faint); flex: none; }
/* otvorené = zelená (mach) — univerzálna konvencia; modrá tak ostáva čistý „akčný" akcent */
.status.is-open { color: var(--text); border-color: rgba(92, 138, 60, 0.50); background: rgba(92, 138, 60, 0.12); }
.status.is-open .status__dot { background: var(--mach-2); animation: livepulse 2.2s ease-out infinite; }
/* na objednávku (sobota) — modrý brand akcent, bez pulzu (nejde o „live" otvorenie) */
.status.is-appointment { color: var(--text); border-color: rgba(47, 166, 219, 0.45); background: rgba(47, 166, 219, 0.14); }
.status.is-appointment .status__dot { background: var(--modra); }
@keyframes livepulse {
  0%   { box-shadow: 0 0 0 0 rgba(92, 138, 60, 0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(92, 138, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(92, 138, 60, 0); }
}

/* ---------- buttons ---------- */
.btn {
  --bpad: 0.85em 1.5em;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: var(--bpad);
  font-family: var(--font);
  font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.01em;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
  will-change: transform;
}
.btn--lg { --bpad: 1.05em 2em; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--solid { background: var(--accent); color: var(--accent-ink); }
.btn--solid:hover { background: var(--accent-2); transform: translateY(-3px); }

.btn--ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(11, 11, 12, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-soft);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 1.1rem var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  transition: padding .5s var(--ease);
}
.nav.is-scrolled .nav__inner { padding-top: 0.7rem; padding-bottom: 0.7rem; }

.nav__brand { display: flex; align-items: center; gap: 0.65rem; }
.nav__logo { width: 34px; height: 34px; object-fit: contain; }
.nav__brandtext {
  font-weight: 800; font-size: 1.05rem; letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav__links { display: flex; gap: 2.2rem; }
.nav__links a {
  font-size: 0.9rem; color: var(--muted); position: relative;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--accent); transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { padding: 0.6em 1.3em; font-size: 0.86rem; }

.nav__burger {
  display: none; width: 42px; height: 42px; background: none; border: 0;
  cursor: pointer; position: relative;
}
.nav__burger span {
  position: absolute; left: 9px; right: 9px; height: 2px; background: var(--text);
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { bottom: 16px; }
body.menu-open .nav__burger span:nth-child(1) { top: 20px; transform: rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { bottom: 20px; transform: rotate(-45deg); }

/* ---------- mobile menu ---------- */
.menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg-2);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad);
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s;
}
body.menu-open .menu { opacity: 1; visibility: visible; transform: translateY(0); }
.menu__links { display: flex; flex-direction: column; gap: 0.3rem; }
.menu__links a {
  font-size: clamp(2rem, 11vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em;
  text-transform: uppercase; display: flex; align-items: baseline; gap: 1rem;
  padding: 0.3rem 0; transition: color .3s var(--ease), padding-left .35s var(--ease);
}
.menu__links a:hover { color: var(--accent); padding-left: 0.6rem; }
.menu__num { font-family: var(--mono); font-size: 0.85rem; color: var(--faint); font-weight: 400; }
.menu__foot {
  margin-top: 3rem; display: flex; gap: 2rem; font-family: var(--mono);
  font-size: 0.85rem; color: var(--muted);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 7rem var(--pad) 3.5rem;
  max-width: var(--maxw); margin: 0 auto;
  overflow: hidden;
}
.hero__glow {
  position: absolute; top: -10%; right: -5%; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, var(--warm-soft) 0%, transparent 62%);
  filter: blur(20px); pointer-events: none; z-index: -1;
  animation: float 14s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-4%, 4%) scale(1.08); }
}
.hero__eyebrow { margin-bottom: 1.6rem; }
.hero__title {
  font-size: clamp(3.2rem, 10.5vw, 8rem);
  font-weight: 900; line-height: 0.9; letter-spacing: -0.035em;
  text-transform: uppercase; margin-bottom: 1.6rem;
}
.hero__title .line { display: block; }
.hero__title .line--accent { color: var(--warm); }

.hero__sub {
  max-width: 46ch; font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--muted); margin-bottom: 2.2rem;
}
.hero__sub .hi { color: var(--warm); font-weight: 600; }
.hero__chips { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; margin-bottom: 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  font-size: 0.92rem; color: var(--muted); border-top: 1px solid var(--line-soft); padding-top: 1.6rem;
}
.hero__meta-k {
  display: block; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 0.3rem;
}
.hero__meta a:hover { color: var(--accent); }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--faint);
}
.hero__scroll-line {
  width: 1px; height: 42px; background: linear-gradient(var(--warm), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  padding: 1.4rem 0; overflow: hidden; white-space: nowrap;
  background: var(--bg-2);
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 2.5rem;
  animation: scroll-x 32s linear infinite;
}
.marquee__track span {
  font-size: clamp(1.4rem, 3vw, 2.4rem); font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.01em; color: var(--text);
}
.marquee__track .sep { color: var(--warm); font-size: 1.2rem; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(5rem, 11vw, 9rem) var(--pad);
  scroll-margin-top: 80px;
}
.section__head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section__head .eyebrow { margin-bottom: 1.2rem; }
.section__title {
  font-size: clamp(2.4rem, 6.5vw, 5rem); font-weight: 900;
  line-height: 0.98; letter-spacing: -0.03em; text-transform: uppercase;
}
.section__note { margin-top: 1rem; color: var(--muted); font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.04em; }

/* ---------- O nás ---------- */
.about__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem 2.5rem;
}
.about__lead {
  grid-column: 1 / -1; max-width: 60ch;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 500; line-height: 1.4;
  color: var(--text); margin-bottom: 2.5rem;
}
.feature {
  border-top: 1px solid var(--line); padding-top: 1.6rem;
}
.feature__num { font-family: var(--mono); font-size: 0.78rem; color: var(--warm); }
.feature h3 { font-size: 1.3rem; font-weight: 700; margin: 0.7rem 0 0.6rem; }
.feature p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Cenník ---------- */
.pricing { background: var(--bg); }
.price-list { display: flex; flex-direction: column; }
.price {
  position: relative;
  padding: 1.7rem 1.4rem; border-top: 1px solid var(--line);
  transition: background .4s var(--ease), padding-left .45s var(--ease);
}
.price-list .price:last-child { border-bottom: 1px solid var(--line); }
.price:hover { background: var(--surface); padding-left: 2rem; }
.price__main {
  display: flex; align-items: baseline; gap: 1rem; justify-content: space-between;
}
.price__name {
  font-size: clamp(1.25rem, 2.6vw, 1.75rem); font-weight: 700; letter-spacing: -0.01em;
}
.price__name span { color: var(--muted); font-weight: 400; font-size: 0.8em; }
.price__main { position: relative; }
/* dotted leader */
.price__amt {
  font-family: var(--mono); font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700;
  color: var(--warm); white-space: nowrap; flex-shrink: 0;
}
.price__desc { color: var(--muted); margin-top: 0.5rem; max-width: 62ch; font-size: 0.95rem; }

.price--feature { background: var(--surface); border-color: var(--accent-soft); }
.price--feature:hover { background: var(--surface-2); }
.price__tag {
  position: absolute; top: 1.7rem; right: 1.4rem;
  display: none; /* shown on wide screens below */
}

.pricing__cta { margin-top: 3rem; }

/* ---------- Galéria ---------- */
.gallery__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.tile {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  border: 1px solid var(--line); border-radius: 4px;
  background:
    linear-gradient(145deg, var(--surface) 0%, var(--bg-2) 100%);
  display: flex; align-items: flex-end; padding: 1.3rem;
  transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.tile::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, var(--accent-soft), transparent 55%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.tile:hover { transform: translateY(-6px); border-color: var(--accent); }
.tile:hover::before { opacity: 1; }
.tile__label {
  font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); position: relative; z-index: 1;
}
.tile__go {
  position: absolute; top: 1.3rem; right: 1.3rem; font-size: 0.82rem; color: var(--accent);
  opacity: 0; transform: translateY(-4px); transition: all .4s var(--ease); z-index: 1;
}
.tile:hover .tile__go { opacity: 1; transform: translateY(0); }

/* tile with a real photo */
.tile__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transition: transform .6s var(--ease);
}
.tile--photo { background: var(--surface-2); }
.tile--photo::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to top, rgba(11, 11, 12, 0.78) 0%, rgba(11, 11, 12, 0.18) 45%, transparent 72%);
}
.tile--photo:hover .tile__img { transform: scale(1.06); }
.tile--photo .tile__label { color: var(--text); }

.gallery__cta { margin-top: 2.5rem; text-align: center; }

/* ---------- Rezervácia ---------- */
.booking__wrap {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
.booking__placeholder {
  border: 1px dashed var(--line); border-radius: 8px;
  background: var(--bg-2); min-height: 420px;
  display: flex; align-items: center; justify-content: center; padding: 2.5rem;
}
.booking__placeholder[hidden] { display: none; }
.booking__placeholder-inner { max-width: 40ch; text-align: center; }
.booking__placeholder-inner .eyebrow { margin-bottom: 1rem; }
.booking__placeholder-inner p { color: var(--muted); }
.booking__placeholder-inner strong { color: var(--text); }

/* fallback "Radšej osobne?" — kompaktný pruh pod kalendárom na plnú šírku */
.booking__side {
  background: var(--surface); border: 1px solid var(--line); border-radius: 8px;
  padding: 1.5rem 2rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem;
}
.booking__side-intro { flex: 1 1 240px; }
.booking__side h3 { font-size: 1.25rem; font-weight: 700; }
.booking__side-intro p { color: var(--muted); margin: 0.4rem 0 0; }
/* akcie = úhľadná 2×2 mriežka (namiesto rozstrapateného zalomenia 3+1) */
.booking__side-actions {
  flex: 0 1 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem;
}
.booking__side-actions .btn { width: 100%; }

/* ---------- Rezervácia — výber barbera ---------- */
.barbers {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.2rem; margin-bottom: 1.5rem;
}
.barber {
  flex: 1 1 260px; max-width: 380px;
  display: flex; align-items: center; gap: 1.1rem; text-align: left;
  padding: 1.2rem 1.4rem; cursor: pointer;
  background: var(--surface); color: var(--text);
  border: 1px solid var(--line); border-radius: 12px;
  font-family: var(--font); -webkit-appearance: none; appearance: none;
  transition: border-color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease);
}
.barber:hover { border-color: var(--accent); transform: translateY(-4px); }
.barber.is-active { border-color: var(--accent); background: var(--surface-2); }

.barber__photo {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%; overflow: hidden;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--line);
}
.barber__photo img { width: 100%; height: 100%; object-fit: cover; }
.barber__initials { font-family: var(--mono); font-weight: 700; color: var(--warm); font-size: 1.1rem; }

.barber__body { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.barber__role {
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--faint);
}
.barber__name { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; }
.barber__spec { color: var(--muted); font-size: 0.9rem; line-height: 1.4; }
.barber__cta {
  margin-top: 0.6rem; font-weight: 600; font-size: 0.9rem; color: var(--accent);
  display: inline-flex; align-items: center; gap: 0.4em;
  transition: gap .3s var(--ease);
}
.barber:hover .barber__cta, .barber.is-active .barber__cta { gap: 0.75em; }

/* ---------- Rezervácia — výber služby (taby) ---------- */
.services {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.6rem; margin: 0 0 1.5rem;
}
.services[hidden] { display: none; }
.service {
  font-family: var(--font); font-size: 0.92rem; font-weight: 600;
  color: var(--muted); background: var(--surface); cursor: pointer;
  border: 1px solid var(--line); border-radius: 100px; padding: 0.6em 1.3em;
  -webkit-appearance: none; appearance: none;
  transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.service:hover { border-color: var(--accent); color: var(--text); transform: translateY(-2px); }
.service.is-active { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

.booking__cal { position: relative; }
.booking__embeds { width: 100%; }
.booking__embed {
  width: 100%; min-height: 620px; border-radius: 8px; overflow: hidden;
  background: var(--bg-2);
}
.booking__embed[hidden] { display: none; }
.booking__embed cal-inline,
.booking__embed iframe { width: 100% !important; min-height: 620px; border: 0; }
/* ---------- Rezervácia — zelený success-stav (brand: mach = pozitívny stav) ---------- */
.booking__done { margin-top: 14px; display: flex; flex-direction: column; gap: 0.85rem; }
.booking__done[hidden] { display: none; }
.booking__done-note {
  display: flex; align-items: center; gap: 0.7rem; margin: 0;
  padding: 0.9rem 1.15rem; border-radius: 10px;
  background: rgba(92, 138, 60, 0.12); border: 1px solid rgba(92, 138, 60, 0.45);
  color: var(--text); font-size: 0.96rem; line-height: 1.45;
}
.booking__done-check {
  flex: none; display: grid; place-items: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--mach); color: #06140a; font-size: 0.82rem; font-weight: 700;
}
.booking__again { margin: 0; }

/* ---------- Kontakt ---------- */
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem;
}
.contact__row {
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 1.2rem 0; border-top: 1px solid var(--line);
}
.contact__k {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--faint);
}
.contact__v { font-size: 1.25rem; font-weight: 600; transition: color .3s var(--ease); width: fit-content; }
a.contact__v:hover { color: var(--accent); }

.contact__hours { padding: 1.2rem 0; border-top: 1px solid var(--line); }
.contact__hours .contact__k { display: block; margin-bottom: 0.8rem; }
.contact__hours ul { display: flex; flex-direction: column; gap: 0.5rem; }
.contact__hours li { display: flex; justify-content: space-between; font-size: 0.98rem; max-width: 320px; }
.contact__hours li span:first-child { color: var(--muted); }

.contact__park {
  margin-top: 1.4rem; color: var(--muted); font-size: 0.92rem;
  display: flex; gap: 0.6rem; align-items: baseline; max-width: 44ch;
}

.contact__map {
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden; min-height: 420px;
}
.contact__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(1) invert(0.92) contrast(0.9); }

/* ============================================================
   DREVENÁ STENA  (.wood — striedavé teplé sekcie: Team + Galéria)
   brand manuál: orech = „wood wall"
   ============================================================ */
/* drevené pozadie na plnú šírku — box-shadow bleed (bez horizontálneho pretečenia) */
.wood {
  position: relative; z-index: 0;
  background-color: var(--orech);
  background-image: radial-gradient(120% 130% at 50% -10%, rgba(244, 241, 234, 0.10), transparent 55%);
  box-shadow: 0 0 0 100vmax var(--orech);
  clip-path: inset(0 -100vmax);
}
/* DEFAULT pre drevené sekcie (= Tím) — VERTIKÁLNE drevené laty: hnedá ~34px,
   tmavá ~25px (≈73 %, nad min. 30 % šírky hnedej), opacita tmavých veľmi nízka
   (~0.05) — len jemný náznak. Tenký svetlý zraz (bevel). Galéria si to nižšie
   prebíja na panther tapetu. */
.wood::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 100vw; transform: translateX(-50%); z-index: -1;
  background-image: repeating-linear-gradient(
    to right,
    rgba(244, 241, 234, 0.035) 0px,
    transparent 2px,
    transparent 34px,
    rgba(0, 0, 0, 0.055) 35px,
    rgba(0, 0, 0, 0.055) 60px
  );
  pointer-events: none;
}
/* Galéria — drevená stena s jemným pantherom (half-drop cik-cak tapeta) namiesto
   slatov. Vyššia špecificita (.wood.gallery) prebije len background-* a opacitu;
   pozícia + full-bleed sa dedia z .wood::before vyššie. */
.wood.gallery::before {
  background-image: url("assets/pattern-panther.png"), url("assets/pattern-panther.png");
  background-repeat: repeat;
  background-size: 132px;
  background-position: 0 0, 66px 66px;
  opacity: 0.05;
}
/* tmavý „carved" text na dreve (manuál: cta--wood) */
.wood .eyebrow,
.wood .section__title { color: #1c130b; }
.wood .eyebrow .dot { background: #1c130b; }
.wood .section__note { color: rgba(28, 19, 11, 0.66); }
.wood .btn--ghost { border-color: rgba(28, 19, 11, 0.32); color: #1c130b; }
.wood .btn--ghost:hover { border-color: #1c130b; color: #1c130b; background: rgba(28, 19, 11, 0.06); }
.wood .tile { border-color: rgba(0, 0, 0, 0.22); }

/* ---------- Náš team ---------- */
.team { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; }
.member {
  flex: 1 1 260px; max-width: 320px;
  display: flex; flex-direction: column; gap: 1rem;
}
.member__photo {
  position: relative; aspect-ratio: 3 / 4; border-radius: 20px; overflow: hidden;
  background: linear-gradient(160deg, var(--surface-2), var(--bg-2));
  border: 1px solid rgba(0, 0, 0, 0.28); display: grid; place-items: center;
  box-shadow: 0 18px 44px -26px rgba(0, 0, 0, 0.75);
}
.member__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.member__initials { font-family: var(--mono); font-weight: 700; font-size: 2.6rem; color: var(--warm); }
.member__body { display: flex; flex-direction: column; }
.member__role {
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--faint);
}
.member__name { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.01em; margin: 0.15rem 0 0.4rem; }
.member__desc { font-size: 0.95rem; line-height: 1.5; color: var(--muted); }
/* na dreve — tmavý text */
.wood .member__role { color: rgba(28, 19, 11, 0.55); }
.wood .member__name { color: #1c130b; }
.wood .member__desc { color: rgba(28, 19, 11, 0.72); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line); background: var(--bg-2);
  padding: clamp(3rem, 7vw, 5rem) var(--pad) 2rem;
  max-width: var(--maxw); margin: 0 auto;
}
.footer__top {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-soft);
}
.footer__brand { display: flex; align-items: center; gap: 0.8rem; font-weight: 700; letter-spacing: 0.04em; }
.footer__brand img { width: 40px; height: 40px; }
.footer__claim { font-family: var(--mono); font-size: 0.82rem; color: var(--muted); line-height: 1.8; text-align: right; }
.footer__links {
  display: flex; gap: 2rem; flex-wrap: wrap; padding: 2rem 0;
  font-size: 0.92rem;
}
.footer__links a { color: var(--muted); transition: color .3s var(--ease); }
.footer__links a:hover { color: var(--accent); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-family: var(--mono); font-size: 0.74rem; color: var(--faint); letter-spacing: 0.04em;
  padding-top: 1.5rem; border-top: 1px solid var(--line-soft);
}
.footer__up:hover { color: var(--accent); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 880px) {
  .price--feature .price__tag {
    display: inline-block; position: static;
    font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent); margin-top: 0.8rem;
  }
}

@media (max-width: 980px) {
  .contact__grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }

  .about__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }

  .booking__side { flex-direction: column; align-items: stretch; }
  /* v stĺpci by 240px flex-basis nafúklo výšku intro bloku → naturálna výška */
  .booking__side-intro { flex: 0 0 auto; }
  .booking__side-actions { grid-template-columns: 1fr; }

  .hero__meta { gap: 1.5rem; }
  .hero__scroll { display: none; }
  .footer__claim { text-align: left; }
  .footer__top { flex-direction: column; }
}

@media (max-width: 460px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .price__desc { font-size: 0.9rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}
