/* ============================================================
   BELLA STUDIO — style.css
   ============================================================ */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --cream:   #FAFAF6;
  --white:   #FFFFFF;
  --brown:   #3C1F15;
  --b06:  rgba(60, 31, 21, 0.06);
  --b10:  rgba(60, 31, 21, 0.10);
  --b18:  rgba(60, 31, 21, 0.18);
  --b30:  rgba(60, 31, 21, 0.30);
  --b55:  rgba(60, 31, 21, 0.55);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Marcellus', Georgia, serif;

  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring: cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h:      68px;
  --pad-sec:    clamp(88px, 11vw, 148px);
  --container:  1160px;
  --pad-x:      clamp(24px, 5.5vw, 80px);

  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;

  --shadow-sm: 0 1px 3px rgba(60,31,21,.04), 0 6px 20px rgba(60,31,21,.06);
  --shadow-md: 0 2px 8px rgba(60,31,21,.04), 0 20px 48px rgba(60,31,21,.08);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--brown);
  font-family: var(--font-body);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 200;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), box-shadow .4s var(--ease);
}

.site-header.scrolled {
  background: rgba(250, 250, 246, 0.80);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  box-shadow: 0 1px 0 var(--b10), 0 4px 20px rgba(60,31,21,.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--nav-h);
  padding-inline: var(--pad-x);
  position: relative;
}

.nav-links { display: flex; gap: clamp(24px, 3vw, 48px); }

.nav-link {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--brown);
  position: relative;
  padding-bottom: 3px;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--brown);
  transition: width .32s var(--ease);
}
.nav-link:hover::after, .nav-link:focus::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 300;
  position: absolute;
  right: var(--pad-x);
}
.hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--brown);
  transition: transform .35s var(--ease), opacity .35s var(--ease), width .35s var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(250, 250, 246, 0.96);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform .44s var(--ease);
  pointer-events: none;
}
.nav-overlay.open { transform: translateX(0); pointer-events: all; }

.nav-mobile-links { display: flex; flex-direction: column; align-items: center; gap: 36px; }
.nav-mobile-link {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  position: relative;
  padding-bottom: 4px;
}
.nav-mobile-link::after {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: 0; width: 0; height: 1px;
  background: var(--brown);
  transition: width .3s var(--ease);
}
.nav-mobile-link:hover::after { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  background: var(--cream);
  overflow: hidden;
}

/* Warm atmospheric blobs — give the glass strip content to blur */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(200, 175, 148, 0.20) 0%, transparent 52%),
    radial-gradient(ellipse at 78% 68%, rgba(190, 165, 138, 0.15) 0%, transparent 46%);
}


/* ---- Brand centerpiece ---- */
.hero-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(14px, 2vw, 24px);
}

.hero-logo {
  width: clamp(260px, 42vw, 580px);
  height: auto;
  /* multiply blends white bg into the cream background */
  mix-blend-mode: multiply;
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  animation: heroUp 1.1s var(--spring) .05s forwards;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: clamp(9px, 0.85vw, 11px);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0;
  animation: heroFade .8s ease .58s forwards;
}
.hero-location .hero-location__line {
  display: block;
  width: 24px; height: 1px;
  background: var(--b30);
}

@keyframes heroUp   { to { opacity:1; transform: translateY(0) scale(1); } }
@keyframes heroFade { to { opacity:1; transform: translateY(0); } }

@keyframes glassShimmer {
  0%   { transform: translateX(-120%) skewX(-15deg); opacity: 0; }
  20%  { opacity: 0.45; }
  80%  { opacity: 0.45; }
  100% { transform: translateX(520%) skewX(-15deg); opacity: 0; }
}

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(3px); }
}

/* ---- Scroll indicator ---- */
.hero-scroll {
  position: absolute;
  bottom: calc(clamp(24px, 4vw, 52px) + 116px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  opacity: 0;
  animation: heroFade 0.8s var(--ease) 1.6s forwards;
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
  z-index: 5;
}

.hero-scroll__line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, rgba(60, 31, 21, 0.28));
  transform-origin: top;
  animation: scrollLineDraw 2.4s ease-in-out 2.2s infinite;
}

