@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --cream: #F5F0E6;
  --warm-white: #FAF7F2;
  --tan: #C9A96E;
  --brown: #6B4C2A;
  --dark-brown: #2C1A0E;
  --text-dark: #1C1208;
  --text-mid: #5C4A32;
  --text-light: #9A8A72;
  --text-muted: #BEB0A0;
  --border: rgba(139, 110, 70, 0.15);
  --green-dark: #2D3B28;
  --cream: #F5F0E8;
  --stone: #C8B89A;
  --earth: #7A6248;
  --forest: #2D3E2F;
  --midnight: #1A1A14;
  --gold: #B8903A;
  --fog: #E8E2D8;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }
}
/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--tan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
  opacity: 0;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  body:hover .cursor,
  body:hover .cursor-ring {
    opacity: 1;
  }
  body.dialog-open {
    cursor: auto;
  }
  body.dialog-open .cursor,
  body.dialog-open .cursor-ring {
    opacity: 0 !important;
  }
}
@media (hover: none), (pointer: coarse) {
  .cursor,
  .cursor-ring {
    display: none;
  }
}
/* ─── NAV ─── */
nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 80px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, backdrop-filter 0.3s;
}
nav.scrolled {
  background: rgb(255, 255, 255);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
}
nav.scrolled .nav-logo svg {
  transform: scale(1);
  transform-origin: top left;
  top: 0;
}
nav.scrolled .nav-logo svg path {
  fill: #12120D;
}
nav.scrolled .nav-logo svg path:nth-of-type(8) {
  fill: #FFC233;
}
nav.scrolled .nav-logo svg path:last-of-type {
  fill: #F2A900;
}
nav.scrolled .nav-links a {
  color: var(--text-dark);
}

.nav-logo img {
  height: 60px;
  position: relative;
  top: 50px;
  left: -10px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: grid;
  max-width: 540px;
  margin: 7px auto;
  padding: 7px;
  background-color: white;
  transform: translateY(-150%);
  height: 56px;
  transition: transform 0.3s, height 0.3s;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.mobile-nav .mobile-nav-actions {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.mobile-nav .mobile-nav-list-inner {
  display: block;
  padding-top: 45px;
}
.mobile-nav .mobile-nav-list-inner-header {
  display: flex;
  width: 100%;
  justify-content: center;
}
.mobile-nav .mobile-nav-list-inner-header img {
  height: 25px;
  margin: auto;
}
.mobile-nav .mobile-nav-list-inner ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 15px;
}
.mobile-nav .mobile-nav-list-inner ul li {
  width: 100%;
  list-style: none;
}
.mobile-nav .mobile-nav-list-inner ul li a {
  display: block;
  font-size: 21px;
  letter-spacing: 0.12em;
  font-family: "Marcellus", serif;
  color: var(--text-dark);
  text-decoration: none;
  text-transform: unset;
  padding: 24px 12px;
  transition: background-color 0.2s;
  width: 100%;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .mobile-nav-list-inner ul li a:hover {
  background-color: var(--cream);
}
.mobile-nav .mobile-nav-list-inner ul li:last-of-type a {
  border-bottom: none;
}
.mobile-nav .mobile-nav-toggle {
  border: none;
  background: transparent;
  font-size: 18px;
  height: 42px;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  color: var(--text-dark);
  cursor: pointer;
}
.mobile-nav .mobile-nav-link {
  display: flex;
  gap: 24px;
  list-style: none;
  background-color: var(--warm-white);
  padding: 12px 16px;
  border-radius: 5px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 500;
}
.mobile-nav .mobile-nav-logo {
  height: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0px;
  transition: height 0.3s;
}
.mobile-nav .nav-links {
  display: none;
}
.mobile-nav .mobile-nav-list-wrapper {
  height: 0;
  overflow: hidden;
  transition: height 0.3s, padding 0.3s;
}
.mobile-nav.scrolled {
  transform: translateY(0);
}
.mobile-nav.mobile-nav-open .mobile-nav-logo {
  height: 60px;
}

/* ─── HERO ─── */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-img {
  position: absolute;
  inset: 0;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 12, 4, 0.72) 0%, rgba(20, 12, 4, 0.3) 55%, rgba(20, 12, 4, 0.1) 100%);
  z-index: 1;
}

