/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-bg:        #D6D6D4;
  --c-bg2:       #CFCDCA;
  --c-bg3:       #C8C5C1;
  --c-surface:   #D6D6D4;
  --c-border:    #E2DDD6;
  --c-dark:      #111111;
  --c-dark2:     #1C1C1C;
  --c-dark3:     #252525;
  --c-red:       #C8301E;
  --c-red-dark:  #A82516;
  --c-gold:      #C0964E;
  --c-gold-light:#D4AC6A;
  --c-text:      #0F0F0F;
  --c-muted:     #5A5A5A;
  --c-light:     #999999;
  --c-white:     #FFFFFF;
  --r:           10px;
  --r-lg:        18px;
  --transition:  0.22s ease;
  --shadow:      0 8px 32px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

#about, #services, #team, #contact { scroll-margin-top: 80px; }

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ─── DECORATIVE ─── */
.star-deco {
  color: var(--c-red);
  display: inline-block;
  line-height: 1;
}

/* ─── UTILITIES ─── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 720px; }
.hidden { display: none !important; }
.section { padding: 6rem 0; }
.section--light { background-color: var(--c-bg2); }
.section--dark {
  background: var(--c-dark);
  color: var(--c-white);
}
.section--dark .section__eyebrow { color: var(--c-gold); }
.section--dark .section__title   { color: var(--c-white); }

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.section__title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  color: var(--c-text);
}
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
}
.section__head .section__title { margin-bottom: 0; }
.section__head > div { display: flex; flex-direction: column; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--cta {
  background: var(--c-red);
  color: #fff;
  padding: 0.9rem 1.25rem 0.9rem 2rem;
  font-size: 0.95rem;
  border-radius: 100px;
  gap: 0.75rem;
}
.btn--cta:hover { background: var(--c-red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,48,30,0.35); }

.btn--cta-sm {
  background: var(--c-red);
  color: #fff;
  padding: 0.6rem 1rem 0.6rem 1.4rem;
  font-size: 0.88rem;
  border-radius: 100px;
  gap: 0.5rem;
}
.btn--cta-sm:hover { background: var(--c-red-dark); box-shadow: 0 6px 18px rgba(200,48,30,0.3); }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: background var(--transition);
}
.btn--cta:hover .btn-arrow,
.btn--cta-sm:hover .btn-arrow { background: rgba(255,255,255,0.32); }

.btn--nav {
  background: var(--c-red);
  color: #fff;
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  border-radius: 100px;
}
.btn--nav:hover { background: var(--c-red-dark); }

.btn--primary {
  background: var(--c-red);
  color: #fff;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  border-radius: 8px;
}
.btn--primary:hover { background: var(--c-red-dark); transform: translateY(-1px); }
.btn--primary:disabled { opacity: 0.38; cursor: not-allowed; transform: none; }

.btn--outline {
  background: transparent;
  border: 2px solid var(--c-red);
  color: var(--c-red);
  padding: 0.6rem 1.25rem 0.6rem 1.5rem;
  font-size: 0.88rem;
  border-radius: 100px;
}
.btn--outline:hover { background: var(--c-red); color: #fff; }

.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--c-border);
  color: var(--c-muted);
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  border-radius: 8px;
}
.btn--ghost:hover { border-color: var(--c-text); color: var(--c-text); }

.btn--lg {
  background: #ffffff;
  color: #111111;
  padding: 0.9rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(255,255,255,0.18);
  transition: all var(--transition);
}
.btn--lg:hover {
  background: var(--c-gold);
  color: #fff;
  box-shadow: 0 6px 28px rgba(192,150,78,0.4);
  transform: translateY(-2px);
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.9rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  padding: 0.65rem 0;
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav__links--left  { justify-content: flex-end;   padding-right: 2.5rem; }
.nav__links--right { justify-content: flex-start; padding-left:  2.5rem; }

/* ─── LOGO ─── */
.nav__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  gap: 0;
}
.logo-barber {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.22em;
  color: var(--c-white);
  line-height: 1;
}
.logo-divider {
  display: flex;
  align-items: center;
  width: 100%;
  color: var(--c-gold);
  font-size: 0.76rem;
  margin: 0.22rem 0 0.18rem;
}
.logo-divider::before,
.logo-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--c-gold);
}
.logo-divider::before { margin-right: 0.4rem; }
.logo-divider::after  { margin-left:  0.4rem; }
.logo-essence {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.16rem;
  letter-spacing: 0.38em;
  color: var(--c-white);
  line-height: 1;
}
.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  color: var(--c-gold);
  line-height: 1;
  margin-top: 0.22rem;
}

