/* ==========================================================================
   KADEŘNICTVÍ MARIE STÁRKOVÁ — style.css
   Globální styly, design systém, layout, komponenty
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* --------------------------------------------------------------------------
   2. DESIGN TOKENY
   -------------------------------------------------------------------------- */
:root {
  /* Barvy */
  --clr-bg:            #F7F3ED;   /* teplá krémová — hlavní pozadí */
  --clr-bg-dark:       #1A1A18;   /* téměř černá — footer, hero overlay */
  --clr-primary:       #2C4A35;   /* hluboká lesní zelená — hlavní barva */
  --clr-primary-dark:  #223A29;   /* tmavší zelená */
  --clr-accent:        #B8966A;   /* teplé zlato — akcent, CTA */
  --clr-accent-light:  #D4B896;   /* světlejší zlatá — hover, detaily */
  --clr-text:          #1A1A18;   /* tmavý text */
  --clr-text-muted:    #6B6560;   /* sekundární text */
  --clr-white:         #FFFFFF;
  --clr-border:        #E8E2D9;   /* jemný border */

  /* Typografie */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radii */
  --radius-sm:   4px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --radius-pill: 100px;

  /* Spacing */
  --space-section: 120px;

  /* Stíny */
  --shadow-sm: 0 2px 10px rgba(26, 26, 24, 0.06);
  --shadow-md: 0 10px 40px rgba(26, 26, 24, 0.10);
  --shadow-lg: 0 20px 60px rgba(26, 26, 24, 0.16);
  --shadow-gold: 0 12px 30px rgba(184, 150, 106, 0.30);

  /* Přechody */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   3. TYPOGRAFIE
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  color: var(--clr-text);
}

p { color: var(--clr-text); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--clr-accent);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.section-title--italic { font-style: italic; }

.section-lead {
  font-size: 1.075rem;
  color: var(--clr-text-muted);
  max-width: 560px;
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   4. LAYOUT / UTILITY
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow { max-width: 900px; }

.section {
  padding: var(--space-section) 0;
}

.section--bg-dark   { background: var(--clr-bg-dark); color: var(--clr-white); }
.section--bg-green  { background: var(--clr-primary); color: var(--clr-white); }
.section--bg-cream  { background: var(--clr-bg); }
.section--bg-white  { background: var(--clr-white); }

.section--bg-dark  h1, .section--bg-dark  h2, .section--bg-dark  h3, .section--bg-dark  p,
.section--bg-green h1, .section--bg-green h2, .section--bg-green h3, .section--bg-green p {
  color: var(--clr-white);
}

.text-center { text-align: center; }

.section-head {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head--center .section-lead { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   5. TLAČÍTKA
   -------------------------------------------------------------------------- */
.btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

.btn--gold {
  background: var(--clr-accent);
  color: var(--clr-bg-dark);
  border-color: var(--clr-accent);
}
.btn--gold:hover {
  background: var(--clr-accent-light);
  border-color: var(--clr-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--clr-white);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--clr-bg-dark);
  color: var(--clr-accent);
  border-color: var(--clr-bg-dark);
}
.btn--dark:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.btn--lg { padding: 18px 46px; font-size: 0.85rem; }

/* --------------------------------------------------------------------------
   6. NAVIGACE
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}

.nav--scrolled {
  background: rgba(26, 26, 24, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  padding: 14px 40px;
}

.nav__logo { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--clr-white);
  letter-spacing: 0.01em;
}
.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--clr-accent);
  margin-top: 4px;
}

.nav__links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav__links a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--clr-white);
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--clr-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--clr-accent-light); }

.nav__cta { padding: 11px 26px; }
.nav__links-cta { display: none; }   /* jen na mobilu */

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  z-index: 1100;
}
.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobilní panel */
.nav__mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease);
  z-index: 1050;
}
.nav__mobile-backdrop.is-open { opacity: 1; visibility: visible; }

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26, 26, 24, 0.45) 0%,
    rgba(26, 26, 24, 0.55) 55%,
    rgba(26, 26, 24, 0.75) 100%);
  z-index: -1;
}

