/* =====================================================================
   Statek Rozárka — svatební místo, jižní Morava
   Art direction: romantic / dreamy — pudrová, šalvějová, krém, teplé zlato
   ===================================================================== */

:root {
  /* palette */
  --cream:        #FAF5EE;
  --cream-2:      #F3EADD;
  --blush:        #EBD7CF;
  --blush-soft:   #F5E6E0;
  --sage:         #97A488;
  --sage-deep:    #6F7C61;
  --gold:         #C29A5B;
  --gold-deep:    #A87E3E;
  --ink:          #3B342E;
  --ink-soft:     #6A6058;
  --line:         #E4D8CC;
  --white:        #FFFDFA;

  /* type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* rhythm */
  --maxw: 1220px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 10vw, 8.5rem);
  --radius: 4px;
  --radius-lg: 10px;

  --shadow-sm: 0 2px 12px rgba(59, 52, 46, .06);
  --shadow-md: 0 18px 50px -22px rgba(59, 52, 46, .30);
  --shadow-lg: 0 40px 90px -40px rgba(59, 52, 46, .45);

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

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: .002em;
  margin: 0;
}

::selection { background: var(--blush); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -60px;
  background: var(--ink);
  color: var(--cream);
  padding: .6rem 1rem;
  border-radius: var(--radius);
  z-index: 1200;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- layout helpers ---------- */
.section {
  padding-block: var(--section-y);
}
.section__head {
  max-width: 680px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  padding-inline: var(--gutter);
}
.section__title {
  font-size: clamp(2rem, 1.4rem + 2.8vw, 3.4rem);
  letter-spacing: -0.01em;
}
.section__sub {
  color: var(--ink-soft);
  margin-top: 1rem;
  font-size: 1.075rem;
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin: 0 0 1rem;
}
.eyebrow--light { color: var(--blush); }
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px; height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: .7em;
  opacity: .8;
}

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  padding: .95em 1.9em;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .3s var(--ease),
              color .3s var(--ease), box-shadow .35s var(--ease), border-color .3s var(--ease);
  will-change: transform;
}
.btn--solid {
  background: var(--sage-deep);
  color: var(--white);
  box-shadow: 0 12px 30px -14px rgba(111, 124, 97, .8);
}
.btn--solid:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -16px rgba(59, 52, 46, .7);
}
.btn--ghost {
  background: rgba(255,253,250,.08);
  color: var(--white);
  border-color: rgba(255,253,250,.55);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,253,250,.16); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--sage);
}
.btn--outline:hover { background: var(--sage-deep); color: var(--white); border-color: var(--sage-deep); transform: translateY(-2px); }
.btn--lg { padding: 1.1em 2.4em; font-size: 1rem; }
.btn--block { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding-block: clamp(.8rem, 1.4vw, 1.25rem);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  transition: color .4s var(--ease);
}
.nav__mark { display: inline-flex; }
.nav__name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 1.9rem);
}
.nav__links a {
  color: var(--white);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .01em;
  position: relative;
  transition: color .3s var(--ease), opacity .3s var(--ease);
  opacity: .92;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__links a:not(.nav__cta):hover { opacity: 1; }
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); }
.nav__cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: .6em 1.25em;
  border-radius: 100px;
  font-weight: 600;
  opacity: 1;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.nav__cta:hover { background: var(--gold-deep); color: var(--white) !important; transform: translateY(-1px); }

