/* =========================================================
   Beauty Studio Amélie — styles.css
   Soft luxe spa · pudrová / nude / béžová / zlatý akcent
   ========================================================= */

:root {
  /* Barvy */
  --c-cream:      #fbf7f3;
  --c-sand:       #f4ece4;
  --c-powder:     #f0e0d8;
  --c-nude:       #e6d0c4;
  --c-taupe:      #b79d8e;
  --c-cocoa:      #6b564c;
  --c-ink:        #33251f;
  --c-gold:       #c39b6a;
  --c-gold-soft:  #d9bd97;
  --c-white:      #ffffff;
  --c-line:       rgba(107, 86, 76, .14);

  /* Typografie */
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Rozměry */
  --maxw: 1180px;
  --maxw-narrow: 860px;
  --radius: 22px;
  --radius-sm: 14px;
  --nav-h: 76px;

  /* Stíny */
  --shadow-sm: 0 8px 24px rgba(107, 86, 76, .08);
  --shadow-md: 0 24px 60px rgba(107, 86, 76, .14);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--c-cocoa);
  background: var(--c-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--c-nude); color: var(--c-ink); }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; color: var(--c-ink); line-height: 1.08; }

/* ---------- Přístupnost ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--c-ink); color: var(--c-cream);
  padding: .6rem 1rem; border-radius: 8px; z-index: 200;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 3rem); }
.container--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: clamp(4.5rem, 10vw, 8rem); }

.section__head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section__eyebrow {
  font-size: .78rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--c-gold); font-weight: 500; margin-bottom: 1rem;
}
.section__title { font-size: clamp(2.2rem, 5.5vw, 3.6rem); margin-bottom: 1rem; }
.section__intro { font-size: 1.05rem; color: var(--c-taupe); }

/* ---------- Tlačítka ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .95rem 2rem;
  font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  border-radius: 100px; transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
  will-change: transform;
}
.btn--primary { background: var(--c-ink); color: var(--c-cream); }
.btn--primary:hover { background: var(--c-gold); color: var(--c-white); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--dark { background: var(--c-cocoa); color: var(--c-cream); }
.btn--dark:hover { background: var(--c-gold); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--ghost { border: 1px solid rgba(251,247,243,.6); color: var(--c-cream); }
.btn--ghost:hover { background: rgba(251,247,243,.14); transform: translateY(-3px); }
.btn--block { width: 100%; }

/* =========================================================
   NAVIGACE
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(251,247,243,.88);
  backdrop-filter: saturate(150%) blur(14px);
  box-shadow: 0 1px 0 var(--c-line);
  height: 64px;
}
.nav__inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between; }

.nav__logo { display: flex; align-items: center; gap: .6rem; color: var(--c-cream); transition: color .4s var(--ease); }
.nav.is-scrolled .nav__logo,
.nav.is-solid .nav__logo { color: var(--c-ink); }
.nav__logo-mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: var(--c-gold); color: var(--c-white);
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600;
}
.nav__logo-text { font-family: var(--font-serif); font-size: 1.35rem; letter-spacing: .02em; }

.nav__list { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav__link {
  position: relative; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-cream); transition: color .3s var(--ease);
}
.nav.is-scrolled .nav__link, .nav.is-solid .nav__link { color: var(--c-cocoa); }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--c-gold); transition: width .35s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav__link--cta {
  padding: .55rem 1.4rem; border: 1px solid currentColor; border-radius: 100px;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--c-gold); border-color: var(--c-gold); color: var(--c-white); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.nav__toggle span { width: 26px; height: 2px; background: var(--c-cream); border-radius: 2px; transition: transform .35s var(--ease), opacity .3s var(--ease), background .3s; }
.nav.is-scrolled .nav__toggle span, .nav.is-solid .nav__toggle span { background: var(--c-ink); }
.nav.is-open .nav__toggle span { background: var(--c-ink); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(51,37,31,.62) 0%, rgba(51,37,31,.28) 45%, rgba(51,37,31,.12) 100%),
    linear-gradient(to top, rgba(51,37,31,.55), transparent 40%);
}
.hero__content { max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 3rem); width: 100%; padding-top: var(--nav-h); }
.hero__eyebrow { color: var(--c-gold-soft); letter-spacing: .24em; text-transform: uppercase; font-size: .8rem; margin-bottom: 1.5rem; }
.hero__title {
  font-size: clamp(3rem, 9vw, 6.5rem); color: var(--c-cream); font-weight: 400;
  letter-spacing: -0.01em; margin-bottom: 1.5rem;
}
.hero__title em { font-style: italic; color: var(--c-gold-soft); }
.hero__lead { max-width: 30rem; color: rgba(251,247,243,.9); font-size: 1.1rem; margin-bottom: 2.4rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll { position: absolute; left: 50%; bottom: 2rem; translate: -50% 0; width: 26px; height: 42px;
  border: 1px solid rgba(251,247,243,.5); border-radius: 100px; display: grid; place-items: start center; padding-top: 8px; }
.hero__scroll-dot { width: 4px; height: 8px; border-radius: 4px; background: var(--c-cream); animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee { background: var(--c-ink); color: var(--c-sand); padding-block: 1.15rem; overflow: hidden; }
.marquee__track {
  display: flex; gap: 2.5rem; width: max-content;
  font-family: var(--font-serif); font-size: 1.5rem; font-style: italic; letter-spacing: .02em;
  animation: marquee 26s linear infinite; white-space: nowrap;
}
.marquee__track span:nth-child(even) { color: var(--c-gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   SLUŽBY
   ========================================================= */