/* Footer logo – slightly larger */
.footer .nav__logo .logo-barber { font-size: 1.45rem; }
.footer .nav__logo .logo-essence { font-size: 0.65rem; }
.footer .nav__logo .logo-sub { font-size: 0.46rem; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,1);
  transition: color var(--transition), background var(--transition), border-color var(--transition);
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
}
.nav__links a:hover {
  color: var(--c-gold);
  background: rgba(192,150,78,0.1);
  border-color: var(--c-gold);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--c-dark);
  padding-top: 12rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 95% 90%, rgba(200,48,30,0.11) 0%, transparent 70%),
    radial-gradient(ellipse 45% 35% at 5% 90%, rgba(192,150,78,0.09) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.hero__strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 68%;
  overflow: hidden;
  z-index: 0;
}
.hero__strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: brightness(0.68);
}
.hero__strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to bottom, var(--c-dark) 10%, transparent);
  z-index: 1;
}
.hero__strip::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70%;
  background: linear-gradient(to bottom, transparent, var(--c-dark));
  z-index: 1;
}

.hero__body {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
  margin-bottom: 8rem;
}

/* ── Titles block – no container, bleeds full width ── */
.hero__titles {
  padding: 0 4vw;
  margin-bottom: 0;
  text-align: center;
}
.hero__title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(6rem, 13.5vw, 13rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--c-white);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.hero__eyebrow-img {
  display: block;
  width: clamp(400px, 85%, 1100px);
  margin: -19rem auto -12rem;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

/* ── Bottom foot row ── */
.hero__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.75rem;
}
.hero__foot-left {}
.hero__sub {
  color: rgba(255,255,255,0.9);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 480px;
}
.hero__foot-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.hero__cta-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.hero__scroll {
  position: absolute;
  bottom: 8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero__scroll span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  position: relative;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--c-gold);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease infinite;
}
@keyframes scroll-dot {
  0%   { top: 5px;  opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-5px); }
}
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,255,255,0.15); }
  50%       { box-shadow: 0 4px 35px rgba(255,255,255,0.38); }
}
@keyframes goldShimmer {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.82; }
}

/* Vstupné animácie */
.nav        { animation: fadeSlideDown 0.7s ease both; }
.nav__logo  { animation: fadeSlideDown 0.7s ease 0.1s both; }
.nav__links { animation: fadeSlideDown 0.6s ease 0.2s both; }

.hero__title       { animation: fadeSlideUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.3s both; }
.hero__eyebrow-img { animation: fadeIn 1s ease 0.9s both, goldShimmer 4s ease-in-out 2.5s infinite; }
.hero__sub         { animation: fadeSlideUp 0.7s ease 1.1s both; }
.btn--lg           { animation: fadeSlideUp 0.7s ease 1.3s both, btnGlow 3s ease-in-out 2.5s infinite; }

/* Hover interakcie */
.nav__logo:hover { transform: scale(1.04); transition: transform 0.3s ease; }

/* ─── ABOUT ─── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__img { position: relative; }
.about__img-inner {
  height: 480px;
  border-radius: 24px 80px 24px 24px;
  background: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=800&q=80') center/cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 92px;
  height: 92px;
  background: var(--c-gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--c-dark);
  font-weight: 700;
  line-height: 1.2;
  font-size: 0.78rem;
  box-shadow: 0 10px 28px rgba(201,164,82,0.4);
}
.about__badge strong { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; }
.about__badge span   { font-size: 1.55rem; font-family: 'Bebas Neue', cursive; letter-spacing: 0.04em; }
.about__text .section__eyebrow { color: var(--c-gold); }
.about__text p {
  color: var(--c-muted);
  margin-bottom: 1rem;
  max-width: 460px;
  line-height: 1.75;
}
.about__text .btn--cta-sm { margin-top: 1.75rem; }

/* About – užší padding */
.about.section { padding: 1.5rem 0; }

/* About – portraits row (desktop: side by side inside grid) */
.about__portraits-row {
  display: contents; /* na desktope sa správa akoby neexistoval — children idú priamo do gridu */
}
.about__portraits-row .about__portrait-wrap:first-child { order: 1; }
.about__text--centered { order: 2; }
.about__portraits-row .about__portrait-wrap:last-child { order: 3; }

