:root {
  --ivory: #faf6f0;
  --ivory-dark: #f0ebe3;
  --header-pink: #fdf2f5;
  --header-pink-stripe: #f9e6ec;
  --pink-accent: #d47898;
  --pink-accent-dark: #b85f7e;
  --rose: #9e5a72;
  --rose-deep: #6b3d50;
  --gold: #c4a265;
  --gold-light: #e8d5b0;
  --text: #3d2f35;
  --text-muted: #7a6670;
  --white: #ffffff;
  --shadow-soft: 0 2px 24px rgba(61, 47, 53, 0.06);
  --shadow-lux: 0 8px 40px rgba(61, 47, 53, 0.08);

  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --header-height: 92px;
  --container: 960px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  background: var(--ivory);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--rose); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--pink-accent); }
ul { list-style: none; }
address { font-style: normal; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Header — růžové pozadí pro logo ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--header-pink);
  background-image: repeating-linear-gradient(
    90deg,
    var(--header-pink) 0,
    var(--header-pink) 20px,
    var(--header-pink-stripe) 20px,
    var(--header-pink-stripe) 40px
  );
  border-bottom: 1px solid rgba(212, 120, 152, 0.15);
  padding-top: env(safe-area-inset-top, 0);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}

.logo {
  flex-shrink: 1;
  min-width: 0;
  max-width: calc(100% - 52px);
}

.logo img {
  height: 82px;
  max-height: 12vw;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
  padding: 10px 16px;
  transition: color 0.25s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--pink-accent-dark);
}

.main-nav a.nav-rezervace {
  background: var(--rose-deep);
  color: var(--white) !important;
  letter-spacing: 0.12em;
  margin-left: 8px;
}

.main-nav a.nav-rezervace:hover {
  background: var(--rose);
  color: var(--white) !important;
}

.main-nav a.nav-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-deep);
  padding: 10px 12px;
}

.main-nav a.nav-instagram:hover {
  color: var(--pink-accent-dark);
}

.main-nav a.nav-instagram svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--rose-deep);
  transition: 0.25s;
}

/* ===== Hero ===== */
.hero {
  padding: 88px 0 72px;
  text-align: center;
  border-bottom: 1px solid var(--ivory-dark);
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 500;
  color: var(--rose-deep);
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-title-sub {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 500;
  color: var(--pink-accent-dark);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-desc {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 36px;
  font-size: 0.95rem;
}

.hero-booking {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.hero-booking a {
  font-weight: 500;
  color: var(--rose-deep);
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  min-height: 48px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
}

.btn-primary {
  background: var(--rose-deep);
  color: var(--white);
  border-color: var(--rose-deep);
}

.btn-primary:hover {
  background: transparent;
  color: var(--rose-deep);
}

/* ===== Page header ===== */
.page-header {
  padding: 64px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--ivory-dark);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--rose-deep);
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.page-header p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.92rem;
}

/* ===== Services — foto vlevo, popis vpravo ===== */
.services {
  padding: 64px 0 80px;
}

.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--rose-deep);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.section-title p {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--ivory-dark);
}

.service-row:first-child { padding-top: 0; }
.service-row:last-child { border-bottom: none; }

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-row--featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--header-pink);
  padding: 48px 40px;
  margin: 16px 0;
  border: none;
  box-shadow: none;
  gap: 32px;
}

.service-row--featured.service-row--gold {
  flex-direction: row-reverse;
  align-items: center;
  text-align: left;
  background: #fdf8ee;
  gap: 48px;
}

.service-row--featured .service-image {
  flex: none;
  width: 240px;
  height: 240px;
  margin: 0 auto;
  border: none;
  box-shadow: var(--shadow-soft);
}

.service-row--featured.service-row--gold .service-image {
  margin: 0;
  flex-shrink: 0;
}

.service-row--featured .service-body p {
  max-width: 520px;
  margin: 0 auto;
}

.service-row--featured.service-row--gold .service-body p {
  margin: 0;
  max-width: 480px;
}

.service-image {
  flex: 0 0 200px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-body {
  flex: 1;
  min-width: 0;
}

.service-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--rose-deep);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.service-row--featured .service-body h3 {
  font-size: 1.9rem;
}

.service-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
}

/* ===== Price list ===== */
.price-section {
  padding: 48px 0 80px;
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 680px;
  margin: 0 auto;
}

.price-block {
  background: var(--white);
  padding: 40px 44px;
  border: 1px solid var(--ivory-dark);
  box-shadow: var(--shadow-soft);
}

.price-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--rose-deep);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gold-light);
  letter-spacing: 0.06em;
}

.price-block li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 24px;
  padding: 11px 0;
  border-bottom: 1px solid var(--ivory-dark);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.price-block li span:first-child {
  flex: 1 1 160px;
  min-width: 0;
}

.price-block li:last-child { border-bottom: none; }

.price-block .cena {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--rose);
  white-space: nowrap;
}

.price-note {
  text-align: center;
  margin-top: 48px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.price-info {
  max-width: 680px;
  margin: 32px auto 0;
  padding: 20px 28px;
  background: var(--white);
  border: 1px solid var(--gold-light);
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== Gallery ===== */
.gallery-section {
  padding: 48px 0 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--ivory-dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.03); }

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(61, 47, 53, 0.75));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== Contacts ===== */
.contact-section {
  padding: 48px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  background: var(--white);
  padding: 36px 32px;
  border: 1px solid var(--ivory-dark);
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--rose-deep);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.contact-card p,
.contact-card li {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--ivory-dark);
}

