/* ============================================================
   VINARIJA MIMICA – Stylesheet
   Premium winery · Editorial layout · Dalmatia, Croatia
   ============================================================ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --burgundy:   #4a1520;
  --wine:       #6b2233;
  --wine-mid:   #8b3040;
  --rose:       #b84e65;
  --gold:       #c9a96e;
  --gold-hover: #b89252;
  --gold-light: #e8d5b0;
  --cream:      #faf7f2;
  --warm-white: #fff9f5;
  --stone:      #9e8e7e;
  --stone-dark: #5a4a3a;
  --earth:      #2e1f14;
  --text:       #1c1410;
  --text-mid:   #5a4a3e;
  --text-light: #9e8e7e;
  --border:     rgba(30, 20, 10, 0.10);
  --border-mid: rgba(30, 20, 10, 0.15);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --nav-h:   80px;
  --radius:  2px;
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-wine: cubic-bezier(0.22, 1, 0.36, 1);
  --tr:      0.35s var(--ease);
  --tr-wine: 1.15s var(--ease-wine);
  --max-w:   1200px;
  --section: clamp(80px, 10vw, 140px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }
address { font-style: normal; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal--delay { transition-delay: 0.14s; }
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── SECTION FLOW – wine-like entrance (#o-nama, #ture) ── */
.flow-enabled .about:not(.is-inview) .about__visual,
.flow-enabled .about:not(.is-inview) .about__content {
  opacity: 0;
  filter: blur(10px);
}
.flow-enabled .about:not(.is-inview) .about__visual {
  transform: translateX(-56px) scale(0.96);
}
.flow-enabled .about:not(.is-inview) .about__content {
  transform: translateX(56px);
}
.flow-enabled .about:not(.is-inview) .about__stat {
  opacity: 0;
  transform: translateY(24px);
}
.flow-enabled .about:not(.is-inview) .about__photo {
  transform: scale(1.06);
}

.flow-enabled .about.is-inview .about__visual,
.flow-enabled .about.is-inview .about__content {
  opacity: 1;
  filter: blur(0);
  transform: none;
  transition:
    opacity var(--tr-wine),
    transform var(--tr-wine),
    filter 1s var(--ease-wine);
}
.flow-enabled .about.is-inview .about__content {
  transition-delay: 0.2s;
}
.flow-enabled .about.is-inview .about__photo {
  transform: scale(1);
  transition: transform 1.4s var(--ease-wine) 0.15s;
}
.flow-enabled .about.is-inview .about__stat {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s var(--ease-wine), transform 0.9s var(--ease-wine);
}
.flow-enabled .about.is-inview .about__stat:nth-child(1) { transition-delay: 0.55s; }
.flow-enabled .about.is-inview .about__stat:nth-child(2) { transition-delay: 0.68s; }
.flow-enabled .about.is-inview .about__stat:nth-child(3) { transition-delay: 0.81s; }

.about .eyebrow,
.tours .eyebrow {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.about .eyebrow::after,
.tours .eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 169, 110, 0.12));
  transition: width 1.6s var(--ease-wine);
}
.tours .eyebrow::after {
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold) 82%, transparent);
}
.flow-enabled .about.is-inview .eyebrow::after { width: 100%; transition-delay: 0.35s; }
.flow-enabled .tours.is-inview .eyebrow::after { width: 100%; transition-delay: 0.15s; }

.flow-enabled .tours:not(.is-inview) .tours__top,
.flow-enabled .tours:not(.is-inview) .tcard,
.flow-enabled .tours:not(.is-inview) .tours__reserve {
  opacity: 0;
  transform: translateY(48px) scale(0.98);
  filter: blur(8px);
}
.flow-enabled .tours.is-inview .tours__top,
.flow-enabled .tours.is-inview .tcard,
.flow-enabled .tours.is-inview .tours__reserve {
  opacity: 1;
  transform: none;
  filter: blur(0);
  transition:
    opacity var(--tr-wine),
    transform var(--tr-wine),
    filter 1s var(--ease-wine);
}
.flow-enabled .tours.is-inview .tours__top { transition-delay: 0s; }
.flow-enabled .tours.is-inview .tcard:nth-child(1) { transition-delay: 0.14s; }
.flow-enabled .tours.is-inview .tcard:nth-child(2) { transition-delay: 0.32s; }
.flow-enabled .tours.is-inview .tours__reserve { transition-delay: 0.5s; }

@media (max-width: 900px) {
  .flow-enabled .about:not(.is-inview) .about__visual,
  .flow-enabled .about:not(.is-inview) .about__content {
    transform: translateY(40px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .nav__menu,
  .nav__list li,
  .nav__shop {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .treserve__success-icon,
  .treserve__success-title,
  .treserve__success-text,
  .treserve__again,
  .treserve__spinner {
    animation: none;
  }
  .flow-enabled .about:not(.is-inview) .about__visual,
  .flow-enabled .about:not(.is-inview) .about__content,
  .flow-enabled .about:not(.is-inview) .about__stat,
  .flow-enabled .about:not(.is-inview) .about__photo,
  .flow-enabled .tours:not(.is-inview) .tours__top,
  .flow-enabled .tours:not(.is-inview) .tcard,
  .flow-enabled .tours:not(.is-inview) .tours__reserve {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .about .eyebrow::after,
  .tours .eyebrow::after {
    width: 100%;
    transition: none;
  }
}

/* Obiteljske kartice — uvijek vidljive (bez scroll-reveal) */
.family__grid .fcard {
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* Shop slika — uvijek vidljiva (lazy load unutar reveal ne radi pouzdano na mobitelu) */
.shops__visual,
.shops__photo-wrap,
.shops__photo {
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

/* ── TYPOGRAPHY TOKENS ── */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--gold-light); }

.h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--earth);
  margin-bottom: 28px;
}
.h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--wine);
}
.h2--light { color: var(--warm-white); }
.h2--light em { color: var(--gold-light); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-intro {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 8px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    background var(--tr),
    color var(--tr),
    border-color var(--tr),
    transform 0.2s ease,
    box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg    { padding: 16px 38px; font-size: 13px; }

.btn--gold {
  background: var(--gold);
  color: var(--earth);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  box-shadow: 0 10px 36px rgba(201, 169, 110, 0.4);
}

.btn--outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.40);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.75);
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--tr), box-shadow var(--tr), backdrop-filter var(--tr);
}
.nav.scrolled {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav.menu-open {
  background: var(--cream);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav.menu-open.scrolled {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav.menu-open .nav__brand-logo {
  mix-blend-mode: normal;
  filter: none;
}
.nav.menu-open .lang-switch__btn { opacity: 0.65; }
.nav.menu-open .lang-switch__btn:hover { opacity: 0.9; }
.nav.menu-open .lang-switch__btn.is-active { opacity: 1; }
.nav.menu-open .lang-switch__sep { background: var(--border-mid); }
.nav.menu-open .nav__burger span { background: var(--earth); }

/* Mobilni overlay — tamni tekst, ne hero bijeli stilovi */
.nav.menu-open .nav__menu .nav__link,
.nav.menu-open .nav__menu .nav__link--active {
  color: var(--earth);
}
.nav.menu-open .nav__menu .nav__link:hover,
.nav.menu-open .nav__menu .nav__link:focus-visible {
  color: var(--wine);
}
.nav.menu-open .nav__menu .nav__link::before,
.nav.menu-open .nav__menu .nav__link::after {
  color: var(--gold);
}
.nav.menu-open .nav__menu .nav__shop {
  color: var(--warm-white);
  background: var(--wine);
  border-color: var(--wine);
}

.nav__container {
  max-width: calc(var(--max-w) + 160px);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: block;
  line-height: 0;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav__brand:hover { opacity: 0.78; }
.nav__brand:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: var(--radius); }

.nav__brand-logo {
  display: block;
  height: clamp(50px, 5.5vw, 62px);
  width: auto;
  max-width: min(120px, 34vw);
  object-fit: contain;
  object-position: left center;
}

/* Dark transparent logo — no blend needed on hero */
.nav:not(.scrolled) .nav__brand-logo {
  filter: none;
}

.nav__tools {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  margin-left: auto;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1.5px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  padding: 3px;
  line-height: 0;
  opacity: 0.55;
  transition:
    opacity var(--tr),
    border-color var(--tr),
    box-shadow var(--tr),
    transform 0.2s ease;
}
.lang-switch__btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.lang-switch__btn.is-active {
  opacity: 1;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.35);
}
.lang-switch__flag {
  display: block;
  width: 26px;
  height: 17px;
  border-radius: 2px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}
.nav.scrolled .lang-switch__btn.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.4);
}