/* scrolled state */
.nav.is-solid {
  background: rgba(250, 245, 238, .9);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.nav.is-solid .nav__brand,
.nav.is-solid .nav__links a { color: var(--ink); }
.nav.is-solid .nav__cta { color: var(--ink) !important; }
.nav.is-solid .nav__cta:hover { color: var(--white) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  height: 1.6px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease), background .4s var(--ease);
}
.nav.is-solid .nav__toggle span { background: var(--ink); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 22s ease-out forwards;
}
@keyframes kenburns {
  to { transform: scale(1); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(43,38,32,.55) 0%, rgba(43,38,32,.22) 38%, rgba(43,38,32,0) 70%),
    linear-gradient(180deg, rgba(43,38,32,.42) 0%, rgba(43,38,32,.12) 34%, rgba(43,38,32,.20) 62%, rgba(43,38,32,.66) 100%),
    radial-gradient(120% 90% at 50% 40%, rgba(43,38,32,0) 40%, rgba(43,38,32,.4) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 7rem var(--gutter) 6rem;
}
.hero__content > * { max-width: 720px; }
.hero__title {
  font-size: clamp(3rem, 1.6rem + 7vw, 6.4rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 40px rgba(43,38,32,.35);
}
.hero__title br { display: block; }
.hero__lede {
  margin-top: 1.6rem;
  font-size: clamp(1.05rem, 0.98rem + 0.5vw, 1.28rem);
  line-height: 1.6;
  color: rgba(255,253,250,.94);
  max-width: 560px;
  text-shadow: 0 1px 20px rgba(43,38,32,.3);
}
.hero__actions {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,253,250,.8);
}
.hero__scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(rgba(255,253,250,.9), rgba(255,253,250,0));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--white);
  animation: scrolldot 2.4s var(--ease) infinite;
}
@keyframes scrolldot {
  0%   { top: -50%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}

/* ============================================================
   REVEAL (IntersectionObserver)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero__media img { animation: none; transform: scale(1); }
}

/* ============================================================
   STORY / O MÍSTĚ
   ============================================================ */
.story__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.story__media {
  position: relative;
  aspect-ratio: 4 / 5;
}
.story__media > img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.story__media-inset {
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: 52%;
  aspect-ratio: 1 / 1;
  border: 8px solid var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.story__text p { color: var(--ink-soft); margin: 0 0 1.15rem; }
.story__text .section__title { margin-bottom: 1.4rem; }
.story__quote {
  margin: 2rem 0 0;
  padding: 1.4rem 0 0 1.6rem;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--ink);
}
.story__quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   PROSTORY
   ============================================================ */
.spaces { background: var(--cream-2); }
.spaces__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.space-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.space-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.space-card__media { aspect-ratio: 3 / 2; overflow: hidden; }
.space-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.space-card:hover .space-card__media img { transform: scale(1.06); }
.space-card__body { padding: clamp(1.5rem, 3vw, 2.2rem); position: relative; }
.space-card__num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold-deep);
  letter-spacing: .1em;
}
.space-card__body h3 {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 1.9rem);
  margin: .2rem 0 .7rem;
}
.space-card__body p { color: var(--ink-soft); margin: 0; }

/* ============================================================
   GALERIE
   ============================================================ */
.gallery__grid {
  max-width: 1340px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: clamp(.6rem, 1.2vw, 1rem);
}
.gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
  position: relative;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .5s var(--ease);
}
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(43,38,32,.28));
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__note {
  text-align: center;
  color: var(--ink-soft);
  margin: 2.4rem auto 0;
  font-size: .96rem;
}
.gallery__note a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   KAPACITA
   ============================================================ */
.capacity {
  background:
    linear-gradient(180deg, var(--blush-soft), var(--cream));
}
.capacity__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.capacity__intro { max-width: 680px; }
.capacity__stats {
  margin: clamp(2.5rem, 5vw, 3.5rem) 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border-block: 1px solid var(--line);
  padding-block: clamp(2rem, 4vw, 3rem);
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 1.6rem + 3.6vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
  color: var(--sage-deep);
}
.stat__label {
  display: block;
  margin-top: .6rem;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.capacity__list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 3rem;
}
.capacity__list li {
  break-inside: avoid;
  padding: .7rem 0 .7rem 1.9rem;
  position: relative;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.capacity__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.15rem;
  width: 9px; height: 9px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* ============================================================
   BALÍČKY
   ============================================================ */
.packages__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
}
.pkg {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pkg--featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.pkg--featured .pkg__for,
.pkg--featured .pkg__feat li { color: rgba(250,245,238,.82); }
.pkg--featured .pkg__feat li::before { color: var(--gold); }
.pkg__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .45em 1.1em;
  border-radius: 100px;
  white-space: nowrap;
}
.pkg__head h3 {
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2rem);
}
.pkg__for {
  margin: .3rem 0 0;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pkg__price {
  font-family: var(--serif);
  font-size: clamp(2rem, 1.5rem + 1.6vw, 2.7rem);
  margin: 1.2rem 0 1.4rem;
  line-height: 1;
}
.pkg__price span {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-block;
  margin-right: .4rem;
}
.pkg--featured .pkg__price span { color: rgba(250,245,238,.7); }
.pkg__feat {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}
.pkg__feat li {
  padding: .6rem 0 .6rem 1.6rem;
  position: relative;
  color: var(--ink-soft);
  font-size: .96rem;
  border-top: 1px solid var(--line);
}
.pkg--featured .pkg__feat li { border-color: rgba(250,245,238,.12); }
.pkg__feat li:first-child { border-top: 0; }
.pkg__feat li::before {
  content: "✦";
  position: absolute;
  left: 0; top: .55rem;
  color: var(--gold-deep);
  font-size: .8rem;
}
.pkg .btn { width: 100%; }

/* ============================================================
   JAK TO PROBÍHÁ
   ============================================================ */
.steps { background: var(--cream-2); }
.steps__list {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.6rem);
  counter-reset: step;
}
.step { position: relative; padding-top: 2.5rem; }
.step::before {
  content: "";
  position: absolute;
  top: 2.9rem; left: 0;
  width: 100%; height: 1px;
  background: var(--line);
  z-index: 0;
}
.step:last-child::before { display: none; }
.step__num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
}
.step h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.step p { color: var(--ink-soft); margin: 0; font-size: .98rem; }