.hero-img.loaded {
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 80px;
  max-width: 780px;
  align-self: center;
}

.hero-content-wrapper {
  display: flex;
  max-width: 1600px;
  margin: auto;
  height: 100%;
  width: 100%;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title {
  font-family: "Marcellus", serif;
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
  max-width: 700px;
}

.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.hero-title .word {
  /* Stagger the animation for each word */
}
.hero-title .word span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(1) span {
  animation-delay: 0.3s;
}
.hero-title .word span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(2) span {
  animation-delay: 0.45s;
}
.hero-title .word span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(3) span {
  animation-delay: 0.6s;
}
.hero-title .word span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(4) span {
  animation-delay: 0.75s;
}
.hero-title .word span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(5) span {
  animation-delay: 0.9s;
}
.hero-title .word span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(6) span {
  animation-delay: 1.05s;
}
.hero-title .word span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(7) span {
  animation-delay: 1.2s;
}
.hero-title .word span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(8) span {
  animation-delay: 1.35s;
}
.hero-title .word span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(9) span {
  animation-delay: 1.5s;
}
.hero-title .word span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(10) span {
  animation-delay: 1.65s;
}
.hero-title .word span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(11) span {
  animation-delay: 1.8s;
}
.hero-title .word span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(12) span {
  animation-delay: 1.95s;
}
.hero-title .word span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(13) span {
  animation-delay: 2.1s;
}
.hero-title .word span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(14) span {
  animation-delay: 2.25s;
}
.hero-title .word span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(15) span {
  animation-delay: 2.4s;
}
.hero-title .word span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(16) span {
  animation-delay: 2.55s;
}
.hero-title .word span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(17) span {
  animation-delay: 2.7s;
}
.hero-title .word span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(18) span {
  animation-delay: 2.85s;
}
.hero-title .word span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(19) span {
  animation-delay: 3s;
}
.hero-title .word span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(20) span {
  animation-delay: 3.15s;
}

.hero-subtitle {
  font-size: 21px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 48px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
  letter-spacing: 0.03em;
}

.hero-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: 48px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 80px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2;
  opacity: 0;
  border-radius: 200px;
  background: transparent;
  padding: 10px 14px;
  backdrop-filter: blur(15px);
  animation: fadeUp 1s 1.5s forwards;
}
.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.4em;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  writing-mode: vertical-rl;
}

.scroll-bar {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--warm-white), transparent);
  animation: scrollLine 2s 2s infinite;
}

.hero-product {
  position: relative;
  height: 100%;
  flex: 1;
  display: flex;
  align-items: center;
}
.hero-product .hero-product-photo {
  z-index: 1;
}
.hero-product .hero-product-back {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(200px);
}

.hero.product {
  max-height: 840px;
  display: flex;
  align-items: stretch;
  background-color: white;
}
.hero.product .hero-content .hero-title {
  font-size: clamp(48px, 6vw, 64px);
  color: var(--text-dark);
}
.hero.product .hero-content .hero-subtitle {
  color: var(--text-light);
}
.hero.product .hero-img {
  position: relative;
}

.hero.onas .hero-content {
  align-self: flex-end;
}
.hero.onas .hero-description {
  color: var(--warm-white);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}
@keyframes scrollDrop {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
/* ─── SECTION: Poctivosť ─── */
.pocti-section {
  padding: 0px 80px;
  text-align: center;
  background: var(--warm-white);
  position: relative;
}
.pocti-section > * {
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: "Marcellus", serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle-accent {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--tan);
  margin-bottom: 32px;
}

.section-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto 48px;
  font-weight: 300;
}

