:root {
  --cream: #fbf7ef;
  --linen: #f1e6d8;
  --sand: #d8c2a9;
  --clay: #a0644b;
  --sage: #8f9782;
  --coffee: #2e211c;
  --brown: #5b4034;
  --white: #fffdf8;
  --line: rgba(46, 33, 28, 0.12);
  --shadow: 0 18px 50px rgba(46, 33, 28, 0.08);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--coffee);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--clay);
  color: var(--white);
}

.skip-link {
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -60px;
  z-index: 1000;
  background: var(--coffee);
  color: var(--white);
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.muted-band {
  background: var(--linen);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 239, 0.86);
  border-bottom: 1px solid rgba(46, 33, 28, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.brand span {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 700;
}

.brand small {
  margin-top: 5px;
  color: var(--brown);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 21px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  background: var(--coffee);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  min-height: 680px;
  min-height: min(680px, 86svh);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(28, 18, 14, 0.7), rgba(28, 18, 14, 0.3) 48%, rgba(28, 18, 14, 0.06)),
    linear-gradient(0deg, rgba(28, 18, 14, 0.62), rgba(28, 18, 14, 0.04) 48%);
}

.hero-content {
  padding: 190px 0 92px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2d8be;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  font-size: clamp(58px, 9vw, 118px);
}

h2 {
  max-width: 820px;
  font-size: clamp(40px, 5vw, 72px);
}

h3 {
  font-size: 31px;
}

.hero-subtitle {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.55;
}

.hero-note {
  max-width: 580px;
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.86);
}

.hero-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--coffee);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--clay);
}

.button-light {
  background: rgba(255, 253, 248, 0.12);
  border-color: rgba(255, 253, 248, 0.45);
  color: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--white);
  color: var(--coffee);
}

.button-outline {
  border-color: rgba(46, 33, 28, 0.22);
  color: var(--coffee);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--coffee);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 64px;
  align-items: start;
}

.lead {
  max-width: 820px;
  margin: 22px 0 0;
  font-size: clamp(21px, 2.2vw, 31px);
  line-height: 1.45;
  color: var(--brown);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) 1fr;
  gap: 74px;
  align-items: center;
}

.about-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-copy p:not(.section-kicker) {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--brown);
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--clay);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: end;
}

.split-heading p:last-child {
  margin: 0;
  color: var(--brown);
}

.split-heading span {
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.price-card,
.education-list article,
blockquote,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.62);
}

.service-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-card h3,
.service-card p {
  padding-inline: 18px;
}

.service-card h3 {
  margin-top: 20px;
  font-size: 28px;
}