.lang-switch__sep {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}
.nav.scrolled .lang-switch__sep { background: var(--border-mid); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.80);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--tr);
}
.nav.scrolled .nav__link { color: var(--text-mid); }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--tr);
}
.nav__link:hover,
.nav__link:focus-visible,
.nav__link--active { color: #fff; outline: none; }
.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link--active::after { width: 100%; }
.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__link:focus-visible,
.nav.scrolled .nav__link--active { color: var(--earth); }

.nav__shop {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.88);
  transition: all var(--tr);
}
.nav__shop:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}
.nav.scrolled .nav__shop {
  border-color: var(--gold);
  color: var(--earth);
}
.nav.scrolled .nav__shop:hover { background: var(--gold); }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--tr);
  transform-origin: center;
}
.nav.scrolled .nav__burger span { background: var(--earth); }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background: #2e1f14 url('images/vineyards-omiska-dinara.webp') center / cover no-repeat;
}
.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero__poster-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  pointer-events: none;
}
.hero__video.is-playing {
  width: 100%;
  height: 100%;
  overflow: visible;
  clip: auto;
  object-fit: cover;
  object-position: center center;
}
.hero__video::-webkit-media-controls,
.hero__video::-webkit-media-controls-panel,
.hero__video::-webkit-media-controls-play-button,
.hero__video::-webkit-media-controls-start-playback-button,
.hero__video::-webkit-media-controls-overlay-play-button,
.hero__video::-webkit-media-controls-enclosure {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }
  .hero__media {
    background:
      linear-gradient(
        160deg,
        rgba(20, 12, 8, 0.72) 0%,
        rgba(46, 31, 20, 0.38) 45%,
        rgba(20, 12, 8, 0.68) 100%
      ),
      url('images/vineyards-omiska-dinara.webp') center / cover no-repeat;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 12, 8, 0.58) 0%,
    rgba(46, 31, 20, 0.28) 45%,
    rgba(20, 12, 8, 0.55) 100%
  );
}

/* Centered hero layout */
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: calc(var(--max-w) + 160px);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__body {
  text-align: center;
  max-width: 820px;
  padding-top: 80px;
}

.hero__kicker {
  font-family: var(--sans);
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(32px, 4vw, 44px);
  opacity: 0;
  animation: fadeUp 1s 0.3s ease forwards;
}
.hero__heading {
  margin-bottom: clamp(36px, 4.5vw, 52px);
  opacity: 0;
  animation: fadeUp 1s 0.55s ease forwards;
}

.hero__logo {
  display: block;
  width: auto;
  height: clamp(132px, 22vw, 248px);
  max-width: min(380px, 84vw);
  margin-inline: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}
.hero__sub {
  font-size: clamp(16px, 1.75vw, 20px);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.82;
  margin-bottom: clamp(52px, 6vw, 64px);
  opacity: 0;
  animation: fadeUp 1s 0.78s ease forwards;
  max-width: 580px;
  margin-inline: auto;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 1s 1s ease forwards;
}

.hero__actions .btn--lg {
  padding: 17px 42px;
  font-size: 13.5px;
}

/* Year decoration – absolute right side */
.hero__deco {
  position: absolute;
  right: clamp(20px, 4vw, 72px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeIn 1s 1.2s ease forwards;
}
.hero__deco-year {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.10);
  line-height: 1;
  letter-spacing: -0.04em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__deco-rule {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201, 169, 110, 0.45), rgba(201, 169, 110, 0.06));
}
.hero__deco-label {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.45);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero__scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s 1.6s ease forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.45));
  animation: scrollBob 2.2s ease-in-out infinite;
}
.hero__scroll-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ── ABOUT ── */
.about {
  padding-block: var(--section);
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.about__visual {
  position: relative;
}
.about__photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.about__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s var(--ease);
}
.about__photo-wrap:hover .about__photo { transform: scale(1.04); }

.about__text p {
  font-size: clamp(15px, 1.3vw, 16.5px);
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about__text p:last-child { margin-bottom: 0; }

.about__stats {
  display: flex;
  gap: clamp(32px, 5vw, 56px);
  padding-top: 44px;
  border-top: 1px solid var(--border-mid);
  margin-top: 40px;
}
.about__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about__stat-num {
  font-family: var(--serif);
  font-size: clamp(46px, 4.5vw, 56px);
  font-weight: 600;
  color: var(--wine);
  line-height: 1;
  letter-spacing: -0.02em;
}
.about__stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ── ZINFANDEL STORY ── */
.zin {
  background: var(--cream);
  padding-block: var(--section);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

/* Large decorative year watermark */
.zin__deco {
  position: absolute;
  right: clamp(28px, 5vw, 88px);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(140px, 20vw, 280px);
  font-weight: 300;
  color: rgba(46, 31, 20, 0.04);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 901px) {
  .zin__deco {
    right: clamp(40px, 6vw, 100px);
    font-size: clamp(160px, 21vw, 300px);
    font-weight: 300;
    color: rgba(46, 31, 20, 0.11);
  }
}

.zin__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
  display: block;
  position: relative;
  z-index: 1;
}

.zin__text {
  max-width: 720px;
}
.zin__body {
  font-size: clamp(15px, 1.3vw, 16.5px);
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 22px;
}
.zin__body:last-child { margin-bottom: 0; }
.zin__body strong { color: var(--wine); font-weight: 500; }

.zin__pull {
  border-left: 2px solid var(--gold);
  padding: 36px 40px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.zin__pull p {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--earth);
  line-height: 1.18;
  margin-bottom: 28px;
}
.zin__pull cite {
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── VINEYARDS ── */
.vineyards {
  position: relative;
  padding-block: clamp(100px, 14vw, 180px);
  overflow: hidden;
}
.vineyards__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.vineyards__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% / 0.9);
  height: calc(100% / 0.9);
  max-width: none;
  transform: translate3d(-50%, -50%, 0);
  object-fit: cover;
  object-position: center 42%;
  backface-visibility: hidden;
}
.vineyards__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 12, 8, 0.90) 0%,
    rgba(20, 12, 8, 0.55) 55%,
    rgba(20, 12, 8, 0.18) 100%
  );
}
.vineyards__container {
  position: relative;
  z-index: 2;
}
.vineyards__content { max-width: 560px; }
.vineyards__body {
  font-size: clamp(15px, 1.3vw, 16.5px);
  color: rgba(250, 247, 242, 0.68);
  line-height: 1.85;
  margin-bottom: 20px;
}
.vineyards__body strong { color: var(--gold-light); font-weight: 500; }