.hero__inner {
  position: relative;
  max-width: 900px;
  z-index: 2;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--clr-accent-light);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(3.4rem, 9vw, 6rem);
  line-height: 0.98;
  color: var(--clr-white);
  margin-bottom: 1.75rem;
}
.hero__line { display: block; }
.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Signature nůžky */
.hero__scissors {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  z-index: 1;
}
.hero__scissors .scissors-line { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

/* Scroll indikátor */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--clr-white);
  opacity: 0.8;
}
.hero__scroll svg { width: 26px; height: 26px; }

/* Malý hero (podstránky) */
.subhero {
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 60px;
  overflow: hidden;
  background: var(--clr-bg-dark);
}
.subhero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  z-index: 0;
}
.subhero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,26,24,0.85) 0%, rgba(26,26,24,0.55) 100%);
}
.subhero__inner { position: relative; z-index: 2; width: 100%; max-width: 1220px; margin: 0 auto; }
.subhero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  color: var(--clr-white);
  line-height: 1.02;
}
.subhero__title--italic { font-style: italic; }
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--clr-accent-light); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--clr-white); }
.breadcrumb span { color: rgba(255, 255, 255, 0.4); }

/* --------------------------------------------------------------------------
   8. "PROČ K NÁM" — feature karty
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  padding: 44px 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
              background 0.35s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 150, 106, 0.45);
  background: rgba(255, 255, 255, 0.05);
}
.feature-card__icon {
  width: 54px;
  height: 54px;
  color: var(--clr-accent);
  margin-bottom: 24px;
}
.feature-card__icon svg { width: 100%; height: 100%; }
.feature-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--clr-white);
}
.feature-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   9. SLUŽBY — preview grid
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 44px 34px 40px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-accent);
}
.service-card__num {
  position: absolute;
  top: 10px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 600;
  color: var(--clr-accent);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
}
.service-card__name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 10px;
  position: relative;
}
.service-card__desc {
  color: var(--clr-text-muted);
  font-size: 0.92rem;
  font-weight: 300;
  margin-bottom: 22px;
  min-height: 46px;
}
.service-card__price {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-primary);
}
.service-card__price span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin-left: 4px;
}

.services-cta {
  margin-top: 56px;
  text-align: center;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-primary);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow:hover { gap: 18px; color: var(--clr-accent); }

/* --------------------------------------------------------------------------
   10. RECENZE
   -------------------------------------------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.review-card {
  position: relative;
  padding: 48px 34px 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.review-card__quote {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--clr-accent);
  opacity: 0.55;
  height: 34px;
}
.review-card__stars {
  color: var(--clr-accent);
  letter-spacing: 2px;
  margin: 8px 0 16px;
  font-size: 0.95rem;
}
.review-card__text {
  font-style: italic;
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  flex-grow: 1;
}
.review-card__author {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.review-card__author strong {
  display: block;
  color: var(--clr-accent-light);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 2px;
}

/* --------------------------------------------------------------------------
   11. REZERVACE CTA (zlatý pás)
   -------------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, #B8966A 0%, #D4B896 50%, #B8966A 100%);
  color: var(--clr-bg-dark);
  text-align: center;
  padding: 96px 24px;
}
.cta-band h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--clr-bg-dark);
  margin-bottom: 1rem;
}
.cta-band p {
  color: rgba(26, 26, 24, 0.8);
  max-width: 520px;
  margin: 0 auto 2.25rem;
  font-size: 1.075rem;
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--clr-bg-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 84px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 56px;
  align-items: start;
}
.footer__logo-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--clr-white);
}
.footer__logo-sub {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--clr-accent);
  margin: 4px 0 20px;
}
.footer__about {
  font-size: 0.92rem;
  font-weight: 300;
  max-width: 320px;
  line-height: 1.7;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--clr-accent);
  margin-bottom: 22px;
}
.footer__links li { margin-bottom: 12px; }
.footer__links a {
  font-size: 0.92rem;
  transition: color 0.25s, padding-left 0.25s;
}
.footer__links a:hover { color: var(--clr-accent-light); padding-left: 6px; }

.footer__contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.92rem;
}
.footer__contact li svg {
  width: 18px;
  height: 18px;
  color: var(--clr-accent);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer__contact a:hover { color: var(--clr-accent-light); }

.footer__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.footer__map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer__bottom a { color: rgba(255, 255, 255, 0.6); }
.footer__bottom a:hover { color: var(--clr-accent-light); }

/* --------------------------------------------------------------------------
   13. SLUŽBY — stránka (tabbed + tabulka)
   -------------------------------------------------------------------------- */
.tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.tab {
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--clr-accent);
  color: var(--clr-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.tab:hover { background: rgba(184, 150, 106, 0.12); }
.tab.is-active {
  background: var(--clr-accent);
  color: var(--clr-bg-dark);
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeIn 0.5s var(--ease) both; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table th {
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--clr-text-muted);
  padding: 20px 28px;
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
}
.price-table th:last-child,
.price-table td:last-child { text-align: right; }
.price-table td {
  padding: 20px 28px;
  border-bottom: 1px solid var(--clr-border);
  border-left: 3px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover td {
  background: rgba(184, 150, 106, 0.06);
  border-left-color: var(--clr-accent);
}
.price-table__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-text);
}
.price-table__desc {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--clr-text-muted);
  margin-top: 2px;
}
.price-table__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-primary);
  white-space: nowrap;
}
.price-table__price small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-text-muted);
  margin-right: 5px;
}

/* Balíčky */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.package-card {
  padding: 44px 34px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  background: var(--clr-white);
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.package-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.package-card h3 { font-size: 1.8rem; margin-bottom: 16px; }
.package-card__list {
  margin: 0 auto 24px;
  max-width: 240px;
}
.package-card__list li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  border-bottom: 1px dashed var(--clr-border);
}
.package-card__list li:last-child { border-bottom: none; }
.package-card__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 4px;
}
.package-card__price small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --------------------------------------------------------------------------
   14. O NÁS
   -------------------------------------------------------------------------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.story__text { padding-left: 32px; border-left: 3px solid var(--clr-accent); }
.story__text p { margin-bottom: 1.25rem; color: var(--clr-text-muted); font-weight: 300; font-size: 1.02rem; }
.story__text p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 600;
  float: left;
  line-height: 0.8;
  margin: 6px 12px 0 0;
  color: var(--clr-accent);
}
.story__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.story__img img { width: 100%; height: 100%; object-fit: cover; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.value {
  text-align: center;
  padding: 20px;
}
.value__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 22px;
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--clr-border);
  border-radius: 50%;
  padding: 14px;
}
.value__icon svg { width: 100%; height: 100%; }
.value h3 { font-size: 1.5rem; margin-bottom: 10px; }
.value p { color: var(--clr-text-muted); font-weight: 300; font-size: 0.95rem; }

/* Statistiky */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 600;
  color: var(--clr-accent);
  line-height: 1;
}
.stat__label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
}

/* --------------------------------------------------------------------------
   15. GALERIE
   -------------------------------------------------------------------------- */
.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--clr-border);
  background: var(--clr-white);
  color: var(--clr-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { border-color: var(--clr-accent); color: var(--clr-primary); }
.filter-btn.is-active {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
}

.gallery {
  columns: 3;
  column-gap: 18px;
}
.gallery__item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  transition: transform 0.5s var(--ease);
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 24, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item:hover::after { opacity: 1; }
.gallery__caption {
  position: absolute;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  color: var(--clr-white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s var(--ease);
}
.gallery__item:hover .gallery__caption { opacity: 1; transform: translateY(0); }
.gallery__item.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 9, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 82vw;
  max-height: 82vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  color: var(--clr-white);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s var(--ease);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--clr-accent); color: var(--clr-bg-dark); border-color: var(--clr-accent); }
.lightbox__close { top: 28px; right: 28px; font-size: 1.5rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 1.6rem; }
.lightbox__nav--prev { left: 28px; }
.lightbox__nav--next { right: 28px; }