.landscape-line {
  width: 100%;
  margin: 26px auto 34px;
  position: absolute;
  bottom: -170px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.landscape-line-svg {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.2;
}

.landscape-line-svg path {
  fill: none;
  stroke: var(--tan);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

@keyframes landscapeLineDraw {
  to {
    stroke-dashoffset: 0;
  }
}
/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.in {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

.d4 {
  transition-delay: 0.4s;
}

.d5 {
  transition-delay: 0.5s;
}

.d6 {
  transition-delay: 0.6s;
}

/* Progress bar */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--tan);
  z-index: 999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── SECTION: Prečo Boží dar ─── */
#floralCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
}

.preco-section {
  padding: 0 80px;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.preco-section > * {
  position: relative;
  z-index: 1;
}

.preco-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.feature-card {
  position: relative;
  height: 550px;
  overflow: hidden;
  cursor: pointer;
}
.feature-card:hover .feature-card-img {
  transform: scale(1.06);
}
.feature-card:hover .feature-card-wrapper {
  height: 100%;
}
.feature-card:hover .feature-card-content {
  opacity: 0;
}
.feature-card:hover .feature-card-desc {
  opacity: 0;
}
.feature-card:hover .feature-card-content .feature-card-desc {
  opacity: 1;
  height: 100px;
  color: var(--text-light);
}
.feature-card:hover .feature-card-overlay-full {
  opacity: 1;
}
.feature-card:hover .feature-card-content-hover {
  opacity: 1;
}
.feature-card:hover .feature-card-content-hover .feature-card-desc-hover {
  opacity: 1;
  color: var(--text-light);
}
.feature-card:hover .feature-card-content-hover .feature-card-title-hover span {
  transform: translateY(0);
}

.feature-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-card:hover .feature-card-desc {
  opacity: 0;
}

.feature-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 10, 4, 0.85) 0%, rgba(15, 10, 4, 0.2) 60%, transparent 100%);
  transition: background 0.3s;
}

.feature-card-overlay-full {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 4, 0.65);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 20px;
}

.feature-card-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: background 0.2s;
}

.feature-card:hover .feature-card-arrow {
  background: rgba(255, 255, 255, 0.15);
}

.feature-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  transition: opacity 0.15s;
}
.feature-card-content .feature-card-desc {
  opacity: 0;
  height: 0px;
  overflow: hidden;
  transition: opacity 0.3s, height 0.3s;
}

.feature-card-title {
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
  transition: color 0.3s, font-size 0.3s;
}

.feature-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.85);
  padding: 16px 32px;
  transition: opacity 0.25s;
}

.feature-card-content-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.15s;
}

.feature-card-title-hover {
  font-family: "Marcellus", serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
  overflow: hidden;
  color: var(--warm-white);
}
.feature-card-title-hover span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.feature-card-desc-hover {
  font-size: 14px;
  line-height: 1.7;
  color: var(--cream);
  padding: 0;
  opacity: 0;
  transition: opacity 0.25s ease-in-out 0.6s;
}

.feature-card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  height: 470px;
  transition: height 1.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* divider line */
.divider-line-vertical {
  width: 1px;
  height: 1px;
  margin: 60px auto;
  background: linear-gradient(90deg, var(--border) 50%, transparent 50%) repeat-x, linear-gradient(90deg, var(--border) 50%, transparent 50%) repeat-x, linear-gradient(0deg, var(--border) 50%, transparent 50%) repeat-y, linear-gradient(0deg, var(--border) 50%, transparent 50%) repeat-y;
  background-size: 15px 2px, 15px 2px, 2px 15px, 2px 15px;
  background-position: 0 0, 0 100%, 0 0, 100% 0;
}
.divider-line-vertical.reveal.in {
  height: 120px;
  transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.button {
  display: inline-block;
  padding: 12px 24px;
  color: var(--warm-white);
  border: 1px solid var(--border);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--text-dark);
  border-radius: 3px;
  transition: background 0.3s, color 0.3s;
}
.button:hover {
  color: var(--text-light);
}