.hero-scroll__chevron {
  animation: chevronBounce 2.4s ease-in-out 2.2s infinite;
}

@keyframes scrollLineDraw {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50%       { transform: scaleY(1);   opacity: 1; }
}

@keyframes chevronBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}

/* ---- Glass service icons ---- */
.hero-icons {
  position: absolute;
  bottom: clamp(24px, 4vw, 52px);
  left: 0; right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(24px, 5vw, 72px);
  z-index: 10;
  opacity: 0;
  transform: translateY(16px);
  animation: heroFade .9s var(--spring) .88s forwards;
}

.hero-icons__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: default;
}

.hero-icons__circle {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 8px 32px rgba(60, 31, 21, 0.08),
    0 2px 8px rgba(60, 31, 21, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(60, 31, 21, 0.06);
  transition:
    transform  .35s var(--ease),
    box-shadow .35s var(--ease),
    background .35s ease;
  animation: floatBob 4s ease-in-out var(--bob-delay, 2s) infinite;
}

.hero-icons__circle img { height: 46px; width: auto; mix-blend-mode: multiply; display: block; }

.hero-icons__item:nth-child(1) .hero-icons__circle { --bob-delay: 2s; }
.hero-icons__item:nth-child(3) .hero-icons__circle { --bob-delay: 2.5s; }
.hero-icons__item:nth-child(5) .hero-icons__circle { --bob-delay: 3s; }

.hero-icons__item:hover .hero-icons__circle {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 16px 40px rgba(60, 31, 21, 0.10),
    0 4px 12px rgba(60, 31, 21, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(60, 31, 21, 0.06);
}

.hero-icons__label {
  font-family: var(--font-body);
  font-size: clamp(9px, 0.8vw, 11px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.55;
  transition: opacity .25s ease;
}

.hero-icons__item:hover .hero-icons__label { opacity: 0.85; }

.hero-icons__sep {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(60, 31, 21, 0.18), transparent);
  flex-shrink: 0;
  align-self: center;
  margin-bottom: 28px;
}

/* ============================================================
   SECTION TITLE (shared)
   ============================================================ */
.section-title {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(26px, 3.8vw, 48px);
  letter-spacing: 0.05em;
  color: var(--brown);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.25;
}

/* Animated underline that draws in on scroll */
.section-underline {
  width: 0;
  height: 1px;
  background: var(--brown);
  opacity: 0.30;
  margin-inline: auto;
  margin-bottom: clamp(48px, 6.5vw, 88px);
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.section-underline.visible { width: 80px; }

/* ============================================================
   O NÁS
   ============================================================ */
.o-nas {
  padding-block: var(--pad-sec);
}

.o-nas .section-title {
  margin-bottom: clamp(36px, 5vw, 64px);
}

.o-nas__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.owner-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 48px;
  box-shadow: var(--shadow-md);
  display: block;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.owner-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(60,31,21,0.13);
}

.owner-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.owner-bio {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.85;
  opacity: 0.80;
  margin-bottom: 14px;
}

.owner-address {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  opacity: 0.55;
}

/* ============================================================
   SERVICES
   ============================================================ */
.sluzby {
  padding-block: var(--pad-sec);
  background: rgba(255, 255, 255, 0.50);
}

.sluzby__hint {
  text-align: center;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--brown);
  opacity: 0.45;
  letter-spacing: 0.04em;
  margin-bottom: clamp(20px, 2.5vw, 32px);
}

.sluzby__hint--mobile { display: none; }

@media (hover: none) {
  .sluzby__hint--desktop { display: none; }
  .sluzby__hint--mobile  { display: inline; }
}

.sluzby__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
}

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(60, 31, 21, 0.06);
  box-shadow: var(--shadow-sm);
  padding: clamp(32px, 4vw, 52px) clamp(20px, 2.5vw, 36px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: default;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity      0.6s var(--ease),
    transform    0.5s var(--spring),
    box-shadow   0.5s var(--ease),
    border-color 0.5s var(--ease);
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card.visible:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 64px rgba(60, 31, 21, 0.12);
  border-color: rgba(60, 31, 21, 0.12);
}