/* ============================================================
   REFERENCE
   ============================================================ */
.reviews__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.2rem);
}
.review {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.review__stars { color: var(--gold); letter-spacing: .18em; margin-bottom: 1rem; }
.review blockquote {
  margin: 0 0 1.5rem;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.42;
  color: var(--ink);
  flex: 1;
}
.review figcaption { border-top: 1px solid var(--line); padding-top: 1rem; }
.review figcaption strong { display: block; font-weight: 600; }
.review figcaption span { font-size: .85rem; color: var(--ink-soft); letter-spacing: .03em; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 3rem 1.5rem 0;
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.05rem + .8vw, 1.55rem);
  color: var(--ink);
  transition: color .3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--sage-deep); }
.faq__item summary::after {
  content: "";
  position: absolute;
  right: .4rem; top: 50%;
  width: 14px; height: 14px;
  transform: translateY(-50%);
  background:
    linear-gradient(var(--gold-deep), var(--gold-deep)) center/14px 1.4px no-repeat,
    linear-gradient(var(--gold-deep), var(--gold-deep)) center/1.4px 14px no-repeat;
  transition: transform .4s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(135deg); }
.faq__answer {
  overflow: hidden;
  color: var(--ink-soft);
  padding-right: 3rem;
}
.faq__answer p { margin: 0 0 1.4rem; }
.faq__answer a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.faq__item[open] .faq__answer { animation: faqopen .5s var(--ease); }
@keyframes faqopen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.cta-band__media { position: absolute; inset: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,38,32,.55), rgba(43,38,32,.72));
}
.cta-band__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 9rem) var(--gutter);
}
.cta-band__content h2 {
  font-size: clamp(2.2rem, 1.5rem + 3.4vw, 4rem);
  margin-bottom: 1.2rem;
}
.cta-band__content p { color: rgba(255,253,250,.9); margin: 0 auto 2rem; max-width: 480px; }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact__details {
  list-style: none;
  padding: 0;
  margin: 2.4rem 0 0;
  display: grid;
  gap: 1.3rem;
}
.contact__details li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__ic {
  flex: none;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blush-soft);
  color: var(--gold-deep);
  font-size: 1.2rem;
}
.contact__k {
  display: block;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .1rem;
}
.contact__details a:hover { color: var(--gold-deep); }
.contact__details address { font-style: normal; }