.services { background: var(--c-cream); }
.services__grid {
  display: grid; gap: 1.6rem;
  grid-template-columns: repeat(2, 1fr);
}
.service-card {
  background: var(--c-white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(255,255,255,.6);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-card--wide { grid-column: 1 / -1; }
.service-card--wide { flex-direction: row; }
.service-card--wide .service-card__media { flex: 1 1 50%; }
.service-card--wide .service-card__body { flex: 1 1 50%; justify-content: center; }

.service-card__media { overflow: hidden; aspect-ratio: 4 / 3; }
.service-card--wide .service-card__media { aspect-ratio: auto; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.06); }

.service-card__body { padding: 1.8rem; display: flex; flex-direction: column; gap: .5rem; }
.service-card__title { font-size: 1.7rem; }
.service-card__desc { color: var(--c-taupe); font-size: .98rem; }
.service-card__price {
  margin-top: auto; padding-top: 1rem; font-family: var(--font-serif); font-size: 1.6rem; color: var(--c-ink);
  font-weight: 600;
}
.service-card__price span { font-family: var(--font-sans); font-size: .75rem; text-transform: uppercase; letter-spacing: .16em; color: var(--c-taupe); font-weight: 400; margin-right: .4rem; }

/* =========================================================
   CENÍK
   ========================================================= */
.pricing { background: linear-gradient(180deg, var(--c-sand), var(--c-cream)); }
.pricing__groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 5vw, 3.5rem); }
.pricing__group-title {
  font-size: 1.5rem; margin-bottom: 1.2rem; padding-bottom: .7rem;
  border-bottom: 1px solid var(--c-line); color: var(--c-cocoa);
}
.price-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.price-list li { display: flex; align-items: baseline; gap: .6rem; }
.price-list__name { color: var(--c-cocoa); }
.price-list__name em { font-style: normal; font-size: .78rem; letter-spacing: .06em; color: var(--c-taupe); text-transform: uppercase; margin-left: .4rem; }
.price-list__dots { flex: 1; border-bottom: 1px dotted var(--c-taupe); opacity: .5; translate: 0 -4px; }
.price-list__val { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--c-ink); white-space: nowrap; }
.pricing__cta { text-align: center; margin-top: clamp(2.5rem, 5vw, 4rem); }

/* =========================================================
   O STUDIU
   ========================================================= */
.about { background: var(--c-white); }
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about__media { position: relative; }
.about__portrait { border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; box-shadow: var(--shadow-md); }
.about__badge {
  position: absolute; right: -18px; bottom: -18px;
  background: var(--c-gold); color: var(--c-white); border-radius: 50%;
  width: 130px; height: 130px; display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-md); padding: 1rem;
}
.about__badge-num { font-family: var(--font-serif); font-size: 2.6rem; line-height: 1; }
.about__badge-label { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; margin-top: .3rem; }

.about__content .section__title { margin-bottom: 1.5rem; }
.about__text { color: var(--c-taupe); margin-bottom: 1.2rem; }
.about__quote {
  font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; color: var(--c-ink);
  line-height: 1.35; margin: 1.8rem 0; padding-left: 1.4rem; border-left: 2px solid var(--c-gold);
}
.about__quote cite { display: block; font-size: .9rem; font-style: normal; color: var(--c-taupe); margin-top: .8rem; letter-spacing: .04em; }

/* =========================================================
   GALERIE
   ========================================================= */
.gallery { background: var(--c-cream); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px; gap: 1.2rem;
}
.gallery__item { border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }

/* =========================================================
   DÁRKOVÉ POUKAZY
   ========================================================= */