.button--inverted {
  background: white;
  border: 1px solid var(--border);
  color: var(--text-dark);
}
.button--inverted:hover {
  color: var(--tan);
}

.button--outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border);
}
.button--outline:hover {
  background: var(--tan);
  color: #fff;
}

.button--outline-inverted {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border);
}
.button--outline-inverted:hover {
  background: transparent;
  color: var(--tan);
}

.button--link {
  background: transparent;
  color: var(--text-dark);
  border: none;
  padding: 12px 24px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
}
.button--link:hover {
  color: var(--green-dark);
}

.button--link-inverted {
  background: transparent;
  color: var(--warm-white);
  border: none;
  padding: 12px 24px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
}
.button--link-inverted:hover {
  color: var(--tan);
}

/* ─── SECTION: Produkty ─── */
.products-section {
  padding: 0 15px;
  padding-bottom: 150px;
  background: var(--warm-white);
  max-width: 1300px;
  margin: 0 auto;
}

.products-section .section-title {
  text-align: center;
  margin-bottom: 12px;
}

.products-intro {
  font-size: 14px;
  text-align: center;
  color: var(--text-light);
  max-width: 460px;
  margin: 0 auto 64px;
  line-height: 1.8;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}

.product-card {
  text-align: center;
  cursor: pointer;
}

.product-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  background: #F0EAE0;
  border-radius: 4px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: background 0.3s;
}

.product-card:hover .product-img-wrap {
  background: #E8E0D4;
}

.product-img-wrap img {
  width: 65%;
  height: 65%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08) translateY(-4px);
}

.product-name {
  font-family: "Marcellus", serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.product-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.product-meta span {
  margin: 0 8px;
  color: var(--border);
}

.product-dialog {
  position: fixed;
  inset: 0;
  margin: auto;
  border: 0;
  border-radius: 8px;
  padding: 0;
  width: min(560px, 100% - 32px);
  background: var(--warm-white);
  color: var(--text-dark);
}

.product-dialog::backdrop {
  background: rgba(28, 18, 8, 0.45);
}

.product-dialog-close-wrap {
  display: flex;
  justify-content: flex-end;
  padding: 10px 10px 0;
}

.product-dialog-close {
  border: 0;
  background: transparent;
  color: var(--text-light);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.product-dialog-content {
  padding: 0 28px 28px;
}

.product-dialog-title {
  font-family: "Marcellus", serif;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 16px;
  color: var(--text-dark);
}

.product-dialog-description {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ─── SECTION: Ako funguje ─── */
.ako-section {
  padding: 100px 80px;
  background: var(--cream);
}

.ako-section .section-title {
  text-align: center;
  margin-bottom: 12px;
}

.ako-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--tan);
  margin-bottom: 72px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.ako-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.ako-item {
  text-align: center;
}

.ako-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--tan);
  font-size: 20px;
}

.ako-title {
  font-family: "Marcellus", serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.ako-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-light);
}

/* ─── SECTION: Ľudia ─── */
.ludia-section {
  padding: 100px 0 100px 80px;
  background: var(--warm-white);
  overflow: hidden;
}

.ludia-header {
  padding-right: 80px;
  margin-bottom: 16px;
}

.ludia-header .section-title {
  text-align: center;
}

.ludia-intro {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--tan);
  max-width: 640px;
  margin: 0 auto 52px;
  line-height: 1.8;
  padding-right: 80px;
}

.ludia-carousel {
  display: flex;
  justify-content: center;
  gap: 20px;
  overflow-x: auto;
  padding-right: 80px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.ludia-carousel::-webkit-scrollbar {
  display: none;
}

.ludia-card {
  flex: 0 0 320px;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
}

.ludia-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.ludia-card-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ludia-card:hover .ludia-card-img {
  transform: scale(1.05);
}

.ludia-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 10, 4, 0.88) 0%, rgba(15, 10, 4, 0.1) 60%, transparent 100%);
}

.ludia-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.ludia-role {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 6px;
}

.ludia-name {
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}