/* form */
.contact__formwrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.form__row { margin-bottom: 1.2rem; }
.form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form__field { display: flex; flex-direction: column; }
.form__field > span {
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .5rem;
  font-weight: 600;
}
.form__field i { color: var(--gold-deep); font-style: normal; }
.form__field input,
.form__field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .8rem .95rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  width: 100%;
}
.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(151,164,136,.2);
}
.form__field textarea { resize: vertical; }
.form__field.is-invalid input,
.form__field.is-invalid textarea { border-color: #C0736A; background: #FBF1EF; }
.form__err {
  font-style: normal;
  font-size: .78rem;
  color: #B4544A;
  margin-top: .4rem;
  min-height: 0;
}
.form__consent {
  margin-bottom: 1.4rem;
  font-size: .88rem;
  color: var(--ink-soft);
}
.form__consent label { display: flex; gap: .6rem; align-items: flex-start; cursor: pointer; }
.form__consent input { margin-top: .25rem; accent-color: var(--sage-deep); flex: none; }
.form__consent.is-invalid { color: #B4544A; }
.form__success {
  margin: 1.2rem 0 0;
  padding: 1rem 1.2rem;
  background: var(--blush-soft);
  border-left: 3px solid var(--sage);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: .96rem;
}

.contact__map {
  max-width: var(--maxw);
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding-inline: var(--gutter);
}
.contact__map iframe {
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  filter: grayscale(.2) sepia(.08);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(250,245,238,.78);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer__brand .nav__mark { color: var(--blush); }
.footer__name {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--cream);
  margin: .6rem 0 .3rem;
}
.footer__tag { margin: 0; font-size: .92rem; max-width: 22ch; }
.footer__col h4 {
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  font-weight: 700;
}
.footer__col a, .footer__col p, .footer__col address {
  display: block;
  font-style: normal;
  color: rgba(250,245,238,.78);
  margin-bottom: .6rem;
  font-size: .95rem;
  transition: color .3s var(--ease);
}
.footer__col a:hover { color: var(--cream); }
.footer__hours { color: var(--blush) !important; }
.footer__cta {
  margin-top: .6rem;
  display: inline-block !important;
  color: var(--gold) !important;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.footer__bottom {
  border-top: 1px solid rgba(250,245,238,.12);
  padding: 1.6rem var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  font-size: .82rem;
  color: rgba(250,245,238,.55);
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translate(-50%, 140%);
  z-index: 900;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: .95rem;
  padding: .95em 1.8em;
  border-radius: 100px;
  box-shadow: var(--shadow-lg);
  transition: transform .5s var(--ease), background .3s var(--ease);
}
.sticky-cta.is-visible { transform: translate(-50%, 0); }
.sticky-cta:active { background: var(--gold-deep); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(43,38,32,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 4rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 100%;
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: scale(.96);
  transition: transform .4s var(--ease);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(250,245,238,.1);
  border: 1px solid rgba(250,245,238,.3);
  color: var(--cream);
  cursor: pointer;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .3s var(--ease), transform .3s var(--ease);
  backdrop-filter: blur(4px);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(250,245,238,.24); }
.lightbox__close {
  top: 1.4rem; right: 1.6rem;
  width: 48px; height: 48px;
  font-size: 1.6rem; line-height: 1;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  font-size: 2rem; line-height: 1;
}
.lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__nav--prev { left: 1.4rem; }
.lightbox__nav--next { right: 1.4rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84vw, 360px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.4rem;
    padding: 5rem 2.5rem;
    background: var(--cream);
    box-shadow: -20px 0 60px -30px rgba(59,52,46,.6);
    transform: translateX(100%);
    transition: transform .5s var(--ease);
  }
  .nav.is-open .nav__links { transform: translateX(0); }
  .nav__links a { color: var(--ink) !important; font-size: 1.15rem; }
  .nav__links a:not(.nav__cta)::after { display: none; }
  .nav__cta { margin-top: .5rem; }
  .nav__toggle { display: flex; }

  .story__grid { grid-template-columns: 1fr; }
  .story__media { max-width: 520px; margin: 0 auto; aspect-ratio: 4/3; }
  .story__media-inset { width: 44%; right: -4%; }

  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .spaces__grid { grid-template-columns: 1fr; }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 2; }
  .capacity__stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .capacity__list { columns: 1; }
  .packages__grid { grid-template-columns: 1fr; max-width: 460px; }
  .pkg--featured { order: -1; }
  .steps__list { grid-template-columns: 1fr 1fr; }
  .step::before { display: none; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 480px; }
  .form__row--2 { grid-template-columns: 1fr; }
  .lightbox__nav { width: 44px; height: 44px; font-size: 1.6rem; }
  .footer__bottom { flex-direction: column; }
}

@media (max-width: 420px) {
  .steps__list { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; }
}