.vouchers { background: linear-gradient(160deg, var(--c-powder), var(--c-sand)); }
.vouchers__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.vouchers__text { color: var(--c-cocoa); margin-bottom: 1.5rem; }
.vouchers__list { list-style: none; display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2rem; }
.vouchers__list li { position: relative; padding-left: 1.6rem; color: var(--c-cocoa); }
.vouchers__list li::before { content: "✦"; position: absolute; left: 0; color: var(--c-gold); }

.vouchers__card { perspective: 1200px; }
.voucher {
  aspect-ratio: 1.6 / 1; border-radius: var(--radius);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(255,255,255,.35), transparent 55%),
    linear-gradient(135deg, var(--c-cocoa), var(--c-ink));
  color: var(--c-cream); padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex; flex-direction: column; box-shadow: var(--shadow-md);
  border: 1px solid rgba(195,155,106,.4); position: relative; overflow: hidden;
  transition: transform .6s var(--ease);
}
.voucher::after {
  content: ""; position: absolute; inset: 12px; border: 1px solid rgba(195,155,106,.35); border-radius: 16px; pointer-events: none;
}
.vouchers__card:hover .voucher { transform: rotate3d(1, -1, 0, 6deg); }
.voucher__brand { font-family: var(--font-serif); font-size: 1.2rem; color: var(--c-gold-soft); letter-spacing: .04em; }
.voucher__label { font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; margin-top: .3rem; opacity: .8; }
.voucher__value { font-family: var(--font-serif); font-size: clamp(2.6rem, 7vw, 4rem); margin-top: auto; }
.voucher__note { font-size: .85rem; opacity: .75; }

/* =========================================================
   INSTAGRAM
   ========================================================= */
.instagram { background: var(--c-white); }
.instagram__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: .9rem; }
.instagram__item { position: relative; aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; }
.instagram__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.instagram__item::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: rgba(51,37,31,.28); opacity: 0; transition: opacity .4s var(--ease);
}
.instagram__icon {
  position: absolute; inset: 0; z-index: 2; display: grid; place-items: center;
  color: var(--c-white); font-size: 1.6rem; opacity: 0; transform: scale(.6); transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.instagram__item:hover::before { opacity: 1; }
.instagram__item:hover .instagram__icon { opacity: 1; transform: scale(1); }
.instagram__item:hover img { transform: scale(1.08); }

/* =========================================================
   REFERENCE
   ========================================================= */
.testimonials { background: linear-gradient(180deg, var(--c-cream), var(--c-sand)); }
.testimonials__carousel { position: relative; }
.testimonials__viewport { overflow: hidden; }
.testimonials__track { display: flex; list-style: none; transition: transform .7s var(--ease); }
.testimonial {
  flex: 0 0 100%; text-align: center; padding: clamp(1rem, 4vw, 2.5rem);
  display: flex; flex-direction: column; align-items: center; gap: 1.4rem;
}
.testimonial__stars { color: var(--c-gold); letter-spacing: .3em; font-size: 1.1rem; }
.testimonial__text { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.4rem, 3.5vw, 2rem); color: var(--c-ink); line-height: 1.4; max-width: 40rem; }
.testimonial__author { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c-cocoa); }
.testimonial__author span { display: block; color: var(--c-taupe); letter-spacing: .06em; margin-top: .2rem; }

.testimonials__controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
.testimonials__btn {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--c-line);
  color: var(--c-cocoa); font-size: 1.4rem; display: grid; place-items: center;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.testimonials__btn:hover { background: var(--c-gold); color: var(--c-white); border-color: var(--c-gold); }
.testimonials__dots { display: flex; gap: .6rem; }
.testimonials__dots button {
  width: 9px; height: 9px; border-radius: 50%; background: var(--c-nude); transition: background .3s, transform .3s;
}
.testimonials__dots button.is-active { background: var(--c-gold); transform: scale(1.3); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--c-white); }
.faq__list { display: flex; flex-direction: column; gap: 1rem; }
.faq__item { border: 1px solid var(--c-line); border-radius: var(--radius-sm); background: var(--c-cream); overflow: hidden; transition: border-color .3s var(--ease); }
.faq__item[open] { border-color: var(--c-gold-soft); }
.faq__q {
  list-style: none; cursor: pointer; padding: 1.3rem 1.6rem;
  font-family: var(--font-serif); font-size: 1.3rem; color: var(--c-ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; font-family: var(--font-sans); font-weight: 300; font-size: 1.6rem; color: var(--c-gold); transition: transform .35s var(--ease); }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 1.6rem 1.4rem; color: var(--c-taupe); }

/* =========================================================
   REZERVACE
   ========================================================= */