.vineyards__features {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.vf { display: flex; flex-direction: column; gap: 6px; }
.vf__num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.vf__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.40);
}

/* ── WINES ── */
.wines {
  background: #fff;
}

.wines__intro {
  padding-top: var(--section);
}

/* ── FEATURED WINE: TRIBIDRAG ── */
.wines__featured {
  background: linear-gradient(
    180deg,
    var(--warm-white) 0%,
    var(--cream) 42%,
    var(--cream) 100%
  );
  padding-block: clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(56px, 7vw, 100px);
  border-block: 1px solid var(--border);
}

.wines__featured-badge {
  margin-bottom: 36px;
}

.wines__badge {
  display: inline-block;
  padding: 8px 20px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.wines__badge--premium {
  background: linear-gradient(90deg, var(--burgundy), var(--wine-mid));
  color: var(--gold-light);
}

.wines__featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
}

.wines__featured-name {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 400;
  color: var(--earth);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.wines__featured-region {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.wines__featured-desc {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 520px;
}
.wines__featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.wines__featured-tags span {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.wines__featured-meta {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border-mid);
}
.wines__meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wines__meta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
}
.wines__meta-val {
  font-size: 15px;
  font-weight: 500;
  color: var(--earth);
}

/* Featured Tribidrag bottle */
.wines__featured::before {
  content: '';
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(42%, 480px);
  height: 75%;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 169, 110, 0.14) 0%,
    rgba(232, 213, 176, 0.08) 45%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}
.wines__featured .container {
  position: relative;
  z-index: 1;
}

.wines__featured-accent {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: clamp(360px, 42vw, 520px);
  overflow: visible;
  background: transparent;
}

.wines__featured-bottle {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: min(100%, 480px);
  transform: translateX(clamp(16px, 3.5vw, 40px));
  background: transparent;
}

.wines__featured-bottle-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: clamp(430px, 52vw, 620px);
  object-fit: contain;
  object-position: right bottom;
  display: block;
  filter: drop-shadow(0 18px 36px rgba(46, 31, 20, 0.14));
}

/* ── WINE CARDS (3-column grid) ── */
.wines__cards {
  padding-bottom: var(--section);
}

.container.wines__cards {
  max-width: calc(var(--max-w) + 100px);
  padding-inline: clamp(16px, 3.5vw, 56px);
}

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

@media (min-width: 1280px) {
  .wines__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Stagger animation */
.wines__grid .wcard:nth-child(1) { transition-delay: 0ms; }
.wines__grid .wcard:nth-child(2) { transition-delay: 90ms; }
.wines__grid .wcard:nth-child(3) { transition-delay: 180ms; }
.wines__grid .wcard:nth-child(4) { transition-delay: 270ms; }

.wcard {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.wcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
}

.wcard__type {
  padding: 11px 22px;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}
.wcard__type--red     { background: var(--burgundy);  color: var(--gold-light); }
.wcard__type--white   { background: var(--gold);       color: var(--earth); }
.wcard__type--rose    { background: var(--rose);       color: #fff5f7; }
.wcard__type--dessert { background: var(--stone-dark); color: var(--gold-light); }

.wcard__body {
  padding: 26px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.wcard__name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--earth);
  line-height: 1.12;
  margin-bottom: 6px;
}
.wcard__region {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 18px;
}
.wcard__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}
.wcard__notes {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.wcard__notes li {
  font-size: 13px;
  color: var(--text-mid);
  padding-left: 15px;
  position: relative;
}
.wcard__notes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.wcard__buy {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: min(100%, 168px);
  margin-top: 4px;
  padding: 11px 16px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(107, 34, 51, 0.16);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    color var(--tr),
    background var(--tr),
    border-color var(--tr),
    box-shadow var(--tr),
    transform 0.2s ease;
}
.wcard__buy:hover {
  color: var(--warm-white);
  background: var(--wine);
  border-color: var(--wine);
  box-shadow: 0 10px 28px rgba(107, 34, 51, 0.2);
  transform: translateY(-1px);
}
.wcard__buy:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.wcard__foot {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wcard__foot-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.wcard__foot-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}
.wcard__foot-val {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  text-align: right;
}

/* Wine card bottle cutouts */
.wcard--mirabella .wcard__body,
.wcard--rose .wcard__body,
.wcard--ruza .wcard__body,
.wcard--prosek .wcard__body {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  min-height: 340px;
}

.wcard__bottle {
  position: absolute;
  right: -18px;
  bottom: -12px;
  width: 58%;
  max-width: 220px;
  height: 94%;
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.wcard__bottle-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(46, 31, 20, 0.14));
}

.wcard--mirabella .wcard__name,
.wcard--mirabella .wcard__region,
.wcard--mirabella .wcard__desc,
.wcard--mirabella .wcard__buy,
.wcard--rose .wcard__name,
.wcard--rose .wcard__region,
.wcard--rose .wcard__desc,
.wcard--rose .wcard__buy,
.wcard--ruza .wcard__name,
.wcard--ruza .wcard__region,
.wcard--ruza .wcard__desc,
.wcard--ruza .wcard__buy,
.wcard--prosek .wcard__name,
.wcard--prosek .wcard__region,
.wcard--prosek .wcard__desc,
.wcard--prosek .wcard__buy {
  position: relative;
  z-index: 1;
}

.wcard--mirabella .wcard__desc,
.wcard--rose .wcard__desc,
.wcard--ruza .wcard__desc,
.wcard--prosek .wcard__desc {
  max-width: 54%;
  margin-bottom: 16px;
}

.wcard--rose .wcard__bottle {
  bottom: 6px;
}

.wines__cta {
  text-align: center;
  margin-top: 56px;
}

/* ── FAMILY ── */
.family {
  background: var(--cream);
  scroll-margin-top: calc(var(--nav-h) + 12px);
}

.family__intro {
  padding-top: var(--section);
  padding-bottom: clamp(56px, 7vw, 96px);
}

/* 3-column portrait card grid */
.family__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: clamp(56px, 7vw, 96px);
}

.fcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr);
}
.fcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

/* Middle card slightly elevated */
.fcard--center {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.09);
  border-color: rgba(201, 169, 110, 0.28);
}

.fcard__photo-wrap {
  position: relative;
  aspect-ratio: 3 / 2;
  min-height: 200px;
  overflow: hidden;
  background: rgba(30, 20, 10, 0.06);
}
.fcard__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.9s var(--ease);
}
.fcard:hover .fcard__photo { transform: scale(1.05); }