.ludia-quote {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-family: "Marcellus", serif;
}

.carousel-nav {
  display: flex;
  gap: 12px;
  padding: 32px 0 0 0;
  padding-right: 80px;
  justify-content: center;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-mid);
  transition: border-color 0.2s, color 0.2s;
}

.carousel-btn:hover {
  border-color: var(--tan);
  color: var(--tan);
}

/* ─── FOOTER ─── */
footer {
  background: var(--green-dark);
  padding: 80px 80px 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
}

.footer-logo-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo-text img {
  width: 200px;
  height: auto;
  position: relative;
  left: -10px;
}

.footer-tagline {
  font-family: "Marcellus", serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

.stores-grid {
  position: relative;
}
.stores-grid .store-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  background-color: white;
  border-bottom: 1px solid var(--border);
  transition: background-color 0.2s;
}
.stores-grid .store-card:hover {
  background-color: var(--warm-white);
}
.stores-grid .store-card .store-card-text h3 {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
}
.stores-grid .store-card .store-card-text p {
  font-size: 13px;
  color: var(--text-light);
}
.stores-grid .store-card .store-card-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}
.stores-grid .store-card .store-card-actions .store-card-button {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 7px;
  place-content: center;
}
.stores-grid .store-card .store-card-actions .store-card-button:hover {
  border-color: var(--tan);
}
.stores-grid .store-card .store-card-actions .store-card-link {
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: underline;
  transition: color 0.2s;
}

.stores-section {
  display: grid;
  min-height: calc(100dvh - 300px);
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.stores-section .stores-section-list {
  background-color: white;
  padding: 40px;
  padding-left: calc((100vw - 1440px) / 2);
  padding-left: 80px;
  padding-top: 10rem;
}
.stores-section .stores-section-list .store-search {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 24px;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  margin-top: 40px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.stores-section .stores-section-map {
  position: sticky;
  height: 100%;
  max-height: 100dvh;
  top: 0;
  flex: 1;
}
.stores-section .stores-section-map iframe {
  width: 100%;
  height: 100% !important;
  border: none;
}

/* HODNOTY */
.hodnoty-section {
  background: var(--forest);
  position: relative;
  overflow: hidden;
  padding: 120px 40px;
}

.hodnoty-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 144, 58, 0.06), transparent 70%);
}

.hodnoty-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 300;
  text-align: center;
  margin-bottom: 100px;
  color: var(--warm-white);
  line-height: 1.2;
}

.hodnoty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(245, 240, 232, 0.05);
}

.hodnota-card {
  background: var(--forest);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.hodnota-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hodnota-card:hover::before {
  width: 100%;
}

.hodnota-card:hover {
  background: rgba(45, 62, 47, 0.8);
}

.hodnota-num {
  font-family: "Marcellus", serif;
  font-size: 40px;
  font-weight: 300;
  color: rgba(184, 144, 58, 0.1);
  line-height: 1;
  margin-bottom: 32px;
  transition: color 0.4s;
}

.hodnota-card:hover .hodnota-num {
  color: rgba(184, 144, 58, 0.25);
}

.hodnota-name {
  font-family: "Marcellus", serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hodnota-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.5);
}

/* PRÍSĽUB */
.prislub-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--midnight);
}

.prislub-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(45, 62, 47, 0.5) 0%, transparent 70%);
}

.prislub-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.prislub-tag {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 60px;
}

.prislub-big {
  font-family: "Marcellus", serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 60px;
}

.prislub-big em {
  font-style: italic;
  color: var(--stone);
}

.prislub-sub {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.5);
  max-width: 500px;
  margin: 0 auto;
}

/* VÍZIA */
.vizia-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 120px;
  align-items: start;
  padding: 120px 80px;
  background: linear-gradient(to bottom, var(--midnight), rgba(26, 26, 20, 0.95));
}

.vizia-left {
  position: sticky;
  top: 140px;
}