.service-card p {
  margin: 12px 0 22px;
  color: var(--brown);
  font-size: 15px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  background: var(--white);
  color: var(--brown);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus-visible {
  background: var(--coffee);
  border-color: var(--coffee);
  color: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: var(--sand);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item.hide {
  display: none;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-item.bw img {
  filter: grayscale(1);
}

.gallery-item::after {
  content: "Zobrazit";
  position: absolute;
  inset: auto 14px 14px auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--coffee);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  padding: 28px;
}

.price-card.featured {
  background: var(--coffee);
  color: var(--white);
}

.price-card.soft {
  background: #eee3d3;
}

.price-card.wedding-card {
  grid-column: span 2;
  background: #eef0e8;
}

.package-label {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured .package-label {
  color: #e8c6a9;
}

.price {
  margin: 18px 0 16px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.price-card > p:not(.package-label):not(.price) {
  color: var(--brown);
}

.featured > p:not(.package-label):not(.price) {
  color: rgba(255, 253, 248, 0.78);
}

.price-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-top: 1px solid rgba(46, 33, 28, 0.1);
  color: var(--brown);
}

.featured li {
  border-color: rgba(255, 253, 248, 0.14);
  color: rgba(255, 253, 248, 0.84);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
}

.education-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.education-list {
  display: grid;
  gap: 16px;
}

.education-list article {
  padding: 26px;
}

.education-list p,
blockquote p,
.contact-copy p {
  color: var(--brown);
}

.article-title-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}

.article-title-row strong {
  color: var(--clay);
  white-space: nowrap;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

blockquote {
  margin: 0;
  padding: 28px;
}

blockquote p {
  margin: 0;
  font-size: 17px;
}

cite {
  display: block;
  margin-top: 20px;
  color: var(--clay);
  font-style: normal;
  font-weight: 800;
}

.contact {
  background: var(--white);
}

.contact-copy h2 {
  margin-bottom: 22px;
}

address {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  font-style: normal;
}

address a {
  color: var(--clay);
  font-weight: 800;
}

.social-links a,
.footer-contact a {
  color: var(--brown);
  font-weight: 800;
  border-bottom: 1px solid rgba(91, 64, 52, 0.35);
}

.contact-form {
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(46, 33, 28, 0.18);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--coffee);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(160, 100, 75, 0.12);
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--clay);
  font-weight: 700;
}

.site-footer {
  background: var(--coffee);
  color: var(--white);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 48px;
}

.footer-brand small,
.site-footer p,
.site-footer a,
.footer-bottom {
  color: rgba(255, 253, 248, 0.76);
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact div {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.12);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(20, 14, 12, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox figure {
  width: min(980px, 100%);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox figcaption {
  margin-top: 12px;
  color: var(--white);
  text-align: center;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  border: 1px solid rgba(255, 253, 248, 0.25);
  background: rgba(255, 253, 248, 0.12);
  color: var(--white);
  border-radius: 50%;
  transition: background 0.2s ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover,
.lightbox-close:focus-visible,
.lightbox-arrow:focus-visible {
  background: rgba(255, 253, 248, 0.24);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  font-size: 32px;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 42px;
  transform: translateY(-50%);
}

.lightbox-arrow.prev {
  left: 22px;
}

.lightbox-arrow.next {
  right: 22px;
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

@media (max-width: 1040px) {
  .service-grid,
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.wedding-card {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, 720px);
  }

  .section-pad {
    padding: 72px 0;
  }

  /* Bez backdrop-filtru — jinak by vytvářel containing block a uvěznil fixed mobilní menu do hlavičky */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(251, 247, 239, 0.96);
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 120;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    background: var(--cream);
    font-size: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-open .site-nav {
    transform: translateX(0);
  }

  .hero {
    min-height: 560px;
    min-height: min(560px, 82svh);
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(28, 18, 14, 0.74), rgba(28, 18, 14, 0.22)),
      linear-gradient(90deg, rgba(28, 18, 14, 0.42), rgba(28, 18, 14, 0.08));
  }

  .hero-content {
    padding: 112px 0 48px;
  }

  .intro-grid,
  .about-grid,
  .split-heading,
  .education-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand span {
    font-size: 26px;
  }

  .hero {
    min-height: 70vh;
    min-height: 70svh;
  }

  .hero-content {
    padding: 92px 0 40px;
  }

  h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  h2 {
    font-size: clamp(37px, 12vw, 52px);
  }

  h3 {
    font-size: 27px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .price-card.wedding-card {
    grid-column: auto;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .gallery-item.wide {
    aspect-ratio: 16 / 11;
  }

  .filter-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .filter-button {
    white-space: nowrap;
  }

  .price-card,
  .contact-form,
  blockquote {
    padding: 22px;
  }

  .article-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox-arrow.prev {
    left: 18px;
  }

  .lightbox-arrow.next {
    right: 18px;
  }
}

/* ---- Akční focení: hero baner, popup, rezervační sloty ---- */
.hero-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clay);
  color: #fff;
  padding: 9px 17px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.hero-promo:hover { background: #8c5440; text-decoration: none; }

.promo-popup { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; background: rgba(28, 18, 14, .55); padding: 20px; }
.promo-popup[hidden] { display: none; }
.promo-popup-card { background: var(--cream); border-radius: 16px; max-width: 440px; width: 100%; padding: 36px 32px; text-align: center; position: relative; box-shadow: 0 30px 80px rgba(0, 0, 0, .35); }
.promo-popup-card h3 { font-family: var(--serif); font-size: 34px; margin: 6px 0 12px; }
.promo-popup-card .button { width: 100%; margin-top: 8px; }
.promo-popup-close { position: absolute; top: 12px; right: 16px; border: 0; background: transparent; font-size: 28px; line-height: 1; cursor: pointer; color: var(--coffee); }

.alert-ok { background: #e6f4ea; color: #1e6b34; padding: 14px 16px; border-radius: 10px; }
.slot-day { margin: 16px 0; }
.slot-day h3 { margin: 0 0 8px; font-size: 18px; }
.slot-row { display: flex; flex-wrap: wrap; gap: 8px; }
.slot-pick { cursor: pointer; }
.slot-pick input { position: absolute; opacity: 0; width: 0; height: 0; }
.slot-pick span { display: inline-block; padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px; font-weight: 600; }
.slot-pick input:checked + span { background: var(--clay); color: #fff; border-color: var(--clay); }
.slot-pick input:focus-visible + span { outline: 2px solid var(--clay); outline-offset: 2px; }

/* admin sloty */
.slot-admin { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.slot-chip { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; padding: 5px 10px; border-radius: 8px; border: 1px solid var(--line); }
.slot-chip.booked { background: #f1e6d8; color: var(--coffee); }
.slot-chip form { display: inline; }
.slot-chip button { border: 0; background: transparent; color: #b42318; cursor: pointer; font-size: 15px; line-height: 1; }