.fcard__body {
  padding: 22px 24px 28px;
}
.fcard__role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.fcard__name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--earth);
  line-height: 1.1;
  margin-bottom: 6px;
}
.fcard__title {
  font-size: 13px;
  font-style: italic;
  color: var(--stone);
  margin-bottom: 14px;
}
.fcard__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

.family__tagline {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  padding: 48px 56px;
  margin-block: clamp(56px, 7vw, 96px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.family__tagline::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 48px; height: 2px;
  background: var(--gold);
}
.family__tagline p {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 24px;
}
.family__tagline strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--wine);
}

/* ── WINE TOURS ── */
.tours {
  background: var(--cream);
  padding-bottom: var(--section);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

/* Subtle texture */
.tours::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.tours__top {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(36px, 4.5vw, 60px);
  display: block;
  text-align: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(32px, 4vw, 56px);
}
.tours__top-text {
  max-width: 640px;
  margin-inline: auto;
}
.tours__top .h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }
.tours__intro {
  font-size: clamp(14px, 1.2vw, 15.5px);
  color: var(--text-mid);
  line-height: 1.78;
  margin-top: 6px;
}

.tours__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── TOUR CARD – image split layout ── */
.tcard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-mid);
  background: #fff;
  box-shadow: 0 10px 32px rgba(46, 31, 20, 0.06);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.tcard:hover {
  border-color: rgba(201, 169, 110, 0.45);
  box-shadow: 0 14px 40px rgba(46, 31, 20, 0.08);
}

/* Reversed: image left, text right */
.tcard--rev .tcard__image { order: -1; }

/* Text side */
.tcard__body {
  background: var(--warm-white);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.tcard__num {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 300;
  color: rgba(107, 34, 51, 0.07);
  line-height: 0.9;
  letter-spacing: -0.05em;
  position: absolute;
  top: 16px;
  right: 20px;
  pointer-events: none;
  user-select: none;
}

.tcard__badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(201, 169, 110, 0.30);
  border-radius: 2px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  align-self: flex-start;
}

.tcard__name {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  color: var(--wine);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.tcard__desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 16px;
}

.tcard__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}
.tcard__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.6;
}
.tcard__list strong {
  color: var(--earth);
  font-weight: 500;
}
.tcard__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

/* Footer: meta + price in one row */
.tcard__footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.tcard__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tcard__meta-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.tcard__meta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}
.tcard__meta-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
}

.tcard__price {
  text-align: right;
  flex-shrink: 0;
}
.tcard__price-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.tcard__price-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(107, 34, 51, 0.45);
  margin-top: 4px;
}

/* Image side */
.tcard__image {
  position: relative;
  overflow: hidden;
  min-height: clamp(320px, 34vw, 460px);
}
.tcard__image img,
.tcard__image-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.9s var(--ease);
}
.tcard:hover .tcard__image img,
.tcard:hover .tcard__image-photo { transform: scale(1.04); }

/* Tour image carousels */
.tcard--gastro .tcard__carousel,
.tcard--rev .tcard__carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tcard__carousel-track {
  position: absolute;
  inset: 0;
}
.tcard__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
  pointer-events: none;
}
.tcard__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.tcard--gastro .tcard__image-photo {
  object-position: center center;
}
.tcard--gastro .tcard__slide:first-child .tcard__image-photo {
  object-position: center 58%;
}
.tcard--gastro .tcard__slide:nth-child(4) .tcard__image-photo {
  object-position: center 40%;
}
.tcard--gastro:hover .tcard__image-photo {
  transform: none;
}
.tcard--gastro:hover .tcard__slide.is-active .tcard__image-photo {
  transform: scale(1.04);
}
.tcard--rev .tcard__image-photo {
  object-position: center 42%;
}
.tcard--rev .tcard__slide:first-child .tcard__image-photo {
  object-position: center 55%;
}
.tcard--rev .tcard__slide:nth-child(3) .tcard__image-photo {
  object-position: center 35%;
}
.tcard--rev:hover .tcard__image-photo {
  transform: none;
}
.tcard--rev:hover .tcard__slide.is-active .tcard__image-photo {
  transform: scale(1.04);
}

.tcard__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(46, 31, 20, 0.55);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background var(--tr), border-color var(--tr);
}
.tcard__carousel-btn:hover {
  background: rgba(46, 31, 20, 0.85);
  border-color: var(--gold);
}
.tcard__carousel-btn--prev { left: 12px; }
.tcard__carousel-btn--next { right: 12px; }

.tcard__carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.tcard__carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background var(--tr), transform var(--tr);
}
.tcard__carousel-dot.is-active {
  background: var(--gold);
  transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .tcard__slide { transition: none; }
}

.tcard--gastro .tcard__image-overlay {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      to right,
      rgba(46, 31, 20, 0.78) 0%,
      rgba(46, 31, 20, 0.28) 34%,
      rgba(46, 31, 20, 0.06) 68%,
      transparent 100%
    ),
    linear-gradient(
      to top,
      rgba(46, 31, 20, 0.42) 0%,
      transparent 48%
    );
}

.tcard__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 12, 8, 0.28) 0%,
    rgba(20, 12, 8, 0.05) 100%
  );
}
.tcard--rev .tcard__image-overlay {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      to left,
      rgba(46, 31, 20, 0.78) 0%,
      rgba(46, 31, 20, 0.28) 34%,
      rgba(46, 31, 20, 0.06) 68%,
      transparent 100%
    ),
    linear-gradient(
      to top,
      rgba(46, 31, 20, 0.42) 0%,
      transparent 48%
    );
}

.tours__booking {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: clamp(40px, 5vw, 56px);
  border-top: 1px solid var(--border);
}

/* ── TOUR BOOKING MODULE ── */
.tours__reserve {
  margin-top: clamp(36px, 5vw, 56px);
}

.treserve {
  position: relative;
  max-width: 560px;
  margin-inline: auto;
  padding: clamp(20px, 3vw, 28px);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border-mid);
  background: #fff;
  box-shadow: 0 12px 36px rgba(46, 31, 20, 0.07);
}

.treserve__head {
  text-align: center;
  margin: 0 auto 20px;
}

.treserve__eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.treserve__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 400;
  color: var(--earth);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.treserve__lead {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.6;
}

.treserve__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.treserve__row {
  display: grid;
  gap: 12px;
}

.treserve__row--meta {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 14px;
}

.treserve__row--contact {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 0;
}

.treserve__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.treserve__field--date {
  margin-bottom: 14px;
}

.treserve__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.treserve__hint {
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-light);
  margin: 0;
}

.treserve__input {
  width: 100%;
  padding: 10px 12px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--earth);
  background: var(--cream);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  transition:
    border-color var(--tr),
    background var(--tr),
    box-shadow var(--tr);
}

.treserve__input:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.treserve__input::placeholder {
  color: var(--text-light);
}

.treserve__input:hover:not(:disabled) {
  border-color: rgba(201, 169, 110, 0.32);
}

.treserve__input:focus {
  outline: none;
  border-color: rgba(201, 169, 110, 0.65);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.14);
}

.treserve__input.is-invalid {
  border-color: rgba(184, 78, 101, 0.75);
  box-shadow: 0 0 0 3px rgba(184, 78, 101, 0.12);
}