.service-card__icon { margin-bottom: 4px; display: flex; justify-content: center; }
.service-card__icon img { height: 96px; width: auto; mix-blend-mode: multiply; display: block; }

.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--brown);
}

.service-card__sub {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--brown);
  opacity: 0.60;
}

/* ---- Service card pop-out details ---- */
.service-card__details {
  width: 100%;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(8px);
  transition:
    max-height 0.55s var(--spring),
    opacity    0.3s  var(--ease),
    transform  0.38s var(--spring);
}

.service-card.visible:hover .service-card__details {
  max-height: 560px;
  opacity: 1;
  transform: translateY(0);
}

.service-card__line {
  width: 0;
  height: 1px;
  background: rgba(60, 31, 21, 0.10);
  margin: 14px 0 10px;
  transition: width 0.45s var(--spring);
  transition-delay: 0.04s;
}

.service-card.visible:hover .service-card__line { width: 100%; }

.service-card__list {
  list-style: none;
  width: 100%;
}

.service-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px solid rgba(60, 31, 21, 0.05);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

.service-card__list li:last-child { border-bottom: none; }

.service-card.visible:hover .service-card__list li { opacity: 1; transform: translateY(0); }
.service-card.visible:hover .service-card__list li:nth-child(1) { transition-delay: 0.08s; }
.service-card.visible:hover .service-card__list li:nth-child(2) { transition-delay: 0.14s; }
.service-card.visible:hover .service-card__list li:nth-child(3) { transition-delay: 0.20s; }
.service-card.visible:hover .service-card__list li:nth-child(4) { transition-delay: 0.26s; }
.service-card.visible:hover .service-card__list li:nth-child(5) { transition-delay: 0.32s; }
.service-card.visible:hover .service-card__list li:nth-child(6) { transition-delay: 0.38s; }

.service-card__list-name {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brown);
  opacity: 0.72;
  text-align: left;
}

.service-card__list-note {
  display: block;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-style: italic;
  opacity: 0.55;
  margin-top: 2px;
  line-height: 1.4;
}

.service-card__list-price {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--brown);
  opacity: 0.42;
  letter-spacing: 0.06em;
  white-space: nowrap;
  margin-left: 12px;
}

.service-card__book {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity   0.28s var(--ease),
    transform 0.28s var(--ease),
    gap       0.25s var(--spring);
  transition-delay: 0.26s;
}

.service-card.visible:hover .service-card__book { opacity: 0.58; transform: translateY(0); }
.service-card__book:hover { opacity: 1 !important; gap: 12px; }

/* ---- Botanical decorations ---- */
.hero-flora {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}

.hero-flora--left {
  bottom: -24px;
  left: -24px;
  width: clamp(200px, 24vw, 360px);
  animation: floraFadeIn 1.8s var(--ease) 0.15s forwards;
}

.hero-flora--right {
  bottom: -24px;
  right: -24px;
  width: clamp(160px, 19vw, 290px);
  animation: floraFadeInR 1.8s var(--ease) 0.35s forwards;
}

.hero-flora--top-left {
  top: -20px;
  left: -20px;
  width: clamp(150px, 17vw, 255px);
  animation: floraFadeInTop 1.8s var(--ease) 0.5s forwards;
}

.hero-flora--top-right {
  top: -20px;
  right: -20px;
  width: clamp(120px, 14vw, 210px);
  animation: floraFadeInTopR 1.8s var(--ease) 0.65s forwards;
}

@keyframes floraFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 0.19; transform: translateY(0); }
}

@keyframes floraFadeInR {
  from { opacity: 0; transform: scaleX(-1) translateY(12px); }
  to   { opacity: 0.19; transform: scaleX(-1) translateY(0); }
}

@keyframes floraFadeInTop {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 0.17; transform: translateY(0); }
}

@keyframes floraFadeInTopR {
  from { opacity: 0; transform: scaleX(-1) translateY(-10px); }
  to   { opacity: 0.17; transform: scaleX(-1) translateY(0); }
}