/* About – trio layout */
.about__trio {
  display: grid;
  grid-template-columns: 1fr minmax(auto, 680px) 1fr;
  gap: 3rem;
  align-items: center;
  padding: 0 2rem;
}
.about__portrait-wrap {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.18);
  position: relative;
}
.about__portrait-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.5rem 1.2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.about__portrait-wrap:hover .about__portrait-label {
  opacity: 1;
  transform: translateY(0);
}
.about__portrait-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  line-height: 1;
}
.about__portrait-role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.about__portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.6s ease, transform 0.6s ease;
}
.about__portrait:hover {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.about__portrait--mystery {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, #1a1a1a 0%, #252525 60%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.about__mystery-icon {
  font-family: 'Cinzel', serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 700;
  color: var(--c-gold);
  opacity: 0.55;
  line-height: 1;
  user-select: none;
}
.about__portrait-label--visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* About – centrovaná verzia bez fotky */
.about__eyebrow-img {
  display: block;
  width: clamp(280px, 50%, 650px);
  margin: 0 auto 1rem;
  pointer-events: none;
}
.section__eyebrow-img {
  display: block;
  width: clamp(220px, 32%, 450px);
  margin: 0 auto 1.5rem;
  pointer-events: none;
}
.about__text--centered {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.about__title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 2rem;
}
.about__text--centered .section__eyebrow {
  justify-content: center;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
}
.about__body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}
.btn--about {
  margin-top: 0.5rem;
  background: #111111;
  color: #ffffff;
  padding: 0.85rem 2.5rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn--about:hover {
  background: #222;
  color: var(--c-gold);
  border-color: var(--c-gold);
}
.about__body p {
  color: var(--c-text);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.85;
  max-width: 100%;
}

/* ─── SERVICES ─── */
.services.section { padding: 3rem 0; position: relative; }
.services.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 98% 95%, rgba(200,48,30,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 2% 95%, rgba(192,150,78,0.11) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.services .container { position: relative; z-index: 1; }
.services__sub {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  display: block;
  text-decoration: none;
  background: var(--c-dark2);
  border: 1.5px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  color: var(--c-white);
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--c-gold);
  transition: height 0.3s ease;
  border-radius: 0 0 3px 3px;
}
.service-card:hover::before { height: 100%; }
.service-card:hover {
  border-color: rgba(201,164,82,0.25);
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.4);
}
.service-card__num {
  font-family: 'Bebas Neue', cursive;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--c-gold);
  margin-bottom: 1.25rem;
  opacity: 0.6;
}
.service-card__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--c-gold);
}
.service-card h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  color: var(--c-white);
  line-height: 1;
  width: 100%;
}
.service-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.service-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1rem;
  font-size: 0.82rem;
}
.service-card__time {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.service-card__price {
  color: var(--c-gold);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

/* ─── WHY US ─── */
.why { background: var(--c-bg); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1.5px solid var(--c-border);
}
.why-item {
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 1.5px solid var(--c-border);
}
.why-item:first-child { padding-left: 0; }
.why-item:last-child { border-right: none; padding-right: 0; padding-left: 2rem; }
.why-item:nth-child(2) { padding: 2.5rem 2rem; }
.why-item__top {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}
.why-item__num {
  font-family: 'Bebas Neue', cursive;
  font-size: 5rem;
  line-height: 1;
  color: var(--c-red);
  letter-spacing: 0.01em;
}
.why-item__unit {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.2rem;
  color: var(--c-light);
  letter-spacing: 0.06em;
  line-height: 1;
  padding-bottom: 0.3rem;
}
.why-item p {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.6;
  max-width: 200px;
}

/* ─── TEAM ─── */
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}
.team-card {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}
.team-card__photo {
  height: 260px;
  background-size: cover;
  background-position: center top;
}
.team-card__photo--1 {
  background-image: url('https://images.unsplash.com/photo-1622286342621-4bd786c2447c?w=600&q=80');
}
.team-card__photo--2 {
  background-image: url('https://images.unsplash.com/photo-1599351431202-1e0f0137899a?w=600&q=80');
}
.team-card__info { padding: 1.5rem; }
.team-card__info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--c-text);
}
.team-card__role {
  font-size: 0.72rem;
  color: var(--c-gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.team-card__hours {
  font-size: 0.82rem;
  color: var(--c-light);
  margin-bottom: 1.25rem;
}

/* ─── BOOKING ─── */
.book { background: var(--c-bg2); }
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  flex-wrap: nowrap;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--c-light);
  font-weight: 500;
  flex-shrink: 0;
}
.step span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  transition: all var(--transition);
  color: var(--c-light);
  background: var(--c-surface);
}
.step--active span {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
}
.step--done span {
  background: transparent;
  border-color: var(--c-red);
  color: var(--c-red);
}
.step--active { color: var(--c-text); }
.step__line {
  flex: 1;
  height: 2px;
  background: var(--c-border);
  margin: 0 0.5rem;
  margin-bottom: 14px;
  min-width: 30px;
}
.booking-card {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.book-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--c-text);
}
.book-step__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* BARBER SELECT */
.barber-grid { display: flex; flex-direction: column; gap: 0.75rem; }
.barber-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--c-bg2);
  border: 2px solid var(--c-border);
  border-radius: var(--r);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--c-text);
  font-family: 'Space Grotesk', sans-serif;
  text-align: left;
}
.barber-btn:hover { border-color: rgba(200,48,30,0.35); }
.barber-btn.selected { border-color: var(--c-red); background: rgba(200,48,30,0.04); }
.barber-btn__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center top;
}
.barber-btn__avatar--1 {
  background-image: url('https://images.unsplash.com/photo-1622286342621-4bd786c2447c?w=200&q=80');
}
.barber-btn__avatar--2 {
  background-image: url('https://images.unsplash.com/photo-1599351431202-1e0f0137899a?w=200&q=80');
}
.barber-btn__info { flex: 1; }
.barber-btn__info strong { display: block; font-size: 0.95rem; color: var(--c-text); }
.barber-btn__info span { font-size: 0.8rem; color: var(--c-light); }
.barber-btn__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: transparent;
  transition: all var(--transition);
}
.barber-btn.selected .barber-btn__check {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
}