.treserve__select {
  appearance: none;
  cursor: pointer;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23c9a96e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.treserve__textarea {
  resize: vertical;
  min-height: 72px;
  max-height: 140px;
  line-height: 1.55;
}

.treserve__error {
  min-height: 16px;
  font-size: 11px;
  color: var(--rose);
  line-height: 1.35;
}

.treserve__calendar {
  max-width: 100%;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border-mid);
  background: var(--cream);
}

.treserve__cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.treserve__cal-month {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--earth);
  letter-spacing: 0.01em;
}

.treserve__cal-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  color: var(--text-mid);
  background: #fff;
  cursor: pointer;
  transition:
    border-color var(--tr),
    color var(--tr),
    background var(--tr);
}

.treserve__cal-nav:hover {
  color: var(--gold);
  border-color: rgba(201, 169, 110, 0.35);
  background: rgba(201, 169, 110, 0.08);
}

.treserve__cal-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.treserve__cal-weekdays,
.treserve__cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.treserve__cal-weekdays {
  margin-bottom: 4px;
}

.treserve__cal-weekday {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-light);
  padding: 2px 0;
}

.treserve__cal-day {
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: calc(var(--radius) - 2px);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  background: transparent;
  cursor: pointer;
  transition:
    background var(--tr),
    color var(--tr);
}

.treserve__cal-day:hover:not(:disabled) {
  background: rgba(201, 169, 110, 0.18);
  color: var(--earth);
}

.treserve__cal-day.is-selected {
  background: var(--gold);
  color: var(--earth);
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.24);
}

.treserve__cal-day.is-today:not(.is-selected) {
  border: 1px solid rgba(201, 169, 110, 0.4);
}

.treserve__cal-day:disabled,
.treserve__cal-day.is-empty {
  opacity: 0.26;
  cursor: default;
}

.treserve__date-picked {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

.treserve__date-picked:not([data-empty="true"]) {
  color: var(--wine);
}

.treserve__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  padding-block: 13px;
}

.treserve__submit.is-loading {
  pointer-events: none;
  opacity: 0.82;
}

.treserve__submit-text,
.treserve__submit-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.treserve__submit-loading[hidden] {
  display: none !important;
}

.treserve__submit.is-loading .treserve__submit-text {
  display: none !important;
}

.treserve__submit.is-loading .treserve__submit-loading {
  display: inline-flex !important;
}

.treserve__spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(46, 31, 20, 0.18);
  border-top-color: var(--earth);
  border-radius: 50%;
  animation: treserveSpin 0.7s linear infinite;
}

.treserve__success {
  text-align: center;
  padding: clamp(24px, 4vw, 40px) 12px;
}

.treserve__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.10);
  border: 1px solid rgba(201, 169, 110, 0.22);
  animation: treservePop 0.55s var(--ease) both;
}

.treserve__success-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  color: var(--earth);
  margin-bottom: 12px;
  animation: treserveFadeUp 0.6s var(--ease) 0.08s both;
}

.treserve__success-text {
  max-width: 460px;
  margin: 0 auto 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
  animation: treserveFadeUp 0.6s var(--ease) 0.16s both;
}

.treserve__again.btn--outline {
  color: var(--earth);
  border-color: rgba(46, 31, 20, 0.22);
}

.treserve__again.btn--outline:hover {
  background: rgba(46, 31, 20, 0.04);
  border-color: var(--gold);
  color: var(--earth);
}

.treserve__again {
  animation: treserveFadeUp 0.6s var(--ease) 0.24s both;
}

.treserve.is-success .treserve__form {
  display: none;
}

.treserve.is-success .treserve__head {
  display: none;
}

@keyframes treserveSpin {
  to { transform: rotate(360deg); }
}

@keyframes treservePop {
  from {
    opacity: 0;
    transform: scale(0.82);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes treserveFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Booking thank-you modal */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.booking-modal[hidden] {
  display: none;
}
.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(20, 12, 8, 0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.booking-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  padding: clamp(28px, 5vw, 36px) clamp(24px, 4vw, 32px);
  text-align: center;
  background: var(--cream, #faf6f0);
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(20, 12, 8, 0.28);
  animation: bookingModalIn 0.45s var(--ease, ease) both;
}
.booking-modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.22);
}
.booking-modal__title {
  font-family: var(--serif);
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 400;
  color: var(--earth);
  margin: 0 0 12px;
  line-height: 1.25;
}
.booking-modal__text {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
}
.booking-modal__btn {
  min-width: 140px;
}
@keyframes bookingModalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tours__booking > p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}
.tours__phone {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  color: var(--wine);
  letter-spacing: -0.01em;
  transition: color var(--tr);
}
.tours__phone:hover { color: var(--wine-mid); }
.tours__contact-name {
  font-size: 13px;
  color: var(--text-mid);
  letter-spacing: 0.06em;
}

/* ── PRODAJNA MJESTA ── */
.shops {
  padding-block: var(--section);
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.shops__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
  margin-bottom: clamp(56px, 7vw, 96px);
}

.shops__badge {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(107, 34, 51, 0.18);
  border-radius: var(--radius);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 16px;
}

.shops__name {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  color: var(--earth);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.shops__text p {
  font-size: clamp(15px, 1.3vw, 16.5px);
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}
.shops__text p:last-child { margin-bottom: 0; }

.shops__address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-mid);
}
.shops__address-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}
.shops__address-val {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  color: var(--earth);
  line-height: 1.5;
}

.shops__visual { position: relative; }
.shops__photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 220px;
  background: rgba(30, 20, 10, 0.06);
}
.shops__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s var(--ease);
}
.shops__photo-wrap:hover .shops__photo { transform: scale(1.04); }

.shops__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}

.shops__offer,
.shops__aside {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow: 0 24px 64px rgba(30, 20, 10, 0.05);
}

.shops__panel-head {
  margin-bottom: clamp(24px, 3vw, 32px);
  padding-bottom: clamp(20px, 2.5vw, 28px);
  border-bottom: 1px solid var(--border);
}

.shops__panel-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.shops__subheading {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--earth);
  line-height: 1.2;
  margin-bottom: 0;
}

.shops__offer .shops__subheading {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 500;
}

.shops__catalog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  list-style: none;
}

.shops__catalog-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition:
    border-color var(--tr),
    background var(--tr),
    transform 0.2s ease,
    box-shadow 0.25s ease;
}
.shops__catalog-item:hover {
  border-color: rgba(201, 169, 110, 0.45);
  background: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(30, 20, 10, 0.06);
}

.shops__catalog-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 300;
  color: rgba(107, 34, 51, 0.14);
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  transition: color var(--tr);
}
.shops__catalog-item:hover .shops__catalog-num { color: rgba(201, 169, 110, 0.55); }