.vizia-label {
  font-family: "Marcellus", serif;
  font-size: 9px;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.vizia-label::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.vizia-heading {
  font-family: "Marcellus", serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--warm-white);
}

.vizia-right {
  padding-top: 16px;
}

.vizia-item {
  padding: 48px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
  opacity: 0;
  color: var(--warm-white);
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.vizia-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.vizia-item:first-child {
  padding-top: 0;
}

.vizia-year {
  font-family: "Marcellus", serif;
  font-size: 13px;
  color: var(--gold);
  opacity: 0.7;
  padding-top: 4px;
  letter-spacing: 0.1em;
}

.vizia-item-title {
  font-family: "Marcellus", serif;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.2;
}

.vizia-item-body {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.5);
}

/* MANIFEST */
.manifest-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--earth);
  position: relative;
  overflow: hidden;
  padding: 160px 60px;
}

.manifest-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(26, 26, 20, 0.6), transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(26, 26, 20, 0.4), transparent 50%);
}

.manifest-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.manifest-quote {
  font-family: "Marcellus", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--midnight);
  margin-bottom: 48px;
  position: relative;
}

.manifest-quote::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: -20px;
  font-size: 120px;
  color: rgba(26, 26, 20, 0.1);
  font-family: "Marcellus", serif;
  line-height: 1;
}

.manifest-attr {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(26, 26, 20, 0.5);
  text-transform: uppercase;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  nav {
    padding: 0 32px;
  }
  .hero-content,
  .pocti-section,
  .preco-section,
  .ako-section {
    padding-left: 48px;
    padding-right: 48px;
  }
  .ludia-section {
    padding-left: 48px;
  }
  .ludia-header,
  .ludia-intro,
  .ludia-carousel,
  .carousel-nav {
    padding-right: 48px;
  }
  footer {
    padding-left: 48px;
    padding-right: 48px;
  }
  .cards-grid {
    gap: 16px;
  }
  .products-grid {
    gap: 32px;
  }
}
@media (max-width: 992px) {
  nav {
    padding: 0 24px;
  }
  .nav-links {
    gap: 18px;
  }
  .hero {
    min-height: 88vh;
    height: auto;
  }
  .hero-content {
    padding-top: 120px;
    padding-bottom: 90px;
  }
  .hero-scroll-hint {
    display: none;
  }
  .cards-grid,
  .products-grid,
  .ako-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-card {
    height: auto;
  }
  .feature-card-wrapper {
    height: 420px;
  }
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
  }
  .stores-section {
    grid-template-columns: 1fr;
  }
  .stores-section .stores-section-list {
    padding: 32px 24px;
  }
  .stores-section .stores-section-map {
    position: relative;
    top: auto;
    height: 420px;
    max-height: none;
  }
}
@media (max-width: 768px) {
  nav {
    height: 56px;
    padding: 0 16px;
  }
  .nav-links {
    gap: 12px;
  }
  .nav-links a {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .hero-content,
  .pocti-section,
  .preco-section,
  .ako-section,
  .ludia-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-content {
    padding-top: 104px;
    padding-bottom: 64px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .cards-grid,
  .products-grid,
  .ako-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .products-section {
    padding-bottom: 100px;
  }
  .product-dialog {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    overflow: auto;
  }
  .product-dialog-content {
    padding: 0 18px 18px;
  }
  .ludia-header,
  .ludia-intro,
  .ludia-carousel,
  .carousel-nav {
    padding-right: 0;
  }
  .ludia-card {
    flex: 0 0 82vw;
    height: 360px;
  }
  footer {
    padding: 56px 24px 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .stores-section .stores-section-list {
    padding: 24px 16px;
  }
  .stores-grid .store-card {
    flex-wrap: wrap;
  }
  .stores-grid .store-card .store-card-actions {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(40px, 12vw, 52px);
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .section-title {
    font-size: clamp(30px, 9vw, 40px);
  }
  .product-name {
    font-size: 19px;
  }
  .feature-card-wrapper {
    height: 360px;
  }
}/*# sourceMappingURL=main.css.map */