.contact-cta {
  margin-top: 40px;
}

.map-wrapper--centered {
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

.contact-card .btn {
  width: 100%;
  max-width: 280px;
}

.contact-card-cta {
  margin-top: 16px;
}

/* ===== Map ===== */
.map-section {
  padding: 0 0 72px;
}

.map-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--rose-deep);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.map-address {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}

.map-wrapper {
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ivory-dark);
  cursor: pointer;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
  pointer-events: none;
  filter: saturate(0.85);
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  background: rgba(61, 47, 53, 0);
  transition: background 0.25s;
}

.map-wrapper:hover .map-overlay {
  background: rgba(61, 47, 53, 0.12);
}

.map-hint {
  background: var(--white);
  color: var(--rose-deep);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--ivory-dark);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--rose-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 48px 0 calc(28px + env(safe-area-inset-bottom, 0));
  text-align: center;
}

.site-footer a { color: var(--gold-light); }
.site-footer a:hover { color: var(--white); }

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}

.footer-copy {
  font-size: 0.72rem;
  opacity: 0.55;
  margin-top: 20px;
  letter-spacing: 0.06em;
}

.footer-social {
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.footer-social a:hover {
  color: var(--white);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-instagram {
  margin-top: 12px;
}

.contact-instagram a {
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --header-height: 84px;
  }

  .service-row,
  .service-row.reverse {
    gap: 32px;
  }

  .service-image {
    flex: 0 0 160px;
    width: 160px;
    height: 160px;
  }

  .service-row--featured .service-image {
    flex: 0 0 200px;
    width: 200px;
    height: 200px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 76px;
  }

  .container {
    padding: 0 20px;
  }

  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    background-color: var(--header-pink);
    background-image: repeating-linear-gradient(
      90deg,
      var(--header-pink) 0,
      var(--header-pink) 20px,
      var(--header-pink-stripe) 20px,
      var(--header-pink-stripe) 40px
    );
    border-bottom: 1px solid rgba(212, 120, 152, 0.15);
    padding: 16px 20px 24px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .main-nav a {
    text-align: center;
    padding: 14px 16px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav a.nav-rezervace { margin-left: 0; }

  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .logo img {
    height: 56px;
    max-height: none;
  }

  .hero {
    padding: 48px 0 56px;
  }

  .hero-eyebrow {
    letter-spacing: 0.2em;
    font-size: 0.62rem;
  }

  .hero-title-main {
    letter-spacing: 0.04em;
  }

  .hero-title-sub {
    letter-spacing: 0.12em;
    margin-bottom: 24px;
  }

  .hero-desc {
    font-size: 0.9rem;
    padding: 0 4px;
  }

  .page-header {
    padding: 48px 0 36px;
  }

  .services {
    padding: 48px 0 64px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .service-row,
  .service-row.reverse,
  .service-row--featured,
  .service-row--featured.service-row--gold {
    flex-direction: column;
    text-align: center;
    padding: 28px 0;
    gap: 20px;
  }

  .service-row--featured {
    padding: 36px 24px;
    margin: 8px 0;
    gap: 24px;
  }

  .service-row--featured.service-row--gold {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .service-row--featured.service-row--gold .service-body p {
    margin: 0 auto;
  }

  .service-row--featured.service-row--gold .service-image {
    margin: 12px auto;
  }

  .service-image,
  .service-row--featured .service-image,
  .service-row--featured.service-row--gold .service-image {
    flex: none;
    width: min(200px, 70vw);
    height: min(200px, 70vw);
    margin: 12px auto;
  }

  .service-row--featured.service-row--gold .service-body p {
    margin: 0 auto;
  }

  .service-body p {
    max-width: none;
    margin: 0 auto;
    font-size: 0.88rem;
  }

  .service-body h3 {
    font-size: 1.45rem;
  }

  .service-row--featured .service-body h3 {
    font-size: 1.6rem;
  }

  .price-section,
  .gallery-section,
  .contact-section {
    padding: 36px 0 64px;
  }

  .price-block {
    padding: 28px 24px;
  }

  .price-block li {
    font-size: 0.85rem;
  }

  .price-block .cena {
    font-size: 1rem;
  }

  .price-info {
    padding: 16px 20px;
    font-size: 0.85rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card {
    padding: 28px 24px;
  }

  .hours-list li {
    flex-wrap: wrap;
    gap: 4px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .map-wrapper iframe {
    height: 260px;
  }

  .map-hint {
    font-size: 0.62rem;
    padding: 8px 16px;
  }

  .site-footer {
    padding: 40px 0 calc(24px + env(safe-area-inset-bottom, 0));
  }

  .footer-brand {
    font-size: 1.15rem;
  }
}

/* Malé telefony */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title-main {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .hero-title-sub {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
    letter-spacing: 0.08em;
  }

  .hero-eyebrow {
    letter-spacing: 0.12em;
    line-height: 1.6;
  }

  .btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 16px 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .price-block li {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .price-block .cena {
    align-self: flex-end;
  }

  .logo img {
    height: 48px;
  }
}

/* Velké obrazovky */
@media (min-width: 1200px) {
  :root {
    --container: 1040px;
  }

  .service-row {
    gap: 56px;
    padding: 44px 0;
  }
}