.shops__catalog-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.shops__catalog-body strong {
  font-family: var(--serif);
  font-size: clamp(19px, 1.9vw, 23px);
  font-weight: 600;
  color: var(--earth);
  line-height: 1.25;
}
.shops__catalog-body p {
  font-size: clamp(14.5px, 1.35vw, 16.5px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.68;
}

.shops__aside {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.shops__tour {
  padding-bottom: clamp(24px, 3vw, 32px);
  margin-bottom: clamp(24px, 3vw, 32px);
  border-bottom: 1px solid var(--border);
}

.shops__aside-badge {
  display: inline-block;
  padding: 5px 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: var(--radius);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
}

.shops__aside .shops__subheading {
  margin-bottom: 16px;
}

.shops__aside-text {
  font-size: clamp(14.5px, 1.2vw, 16px);
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 20px;
}

.shops__tour-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  padding: 10px 18px;
  border: 1.5px solid rgba(107, 34, 51, 0.22);
  border-radius: var(--radius);
  transition:
    background var(--tr),
    border-color var(--tr),
    color var(--tr),
    transform 0.2s ease;
}
.shops__tour-link:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--warm-white);
  transform: translateY(-2px);
}

.shops__contact {
  margin-top: auto;
}

.shops__contact-head {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.shops__contact-lead {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 20px;
}

.shops__contact-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.shops__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 100%;
  transition:
    border-color var(--tr),
    background var(--tr),
    transform 0.2s ease;
}
.shops__link:hover {
  border-color: rgba(201, 169, 110, 0.45);
  background: var(--warm-white);
  transform: translateY(-2px);
}
.shops__link-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
}
.shops__link-val {
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 400;
  color: var(--wine);
  line-height: 1.2;
  word-break: break-word;
  transition: color var(--tr);
}
.shops__link:hover .shops__link-val { color: var(--wine-mid); }
.shops__link-sub {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.shops__signoff {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--wine);
  line-height: 1.2;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
}

/* ── CTA SECTION ── */
.cta {
  position: relative;
  padding-block: clamp(100px, 14vw, 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta__media {
  position: absolute;
  inset: 0;
}
.cta__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 14, 10, 0.78);
}
.cta__body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-inline: clamp(20px, 6vw, 80px);
  max-width: 680px;
}
.cta__heading {
  font-family: var(--serif);
  font-size: clamp(40px, 6.5vw, 78px);
  font-weight: 400;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.cta__text {
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin-bottom: 44px;
}

/* ── GALLERY ── */
.gallery {
  padding-block: clamp(64px, 8vw, 104px) clamp(48px, 6vw, 72px);
  background: var(--cream);
  overflow: hidden;
}

.gallery__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(32px, 4vw, 44px);
  text-align: left;
}
.gallery__header .h2 { margin-bottom: 0; }
.gallery__header-text { flex: 1; min-width: 0; }

.gallery__intro {
  flex: 0 1 340px;
  font-size: clamp(14px, 1.2vw, 15.5px);
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}

.gallery__strip {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 169, 110, 0.45) transparent;
  cursor: grab;
  padding-block: 4px 8px;
}
.gallery__strip:active { cursor: grabbing; }
.gallery__strip::-webkit-scrollbar { height: 3px; }
.gallery__strip::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 110, 0.40);
  border-radius: 2px;
}

.gallery__track {
  display: flex;
  gap: 10px;
  width: max-content;
  padding-inline: clamp(20px, 5vw, 80px);
}

.gallery__item {
  flex: 0 0 clamp(200px, 26vw, 280px);
  height: clamp(140px, 17vw, 195px);
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 0;
}

.gallery__open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s var(--ease);
}
.gallery__open:hover img,
.gallery__open:focus-visible img { transform: scale(1.05); }

.gallery__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(36px, 4.5vw, 48px);
  padding-top: clamp(28px, 3.5vw, 40px);
  border-top: 1px solid var(--border);
}

.gallery__footer-text {
  font-size: clamp(14px, 1.2vw, 15.5px);
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
}

.gallery__footer-link {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  padding: 12px 22px;
  border: 1.5px solid rgba(107, 34, 51, 0.22);
  border-radius: var(--radius);
  transition:
    background var(--tr),
    border-color var(--tr),
    color var(--tr),
    transform 0.2s ease;
}
.gallery__footer-link:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--warm-white);
  transform: translateY(-2px);
}

/* ── GALLERY LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(12, 8, 6, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}
.lightbox[hidden] { display: none; }

.lightbox__figure {
  margin: 0;
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background var(--tr), border-color var(--tr);
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: background var(--tr), border-color var(--tr);
}
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}
.lightbox__nav--prev { left: clamp(12px, 3vw, 28px); }
.lightbox__nav--next { right: clamp(12px, 3vw, 28px); }

.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* ── CONTACT ── */
.contact {
  background: var(--cream);
  padding-block: clamp(72px, 9vw, 120px);
}

.contact__header {
  max-width: 560px;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.contact__header .h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  margin-bottom: 18px;
}
.contact__header .eyebrow {
  margin-bottom: 14px;
}

.contact__lead {
  font-size: clamp(15px, 1.35vw, 17px);
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 48ch;
  margin: 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}

.contact__body {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 32px);
}

.contact__channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact__channel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(16px, 2vw, 20px) clamp(16px, 1.8vw, 18px);
  background: #fff;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  min-height: 100%;
  transition:
    background var(--tr),
    border-color var(--tr),
    transform 0.2s ease;
}
.contact__channel:hover {
  background: var(--warm-white);
  border-color: rgba(201, 169, 110, 0.45);
  transform: translateY(-2px);
}
.contact__channel--primary {
  background: rgba(201, 169, 110, 0.1);
  border-color: rgba(201, 169, 110, 0.35);
}
.contact__channel--primary:hover {
  background: rgba(201, 169, 110, 0.16);
  border-color: var(--gold);
}

.contact__channel-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  color: var(--wine);
}
.contact__channel--primary .contact__channel-icon {
  border-color: rgba(201, 169, 110, 0.45);
  color: var(--gold-hover);
}
.contact__channel-icon svg {
  width: 17px;
  height: 17px;
}

.contact__channel-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.contact__channel-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
}
.contact__channel-val {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 400;
  color: var(--wine);
  line-height: 1.25;
  word-break: break-word;
}
.contact__channel--primary .contact__channel-val {
  color: var(--wine-mid);
}

.contact__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  padding-top: clamp(22px, 2.5vw, 28px);
  border-top: 1px solid var(--border);
}

.contact__info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__info-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}
.contact__info-val {
  font-size: clamp(14px, 1.25vw, 15.5px);
  color: var(--text-mid);
  line-height: 1.65;
  font-style: normal;
}

.contact__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: clamp(20px, 2.5vw, 24px);
  border-top: 1px solid var(--border);
}

.contact__person {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0;
}

.contact__social {
  display: flex;
  gap: 18px;
}
.contact__social-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--border-mid);
  transition: color var(--tr), border-color var(--tr);
}
.contact__social-link:hover {
  color: var(--wine);
  border-color: var(--wine);
}

.contact__aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
}

.contact__map {
  position: relative;
  flex: 1;
  min-height: clamp(280px, 32vw, 360px);
  background: #f0e9df;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  overflow: hidden;
}
.contact__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact__directions {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  padding: 11px 18px;
  border: 1.5px solid rgba(107, 34, 51, 0.22);
  border-radius: var(--radius);
  transition:
    background var(--tr),
    border-color var(--tr),
    color var(--tr),
    transform 0.2s ease;
}
.contact__directions:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--warm-white);
  transform: translateY(-1px);
}

/* ── FOOTER ── */
.footer {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  padding-block: 64px 52px;
}
.footer__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.footer__brand {
  display: flex;
  justify-content: center;
}