/* SERVICE PICKER */
.svc-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.svc-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  background: var(--c-bg2);
  border: 2px solid var(--c-border);
  border-radius: var(--r);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--c-text);
  font-family: 'Space Grotesk', sans-serif;
  text-align: center;
  width: 100%;
}
.svc-cat:hover { border-color: rgba(200,48,30,0.35); }
.svc-cat.selected { border-color: var(--c-red); background: rgba(200,48,30,0.04); }
.svc-cat__icon { font-size: 1.4rem; }
.svc-cat__label { font-size: 0.88rem; font-weight: 600; color: var(--c-text); }

.svc-subs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
}
.svc-sub {
  padding: 0.55rem 1.2rem;
  background: var(--c-bg2);
  border: 2px solid var(--c-border);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--c-text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
}
.svc-sub:hover { border-color: rgba(200,48,30,0.35); }
.svc-sub.selected { border-color: var(--c-red); background: var(--c-red); color: #fff; font-weight: 700; }

/* CALENDAR */
.calendar { user-select: none; }
.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.calendar__month {
  font-weight: 600;
  font-size: 1rem;
  text-transform: capitalize;
  color: var(--c-text);
}
.cal-nav {
  background: var(--c-bg2);
  border: 1.5px solid var(--c-border);
  color: var(--c-text);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), color var(--transition);
}
.cal-nav:hover { border-color: var(--c-red); color: var(--c-red); }
.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-light);
  margin-bottom: 0.5rem;
}
.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: 8px;
  border: 1px solid transparent;
  background: none;
  color: var(--c-text);
  font-size: 0.88rem;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-day:hover:not(.cal-day--disabled):not(.cal-day--empty) {
  background: rgba(200,48,30,0.07);
  border-color: rgba(200,48,30,0.25);
}
.cal-day--today { border-color: rgba(200,48,30,0.3); color: var(--c-red); }
.cal-day--selected { background: var(--c-red) !important; border-color: var(--c-red) !important; color: #fff !important; font-weight: 700; }
.cal-day--disabled {
  color: rgba(0,0,0,0.3);
  cursor: not-allowed;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  text-decoration: line-through;
  text-decoration-color: rgba(0,0,0,0.2);
}
.cal-day--empty { cursor: default; }

/* SLOTS */
.slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 0.6rem;
}
.slot-btn {
  padding: 0.6rem;
  background: var(--c-bg2);
  border: 1.5px solid var(--c-border);
  border-radius: 8px;
  color: var(--c-text);
  font-size: 0.88rem;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 500;
  text-align: center;
}
.slot-btn:hover:not(:disabled) { border-color: var(--c-red); background: rgba(200,48,30,0.06); }
.slot-btn.selected { background: var(--c-red); border-color: var(--c-red); color: #fff; font-weight: 700; }
.slot-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.slot-btn--taken { text-decoration: line-through; color: var(--c-light); }
.slots--empty {
  text-align: center;
  color: var(--c-light);
  padding: 2rem 0;
  font-size: 0.9rem;
}

/* BOOKING SUMMARY */
.booking-summary {
  background: var(--c-bg2);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  color: var(--c-light);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
}
.booking-summary strong { color: var(--c-text); }

/* CONTACT FORM */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--c-muted); }
.form-group input,
.form-group textarea {
  background: var(--c-bg2);
  border: 1.5px solid var(--c-border);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  color: var(--c-text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.93rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--c-red); box-shadow: 0 0 0 3px rgba(200,48,30,0.08); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #C8C4BE; }

/* SUCCESS */
.success {
  text-align: center;
  padding: 2rem 0;
}
.success__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--c-red), var(--c-red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin: 0 auto 1.25rem;
  box-shadow: 0 10px 28px rgba(200,48,30,0.35);
}
.success h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--c-text);
}
.success p {
  color: var(--c-muted);
  font-size: 0.93rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ─── LOCATION ─── */
.location {
  display: flex;
  min-height: 285px;
}
.location__map {
  flex: 0 0 50%;
  position: relative;
}
.location__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.location__info {
  flex: 1;
  background: var(--c-bg);
  padding: 0.5rem 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location__title-img {
  width: clamp(280px, 70%, 520px);
  margin-top: -2rem;
  margin-bottom: -0.5rem;
  display: block;
  filter: brightness(0);
}
.location__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
}
.location__col h4 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}
.location__col p {
  font-size: 1.45rem;
  color: #111;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.location__col p a {
  color: #111;
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 700;
}
.location__col p a:hover { color: var(--c-gold); }
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: #ccc;
  color: #111;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--c-gold); color: #fff; }