.booking { background: linear-gradient(180deg, var(--c-sand), var(--c-powder)); }
.booking__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: start; }
.booking__text { color: var(--c-cocoa); margin: 1.2rem 0 2rem; }
.booking__contacts { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2rem; }
.booking__contacts li { display: flex; flex-direction: column; }
.booking__contacts-label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--c-gold); margin-bottom: .2rem; }
.booking__contacts a { color: var(--c-ink); font-size: 1.1rem; transition: color .3s; }
.booking__contacts a:hover { color: var(--c-gold); }
.booking__map { border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.booking__map iframe { display: block; filter: grayscale(.2) saturate(.85); }

.booking__form-wrap { background: var(--c-white); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.8rem); box-shadow: var(--shadow-md); }
.field { display: flex; flex-direction: column; margin-bottom: 1.2rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--c-cocoa); margin-bottom: .5rem; }
.field label span { color: var(--c-gold); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--c-ink);
  padding: .85rem 1rem; border: 1px solid var(--c-line); border-radius: 10px;
  background: var(--c-cream); transition: border-color .3s, background .3s, box-shadow .3s; width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--c-gold); background: var(--c-white);
  box-shadow: 0 0 0 3px rgba(195,155,106,.15);
}
.field--invalid input, .field--invalid select { border-color: #c0654e; background: #fdf3f0; }
.field__error { color: #c0654e; font-size: .78rem; margin-top: .4rem; min-height: 1em; }
.booking-form__status { margin-top: 1rem; text-align: center; font-size: .95rem; min-height: 1.4em; }
.booking-form__status.is-success { color: #4b7a52; }
.booking-form__status.is-error { color: #c0654e; }

/* =========================================================
   PATIČKA
   ========================================================= */
.footer { background: var(--c-ink); color: rgba(251,247,243,.72); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__logo { display: flex; align-items: center; gap: .6rem; color: var(--c-cream); font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 1rem; }
.footer__tagline { max-width: 20rem; }
.footer__title { font-family: var(--font-sans); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 1.2rem; font-weight: 500; }
.footer__list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer__list a { transition: color .3s; }
.footer__list a:hover { color: var(--c-gold-soft); }
.footer__list li { display: flex; justify-content: space-between; gap: 1rem; }
.footer__list li span { color: var(--c-taupe); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  padding-block: 1.8rem; border-top: 1px solid rgba(251,247,243,.12);
  font-size: .82rem; letter-spacing: .04em;
}

/* =========================================================
   PLOVOUCÍ PRVKY
   ========================================================= */
.float-cta {
  position: fixed; right: 1.6rem; bottom: 1.6rem; z-index: 90;
  background: var(--c-gold); color: var(--c-white);
  padding: .95rem 1.7rem; border-radius: 100px; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  box-shadow: var(--shadow-md); transform: translateY(140%); opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease), background .3s;
}
.float-cta.is-visible { transform: translateY(0); opacity: 1; }
.float-cta:hover { background: var(--c-ink); }

.float-phone {
  position: fixed; left: 1.3rem; bottom: 1.4rem; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%; display: none; place-items: center;
  background: var(--c-ink); color: var(--c-cream); box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), background .3s;
}
.float-phone:hover { background: var(--c-gold); transform: scale(1.06); }

/* =========================================================
   REVEAL ANIMACE (Intersection Observer fallback)
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONZIVITA
   ========================================================= */
@media (max-width: 960px) {
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px);
    background: var(--c-cream); box-shadow: var(--shadow-md);
    transform: translateX(100%); transition: transform .45s var(--ease);
    display: flex; align-items: center; padding: 2rem;
  }
  .nav.is-open .nav__menu { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 1.6rem; width: 100%; }
  .nav__link, .nav.is-scrolled .nav__link { color: var(--c-cocoa); font-size: 1rem; }
  .nav__link--cta { margin-top: .5rem; }
  .nav__toggle { display: flex; }
  .nav__toggle span { background: var(--c-cream); }
  .nav.is-scrolled .nav__toggle span { background: var(--c-ink); }

  .about__grid, .vouchers__grid, .booking__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 440px; margin-inline: auto; }
  .pricing__groups { grid-template-columns: 1fr; }
  .instagram__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .services__grid { grid-template-columns: 1fr; }
  .service-card--wide { flex-direction: column; }
  .service-card--wide .service-card__media { aspect-ratio: 4 / 3; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .float-phone { display: grid; }
  .float-cta { right: 1rem; bottom: 1rem; padding: .8rem 1.3rem; }
}

@media (max-width: 460px) {
  .field-row { grid-template-columns: 1fr; }
  .instagram__grid { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .about__badge { width: 104px; height: 104px; right: 0; }
}