.footer__brand-logo {
  display: block;
  height: clamp(58px, 8vw, 76px);
  width: auto;
  max-width: min(168px, 50vw);
  object-fit: contain;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
}
.footer__nav a {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  transition: color var(--tr);
}
.footer__nav a:hover { color: var(--wine); }
.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__legal p {
  font-size: 12px;
  color: var(--text-light);
}
.footer__company {
  line-height: 1.65;
  margin-bottom: 2px;
}
.footer__age {
  font-size: 11px !important;
  letter-spacing: 0.04em;
}

/* ── KEYFRAME ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollBob {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50%       { opacity: 0.7;  transform: scaleY(1.12); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .wines__featured-grid { grid-template-columns: 1fr; }
  .wines__featured-accent {
    justify-content: center;
    align-items: center;
  }
  .wines__featured-bottle {
    display: flex;
    justify-content: center;
    transform: none !important;
  }
  .wines__featured-bottle-img {
    width: auto;
    margin-inline: auto;
    object-position: center bottom;
  }
  .wines__grid { grid-template-columns: repeat(2, 1fr); }
  .wines__grid .wcard:nth-child(3) { transition-delay: 0ms; }
  .family__intro { padding-bottom: clamp(40px, 5vw, 72px); }
  .family__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 520px;
    margin-inline: auto;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 900px)
   ══════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* ── NAV ── */
  .nav__container { position: relative; z-index: 2; }
  .nav__tools { position: relative; z-index: 2; }
  .nav__burger { display: flex; }

  .nav__menu {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 90;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding:
      calc(var(--nav-h) + 28px)
      clamp(24px, 6vw, 40px)
      max(32px, env(safe-area-inset-bottom));
    background: var(--cream);
    border: none;
    box-shadow: none;
    max-height: none;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.45s var(--ease),
      visibility 0.45s var(--ease);
  }
  .nav__menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav__menu::before {
    content: '';
    display: block;
    width: 52px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 20px;
    flex-shrink: 0;
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 340px);
    gap: 0;
    counter-reset: nav-item;
  }
  .nav__list li {
    width: 100%;
    border: none;
    counter-increment: nav-item;
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 0.45s var(--ease),
      transform 0.45s var(--ease);
  }
  .nav__menu.open .nav__list li {
    opacity: 1;
    transform: none;
  }
  .nav__menu.open .nav__list li:nth-child(1) { transition-delay: 0.06s; }
  .nav__menu.open .nav__list li:nth-child(2) { transition-delay: 0.10s; }
  .nav__menu.open .nav__list li:nth-child(3) { transition-delay: 0.14s; }
  .nav__menu.open .nav__list li:nth-child(4) { transition-delay: 0.18s; }
  .nav__menu.open .nav__list li:nth-child(5) { transition-delay: 0.22s; }
  .nav__menu.open .nav__list li:nth-child(6) { transition-delay: 0.26s; }
  .nav__menu.open .nav__list li:nth-child(7) { transition-delay: 0.30s; }
  .nav__menu.open .nav__list li:nth-child(8) { transition-delay: 0.34s; }
  .nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 15px 0;
    font-family: var(--serif);
    font-size: clamp(26px, 6.5vw, 32px);
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--earth);
    border-bottom: 1px solid var(--border);
    transition:
      color var(--tr),
      border-color var(--tr),
      padding-inline var(--tr);
  }
  .nav__link::before {
    content: counter(nav-item, decimal-leading-zero);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--gold);
    flex-shrink: 0;
  }
  .nav__link::after {
    display: block;
    content: '→';
    font-family: var(--sans);
    font-size: 14px;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-6px);
    transition:
      opacity var(--tr),
      transform var(--tr);
    width: auto;
    height: auto;
    position: static;
    background: none;
  }
  .nav__link:hover,
  .nav__link:focus-visible,
  .nav__link--active {
    color: var(--wine);
    padding-inline: 6px;
    border-color: rgba(201, 169, 110, 0.35);
    outline: none;
  }
  .nav__link:hover::after,
  .nav__link:focus-visible::after,
  .nav__link--active::after {
    opacity: 1;
    transform: translateX(0);
    width: auto;
  }
  .nav__shop {
    width: min(100%, 340px);
    margin-top: 28px;
    padding: 15px 24px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--warm-white);
    background: var(--wine);
    border: 1.5px solid var(--wine);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(107, 34, 51, 0.22);
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 0.45s var(--ease) 0.38s,
      transform 0.45s var(--ease) 0.38s,
      background var(--tr),
      border-color var(--tr),
      box-shadow var(--tr);
  }
  .nav__menu.open .nav__shop {
    opacity: 1;
    transform: none;
  }
  .nav__shop:hover {
    background: var(--wine-mid);
    border-color: var(--wine-mid);
    box-shadow: 0 16px 40px rgba(107, 34, 51, 0.28);
  }

  /* ── HERO ── */
  .hero__deco { display: none; }
  .hero__logo { height: clamp(112px, 26vw, 168px); max-width: min(300px, 88vw); }
  .hero__kicker { margin-bottom: 28px; }
  .hero__heading { margin-bottom: 32px; }

  /* ── ABOUT ── */
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { max-width: 520px; margin-inline: auto; }
  .about__photo-wrap { aspect-ratio: 4 / 3; }

  /* ── ZINFANDEL ── */
  .zin__inner { display: block; }
  .zin__text { max-width: none; }

  /* ── VINEYARDS ── */
  .vineyards__overlay {
    background: linear-gradient(to bottom, rgba(20,12,8,0.80) 0%, rgba(20,12,8,0.65) 100%);
  }
  .vineyards__content { max-width: none; }

  /* ── WINES FEATURED ── */
  .wines__featured-grid { grid-template-columns: 1fr; }
  .wines__featured-accent {
    display: flex;
    order: -1;
    min-height: auto;
    margin-bottom: 8px;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .wines__featured-bottle {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    max-width: 100%;
    margin: 0;
    transform: none !important;
  }
  .wines__featured-bottle-img {
    width: auto;
    max-width: min(78vw, 300px);
    height: auto;
    max-height: 380px;
    margin-inline: auto;
    object-fit: contain;
    object-position: center bottom;
  }
  .wines__featured::before { display: none; }
  .wines__featured-name { font-size: clamp(36px, 8vw, 64px); }

  /* ── SHOPS ── */
  .shops__main { grid-template-columns: 1fr; gap: 48px; }
  .shops__visual { max-width: 520px; margin-inline: auto; order: -1; }
  .shops__details { grid-template-columns: 1fr; }
  .shops__catalog { grid-template-columns: 1fr; }
  .shops__contact-links { grid-template-columns: 1fr; }

  /* ── CONTACT ── */
  .contact__grid { grid-template-columns: 1fr; }
  .contact__channels { grid-template-columns: 1fr; }
  .contact__info { grid-template-columns: 1fr; }
  .contact__map { min-height: 260px; }

  /* ── GALLERY ── */
  .gallery__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .gallery__intro {
    flex: none;
    max-width: 36ch;
    text-align: center;
  }
  .gallery__strip {
    scroll-snap-type: x mandatory;
  }
  .gallery__track {
    gap: 12px;
    padding-inline: max(16px, calc((100vw - min(82vw, 360px)) / 2));
  }
  .gallery__item {
    flex: 0 0 min(82vw, 360px);
    height: min(62vw, 275px);
    scroll-snap-align: center;
  }
  .gallery__footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .gallery__footer-text {
    max-width: 36ch;
    text-align: center;
  }
  .gallery__footer-link { width: 100%; max-width: 320px; text-align: center; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 640px)
   ══════════════════════════════════════════════ */
@media (max-width: 640px) {

  /* ── GLOBAL ── */
  :root { --section: 56px; }

  /* ── HERO ── */
  .hero { min-height: 100svh; }
  .hero__video { object-position: center center; }
  .hero__logo { height: clamp(104px, 28vw, 148px); }
  .hero__kicker { font-size: 10.5px; margin-bottom: 24px; }
  .hero__heading { margin-bottom: 28px; }
  .hero__sub { font-size: 15.5px; margin-bottom: 40px; }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin-inline: auto;
  }
  .hero__actions .btn { justify-content: center; }
  .hero__scroll { display: none; }

  /* ── ABOUT ── */
  .about__stats { gap: 20px; flex-wrap: wrap; }
  .about__stat-num { font-size: 38px; }
  .about__text p { font-size: 14.5px; }

  /* ── ZINFANDEL ── */
  .zin__body { font-size: 14.5px; }

  /* ── VINEYARDS ── */
  .vineyards__features { flex-wrap: wrap; gap: 20px 36px; }
  .vf__num { font-size: 28px; }
  .vineyards__body { font-size: 14.5px; }

  /* ── WINES FEATURED ── */
  .wines__featured { padding-block: 48px; }
  .wines__featured-bottle-img {
    max-width: min(72vw, 260px);
    max-height: 340px;
  }
  .wines__featured-name { font-size: clamp(34px, 9vw, 52px); }
  .wines__featured-desc { font-size: 14px; }
  .wines__featured-meta { gap: 24px; flex-wrap: wrap; }

  /* ── WINES CARDS ── */
  .wines__grid { grid-template-columns: 1fr; }
  .wines__grid .wcard { transition-delay: 0ms !important; }

  /* ── FAMILY ── */
  .fcard__photo-wrap { aspect-ratio: 4 / 3; min-height: 220px; }
  .fcard__name { font-size: 22px; }
  .family__tagline { padding: 28px 20px; margin-block: 40px; }
  .family__tagline p { font-size: 14.5px; }

  /* ── SHOPS ── */
  .shops__name { font-size: 24px; }
  .shops__text p { font-size: 14.5px; }
  .shops__offer,
  .shops__aside { padding: 24px 20px; }
  .shops__catalog-item { padding: 16px; gap: 12px; }
  .shops__catalog-num { font-size: 24px; }
  .shops__catalog-body strong { font-size: 18px; }
  .shops__catalog-body p { font-size: 15px; }
  .shops__link-val { font-size: 17px; }
  .shops__signoff { font-size: 20px; }

  /* ── TOURS ── */
  .tours__top { padding-top: 48px; padding-bottom: 32px; }
  .tours__top .h2 { font-size: clamp(28px, 8vw, 40px); }
  .tcard { grid-template-columns: 1fr; min-height: auto; }
  .tcard__image { aspect-ratio: 16 / 6; order: -1 !important; min-height: auto; }
  .tcard--gastro .tcard__image,
  .tcard--rev .tcard__image {
    aspect-ratio: 16 / 10;
    min-height: 220px;
  }
  .tcard--gastro .tcard__slide:first-child .tcard__image-photo { object-position: center 62%; }
  .tcard--rev .tcard__slide:first-child .tcard__image-photo { object-position: center 58%; }
  .tcard__carousel-btn { width: 36px; height: 36px; font-size: 16px; }
  .tcard__carousel-btn--prev { left: 8px; }
  .tcard__carousel-btn--next { right: 8px; }
  .tcard__body { padding: 20px; }
  .tcard__num { font-size: 56px; top: 12px; right: 14px; }
  .tcard__name { font-size: 22px; }
  .tcard__desc { font-size: 13.5px; margin-bottom: 12px; }
  .tcard__list li { font-size: 13px; }
  .tcard__footer { gap: 12px; }
  .tcard__price-num { font-size: 34px; }
  .tours__booking { padding-top: 40px; }
  .tours__phone { font-size: 26px; }
  .treserve { padding: 18px 16px; }
  .treserve__row--meta,
  .treserve__row--contact { grid-template-columns: 1fr; gap: 0; }
  .treserve__field { margin-bottom: 10px; }
  .treserve__calendar { padding: 10px; }
  .treserve__cal-month { font-size: 15px; }
  .treserve__cal-day { height: 34px; font-size: 13px; }
  .treserve__submit { margin-top: 2px; }

  /* ── CTA ── */
  .cta__heading { font-size: clamp(30px, 8vw, 44px); }
  .cta__text { font-size: 14.5px; }

  /* ── GALLERY ── */
  .gallery__track {
    gap: 14px;
    padding-inline: max(16px, calc((100vw - min(88vw, 380px)) / 2));
  }
  .gallery__item {
    flex: 0 0 min(88vw, 380px);
    height: min(66vw, 290px);
  }

  /* ── CONTACT ── */
  .contact { padding-block: 56px; }
  .contact__header { margin-bottom: 32px; }
  .contact__header .h2 { font-size: clamp(28px, 8vw, 38px); }
  .contact__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .contact__directions { width: 100%; justify-content: center; }
  .contact__map { min-height: 220px; }

  .lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .lightbox__close {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  /* ── FOOTER ── */
  .footer { padding-block: 44px 36px; }
  .footer__inner { gap: 20px; }
  .footer__brand-logo { height: clamp(52px, 14vw, 64px); max-width: min(148px, 56vw); }
  .footer__nav { gap: 6px 14px; }
  .footer__nav a { font-size: 12px; }
  .footer__legal p { font-size: 11px; }

  /* ── SECTION HEADERS ── */
  .section-header { margin-bottom: 36px; }
  .h2 { font-size: clamp(28px, 7vw, 44px); margin-bottom: 20px; }
}

/* ── WHATSAPP FLOAT BUTTON ── */
.wa-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow:
    0 4px 20px rgba(37, 211, 102, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  overflow: visible;
}
.wa-btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 10px 36px rgba(37, 211, 102, 0.55),
    0 4px 16px rgba(0, 0, 0, 0.18);
}
.wa-btn:hover .wa-btn__icon { animation: none; }
.wa-btn:active { transform: translateY(0) scale(0.96); }

/* Pulsing ring */
.wa-btn__ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: waRing 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes waRing {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.wa-btn__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  animation: waIcon 2.4s ease-in-out infinite;
}
@keyframes waIcon {
  0%, 100% { transform: scale(1) rotate(0deg); }
  12%      { transform: scale(1.12) rotate(-6deg); }
  24%      { transform: scale(1.08) rotate(6deg); }
  36%      { transform: scale(1.1) rotate(-4deg); }
  48%      { transform: scale(1) rotate(0deg); }
}

@media (max-width: 640px) {
  .wa-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .wa-btn__icon { width: 26px; height: 26px; }
}

/* ── FOCUS STYLES (accessibility) ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