@media (max-width: 768px) {
  .hero-flora--left      { width: clamp(130px, 38vw, 200px); }
  .hero-flora--right     { width: clamp(100px, 28vw, 160px); }
  .hero-flora--top-left  { width: clamp(110px, 30vw, 170px); }
  .hero-flora--top-right { width: clamp(90px,  24vw, 140px); }
}

@media (max-width: 480px) {
  .hero-flora--right     { display: none; }
  .hero-flora--top-right { display: none; }
  .hero-flora--left      { width: 140px; }
  .hero-flora--top-left  { width: 110px; }
}

/* ============================================================
   ANIMATED SECTION TITLE
   ============================================================ */
.animated-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  --ul-len: 320;
}

.animated-title .section-title {
  margin-bottom: 0;
  transition: transform 0.4s var(--ease);
}

.animated-title:hover .section-title {
  transform: scale(1.02);
}

.animated-underline {
  display: block;
  width: clamp(180px, 36vw, 380px);
  height: 20px;
  margin-top: 10px;
  overflow: visible;
}

.underline-path {
  stroke-dasharray: var(--ul-len);
  stroke-dashoffset: var(--ul-len);
  transition:
    stroke-dashoffset 1.5s ease-in-out 0.2s,
    d                 0.8s var(--ease)  0s;
}

.animated-title.visible .underline-path {
  stroke-dashoffset: 0;
}

@supports (d: path("M 0 0")) {
  .animated-title:hover .underline-path {
    d: path("M 0,10 Q 75,20 150,10 Q 225,0 300,10");
  }
}

/* ============================================================
   GALLERY / SWIPER
   ============================================================ */
.galerie {
  padding-block: var(--pad-sec);
  overflow: hidden;
}

.galerie .container { margin-bottom: 0; }

.galerie-swiper {
  width: 100%;
  padding: 16px 0 56px;
}

.galerie-swiper .swiper-slide {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow .4s var(--ease);
}

.galerie__card {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--b06);
}

.galerie__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.galerie-swiper .swiper-slide-active .galerie__card img {
  transform: scale(1.03);
}

/* Swiper pagination — brand color */
.galerie-swiper .swiper-pagination-bullet {
  background: var(--brown);
  opacity: 0.22;
}
.galerie-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--brown);
}

/* Swiper nav arrows — brand color */
.galerie-swiper .swiper-button-prev,
.galerie-swiper .swiper-button-next {
  color: var(--brown);
  --swiper-navigation-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(250, 250, 246, 0.72);
  border: 1px solid var(--b10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .3s var(--ease), transform .3s var(--spring);
}
.galerie-swiper .swiper-button-prev:hover,
.galerie-swiper .swiper-button-next:hover {
  background: rgba(250, 250, 246, 0.95);
  transform: scale(1.08);
}
.galerie-swiper .swiper-button-prev::after,
.galerie-swiper .swiper-button-next::after {
  font-size: 13px;
  font-weight: 600;
}

/* ============================================================
   BOOKING
   ============================================================ */
.objednavky {
  padding-block: var(--pad-sec);
  position: relative;
  overflow: hidden;
}

.booking-deco {
  position: absolute;
  right: -30px;
  bottom: -20px;
  width: 220px;
  pointer-events: none;
}

.booking-eyebrow {
  text-align: center;
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.38;
  margin-bottom: 12px;
}

.booking-rule {
  width: 36px;
  height: 1px;
  background: var(--brown);
  opacity: 0.18;
  margin: 18px auto 26px;
}

.booking-intro {
  text-align: center;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.85;
  max-width: 480px;
  margin: 0 auto clamp(52px, 7vw, 80px);
  opacity: 0.65;
}

.booking-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.5vw, 28px);
  max-width: 860px;
  margin-inline: auto;
}