.social-link svg { width: 1rem; height: 1rem; }

/* ─── FOOTER ─── */
.footer {
  background: var(--c-dark);
  border-top: 1px solid rgba(201,164,82,0.15);
}
.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3rem 0 2.5rem;
  gap: 2rem;
}
.footer__heading {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0;
  text-transform: none;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--c-gold); }
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.footer__social-link:hover { background: var(--c-gold); color: #fff; }
.footer__social-link svg { width: 1.1rem; height: 1.1rem; }
.footer__instagram-link {
  color: var(--c-gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.footer__instagram-link:hover { opacity: 0.75; }
.location__instagram-link {
  color: var(--c-dark);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.location__instagram-link:hover { opacity: 0.6; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
}
.admin-link {
  color: rgba(255,255,255,0.14);
  font-size: 0.75rem;
  transition: color var(--transition);
}
.admin-link:hover { color: rgba(255,255,255,0.45); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 1rem;
  right: 1rem;
  background: rgba(20,20,20,0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  z-index: 199;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu a {
  padding: 1rem 1.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.mobile-menu a:last-child {
  border-bottom: none;
}
.mobile-menu a:hover {
  color: var(--c-gold);
  background: rgba(192,150,78,0.08);
  padding-left: 2rem;
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e0ddd8;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-banner__text strong { display: block; font-size: 0.88rem; color: #111; margin-bottom: 0.2rem; }
.cookie-banner__text p { font-size: 0.8rem; color: #888; margin: 0; }
.cookie-banner__text a { color: var(--c-gold); }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ─── RESPONSIVE ─── */
.nav__mobile-cta { display: none; }

@media (max-width: 960px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding-top: 8rem;
  }
  .hero__sub { max-width: 100%; }
  .hero__visual { order: -1; }
  .hero__photo-frame img { height: 360px; }
  .hero__tag { left: auto; right: 1rem; bottom: 1.5rem; }
  .hero__actions { justify-content: center; }
  .why__grid { grid-template-columns: 1fr; }
  .why-item { border-right: none; border-bottom: 1.5px solid var(--c-border); padding: 2rem 0; }
  .why-item:last-child { border-bottom: none; }
  .hero::after { display: none; }
}

@media (max-width: 768px) {

  /* ── NAV ── */
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .nav__links--left  { display: none; }
  .nav__links--right { display: none; }
  .nav__logo { margin: 0 auto; }
  .nav__burger {
    position: absolute;
    right: 1.5rem;
  }
  /* Rezervovať CTA vedľa burgera */
  .nav__mobile-cta {
    display: inline-flex;
    position: absolute;
    left: 1rem;
    background: var(--c-red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.38rem 0.85rem;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
  }
  /* Rezervovať v mobile menu – ako tlačidlo */
  .mobile-menu a.mobile-menu__cta {
    background: var(--c-red);
    color: #fff !important;
    text-align: center;
    font-weight: 700;
    margin: 0.5rem 1rem 0.75rem;
    border-radius: 10px;
    border-bottom: none !important;
  }
  .mobile-menu a.mobile-menu__cta:hover {
    background: var(--c-red-dark) !important;
    color: #fff !important;
    padding-left: 1.5rem !important;
  }

  /* ── HERO ── */
  .hero { padding-top: 0; min-height: 100dvh; }
  .hero__body { padding-top: 7rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; }
  .hero__strip { height: 100%; top: 0; bottom: 0; }
  .hero__title { font-size: clamp(5rem, 16vw, 8rem); margin-top: 2.5rem; }
  .hero__eyebrow-img { width: clamp(300px, 95vw, 500px); margin: -5rem auto 0; }
  .hero__foot { flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; padding-top: 1.25rem; }
  .hero__sub { font-size: 1rem; max-width: 100%; }
  .hero__scroll { display: none; }

  /* ── ABOUT ── */
  .about__trio {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1.25rem;
  }
  .about__text--centered { order: 1; padding: 0; }
  .about__portraits-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    order: 2;
  }
  .about__portrait-wrap { max-width: none; width: 100%; }
  .about__portrait { aspect-ratio: 3/4; }
  .about__body p { font-size: 0.95rem; }

  /* ── SERVICES ── */
  .services__grid { grid-template-columns: 1fr; gap: 1rem; }
  .section__eyebrow-img { width: clamp(180px, 60%, 320px); }
  .services__sub { font-size: 0.9rem; }

  /* ── LOCATION ── */
  .location { flex-direction: column; }
  .location__map { height: 280px; position: relative; flex: none; }
  .location__info { padding: 1.5rem 1.25rem; }
  .location__cols { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
  .location__title-img { width: clamp(200px, 65%, 380px); }
  .location__col p { font-size: 0.95rem; }
  .location__col h4 { font-size: 0.9rem; }

  /* ── FOOTER ── */
  .footer__main { flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }

  /* ── BOOKING ── */
  .booking-card { padding: 1.5rem 1.25rem; }
  .steps { gap: 0; }
  .step { font-size: 0.7rem; }
  .step__line { min-width: 12px; }
  .section__head { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 1.25rem; }

  /* Touch targets */
  .cal-day { min-height: 44px; font-size: 0.9rem; }
  .slot-btn { min-height: 48px; padding: 0.75rem 0.5rem; font-size: 0.9rem; }
  .btn--primary { padding: 0.9rem 1.75rem; font-size: 1rem; min-height: 50px; }
  .btn--ghost   { padding: 0.9rem 1.25rem; font-size: 0.95rem; min-height: 50px; }

  /* Booking summary – stack vertically */
  .booking-summary { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 480px) {

  /* ── HERO ── */
  .hero__title { font-size: clamp(3.2rem, 14vw, 5rem); }
  .hero__eyebrow-img { width: clamp(200px, 78vw, 300px); }

  /* ── ABOUT ── */
  .about__trio { padding: 0 1rem; gap: 1rem; }

  /* ── SERVICES ── */
  .service-card h3 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* ── LOCATION ── */
  .location__cols { grid-template-columns: 1fr; gap: 1.25rem; }
  .location__col p { font-size: 0.9rem; }

  /* ── BOOKING ── */
  .slots { grid-template-columns: repeat(3, 1fr); }
  .svc-cats { grid-template-columns: 1fr; }
  .barber-grid { grid-template-columns: 1fr; }
  .step span { width: 26px; height: 26px; font-size: 0.7rem; }
  .step__line { min-width: 8px; }
}