/* --------------------------------------------------------------------------
   16. REZERVACE
   -------------------------------------------------------------------------- */
.booking-wrapper { max-width: 760px; margin: 0 auto; }
.booking-placeholder {
  text-align: center;
  padding: 64px 40px;
  border: 2px solid var(--clr-accent);
  border-radius: var(--radius-lg);
  background: var(--clr-white);
  box-shadow: var(--shadow-md);
}
.booking-placeholder__icon { font-size: 3.4rem; margin-bottom: 18px; }
.booking-placeholder h3 { font-size: 2rem; margin-bottom: 10px; }
.booking-placeholder > p { color: var(--clr-text-muted); margin-bottom: 28px; font-weight: 300; }
.booking-alternative {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--clr-border);
}
.booking-alternative p { font-size: 0.9rem; color: var(--clr-text-muted); margin-bottom: 10px; }
.phone-link {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--clr-primary);
  transition: color 0.25s;
}
.phone-link:hover { color: var(--clr-accent); }

/* Timeline kroky */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.step { text-align: center; position: relative; }
.step__num {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.step h3 { font-size: 1.4rem; margin-bottom: 8px; }
.step p { color: var(--clr-text-muted); font-weight: 300; font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   17. KONTAKT
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--clr-border);
}
.contact-info__item:first-child { padding-top: 0; }
.contact-info__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(184, 150, 106, 0.14);
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.contact-info__icon svg { width: 100%; height: 100%; }
.contact-info__item h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--clr-text-muted);
  margin-bottom: 5px;
}
.contact-info__item p, .contact-info__item a {
  font-size: 1.05rem;
  color: var(--clr-text);
}
.contact-info__item a:hover { color: var(--clr-accent); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}
.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.95rem;
}
.hours-table td:last-child { text-align: right; font-weight: 500; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table tr.is-today td {
  color: var(--clr-primary);
  font-weight: 700;
}
.hours-table tr.is-today td:first-child::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-accent);
  margin-right: 8px;
  vertical-align: middle;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 460px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }

/* Formulář */
.contact-form {
  display: grid;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: var(--clr-white);
  color: var(--clr-text);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(184, 150, 106, 0.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: rgba(44, 74, 53, 0.1);
  border: 1px solid var(--clr-primary);
  color: var(--clr-primary);
  font-weight: 500;
}
.form-success.is-visible { display: block; animation: fadeIn 0.4s var(--ease) both; }

/* --------------------------------------------------------------------------
   18. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --space-section: 90px; }
  .features-grid,
  .services-grid,
  .reviews-grid,
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .gallery { columns: 2; }
}

@media (max-width: 768px) {
  .nav { padding: 18px 22px; }
  .nav--scrolled { padding: 12px 22px; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    width: 78%;
    max-width: 340px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 40px 44px;
    background: var(--clr-bg-dark);
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease);
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.4);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.4rem; font-family: var(--font-display); }
  .nav__links .nav__links-cta { display: block; margin-top: 10px; }

  .features-grid,
  .services-grid,
  .reviews-grid,
  .packages-grid,
  .values-grid,
  .steps { grid-template-columns: 1fr; }

  .story { grid-template-columns: 1fr; gap: 40px; }
  .story__text { order: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__grid > *:nth-child(3) { grid-column: 1 / -1; }
  .gallery { columns: 1; }
  .container { padding: 0 22px; }

  .price-table th,
  .price-table td { padding: 16px 16px; }
  .price-table__desc { display: none; }

  .hero { padding: 110px 22px 70px; }
  .hero__scissors { bottom: 60px; }
}

@media (max-width: 480px) {
  :root { --space-section: 70px; }
  .btn { padding: 13px 26px; font-size: 0.74rem; }
  .hero__cta { flex-direction: column; width: 100%; }
  .hero__cta .btn { width: 100%; }
  .feature-card,
  .service-card,
  .package-card { padding: 32px 24px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-band { padding: 70px 22px; }
}