.booking-panel {
  background: var(--white);
  border-radius: 28px;
  border: 1px solid var(--b06);
  box-shadow:
    0 8px 32px rgba(60,31,21,0.06),
    0 2px 8px rgba(60,31,21,0.04);
  padding: clamp(52px, 7vw, 84px) clamp(28px, 4vw, 52px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--brown);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity   .8s var(--ease),
    transform .45s var(--ease),
    box-shadow .38s var(--ease),
    border-color .38s ease;
}
.booking-panel.visible { opacity: 1; transform: translateY(0); }
.booking-panel.visible:hover {
  transform: translateY(-10px);
  box-shadow:
    0 28px 64px rgba(60,31,21,0.10),
    0 8px 24px rgba(60,31,21,0.06);
  border-color: rgba(60,31,21,0.10);
}

.booking-panel__eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.4;
}

.booking-panel__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(60,31,21,0.04);
  border: 1px solid rgba(60,31,21,0.07);
  margin: 6px 0;
  transition: background .35s ease, transform .35s var(--ease);
}
.booking-panel.visible:hover .booking-panel__icon {
  background: rgba(60,31,21,0.07);
  transform: scale(1.1);
}

.booking-panel__contact {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--brown);
}

.booking-panel__cta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.32;
  margin-top: 6px;
  transition: opacity .3s, gap .3s var(--ease);
}
.booking-panel.visible:hover .booking-panel__cta {
  opacity: 0.6;
  gap: 10px;
}

.booking-note {
  text-align: center;
  font-size: 13px;
  color: var(--brown);
  opacity: 0.38;
  margin-top: 36px;
  letter-spacing: 0.03em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  padding-bottom: 0;
}

.footer-flora {
  position: absolute;
  bottom: 0;
  pointer-events: none;
}
.footer-flora--l { left: -20px; width: 180px; }
.footer-flora--r { right: -20px; width: 180px; transform: scaleX(-1); }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-logo-img {
  height: clamp(28px, 3.5vw, 40px);
  width: auto;
  opacity: 0.85;
  align-self: flex-start;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--brown);
  letter-spacing: 0.01em;
}

.footer-address-block {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-addr-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--brown);
  opacity: 0.65;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.footer-addr-row svg { margin-top: 2px; flex-shrink: 0; }

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--brown);
  opacity: 0.65;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity .25s;
}
.footer-contact-link:hover { opacity: 1; }

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--b10);
  transition: transform .3s var(--ease), background .3s ease, border-color .3s ease;
}
.social-link:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,.7);
  border-color: var(--b18);
}

.footer-map-wrap {
  border-radius: 24px;
  overflow: hidden;
  height: clamp(300px, 38vw, 480px);
  box-shadow:
    0 24px 64px rgba(60,31,21,0.10),
    0 4px 16px rgba(60,31,21,0.06);
  border: 1px solid rgba(60,31,21,0.07);
}

.footer-map {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.footer-divider {
  width: calc(100% - clamp(40px, 10vw, 120px));
  margin: 0 auto;
  height: 1px;
  background: var(--b10);
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  padding-block: 22px;
}

.footer-website {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.07em;
  color: var(--brown);
  opacity: 0.38;
  text-decoration: none;
  transition: opacity .3s;
}
.footer-website:hover { opacity: 0.65; }

.footer-copy {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--brown);
  opacity: 0.28;
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .o-nas__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .o-nas__photo { margin-inline: auto; max-width: 280px; width: 100%; }
  .owner-address { justify-content: center; }

  .sluzby__grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .booking-panels { max-width: 500px; margin-inline: auto; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-brand__bella { font-size: clamp(72px, 22vw, 160px); }
  .hero-brand__studio { font-size: clamp(20px, 6.5vw, 52px); }

  .hero-icons { gap: 20px; }
  .hero-icons__circle { width: 56px; height: 56px; }
  .hero-icons__circle svg { width: 24px; height: 24px; }
  .hero-icons__circle img { height: 34px; width: auto; }
  .hero-icons__sep { height: 28px; margin-bottom: 20px; }

  .booking-panels { grid-template-columns: 1fr; max-width: 360px; }
  .booking-deco { display: none; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-map-wrap { height: 280px; }
  .footer-flora { display: none; }
  .footer-bar { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-brand__bella { font-size: clamp(64px, 25vw, 120px); }

  .hero-icons { gap: 14px; }
  .hero-icons__label { display: none; }
}
