:root {
  --black: #000;
  --white: #fff;
  --gray: #888;
  --light: #f5f5f5;
  --gold: #C9A84C;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --max-w: 1140px;
  --header-h: 72px;
  --radius: 4px;
  --transition: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--black);
  background: var(--white);
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
}


/* ═══════════════════════
   LAYOUT
   ═══════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--light {
  background: var(--light);
}


/* ═══════════════════════
   TYPOGRAPHY
   ═══════════════════════ */
.heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.heading--center {
  text-align: center;
}

.heading--white {
  color: var(--white);
}

.subheading {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

.subheading--white {
  color: rgba(255, 255, 255, 0.7);
}

.lead {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.small {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.section--dark .small {
  color: rgba(255, 255, 255, 0.6);
}

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

.placeholder {
  color: var(--gray);
  font-style: italic;
}


/* ═══════════════════════
   BUTTONS
   ═══════════════════════ */
.btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  margin-top: 1.5rem;
  border-radius: var(--radius);
}

.btn:hover {
  background: transparent;
  color: var(--black);
}

.btn--outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn--gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn--full {
  width: 100%;
  text-align: center;
}


/* ═══════════════════════
   HEADER
   ═══════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo img {
  height: 42px;
  width: auto;
  transition: filter var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

/* Nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header.scrolled .nav__link {
  color: var(--black);
}

/* Header Actions (Language & E-shop) */
.header__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header__lang,
.header__eshop {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition), opacity var(--transition);
}

.header.scrolled .header__lang,
.header.scrolled .header__eshop {
  color: var(--black);
}

.header__lang:hover,
.header__eshop:hover {
  opacity: 0.6;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.header.scrolled .hamburger span {
  background: var(--black);
}

.hamburger.open span {
  background: var(--white) !important;
}

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

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

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


/* ═══════════════════════
   HERO
   ═══════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

.hero__slideshow {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero__slide.active {
  opacity: 1;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  animation: heroIn 1.6s ease forwards;
}

.hero__logo {
  width: min(320px, 60vw);
  margin: 0 auto 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 2.1rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  color: var(--gold);
  font-weight: 300;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Dots */
.hero__dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero__dot.active {
  background: var(--white);
  transform: scale(1.25);
}

/* Arrow */
.hero__arrow {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: var(--white);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}


/* ═══════════════════════
   SPLIT LAYOUT
   ═══════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split--img-left .split__media {
  order: 1;
}

.split--img-left .split__text {
  order: 2;
}

.split--img-right .split__text {
  order: 1;
}

.split--img-right .split__media {
  order: 2;
}

.split__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}

.split__text p {
  color: #444;
  font-size: 0.95rem;
}

.section--dark .split__text p {
  color: rgba(255, 255, 255, 0.8);
}

.section--dark .split__text strong {
  color: var(--gold);
}


/* ═══════════════════════
   VIDEO BLOCK
   ═══════════════════════ */
.video-block {
  margin-top: 4rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  line-height: 0;
}

.video-block video {
  width: 100%;
  display: block;
}

/* Video poster overlay */
.video-poster {
  position: relative;
  cursor: pointer;
  line-height: 0;
}

.video-poster__img {
  width: 100%;
  display: block;
}

.video-poster__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-poster__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-poster__play svg {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.video-poster__cta {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}


/* ═══════════════════════
   VINICE SECTION
   ═══════════════════════ */
.vinice {
  position: relative;
  overflow: hidden;
}

.vinice__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vinice__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.vinice__content {
  position: relative;
  z-index: 2;
}


/* ═══════════════════════
   WINE CARDS
   ═══════════════════════ */
.wine-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.wine-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.wine-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.wine-card__img {
  width: 100%;
  overflow: hidden;
  background: var(--light);
}

.wine-card__img img {
  width: 100%;
  height: auto;
  display: block;
}

.wine-card__body {
  padding: 2rem;
}

.wine-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.wine-card__body p {
  color: #555;
  font-size: 0.95rem;
}

.wine-overview {
  text-align: center;
  margin: 2rem 0 3rem;
}

.wine-overview img {
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════
   NAŠE VÍNA SECTION (BG)
   ═══════════════════════ */
.nase-vina {
  position: relative;
  overflow: hidden;
}

.nase-vina__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.nase-vina__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.nase-vina__content {
  position: relative;
  z-index: 2;
}

/* Wine cards on dark bg */
.nase-vina .wine-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.nase-vina .wine-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.nase-vina .wine-card__name {
  color: var(--white);
}

.nase-vina .wine-card__body p {
  color: rgba(255, 255, 255, 0.75);
}

.nase-vina .wine-card__img {
  background: rgba(255, 255, 255, 0.05);
}

.nase-vina .text-center p {
  color: rgba(255, 255, 255, 0.8);
}

.nase-vina .text-center .small {
  color: rgba(255, 255, 255, 0.55);
}

.nase-vina .btn {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.nase-vina .btn:hover {
  background: transparent;
  color: var(--white);
}

/* Photo-slot dark style for nase-vina */
.nase-vina .photo-slot__label {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.65);
}

.nase-vina .photo-slot__label:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.nase-vina .photo-slot--selected .photo-slot__label {
  border-color: #81c784;
  background: rgba(76, 175, 80, 0.12);
  color: #a5d6a7;
}

.nase-vina .wine-card .photo-slot__label {
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0;
}


/* ═══════════════════════
   DEGUSTACE SECTION
   ═══════════════════════ */
.degustace {
  position: relative;
  overflow: hidden;
}

.degustace__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.degustace__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.degustace__content {
  position: relative;
  z-index: 2;
}

.degustation-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.degustation-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  cursor: default;
}

.degustation-card:hover {
  transform: scale(1.04) translateY(-4px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.degustation-card:hover h3 {
  color: var(--gold);
}

.degustation-card:hover ul {
  color: rgba(255, 255, 255, 0.95);
}

.degustation-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.degustation-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.degustation-card--featured {
  border-color: var(--gold);
  border-width: 2px;
}

.degustation-email {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

.ubytovani {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.ubytovani p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.ubytovani__link {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity var(--transition);
}

.ubytovani__link:hover {
  opacity: 0.7;
}


/* ═══════════════════════
   CONTACT
   ═══════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.6rem;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info a {
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
}

.billing-info {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid #e0e0e0;
}

.billing-info h4 {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.6rem;
}

.billing-info p {
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 0.3rem;
  line-height: 1.6;
}

.social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: var(--black);
  transition: background var(--transition), color var(--transition);
}

.social__icon:hover {
  background: var(--black);
  color: var(--white);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--transition);
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23444%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.65rem auto;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--black);
}

.map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.map iframe {
  display: block;
}


/* ═══════════════════════
   FOOTER
   ═══════════════════════ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 3rem 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer__logo {
  height: 48px;
}

.footer__center {
  text-align: center;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.footer__sub {
  opacity: 0.5;
  font-size: 0.8rem;
}

.footer__billing {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__billing p {
  font-size: 0.75rem;
  opacity: 0.45;
  line-height: 1.5;
  margin: 0;
}

.footer__links {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.footer__eshop {
  display: inline-block;
  padding: 0.5rem 1.6rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}

.footer__eshop:hover {
  background: var(--gold);
  color: var(--black);
}

.footer__links a {
  opacity: 0.6;
}

.footer__links a:hover {
  opacity: 1;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  text-align: center;
}

.footer__credit {
  font-size: 0.85rem;
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.footer__author {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: inherit;
  text-decoration: none;
}

.footer__author-logo {
  height: 24px;
  width: auto;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.footer__author:hover .footer__author-logo {
  opacity: 1;
}


/* ═══════════════════════
   PHOTO SLOTS
   ═══════════════════════ */
.photo-slot {
  margin-top: 0.6rem;
}

.photo-slot__label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.9rem;
  border: 1.5px dashed #ccc;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.78rem;
  background: #fafafa;
  color: #666;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  user-select: none;
}

.photo-slot__label:hover {
  border-color: var(--black);
  background: #f0f0f0;
  color: var(--black);
}

.photo-slot__input {
  display: none;
}

.photo-slot__desc {
  flex: 1;
}

.photo-slot__action {
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.25rem 0.65rem;
  border: 1px solid currentColor;
  border-radius: 2px;
}

.photo-slot--selected .photo-slot__label {
  border-color: #6abf69;
  border-style: solid;
  background: #f1faf1;
  color: #2e7d32;
}

/* Dark-background sections */
.vinice .photo-slot__label,
.degustace .photo-slot__label {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.65);
}

.vinice .photo-slot__label:hover,
.degustace .photo-slot__label:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.vinice .photo-slot--selected .photo-slot__label,
.degustace .photo-slot--selected .photo-slot__label {
  border-color: #81c784;
  background: rgba(76, 175, 80, 0.12);
  color: #a5d6a7;
}

/* Hero photo slots bar */
.hero__photo-slots {
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  gap: 0.6rem;
  padding: 0.6rem 2rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
}

.hero__photo-slots .photo-slot {
  flex: 1;
  margin-top: 0;
}

.hero__photo-slots .photo-slot__label {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
}

.hero__photo-slots .photo-slot__label:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.hero__photo-slots .photo-slot--selected .photo-slot__label {
  border-color: #81c784;
  background: rgba(76, 175, 80, 0.15);
  color: #a5d6a7;
}

/* Video block slot */
.video-block .photo-slot {
  margin-top: 0;
}

.video-block .photo-slot__label {
  background: #f0f0f0;
  border-radius: 0;
  border-top: none;
}

/* Wine card slot */
.wine-card .photo-slot {
  margin-top: 0;
}

.wine-card .photo-slot__label {
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom-color: #e8e8e8;
  background: #fafafa;
}

/* Footer slot */
.footer .photo-slot__label {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.6);
}

.footer .photo-slot__label:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.footer .photo-slot--selected .photo-slot__label {
  border-color: #81c784;
  background: rgba(76, 175, 80, 0.1);
  color: #a5d6a7;
}


/* ═══════════════════════
   FADE-IN ANIMATION
   ═══════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════
   GDPR PAGE
   ═══════════════════════ */
.gdpr-content {
  max-width: 760px;
  margin: 0 auto;
}

.gdpr-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.gdpr-content h3 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gdpr-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
}

.gdpr-content a {
  text-decoration: underline;
}

.gdpr-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.gdpr-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.gdpr-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.gdpr-back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.form-gdpr-link {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.75rem;
  text-align: center;
}

.form-gdpr-link a {
  text-decoration: underline;
}


/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 1024px) {
  .section {
    padding: 72px 0;
  }

  .split {
    gap: 2.5rem;
  }

  .split__img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  /* Header mobile */
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 1005;
  }

  .nav.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav__list {
    flex-direction: column;
    gap: 1.8rem;
  }

  .nav .nav__link {
    color: var(--white);
    font-size: 1.1rem;
  }

  /* Layouts */
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split--img-left .split__media,
  .split--img-left .split__text,
  .split--img-right .split__media,
  .split--img-right .split__text {
    order: unset;
  }

  .split__img {
    height: 340px;
  }

  .wine-cards {
    grid-template-columns: 1fr;
  }

  .wine-card__img {
    height: 260px;
  }

  .degustation-cards {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .footer__brand {
    justify-content: center;
  }

  .footer__links {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  .hero__logo {
    width: 60vw;
  }

  .degustation-card {
    padding: 1.5rem;
  }

  .split__img {
    height: 280px;
  }
}