/* ============================================
   RAVALICO VINARSTVO — Luxury Design System
   ============================================ */

:root {
  --bg:          #060810;
  --bg-soft:     #0c0f18;
  --bg-card:     #0e1119;
  --gold:        #c9a66b;
  --gold-light:  #e2c992;
  --gold-dim:    rgba(201, 166, 107, 0.15);
  --wine:        #8b1e3f;
  --wine-soft:   #a8365c;
  --text:        #f0ece6;
  --text-soft:   #a8aab4;
  --text-muted:  #6b6f7b;
  --border:      rgba(201, 166, 107, 0.18);
  --border-soft: rgba(255, 255, 255, 0.06);
  --glass:       rgba(255, 255, 255, 0.03);
  --glass-border:rgba(255, 255, 255, 0.08);
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  /* Curve separator control (adjust only this height) */
  --wine-divider-height: clamp(80px, 9vw, 120px);
  --linija-1903-top: #181d30;
  --linija-1903-mid: #1d2238;
  --linija-1903-bottom: #181d30;
  --linija-1903-base-gradient: linear-gradient(
    180deg,
    var(--linija-1903-top) 0%,
    var(--linija-1903-mid) 56%,
    var(--linija-1903-bottom) 100%
  );
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  color: var(--text);
  background: var(--bg);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

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

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

.container {
  width: min(1280px, 90vw);
  margin: 0 auto;
}

h1, h2, h3, h4 {
  font-family: "Cinzel", serif;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

/* ============================================
   MOUSE FOLLOWER (Desktop)
   ============================================ */

.mouse-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1.2px solid rgba(201, 166, 107, 0.72);
  background:
    radial-gradient(circle at 35% 35%, rgba(226, 201, 146, 0.32), rgba(201, 166, 107, 0.06) 58%, transparent 72%);
  box-shadow:
    0 0 18px rgba(201, 166, 107, 0.24),
    inset 0 0 14px rgba(201, 166, 107, 0.2);
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transform: translate3d(-9999px, -9999px, 0) scale(0.85);
  transition:
    opacity 0.2s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

.mouse-follower.is-visible {
  opacity: 1;
}

.mouse-follower.is-hover {
  border-color: rgba(226, 201, 146, 0.95);
  background:
    radial-gradient(circle at 35% 35%, rgba(226, 201, 146, 0.4), rgba(201, 166, 107, 0.12) 58%, transparent 72%);
  box-shadow:
    0 0 26px rgba(226, 201, 146, 0.42),
    inset 0 0 18px rgba(226, 201, 146, 0.2);
}

@media (max-width: 1023px), (hover: none), (pointer: coarse) {
  .mouse-follower {
    display: none !important;
  }
}

/* ============================================
   PRELOADER
   ============================================ */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.7s ease, visibility 0.7s ease;
  overflow: hidden;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(92vw, 980px);
  min-height: min(74vw, 560px);
}

.preloader-logo-wrap {
  position: relative;
  z-index: 2;
  width: min(52vw, 360px);
}

.preloader-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(72vw, 540px);
  height: min(72vw, 540px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.preloader-ring-svg {
  width: 100%;
  height: 100%;
  animation: preloaderRingRotate 1.2s ease-in-out infinite;
}

.preloader-ring-track {
  fill: none;
  stroke: rgba(201, 166, 107, 0.24) !important;
  stroke-width: 1.5;
}

.preloader-ring-path {
  fill: none;
  stroke: #c9a66b !important;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-dasharray: 340;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: preloaderRingDash 1.2s ease-in-out infinite;
}

.preloader-logo {
  width: 100%;
  max-height: min(52vh, 400px);
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
  animation: preloaderLogoIn 0.7s var(--ease-out) 0.08s forwards;
}

.preloader-counter {
  position: relative;
  z-index: 2;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  letter-spacing: 0.16em;
  opacity: 0;
  transform: translateY(8px);
  animation: preloaderCounterIn 0.45s ease 0.45s forwards;
}

.preloader-counter-number {
  display: inline-block;
  min-width: 36px;
  text-align: right;
}

.preloader-percent-symbol {
  margin-left: 2px;
  opacity: 0.9;
}

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

@keyframes preloaderCounterIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes preloaderRingRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}

@keyframes preloaderRingDash {
  0% {
    stroke-dashoffset: 340;
    transform: rotate(0deg);
  }
  50% {
    stroke-dashoffset: 85;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 340;
    transform: rotate(450deg);
  }
}

.preloader-wine-icon {
  width: 60px;
  height: 120px;
  animation: preloaderFloat 2.5s ease-in-out infinite alternate;
}

.preloader-glass {
  width: 100%;
  height: 100%;
}

.wine-fill {
  transform-origin: bottom center;
  animation: wineFill 2s ease-out 0.3s forwards;
  clip-path: inset(100% 0 0 0);
}

@keyframes wineFill {
  to { clip-path: inset(40% 0 0 0); }
}

.glass-outline {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawGlass 1.5s ease-out forwards;
}

@keyframes drawGlass {
  to { stroke-dashoffset: 0; }
}

@keyframes preloaderFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}

.preloader-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  font-family: "Cinzel", serif;
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  letter-spacing: 0.15em;
  color: var(--gold);
}

.preloader-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: letterIn 0.5s var(--ease-out) forwards;
  animation-delay: calc(var(--i) * 60ms + 400ms);
}

@keyframes letterIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preloader-tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--text-soft);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeIn 0.6s ease 1.2s forwards;
}

.preloader-progress {
  width: min(280px, 60vw);
  height: 2px;
  background: rgba(201, 166, 107, 0.15);
  border-radius: 999px;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.4s ease 0.8s forwards;
}

.preloader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 999px;
  transition: width 0.3s ease;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 8, 16, 0.85);
  border-bottom-color: var(--border-soft);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  transition: opacity var(--transition);
}

.brand:hover { opacity: 0.8; }

.brand img {
  width: auto;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201, 166, 107, 0.2));
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
  transition: color var(--transition);
  cursor: pointer;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav a:hover {
  color: var(--gold);
}

.nav a:hover::after {
  width: 100%;
}

.menu-close,
.lang-switch {
  display: none;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--text);
  width: 44px;
  height: 44px;
  padding: 10px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: saturate(0.85) brightness(0.5) contrast(1.1);
  z-index: 0;
  animation: heroZoom 30s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to   { transform: scale(1.12) translate3d(0, -1.5%, 0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(201, 166, 107, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, rgba(6, 8, 16, 0.4) 0%, rgba(6, 8, 16, 0.7) 60%, var(--bg) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleDrift linear infinite;
}

@keyframes particleDrift {
  0%   { opacity: 0; transform: translate3d(0, 0, 0); }
  10%  { opacity: 0.4; }
  90%  { opacity: 0.2; }
  100% { opacity: 0; transform: translate3d(var(--dx, 30px), var(--dy, -100vh), 0); }
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 3;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(201, 166, 107, 0.06);
  backdrop-filter: blur(8px);
}

.hero-badge span {
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  color: var(--text-soft);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-style: italic;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50%      { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-family: "Cinzel", serif;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn svg {
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-gold {
  color: #0e0a04;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
  font-weight: 600;
}

.btn-gold:hover {
  box-shadow: 0 8px 28px rgba(201, 166, 107, 0.3), 0 0 0 1px rgba(201, 166, 107, 0.2);
}

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

.btn-outline:hover {
  background: rgba(201, 166, 107, 0.08);
  border-color: rgba(201, 166, 107, 0.4);
}

.btn-glass {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 166, 107, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.btn-wine {
  color: #fff;
  background: linear-gradient(135deg, var(--wine), var(--wine-soft));
  border: none;
  font-weight: 600;
  display: flex;
  margin: 0 auto;
  width: min(480px, 100%);
}

.btn-wine:hover {
  box-shadow: 0 8px 28px rgba(139, 30, 63, 0.35);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.section-label span:not(.label-line) {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.label-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.label-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  margin: 0 auto 40px;
  max-width: 720px;
  text-align: center;
  color: var(--text-soft);
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Separator between sections */
.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 70vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ============================================
   STORY
   ============================================ */

.section-story {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 50%, var(--bg) 100%);
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  margin-top: 48px;
}

.story-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.story-image-wrap img {
  width: 100%;
  height: auto;
  min-height: 360px;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.story-image-wrap:hover img {
  transform: scale(1.04);
}

.story-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 8, 16, 0.6));
  pointer-events: none;
}

.story-year-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  padding: 14px 20px;
  background: rgba(6, 8, 16, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.story-year-badge .counter {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 600;
}

.story-year-badge small {
  font-size: 0.75rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.story-text {
  color: #d0d0ce;
  font-size: 1.2rem;
  line-height: 1.7;
}

.story-text .story-lead {
  font-size: 1.35rem;
  color: var(--text);
  line-height: 1.65;
}

.story-text p {
  margin-bottom: 20px;
}

.story-text blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 2px solid var(--gold);
  color: var(--gold-light);
  font-style: italic;
  font-size: 1.25rem;
  background: var(--gold-dim);
  border-radius: 0 var(--radius) var(--radius) 0;
  position: relative;
}

.story-text blockquote svg {
  color: rgba(201, 166, 107, 0.3);
  margin-bottom: 8px;
}

/* ============================================
   MANIFESTO
   ============================================ */

.section-manifesto {
  padding: clamp(60px, 8vw, 100px) 0;
  background: linear-gradient(180deg, var(--bg), rgba(201, 166, 107, 0.03), var(--bg));
}

.manifesto-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.manifesto-copy {
  max-width: 720px;
}

.manifesto-lines {
  max-width: 100%;
  margin: 0;
}

.manifesto-line {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 10px;
}

.manifesto-line span {
  display: inline;
  background: linear-gradient(180deg, var(--text) 0%, var(--text-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.manifesto-badge {
  margin-top: 26px;
  display: inline-block;
  padding: 11px 24px;
  border: 1px solid var(--border);
  font-family: "Cinzel", serif;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-radius: var(--radius);
  background: var(--gold-dim);
}

.manifesto-photo {
  margin: 0;
  width: min(100%, 460px);
  justify-self: end;
}

.manifesto-photo-frame {
  position: relative;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(201, 166, 107, 0.28);
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35);
}

.manifesto-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 16, 0.05), rgba(6, 8, 16, 0.36));
  pointer-events: none;
}

.manifesto-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  animation: manifestoPhotoFloat 6.2s ease-in-out infinite alternate;
}

@keyframes manifestoPhotoFloat {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.02) translateY(-6px); }
}

/* ============================================
   TERROIR
   ============================================ */

.section-terroir {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 9vw, 118px) 0 clamp(70px, 8vw, 108px);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 50%, var(--bg) 100%);
  isolation: isolate;
}

.section-terroir::before {
  display: none;
}

.terroir-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: center;
}

.terroir-copy {
  max-width: 720px;
  text-align: center;
}

.terroir-media {
  margin: 0;
  width: min(100%, 540px);
  justify-self: end;
  position: relative;
  z-index: 1;
}

.terroir-media-frame {
  position: relative;
  border-radius: calc(var(--radius-lg) + 4px);
  overflow: hidden;
  border: 1px solid rgba(201, 166, 107, 0.26);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.terroir-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 8, 16, 0.04), rgba(6, 8, 16, 0.36)),
    radial-gradient(70% 70% at 76% 26%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 62%);
  pointer-events: none;
}

.terroir-media-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.terroir-text-rise.reveal-up {
  transform: translateY(36px);
  transition-duration: 0.9s;
}

.section-terroir .section-label {
  justify-content: center;
}

.section-terroir .section-title {
  text-align: center;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
  margin-bottom: 18px;
}

.section-terroir .section-subtitle {
  margin: 0 auto 32px;
  text-align: center;
  max-width: 640px;
  color: #efe6d7;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.42);
}

.section-terroir .btn-glass {
  background: rgba(13, 10, 7, 0.62);
  border-color: rgba(255, 255, 255, 0.22);
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.section-terroir .btn-glass:hover {
  background: rgba(18, 14, 10, 0.78);
}

/* ============================================
   WINES
   ============================================ */

.section-wines {
  --wine-tone-accent: #e2c992;
  --wine-tone-accent-soft: rgba(226, 201, 146, 0.3);
  --wine-tone-subtitle: #a8aab4;
  --wine-tone-hover-border: rgba(201, 166, 107, 0.4);
  --wine-tone-active-start: rgba(201, 166, 107, 0.22);
  --wine-tone-active-end: rgba(139, 30, 63, 0.18);
  --wine-tone-active-border: rgba(226, 201, 146, 0.52);
  --wine-tone-card-bg: rgba(8, 11, 17, 0.72);
  --wine-tone-card-border: rgba(201, 166, 107, 0.24);
  --wine-tone-glow-1: rgba(201, 166, 107, 0.1);
  --wine-tone-glow-2: rgba(139, 30, 63, 0.08);
  --wine-tone-backdrop-a: rgba(201, 166, 107, 0.12);
  --wine-tone-backdrop-b: rgba(236, 205, 156, 0.08);
  --wine-tone-backdrop-c: rgba(124, 90, 38, 0.08);
  --wine-tone-mid: #1f150d;
  --wine-tone-end: #2c1d11;
  --wine-tone-bottom: #25180f;
  position: relative;
  overflow: visible;
  background:
    radial-gradient(ellipse 74% 58% at 18% 24%, var(--wine-tone-backdrop-a), transparent 66%),
    radial-gradient(ellipse 64% 54% at 82% 18%, var(--wine-tone-backdrop-b), transparent 66%),
    linear-gradient(180deg, #040302 0%, #070503 20%, var(--wine-tone-mid) 60%, var(--wine-tone-end) 100%);
  padding-top: clamp(80px, 10vw, 110px);
  padding-bottom: calc(clamp(80px, 10vw, 110px) + (var(--wine-divider-height) * 0.5));
  isolation: isolate;
  transition: background 0.55s ease;
  z-index: 2;
}

.section-wines[data-wine-tone="bijela"] {
  --wine-tone-accent: #e7cf9e;
  --wine-tone-accent-soft: rgba(231, 207, 158, 0.3);
  --wine-tone-subtitle: #b4b6be;
  --wine-tone-hover-border: rgba(219, 188, 127, 0.42);
  --wine-tone-active-start: rgba(214, 182, 118, 0.28);
  --wine-tone-active-end: rgba(120, 87, 41, 0.24);
  --wine-tone-active-border: rgba(233, 207, 154, 0.55);
  --wine-tone-card-bg: rgba(8, 11, 17, 0.72);
  --wine-tone-card-border: rgba(201, 166, 107, 0.24);
  --wine-tone-glow-1: rgba(206, 172, 110, 0.14);
  --wine-tone-glow-2: rgba(150, 108, 58, 0.12);
  --wine-tone-backdrop-a: rgba(206, 172, 110, 0.13);
  --wine-tone-backdrop-b: rgba(235, 208, 156, 0.1);
  --wine-tone-backdrop-c: rgba(120, 88, 42, 0.08);
  --wine-tone-mid: #2c1f12;
  --wine-tone-end: #44301b;
  --wine-tone-bottom: #392815;
}

.section-wines[data-wine-tone="crna"] {
  --wine-tone-accent: #c45a66;
  --wine-tone-accent-soft: rgba(196, 90, 102, 0.3);
  --wine-tone-subtitle: #b4969b;
  --wine-tone-hover-border: rgba(146, 44, 58, 0.55);
  --wine-tone-active-start: rgba(128, 22, 40, 0.44);
  --wine-tone-active-end: rgba(54, 10, 21, 0.4);
  --wine-tone-active-border: rgba(181, 69, 86, 0.62);
  --wine-tone-card-bg: rgba(15, 7, 10, 0.8);
  --wine-tone-card-border: rgba(141, 44, 62, 0.34);
  --wine-tone-glow-1: rgba(110, 18, 39, 0.24);
  --wine-tone-glow-2: rgba(63, 10, 24, 0.22);
  --wine-tone-backdrop-a: rgba(116, 26, 47, 0.24);
  --wine-tone-backdrop-b: rgba(161, 68, 89, 0.14);
  --wine-tone-backdrop-c: rgba(68, 12, 28, 0.12);
  --wine-tone-mid: #1a0d0a;
  --wine-tone-end: #2a1411;
  --wine-tone-bottom: #22100d;
}

.section-wines[data-wine-tone="rose"] {
  --wine-tone-accent: #f5bfd3;
  --wine-tone-accent-soft: rgba(245, 191, 211, 0.32);
  --wine-tone-subtitle: #d8bec9;
  --wine-tone-hover-border: rgba(238, 171, 197, 0.52);
  --wine-tone-active-start: rgba(232, 153, 185, 0.38);
  --wine-tone-active-end: rgba(149, 74, 108, 0.3);
  --wine-tone-active-border: rgba(246, 191, 212, 0.66);
  --wine-tone-card-bg: rgba(20, 11, 17, 0.74);
  --wine-tone-card-border: rgba(235, 165, 193, 0.34);
  --wine-tone-glow-1: rgba(227, 140, 176, 0.22);
  --wine-tone-glow-2: rgba(192, 99, 140, 0.18);
  --wine-tone-backdrop-a: rgba(225, 140, 178, 0.38);
  --wine-tone-backdrop-b: rgba(246, 188, 211, 0.22);
  --wine-tone-backdrop-c: rgba(168, 82, 118, 0.18);
  --wine-tone-mid: #2a161c;
  --wine-tone-end: #432430;
  --wine-tone-bottom: #361d27;
}

.section-wines[data-wine-tone="pjenusci"] {
  --wine-tone-accent: #ddd39f;
  --wine-tone-accent-soft: rgba(221, 211, 159, 0.32);
  --wine-tone-subtitle: #bbb7a1;
  --wine-tone-hover-border: rgba(205, 194, 132, 0.48);
  --wine-tone-active-start: rgba(179, 165, 104, 0.34);
  --wine-tone-active-end: rgba(87, 79, 45, 0.3);
  --wine-tone-active-border: rgba(219, 208, 146, 0.58);
  --wine-tone-card-bg: rgba(10, 12, 15, 0.75);
  --wine-tone-card-border: rgba(201, 187, 122, 0.3);
  --wine-tone-glow-1: rgba(180, 168, 103, 0.15);
  --wine-tone-glow-2: rgba(110, 98, 56, 0.14);
  --wine-tone-backdrop-a: rgba(172, 159, 95, 0.14);
  --wine-tone-backdrop-b: rgba(222, 212, 157, 0.1);
  --wine-tone-backdrop-c: rgba(108, 98, 58, 0.08);
  --wine-tone-mid: #241d13;
  --wine-tone-end: #382c1a;
  --wine-tone-bottom: #302514;
}

.section-wines[data-wine-tone="linija1903"] {
  --wine-tone-accent: #f0d6a1;
  --wine-tone-accent-soft: rgba(240, 214, 161, 0.34);
  --wine-tone-subtitle: #c7b18b;
  --wine-tone-hover-border: rgba(225, 186, 120, 0.54);
  --wine-tone-active-start: rgba(204, 160, 87, 0.38);
  --wine-tone-active-end: rgba(114, 59, 35, 0.34);
  --wine-tone-active-border: rgba(238, 202, 140, 0.64);
  --wine-tone-card-bg: rgba(13, 9, 12, 0.78);
  --wine-tone-card-border: rgba(227, 187, 118, 0.34);
  --wine-tone-glow-1: rgba(201, 156, 82, 0.18);
  --wine-tone-glow-2: rgba(116, 44, 61, 0.16);
  --wine-tone-backdrop-a: rgba(190, 146, 75, 0.18);
  --wine-tone-backdrop-b: rgba(238, 206, 149, 0.12);
  --wine-tone-backdrop-c: rgba(120, 49, 63, 0.09);
  --wine-tone-mid: #20130d;
  --wine-tone-end: #352013;
  --wine-tone-bottom: #2c1a10;
}

.section.section-wines::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  width: 100%;
  height: clamp(150px, 18vw, 220px);
  transform: none;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 8, 5, 0.94) 0%, rgba(10, 8, 5, 0.62) 34%, rgba(10, 8, 5, 0.2) 70%, rgba(10, 8, 5, 0) 100%);
  filter: none;
}

/* Ellipse divider attached to bottom of #vina and blending into #linija1903 */
#vina::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(var(--wine-divider-height) * -0.48);
  width: min(1960px, 170vw);
  height: calc(var(--wine-divider-height) * 1.1);
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 6;
  pointer-events: none;
  background: var(--linija-1903-base-gradient);
}

.wine-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.wine-svg-bg {
  position: absolute;
  inset: -12% -8% 18%;
  background-image: url("../converted_no_bg_clean.svg");
  background-repeat: no-repeat;
  background-position: 50% 52%;
  background-size: min(980px, 76vw) auto;
  opacity: 0.2;
  filter: grayscale(1) contrast(1.08) brightness(0.95);
  mix-blend-mode: screen;
  will-change: transform;
  z-index: 1;
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 70%, transparent 100%);
          mask-image: linear-gradient(180deg, black 0%, black 70%, transparent 100%);
}

.wine-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.32;
  z-index: 2;
  transition: background 0.45s ease, opacity 0.45s ease;
}

.wine-glow-1 {
  width: 460px;
  height: 460px;
  top: 12%;
  left: 2%;
  background: var(--wine-tone-glow-1);
}

.wine-glow-2 {
  width: 400px;
  height: 400px;
  top: 22%;
  right: -5%;
  background: var(--wine-tone-glow-2);
}

.wine-content {
  position: relative;
  z-index: 3;
}

.wine-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 34px;
  max-width: 980px;
}

.wine-filter-btn {
  appearance: none;
  border: 1px solid var(--glass-border);
  background: rgba(8, 11, 17, 0.62);
  color: var(--text-soft);
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.wine-filter-btn:hover {
  color: var(--text);
  border-color: var(--wine-tone-hover-border);
  transform: translateY(-1px);
}

.wine-filter-btn.is-active {
  color: #f6ead3;
  border-color: var(--wine-tone-active-border);
  background:
    linear-gradient(135deg, var(--wine-tone-active-start), var(--wine-tone-active-end)),
    rgba(8, 11, 17, 0.78);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.22),
    0 0 20px var(--wine-tone-accent-soft);
}

.wine-filter-btn:focus-visible {
  outline: 2px solid rgba(226, 201, 146, 0.65);
  outline-offset: 2px;
}

.wine-group {
  margin-bottom: 56px;
}

.section-wines #wine-sections {
  position: relative;
  isolation: isolate;
}

.section-wines #wine-sections::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  height: calc(100% + 320px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  background:
    radial-gradient(closest-side at 50% 50%,
      var(--wine-tone-backdrop-a) 0%,
      var(--wine-tone-backdrop-a) 18%,
      rgba(0, 0, 0, 0) 100%);
  filter: blur(60px);
  opacity: 0.85;
  transition: background 0.55s ease;
  z-index: -1;
}

.section-wines #wine-sections > * {
  position: relative;
  z-index: 1;
}

.wine-group:last-child {
  margin-bottom: 0;
}

.wine-group h3 {
  text-align: center;
  color: var(--wine-tone-accent);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 28px;
  text-shadow: 0 0 18px var(--wine-tone-accent-soft);
  transition: color 0.35s ease, text-shadow 0.35s ease;
}

.section-wines .section-subtitle {
  color: var(--wine-tone-subtitle);
  transition: color 0.35s ease;
}

.wine-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.wine-grid.narrow {
  max-width: 680px;
  margin: 0 auto;
}

.wine-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 20px 22px;
  text-align: center;
  cursor: pointer;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(31%, 260px);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

/* Darker, less transparent cards on landing wine sections */
.section-wines .wine-card {
  background: var(--wine-tone-card-bg);
  border-color: var(--wine-tone-card-border);
}

.section-1903 .wine-card {
  background: rgba(8, 11, 17, 0.72);
  border-color: rgba(201, 166, 107, 0.24);
}

.wine-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 166, 107, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wine-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(201, 166, 107, 0.35);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(201, 166, 107, 0.12);
}

.section-wines .wine-card:hover {
  border-color: var(--wine-tone-active-border);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.38),
    0 0 30px var(--wine-tone-accent-soft);
}

.wine-card:hover::before {
  opacity: 1;
}

.wine-card img {
  width: auto;
  max-width: 88%;
  max-height: 200px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  transition: transform 0.5s var(--ease-out);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
  object-fit: contain;
}

.wine-card:hover img {
  transform: scale(1.06) translateY(-4px);
}

.wine-card h4 {
  font-size: clamp(0.95rem, 1.4vw, 1.4rem);
  line-height: 1.25;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  word-break: break-word;
  hyphens: auto;
  padding: 0 2px;
  overflow-wrap: break-word;
}

.wine-card:hover h4 {
  color: var(--gold-light);
}

/* ============================================
   1903 COLLECTION
   ============================================ */

.section-1903 {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: clamp(96px, 11vw, 132px);
  padding-bottom: clamp(80px, 10vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 38%, rgba(226, 201, 146, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 60% at 18% 82%, rgba(139, 30, 63, 0.10), transparent 65%),
    radial-gradient(ellipse 50% 60% at 82% 80%, rgba(201, 166, 107, 0.08), transparent 65%),
    var(--linija-1903-base-gradient);
}

.section-1903::before {
  display: none;
}

.watermark-1903 {
  position: absolute;
  inset: 50% 0 auto;
  text-align: center;
  transform: translateY(-50%);
  z-index: 0;
  font-family: "Cinzel", serif;
  color: rgba(226, 201, 146, 0.07);
  font-size: clamp(10rem, 28vw, 24rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  pointer-events: none;
  user-select: none;
}

.section-1903 > .container {
  position: relative;
  z-index: 1;
}

.kicker {
  text-align: center;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  margin: 0 0 40px;
}

.legacy {
  text-align: center;
  margin: 48px 0 0;
  color: var(--text-soft);
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

/* 1903 Signature Stage - frameless immersive layout */
.signature-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  max-width: 1200px;
  margin: 56px auto 0;
  padding: 0 12px;
}

.signature-stage::before {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(226, 201, 146, 0.0) 8%,
    rgba(226, 201, 146, 0.55) 30%,
    rgba(226, 201, 146, 0.55) 70%,
    rgba(226, 201, 146, 0.0) 92%,
    transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.signature-stage::after {
  content: "1903";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  background: #1d2238;
  padding: 8px 16px;
  border: 1px solid rgba(226, 201, 146, 0.45);
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 0 24px rgba(226, 201, 146, 0.18);
}

.signature-piece {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  padding: 24px 16px 16px;
  isolation: isolate;
  z-index: 2;
}

.signature-numeral {
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 18px;
  position: relative;
  padding: 0 36px;
  text-transform: uppercase;
}

.signature-numeral::before,
.signature-numeral::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 26px;
  height: 1px;
  background: rgba(226, 201, 146, 0.55);
}
.signature-numeral::before { left: 0; }
.signature-numeral::after { right: 0; }

.signature-bottle {
  position: relative;
  width: clamp(210px, 24vw, 300px);
  height: clamp(340px, 44vw, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.signature-halo {
  position: absolute;
  inset: 6% 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(226, 201, 146, 0.28) 0%, rgba(226, 201, 146, 0.10) 35%, transparent 70%);
  filter: blur(28px);
  opacity: 0.55;
  transition: opacity 0.7s ease, transform 0.7s var(--ease-out);
  z-index: 0;
  pointer-events: none;
}

.signature-bottle img {
  position: relative;
  z-index: 1;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.6));
  transition: transform 0.7s var(--ease-out), filter 0.7s ease;
}

.signature-meta {
  max-width: 400px;
}

.signature-meta h3 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  transition: color 0.45s ease;
}

.signature-meta p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 22px;
  font-family: "Cormorant Garamond", serif;
}

.signature-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  position: relative;
  padding-bottom: 6px;
}

.signature-cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transform: translateX(-50%);
  transition: width 0.55s var(--ease-out);
}

.signature-cta svg {
  transition: transform 0.5s var(--ease-out);
}

.signature-piece:hover .signature-cta::after,
.signature-piece:focus-visible .signature-cta::after {
  width: 100%;
}

.signature-piece:hover .signature-cta svg,
.signature-piece:focus-visible .signature-cta svg {
  transform: translateX(4px);
}

.signature-piece:hover .signature-halo,
.signature-piece:focus-visible .signature-halo {
  opacity: 1;
  transform: scale(1.18);
}

.signature-piece:hover .signature-bottle img,
.signature-piece:focus-visible .signature-bottle img {
  transform: translateY(-14px) scale(1.05);
  filter:
    drop-shadow(0 40px 50px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 32px rgba(226, 201, 146, 0.32));
}

.signature-piece:hover .signature-meta h3,
.signature-piece:focus-visible .signature-meta h3 {
  color: var(--gold-light);
}

.signature-piece:focus-visible {
  outline: none;
}

@media (max-width: 820px) {
  .signature-stage {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 480px;
  }
  .signature-stage::before {
    top: 50%;
    bottom: auto;
    left: 14%;
    right: 14%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(226, 201, 146, 0.55) 30%,
      rgba(226, 201, 146, 0.55) 70%,
      transparent 100%);
  }
  .signature-bottle {
    width: clamp(180px, 48vw, 260px);
    height: clamp(280px, 60vw, 360px);
  }
}

/* ============================================
   AWARDS
   ============================================ */

.section-awards {
  position: relative;
  background: linear-gradient(180deg, #181d30 0%, #14182a 38%, #0e1220 72%, var(--bg) 100%);
  isolation: isolate;
}

.section-awards > .container {
  position: relative;
  z-index: 1;
}

.section-awards::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 110px;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'><defs><linearGradient id='ga' x1='0' y1='0' x2='0' y2='1'><stop offset='0%25' stop-color='%23181d30' stop-opacity='0.95'/><stop offset='100%25' stop-color='%23181d30' stop-opacity='0'/></linearGradient></defs><path d='M0,0 L1440,0 L1440,52 C1220,98 960,18 720,56 C480,94 240,32 0,72 Z' fill='url(%23ga)'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.awards-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 56px;
}

.award-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: var(--glass);
  transition: transform 0.4s var(--ease-out), border-color 0.4s ease, box-shadow 0.4s ease;
}

.award-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), 0 0 20px rgba(201, 166, 107, 0.08);
}

.award-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--gold-dim);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.award-card:hover .award-icon {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(201, 166, 107, 0.2);
}

.award-card h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.award-sub {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: "Cinzel", serif;
  margin-bottom: 10px;
}

.award-detail {
  color: var(--text-soft);
  font-size: 1.1rem;
}

/* Stats Row */
.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: 40px 0 0;
}

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: "Cinzel", serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-family: "Cinzel", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Cinzel", serif;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}

/* ============================================
   EXPERIENCE
   ============================================ */

.section-experience {
  position: relative;
  background:
    radial-gradient(120% 90% at 85% 12%, rgba(139, 30, 63, 0.30), transparent 55%),
    radial-gradient(95% 85% at 8% 92%, rgba(139, 30, 63, 0.20), transparent 60%),
    linear-gradient(180deg, #0a0710 0%, #12060d 52%, #0a0710 100%);
  overflow: hidden;
}

.section-experience::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 50% 0%, rgba(201, 166, 107, 0.06), transparent 70%);
  pointer-events: none;
}

.section-experience > .container {
  position: relative;
  z-index: 1;
}

.experience-headline-rule {
  display: block;
  width: 64px;
  height: 2px;
  margin: 2px 0 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.experience-cta {
  align-self: flex-start;
  margin-top: auto;
}

.experience-cta-mobile {
  display: none;
}

@media (max-width: 980px) {
  .experience-cta {
    display: none;
  }
  .experience-cta-mobile {
    display: inline-flex;
    margin-top: 22px;
  }
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: 24px;
  margin-bottom: 40px;
}

.experience-grid {
  display: block;
  margin: 0;
  order: 2;
  margin-top: clamp(14px, 2vw, 24px);
}

.experience-panel {
  position: relative;
  min-height: clamp(380px, 42vw, 600px);
  padding: clamp(26px, 3.2vw, 42px);
  border: 1px solid rgba(201, 166, 107, 0.3);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 0%, rgba(201, 166, 107, 0.13), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.experience-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 166, 107, 0.65), transparent);
}

.experience-kicker {
  margin: 0;
  color: var(--gold);
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
}

.experience-headline {
  margin: 0;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.16;
}

.experience-note {
  margin: 4px 0 0;
  max-width: 44ch;
  color: #dad5cd;
  font-size: clamp(1.03rem, 1.28vw, 1.22rem);
  line-height: 1.65;
}

.experience-highlights {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.experience-highlights li {
  position: relative;
  padding-left: 16px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.experience-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(201, 166, 107, 0.45);
}

.experience-footnote {
  margin: auto 0 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(201, 166, 107, 0.32);
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  line-height: 1.6;
}

.experience-bottle-stage {
  position: relative;
  width: 100%;
  min-height: clamp(380px, 42vw, 600px);
  margin: 0;
  transform: translateY(14px);
  align-self: start;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(201, 166, 107, 0.26);
  background: rgba(8, 11, 18, 0.96);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  order: 1;
}

.experience-bottle-backdrop {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
}

.experience-bottle-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(139, 30, 63, 0.22) 0%, transparent 38%, rgba(10, 7, 16, 0.5) 100%),
    radial-gradient(80% 60% at 50% 110%, rgba(139, 30, 63, 0.28), transparent 70%);
  pointer-events: none;
}

.experience-bottle-backdrop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: none;
  max-height: none;
}

.experience-bottle-front {
  position: absolute;
  left: clamp(8px, 1.5vw, 16px);
  bottom: clamp(-34px, -2.6vw, -20px);
  z-index: 2;
  width: clamp(178px, 17vw, 252px);
  height: clamp(198px, 22vw, 324px);
  pointer-events: none;
}

.front-bottle {
  position: absolute;
  bottom: 0;
  width: clamp(96px, 8.9vw, 136px);
  height: auto;
  object-fit: contain;
  filter: brightness(0.88) saturate(0.94) drop-shadow(0 10px 18px rgba(0, 0, 0, 0.32));
  --bottle-base-y: 0px;
  --bottle-scroll-y: 0px;
  transform: translate3d(0, calc(var(--bottle-base-y) + var(--bottle-scroll-y)), 0);
  will-change: transform;
}

.front-bottle-left {
  left: 0;
  z-index: 3;
  --bottle-base-y: -8px;
}

.front-bottle-right {
  left: clamp(56px, 4.9vw, 78px);
  z-index: 2;
  --bottle-base-y: 10px;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  position: relative;
  border-top: 1px solid var(--border-soft);
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  padding: clamp(64px, 7vw, 80px) 0 24px;
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.4fr repeat(3, 1fr);
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  width: clamp(160px, 18vw, 200px);
  margin: 0 0 14px;
  filter: drop-shadow(0 0 10px rgba(201, 166, 107, 0.18));
}

.site-footer h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  margin-bottom: 8px;
}

.footer-block {
  border-left: 1px solid rgba(201, 166, 107, 0.12);
  padding-left: 20px;
}

.site-footer h4 {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
  font-family: "Cinzel", serif;
}

.site-footer p {
  margin: 0 0 8px;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.site-footer a {
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: var(--gold);
}

.copyright {
  margin: 28px 0 0;
  padding: 16px 0 6px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: "Cinzel", serif;
  border-top: 1px solid var(--border-soft);
}

.age-notice {
  margin: 0 0 4px;
  padding: 0 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.footer-lang-switch-wrap {
  border-top: 1px solid var(--border-soft);
}

.footer-lang-switch {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-family: "Cinzel", serif;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.footer-lang-switch a {
  color: var(--text-soft);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-lang-switch a:hover,
.footer-lang-switch a[aria-current="page"] {
  color: var(--gold);
}

.footer-lang-switch span {
  color: var(--text-muted);
}

/* ============================================
   MODAL
   ============================================ */

.wine-modal {
  width: min(920px, 92vw);
  max-height: 90vh;
  border: 1px solid var(--border);
  padding: 0;
  color: var(--text);
  background: linear-gradient(140deg, #0f1320, #0a0d16);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  grid-template-columns: minmax(220px, 380px) 1fr;
  gap: 0;
  overflow: hidden;
  margin: auto;
  inset: 0;
  position: fixed;
}

.wine-modal::backdrop {
  background: rgba(2, 3, 7, 0.82);
  backdrop-filter: blur(4px);
}

.wine-modal[open] {
  display: grid;
  animation: modalIn 0.4s var(--ease-out) forwards;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border);
}

.wine-modal .modal-media {
  padding: 36px;
  background: radial-gradient(circle at center, rgba(201, 166, 107, 0.1), transparent 60%);
}

.wine-modal .modal-media img {
  max-height: 400px;
  margin: 0 auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
}

.wine-modal .modal-media img.is-malvasia-nera {
  filter: brightness(1.2) contrast(1.05) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
}

.wine-modal .modal-content {
  padding: 32px 36px 38px;
  border-left: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-category {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  margin: 0 0 10px;
}

.wine-modal h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 14px;
}

.wine-modal p {
  margin: 0 0 20px;
  color: var(--text-soft);
  font-size: 1.15rem;
  line-height: 1.6;
}

/* ============================================
   BACK TO TOP
   ============================================ */

.to-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(6, 8, 16, 0.9);
  backdrop-filter: blur(8px);
  color: var(--gold);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 110;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.to-top-btn svg {
  width: 18px;
  height: 18px;
}

.to-top-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top-btn:hover {
  border-color: rgba(201, 166, 107, 0.5);
  box-shadow: 0 8px 24px rgba(201, 166, 107, 0.15);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}

.reveal-up {
  transform: translateY(32px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================
   SUBPAGE SUPPORT
   ============================================ */

.subpage-main {
  padding-top: 76px;
}

.hero-mini {
  padding: 72px 0 34px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 166, 107, 0.1), transparent 46%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.hero-mini p {
  margin: 10px auto 0;
  color: var(--text-soft);
  max-width: 880px;
  font-size: 1.2rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 980px) {
  .section.section-wines::before {
    top: -96px;
    height: 200px;
  }

  .wine-svg-bg {
    inset: -10% -18% -8%;
    background-size: min(980px, 112vw) auto;
    opacity: 0.16;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 120;
    background: rgba(6, 8, 16, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text);
    padding: 100px 34px 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0s 0.4s;
    overflow: hidden;
  }

  .nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.4s ease, visibility 0s;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-toggle span {
    transform-origin: left center;
  }

  .menu-toggle span:nth-child(1),
  .menu-toggle span:nth-child(3) {
    transform-origin: right center;
    transform: scaleX(0.74);
  }

  /* Hamburger to X animation */
  body.menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    width: 22px;
  }
  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }
  body.menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 22px;
  }

  .menu-close {
    display: block;
    position: absolute;
    top: 22px;
    right: 24px;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    width: 44px;
    height: 44px;
  }

  .nav a {
    position: relative;
    z-index: 1;
    color: var(--text);
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    text-align: center;
    transform: translateY(16px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease, color 0.25s ease;
  }

  .nav a::after {
    background: var(--gold);
  }

  .nav a:hover {
    color: var(--gold);
  }

  .nav.is-open a {
    transform: translateY(0);
    opacity: 1;
  }

  .nav a:nth-of-type(1) { transition-delay: 0.08s; }
  .nav a:nth-of-type(2) { transition-delay: 0.13s; }
  .nav a:nth-of-type(3) { transition-delay: 0.18s; }
  .nav a:nth-of-type(4) { transition-delay: 0.23s; }
  .nav a:nth-of-type(5) { transition-delay: 0.28s; }
  .nav a:nth-of-type(6) { transition-delay: 0.33s; }

  .lang-switch {
    display: flex;
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-family: "Cinzel", serif;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease 0.4s;
  }

  .nav.is-open .lang-switch {
    opacity: 1;
  }

  .lang-switch a { color: var(--text-soft); font-size: 0.9rem; }
  .lang-switch a:hover { color: var(--gold); }
  .lang-switch span { color: var(--text-muted); }

  body.menu-open .site-header {
    background: transparent !important;
    border-bottom-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: none !important;
  }

  .wine-card {
    width: min(47%, 280px);
  }

  .manifesto-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .manifesto-copy {
    max-width: 100%;
  }

  .manifesto-photo {
    width: min(100%, 420px);
    justify-self: center;
    margin-inline: auto;
  }

  .section-terroir {
    padding: clamp(70px, 10vw, 98px) 0;
  }

  .terroir-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .terroir-copy {
    max-width: 100%;
  }

  .terroir-media {
    width: min(100%, 520px);
    justify-self: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .experience-layout {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 34px;
  }

  .experience-grid {
    order: 1;
    min-height: 0;
    margin-top: 0;
  }

  .experience-panel {
    min-height: 0;
    padding: 22px 18px;
    gap: 12px;
  }

  .experience-headline {
    font-size: clamp(1.7rem, 5.8vw, 2.5rem);
  }

  .experience-bottle-stage {
    order: 2;
    min-height: clamp(320px, 84vw, 560px);
    transform: none;
  }

  .experience-bottle-front {
    width: clamp(156px, 36vw, 222px);
    height: clamp(178px, 40vw, 270px);
    bottom: -20px;
  }

  .front-bottle {
    width: clamp(78px, 21vw, 114px);
  }

  .front-bottle-right {
    left: clamp(42px, 10vw, 60px);
  }

  .experience-grid.parallax-bg {
    transform: none !important;
  }

  .footer-block {
    border-left: none;
    padding-left: 0;
  }

  .stats-row {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .stat {
    width: calc(50% - 12px);
  }
}

@media (max-width: 680px) {
  .footer-lang-switch-wrap {
    display: none;
  }

  .section.section-wines::before {
    top: -82px;
    height: 166px;
  }

  .wine-svg-bg {
    inset: -8% -34% -6%;
    background-size: min(900px, 158vw) auto;
    opacity: 0.14;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .section-wines {
    padding-bottom: calc(clamp(64px, 9vw, 86px) + (var(--wine-divider-height) * 0.44));
  }

  .section-1903 {
    padding-top: clamp(82px, 12vw, 112px);
    padding-bottom: clamp(72px, 10vw, 96px);
  }

  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .wine-filters {
    gap: 10px;
    margin-bottom: 26px;
  }

  .wine-filter-btn {
    min-height: 38px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    padding: 0 12px;
  }

  .manifesto-photo {
    width: 92%;
    justify-self: center;
    margin-inline: auto;
  }

  .manifesto-badge {
    letter-spacing: 0.1em;
    font-size: 0.7rem;
  }

  .wine-card {
    min-height: 240px;
    width: min(calc(50% - 10px), 180px);
    padding: 16px 10px 14px;
  }

  .wine-card img {
    max-height: 140px;
    max-width: 85%;
  }

  .wine-card h4 {
    font-size: 0.88rem;
  }

  .section-terroir {
    padding: 64px 0 62px;
  }

  .terroir-layout {
    gap: 24px;
  }

  .section-terroir .section-subtitle {
    font-size: 1.06rem;
    line-height: 1.65;
    margin-bottom: 26px;
  }

  .terroir-media {
    width: min(100%, 430px);
  }

  .wine-modal {
    grid-template-columns: 1fr;
    max-height: 90dvh;
    overflow: hidden;
  }

  .wine-modal .modal-media {
    padding: 16px;
  }

  .wine-modal .modal-media img {
    max-height: 33dvh;
  }

  .wine-modal .modal-content {
    border-left: none;
    border-top: 1px solid var(--border-soft);
    padding: 16px 20px 20px;
  }

  .wine-modal h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .wine-modal p {
    margin: 0 0 12px;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .modal-category {
    font-size: 0.7rem;
    margin: 0 0 6px;
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }

  .experience-layout {
    margin-bottom: 28px;
  }

  .experience-bottle-stage {
    min-height: clamp(260px, 92vw, 460px);
  }

  .experience-bottle-front {
    width: clamp(138px, 48vw, 188px);
    height: clamp(160px, 55vw, 236px);
    bottom: -14px;
  }

  .front-bottle {
    width: clamp(68px, 24vw, 98px);
  }

  .front-bottle-right {
    left: clamp(34px, 14vw, 52px);
  }

  .experience-grid.parallax-bg {
    transform: none !important;
  }

  .story-text,
  .experience-note,
  .experience-highlights li,
  .wine-modal p,
  .section-subtitle {
    font-size: 1.05rem;
  }

  .experience-footnote {
    font-size: 0.64rem;
    letter-spacing: 0.07em;
  }

  .manifesto-line {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }

  .hero-video {
    animation: none;
    transform: scale(1.05);
  }

  .preloader {
    display: none;
  }
}

/* ============================================
   EDITORIAL REDESIGN OVERRIDE
   Removes decorative AI-template UI patterns in favor of a calmer winery editorial system.
   ============================================ */

:root {
  --bg: #090907;
  --bg-soft: #11100d;
  --bg-card: #14120e;
  --gold: #b99153;
  --gold-light: #d7bd82;
  --gold-dim: rgba(185, 145, 83, 0.11);
  --wine: #6d1f31;
  --wine-soft: #8b3147;
  --text: #f0ede6;
  --text-soft: #c5bdaf;
  --text-muted: #8e877b;
  --border: rgba(185, 145, 83, 0.38);
  --border-soft: rgba(240, 237, 230, 0.12);
  --glass: transparent;
  --glass-border: rgba(185, 145, 83, 0.2);
  --radius: 0px;
  --radius-lg: 0px;
  --transition: 0.24s ease;
}

html {
  background: var(--bg);
}

body {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(180deg, #090907 0%, #11100d 48%, #080806 100%);
  background-size: 72px 72px, auto;
  color: var(--text);
}

body.loading {
  overflow-x: hidden;
  overflow-y: auto;
}

.preloader,
.mouse-follower,
.hero-particles,
.hero-particle,
.wine-glow,
.wine-svg-bg,
.vh-gradient-orb,
.vh-catalog-canvas,
.vh-catalog-svg,
.tt-strata-layer,
.tt-topo-svg,
.tt-grain {
  display: none !important;
}

.site-header {
  background: linear-gradient(180deg, rgba(9, 9, 7, 0.9), rgba(9, 9, 7, 0.62));
  border-bottom: 1px solid rgba(215, 189, 130, 0.16);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-scrolled {
  background: rgba(9, 9, 7, 0.96);
  border-bottom-color: rgba(215, 189, 130, 0.22);
}

.nav a,
.lang-switch a,
.footer-lang-switch a {
  letter-spacing: 0.12em;
}

.hero {
  min-height: 94svh;
  background: #090907;
}

.hero-video {
  filter: saturate(0.72) contrast(1.04) brightness(0.52);
  transform: none;
}

.hero-overlay,
.vh-hero-overlay,
.tt-hero-overlay,
.posj-hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 9, 7, 0.88) 0%, rgba(9, 9, 7, 0.52) 42%, rgba(9, 9, 7, 0.78) 100%),
    linear-gradient(180deg, rgba(9, 9, 7, 0.18) 0%, rgba(9, 9, 7, 0.82) 100%) !important;
}

.hero-content {
  text-align: left;
  max-width: 920px;
  margin-left: 0;
}

.hero-badge,
.tt-hero-chips span {
  display: inline-flex;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero h1 {
  max-width: 10ch;
  letter-spacing: 0.075em;
  text-shadow: none;
}

.hero-accent {
  color: var(--gold-light);
}

.tagline,
.hero .tagline,
.vh-hero-sub,
.tt-hero-sub,
.posj-hero-sub {
  max-width: 620px;
  margin-left: 0;
  color: var(--text-soft);
}

.hero-actions {
  justify-content: flex-start;
}

.btn,
.wine-filter-btn,
.wine-copy .cta {
  min-height: 46px;
  border-radius: 0 !important;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gold-light);
  box-shadow: none !important;
  letter-spacing: 0.14em;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.wine-filter-btn:hover,
.wine-copy .cta:hover {
  transform: none;
  background: rgba(185, 145, 83, 0.1);
  border-color: rgba(215, 189, 130, 0.72);
  color: #f3dfb4;
}

.btn:active {
  transform: none;
}

.btn-gold,
.btn-wine,
.wine-filter-btn.is-active {
  background: #b99153 !important;
  color: #0d0b08 !important;
  border-color: #b99153 !important;
}

.btn-glass,
.btn-outline {
  background: transparent;
  color: var(--gold-light);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.section {
  padding: clamp(82px, 9vw, 126px) 0;
}

.section + .section::before {
  width: min(1100px, 86vw);
  background: rgba(215, 189, 130, 0.18);
}

.section-label {
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.section-label span:not(.label-line),
.vh-hero-label,
.kicker,
.experience-kicker,
.award-sub,
.stat-label,
.posj-contact-card small,
.posj-info-item h4 {
  color: var(--gold-light);
  letter-spacing: 0.18em;
}

.label-line {
  width: 58px;
  background: var(--border);
}

.section-label .label-line:last-child {
  display: none;
}

.section-title,
.wine-group h3,
.vh-catalog .wine-group h3,
.vh-hero-title,
.tt-hero h1,
.posj-hero h1 {
  text-align: left;
  text-shadow: none !important;
}

.section-subtitle {
  margin-left: 0;
  text-align: left;
  color: var(--text-soft);
}

.section-story,
.section-terroir,
.section-experience,
.vh-catalog,
.vh-1903,
.vh-quote,
.tt-strata,
.tt-journey,
.tt-faq,
.tt-cta,
.posj-reservation,
.posj-tasting,
.posj-location,
.posj-final-cta {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(180deg, #0a0a08 0%, #11100d 100%) !important;
  background-size: 72px 72px, auto !important;
}

.story-layout,
.terroir-layout,
.posj-grid,
.posj-location-grid,
.tt-signature-grid {
  gap: clamp(36px, 6vw, 84px);
}

.story-image-wrap,
.terroir-media-frame,
.manifesto-photo-frame,
.experience-bottle-stage,
.posj-image-wrap,
.posj-map-wrap,
.vh-category-banner,
.wine-bottle {
  border-radius: 0 !important;
  border: 1px solid rgba(215, 189, 130, 0.22);
  box-shadow: none !important;
}

.story-image-wrap img,
.terroir-media-frame img,
.posj-image-wrap img,
.vh-category-banner img,
.experience-bottle-backdrop img {
  filter: saturate(0.82) contrast(1.02) brightness(0.88);
}

.story-image-wrap:hover img,
.terroir-media-frame:hover img,
.posj-image-wrap:hover img,
.vh-category-banner:hover img {
  transform: none;
}

.story-year-badge,
.tt-stat-card,
.tt-card,
.tt-step,
.tt-faq-item,
.tt-cta-card,
.posj-contact-card,
.posj-info-item,
.experience-panel,
.award-card,
.wine-card,
.vh-catalog .wine-card,
.wine-modal {
  border-radius: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

.story-year-badge {
  border: 1px solid var(--border);
  background: rgba(9, 9, 7, 0.82) !important;
}

.story-text blockquote {
  border-radius: 0;
  background: transparent;
  border-left: 1px solid var(--gold);
  border-top: 1px solid rgba(185, 145, 83, 0.18);
  border-bottom: 1px solid rgba(185, 145, 83, 0.18);
}

.section-wines,
.section-1903,
.section-awards {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(180deg, #090907 0%, #11100d 100%) !important;
  background-size: 72px 72px, auto !important;
}

.section-wines #wine-sections::before,
.section-1903::after,
.section-awards::before,
.vh-catalog::before,
.vh-catalog::after,
.vh-1903::before,
.tt-stat-card::before,
.experience-panel::before,
.wine-card::before,
.signature-halo {
  display: none !important;
}

.wine-filters {
  justify-content: flex-start;
  border-top: 1px solid rgba(215, 189, 130, 0.18);
  border-bottom: 1px solid rgba(215, 189, 130, 0.18);
  padding: 14px 0;
}

.wine-filter-btn {
  min-height: 36px;
  padding: 0 12px;
  border-color: transparent;
  color: var(--text-soft);
}

.wine-filter-btn.is-active {
  background: transparent !important;
  color: var(--gold-light) !important;
  border-color: var(--gold) !important;
}

.wine-group {
  margin-bottom: clamp(48px, 7vw, 86px);
}

.wine-group h3,
.vh-catalog .wine-group h3 {
  margin-bottom: 22px;
  color: var(--gold-light);
}

.vh-catalog .wine-group h3::after {
  margin-left: 0;
  margin-right: auto;
  opacity: 0.7;
}

.wine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  justify-content: stretch;
  gap: 0;
  border-top: 1px solid rgba(215, 189, 130, 0.18);
  border-left: 1px solid rgba(215, 189, 130, 0.18);
}

.wine-grid.narrow {
  max-width: 900px;
}

.wine-card,
.vh-catalog .wine-card {
  width: auto !important;
  min-height: 330px;
  padding: 28px 18px 24px;
  border: 0 !important;
  border-right: 1px solid rgba(215, 189, 130, 0.18) !important;
  border-bottom: 1px solid rgba(215, 189, 130, 0.18) !important;
  cursor: pointer;
  transform: none !important;
}

.wine-card:hover,
.vh-catalog .wine-card:hover,
.award-card:hover,
.tt-card:hover,
.tt-step.is-active,
.posj-contact-card:hover,
.posj-info-item:hover {
  transform: none !important;
  border-color: rgba(215, 189, 130, 0.42) !important;
}

.wine-card img {
  max-height: 218px;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.42));
}

.wine-card:hover img,
.signature-piece:hover .signature-bottle img,
.signature-piece:focus-visible .signature-bottle img {
  transform: none;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.42));
}

.wine-card h4 {
  color: var(--text);
  font-size: clamp(1.05rem, 1.5vw, 1.38rem);
}

.watermark-1903,
.vh-1903-watermark {
  color: rgba(215, 189, 130, 0.045);
}

.signature-stage {
  border-top: 1px solid rgba(215, 189, 130, 0.2);
  border-bottom: 1px solid rgba(215, 189, 130, 0.2);
  padding: clamp(28px, 4vw, 46px) 0;
}

.signature-stage::after {
  border-radius: 0;
  background: #11100d;
  box-shadow: none;
}

.signature-piece {
  cursor: pointer;
}

.awards-grid {
  gap: 0;
  border-top: 1px solid rgba(215, 189, 130, 0.18);
  border-left: 1px solid rgba(215, 189, 130, 0.18);
}

.award-card {
  border: 0 !important;
  border-right: 1px solid rgba(215, 189, 130, 0.18) !important;
  border-bottom: 1px solid rgba(215, 189, 130, 0.18) !important;
}

.award-icon,
.tt-card-icon,
.tt-step-dot,
.to-top-btn,
.modal-close {
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.stats-row {
  border-top: 1px solid rgba(215, 189, 130, 0.18);
  padding-top: 34px;
}

.experience-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 54px);
}

.experience-panel {
  border-top: 1px solid rgba(215, 189, 130, 0.26);
  border-bottom: 1px solid rgba(215, 189, 130, 0.26);
  border-left: 0;
  border-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.experience-highlights li::before {
  width: 8px;
  height: 1px;
  border-radius: 0;
  box-shadow: none;
}

.footer-grid {
  border-top: 1px solid rgba(215, 189, 130, 0.18);
  padding-top: 34px;
}

.footer-block {
  border-left-color: rgba(215, 189, 130, 0.18);
}

.vh-hero-content,
.tt-hero-content,
.posj-hero-content {
  text-align: left;
}

.vh-hero-label {
  justify-content: flex-start;
}

.vh-hero-label::before,
.vh-hero-label::after {
  display: none;
}

.vh-title-accent,
.tt-hero h1 span {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--gold-light);
}

.tt-signature-text,
.tt-stat-card,
.tt-card,
.tt-step,
.tt-faq-item,
.tt-cta-card,
.posj-contact-card,
.posj-info-item {
  border-color: rgba(215, 189, 130, 0.2) !important;
}

.tt-pillar-grid,
.tt-signature-stats,
.tt-faq-list,
.posj-contact-cards,
.posj-info-block {
  gap: 0;
}

.tt-card,
.tt-stat-card,
.tt-step,
.tt-faq-item,
.posj-contact-card,
.posj-info-item {
  border-left: 0 !important;
  border-right: 0 !important;
  border-top-width: 1px !important;
  border-bottom-width: 0 !important;
}

.tt-card:last-child,
.tt-stat-card:last-child,
.tt-step:last-child,
.tt-faq-item:last-child,
.posj-contact-card:last-child,
.posj-info-item:last-child {
  border-bottom: 1px solid rgba(215, 189, 130, 0.2) !important;
}

.tt-cta-card {
  border-left: 0 !important;
  border-right: 0 !important;
}

.posj-feature svg,
.posj-contact-card svg,
.posj-info-item svg,
.award-icon svg {
  opacity: 0.76;
}

.wine-modal {
  border-color: rgba(215, 189, 130, 0.32);
  background: #11100d !important;
}

.to-top-btn {
  background: #11100d !important;
  border-color: rgba(215, 189, 130, 0.28);
}

body.wine-detail {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(180deg, #090907 0%, #11100d 100%) !important;
  background-size: 72px 72px, auto !important;
}

body.wine-detail::before,
body.wine-detail::after {
  display: none;
}

.wine-layout {
  align-items: end;
  border-top: 1px solid rgba(215, 189, 130, 0.2);
  border-bottom: 1px solid rgba(215, 189, 130, 0.2);
  padding: clamp(28px, 4vw, 48px) 0;
}

@media (max-width: 980px) {
  .hero-content,
  .vh-hero-content,
  .tt-hero-content,
  .posj-hero-content {
    text-align: left;
  }

  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .experience-layout,
  .tt-pillar-grid,
  .tt-signature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, 1280px);
  }

  /* Hide "Tradicija od 1903." badge on the landing hero for mobile. */
  .hero-content .hero-badge {
    display: none;
  }

  .hero {
    min-height: 86svh;
  }

  .hero h1,
  .vh-hero-title {
    max-width: 11ch;
  }

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

  .wine-card,
  .vh-catalog .wine-card {
    min-height: 260px;
    padding: 18px 10px 16px;
  }

  .wine-card img {
    max-height: 150px;
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }
}

/* Content must be visible without waiting for JS-triggered reveal classes. */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.24s ease !important;
  will-change: auto !important;
}

.container.hero-content {
  width: min(1280px, 90vw);
  max-width: min(1280px, 90vw);
  margin-left: auto;
  margin-right: auto;
}

.hero-content h1,
.hero-content .tagline,
.hero-content .hero-actions,
.hero-content .hero-badge {
  max-width: 720px;
}

/* Keep sparse wine categories from stretching a single bottle across the full row. */
.wine-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 240px));
  justify-content: start;
}

.wine-grid.narrow {
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
  justify-content: center;
}

@media (max-width: 680px) {
  .wine-grid,
  .wine-grid.narrow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ============================================
   RAVALICO PROFESSIONAL FINISH
   Final art-direction pass: cellar editorial, sharp geometry, real material texture.
   ============================================ */

:root {
  --paper: #f0ede6;
  --ink: #0b0a07;
  --cellar: #090907;
  --cellar-2: #12100b;
  --stone: #242016;
  --line: rgba(215, 189, 130, 0.22);
  --line-strong: rgba(215, 189, 130, 0.46);
  --accent: #b99153;
  --accent-pale: #dbc084;
  --red-earth: #5e1c2b;
  --measure: 64ch;
}

::selection {
  background: rgba(185, 145, 83, 0.34);
  color: var(--paper);
}

body {
  background:
    linear-gradient(90deg, rgba(240,237,230,0.026) 1px, transparent 1px),
    linear-gradient(180deg, #070705 0%, #11100c 46%, #080806 100%);
  background-size: 96px 96px, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(115deg, transparent 0 47%, rgba(215, 189, 130, 0.14) 47.2% 47.6%, transparent 47.8% 100%),
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.1) 0 1px, transparent 1.4px);
  background-size: 420px 420px, 11px 11px;
  mix-blend-mode: soft-light;
}

:focus-visible {
  outline: 1px solid var(--accent-pale);
  outline-offset: 4px;
}

.container {
  width: min(1240px, calc(100vw - 96px));
}

.site-header {
  min-height: 76px;
}

.brand img {
  height: 52px;
  filter: none;
}

.nav-wrap {
  min-height: 76px;
}

.nav {
  gap: clamp(22px, 3vw, 42px);
}

.nav a::after {
  bottom: -10px;
  height: 1px;
}

.hero {
  min-height: 100svh;
  align-items: end;
}

.hero::after {
  content: "Nova Vas 101 / Brtonigla / Istra";
  position: absolute;
  right: clamp(28px, 5vw, 78px);
  bottom: clamp(80px, 9vw, 132px);
  z-index: 3;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(219, 192, 132, 0.62);
  font-family: "Cinzel", serif;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-video {
  filter: saturate(0.66) contrast(1.08) brightness(0.48);
}

.hero-overlay,
.vh-hero-overlay,
.tt-hero-overlay,
.posj-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 7, 5, 0.92) 0%, rgba(7, 7, 5, 0.54) 38%, rgba(7, 7, 5, 0.82) 100%),
    linear-gradient(180deg, rgba(7, 7, 5, 0.14) 0%, rgba(7, 7, 5, 0.86) 100%) !important;
}

.hero-content {
  padding-top: 150px;
  padding-bottom: clamp(104px, 13vw, 178px);
}

.hero-badge span,
.vh-hero-label,
.tt-hero-chips span {
  font-size: 0.68rem;
}

.hero h1,
.vh-hero-title,
.tt-hero h1,
.posj-hero h1 {
  font-weight: 400;
  letter-spacing: 0.085em;
}

.hero h1 {
  font-size: clamp(3.1rem, 7.8vw, 7.1rem);
  max-width: 9.2ch;
}

.hero-accent,
.vh-title-accent,
.tt-hero h1 span {
  color: var(--accent-pale) !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

.tagline {
  max-width: 36ch;
  color: #d6d0c4;
  font-size: clamp(1.16rem, 1.9vw, 1.42rem);
}

.btn,
.wine-filter-btn,
.wine-copy .cta {
  min-height: 48px;
  padding-inline: 30px;
  border-color: var(--line-strong) !important;
}

.btn-gold,
.btn-wine {
  background: var(--accent) !important;
  color: #0b0905 !important;
}

.btn svg {
  width: 15px;
  height: 15px;
}

.section {
  padding: clamp(88px, 10vw, 146px) 0;
}

.section-label {
  justify-content: flex-start !important;
  margin-bottom: 18px;
}

.section-title,
.vh-catalog .wine-group h3 {
  max-width: 760px;
  font-weight: 400;
  letter-spacing: 0.055em;
}

.section-subtitle,
.terroir-copy,
.tt-signature-text p,
.posj-lead,
.posj-text-block p {
  max-width: var(--measure);
}

.section-subtitle,
.section-terroir .section-subtitle,
.posj-hero-sub,
.tt-hero-sub,
.vh-hero-sub {
  color: #d2cabd;
}

.section-story,
.section-terroir,
.section-experience,
.vh-catalog,
.vh-1903,
.vh-quote,
.tt-signature,
.tt-strata,
.tt-journey,
.tt-faq,
.tt-cta,
.posj-reservation,
.posj-tasting,
.posj-location,
.posj-final-cta {
  background:
    linear-gradient(90deg, rgba(240,237,230,0.022) 1px, transparent 1px),
    linear-gradient(180deg, #090907 0%, #12100b 100%) !important;
  background-size: 96px 96px, auto !important;
}

.story-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
}

.story-media {
  position: relative;
}

.story-image-wrap,
.terroir-media-frame,
.experience-bottle-stage,
.posj-image-wrap,
.posj-map-wrap,
.vh-category-banner,
.tt-signature-text,
.tt-cta-card {
  border-color: var(--line) !important;
}

.story-image-wrap::before,
.terroir-media-frame::before,
.experience-bottle-stage::before,
.posj-image-wrap::before,
.vh-category-banner::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(240, 237, 230, 0.1);
  z-index: 2;
  pointer-events: none;
}

.story-year-badge {
  left: auto;
  right: -24px;
  bottom: 28px;
  padding: 18px 20px;
}

.story-text {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(24px, 3vw, 42px) 0;
}

.story-text .story-lead {
  font-size: clamp(1.32rem, 2.1vw, 1.72rem);
  line-height: 1.5;
}

.story-text blockquote {
  margin: 30px 0;
  padding: 24px 0 24px 28px;
}

.terroir-copy {
  text-align: left;
}

.terroir-media {
  width: min(100%, 610px);
}

.section-wines,
.section-1903,
.section-awards {
  background:
    linear-gradient(90deg, rgba(240,237,230,0.018) 1px, transparent 1px),
    linear-gradient(180deg, #080806 0%, #11100c 100%) !important;
  background-size: 96px 96px, auto !important;
}

#vina::after,
.section.section-wines::before {
  display: none !important;
}

.wine-filters {
  justify-content: flex-start;
  gap: 0;
  margin: 34px 0 42px;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wine-filter-btn {
  min-height: 54px;
  padding: 0 22px;
  border: 0 !important;
  border-right: 1px solid rgba(215, 189, 130, 0.16) !important;
  color: #bdb4a6;
}

.wine-filter-btn.is-active {
  background: var(--accent) !important;
  color: var(--ink) !important;
}

.wine-grid,
.vh-catalog .wine-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-content: stretch;
  border-color: var(--line);
}

.wine-card,
.vh-catalog .wine-card {
  min-height: 390px;
  padding: 30px 22px 24px;
  justify-content: space-between;
  background: rgba(9, 9, 7, 0.2) !important;
}

.wine-card:hover,
.vh-catalog .wine-card:hover {
  background: rgba(185, 145, 83, 0.06) !important;
}

.wine-card img {
  max-height: 210px;
  margin-bottom: 20px;
}

.wine-card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  text-align: left;
  border-top: 1px solid rgba(215, 189, 130, 0.18);
  padding-top: 18px;
}

.wine-card-copy h4 {
  padding: 0;
}

.wine-card-copy p {
  margin: 0;
  color: #bdb4a6;
  font-size: 0.98rem;
  line-height: 1.45;
  font-style: italic;
}

.wine-card-copy span {
  margin-top: 4px;
  color: var(--accent-pale);
  font-family: "Cinzel", serif;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signature-stage {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  padding: 0;
}

.signature-stage::before {
  display: none;
}

.signature-stage::after {
  content: "F. & F. / 1903";
  top: 0;
  transform: translate(-50%, -50%);
  border-color: var(--line-strong);
  color: var(--accent-pale);
}

.signature-piece {
  padding: clamp(30px, 4.2vw, 56px) clamp(20px, 3vw, 40px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signature-piece:nth-child(2n) {
  border-right: 0;
}

.signature-bottle {
  height: clamp(340px, 38vw, 490px);
}

.signature-meta {
  text-align: left;
  width: 100%;
}

.signature-cta::after {
  left: 0;
  transform: none;
}

.awards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.award-card {
  text-align: left;
  padding: 28px 24px 30px;
}

.award-icon {
  width: auto;
  height: 34px;
  margin: 0 0 24px;
  place-items: start;
  border: 0 !important;
}

.award-card h3 {
  font-weight: 400;
}

.stats-row {
  justify-content: space-between;
}

.stat {
  align-items: flex-start;
  text-align: left;
}

.stat-number,
.stat-suffix {
  color: var(--accent-pale);
}

.experience-layout {
  align-items: stretch;
}

.experience-panel {
  min-height: auto;
  justify-content: center;
}

.experience-bottle-stage {
  min-height: clamp(430px, 42vw, 620px);
}

.experience-bottle-backdrop img {
  object-position: 50% 48%;
}

.site-footer {
  background: #080806;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1.25fr;
}

.wine-modal {
  border-radius: 0 !important;
}

.modal-close,
.to-top-btn {
  width: 44px;
  height: 44px;
}

.vh-vine-svg,
.vh-hero-scroll,
.tt-scroll-hint,
.hero-scroll-indicator {
  display: none !important;
}

.vh-hero,
.tt-hero,
.posj-hero {
  min-height: 82svh;
  justify-content: flex-start;
  place-items: center start;
}

.vh-hero-content,
.tt-hero-content,
.posj-hero-content {
  width: min(1240px, calc(100vw - 96px));
  margin-inline: auto;
}

.vh-hero-title {
  font-size: clamp(4rem, 10vw, 8.8rem);
}

.tt-hero h1,
.posj-hero h1 {
  max-width: 820px;
}

.tt-hero-chips {
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  width: fit-content;
}

.tt-hero-chips span {
  border: 0 !important;
  border-right: 1px solid rgba(215, 189, 130, 0.18) !important;
  padding: 12px 18px;
}

.posj-contact-card,
.posj-info-item,
.tt-card,
.tt-stat-card,
.tt-step,
.tt-faq-item {
  padding-block: 20px !important;
}

@media (max-width: 1024px) {
  .container,
  .vh-hero-content,
  .tt-hero-content,
  .posj-hero-content {
    width: min(100% - 56px, 1240px);
  }

  .story-layout,
  .terroir-layout,
  .experience-layout,
  .posj-grid,
  .posj-location-grid,
  .tt-signature-grid {
    grid-template-columns: 1fr !important;
  }

  .awards-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-year-badge {
    right: 18px;
  }
}

@media (max-width: 820px) {
  .signature-stage {
    grid-template-columns: 1fr;
  }

  .signature-piece,
  .signature-piece:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  .container,
  .vh-hero-content,
  .tt-hero-content,
  .posj-hero-content {
    width: min(100% - 32px, 1240px);
  }

  .brand img {
    height: 46px;
  }

  .hero,
  .vh-hero,
  .tt-hero,
  .posj-hero {
    min-height: 92svh;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    padding-top: 118px;
    padding-bottom: 84px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.65rem);
    max-width: 9ch;
  }

  .tagline {
    font-size: 1.05rem;
  }

  .btn,
  .wine-filter-btn {
    width: 100%;
    padding-inline: 18px;
  }

  .hero-actions {
    width: min(100%, 320px);
  }

  .section {
    padding: 72px 0;
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .story-text {
    padding: 24px 0;
  }

  .wine-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wine-filter-btn {
    min-height: 48px;
    border-bottom: 1px solid rgba(215, 189, 130, 0.16) !important;
  }

  .wine-grid,
  .wine-grid.narrow,
  .vh-catalog .wine-grid {
    grid-template-columns: 1fr;
  }

  .wine-card,
  .vh-catalog .wine-card {
    min-height: auto;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 18px 16px;
  }

  .wine-card img {
    max-height: 170px;
    max-width: 112px;
    margin: 0 auto;
  }

  .wine-card-copy {
    border-top: 0;
    border-left: 1px solid rgba(215, 189, 130, 0.18);
    padding-top: 0;
    padding-left: 18px;
  }

  .wine-card-copy p {
    display: none;
  }

  .signature-stage::after {
    display: none;
  }

  .awards-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stat {
    width: auto;
  }

  .footer-block {
    border-left: 0;
    padding-left: 0;
  }

  .tt-hero-chips {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .tt-hero-chips span {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(215, 189, 130, 0.16) !important;
  }
}

/* ============================================
   MOBILE/TABLET LANGUAGE + CROSS-BROWSER WINE MODAL FIX
   ============================================ */

/* Equal landing wine tabs on desktop/tablet. */
.section-wines .wine-filters {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(900px, 100%);
  margin-left: 0;
  margin-right: auto;
  border-left: 1px solid var(--line);
}

.section-wines .wine-filter-btn {
  width: 100% !important;
  min-width: 0;
  white-space: nowrap;
}

/* Safari is stricter with dialog intrinsic sizing; fix modal to an explicit viewport-safe box. */
.wine-modal {
  width: min(920px, calc(100vw - 96px)) !important;
  height: min(620px, calc(100dvh - 96px)) !important;
  max-width: calc(100vw - 96px) !important;
  max-height: calc(100dvh - 96px) !important;
  min-height: 0 !important;
  overflow: hidden !important;
  align-self: center;
  justify-self: center;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr) !important;
  grid-template-rows: minmax(0, 1fr);
}

.wine-modal[open] {
  display: grid !important;
}

.wine-modal .modal-media,
.wine-modal .modal-content {
  min-height: 0;
  overflow: hidden;
}

.wine-modal .modal-media {
  display: grid;
  place-items: center;
  padding: clamp(26px, 3vw, 38px) !important;
}

.wine-modal .modal-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.wine-modal .modal-content {
  justify-content: center;
  padding: clamp(28px, 3vw, 40px) !important;
}

.wine-modal h3 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.wine-modal p {
  font-size: 1.08rem;
  line-height: 1.52;
}

/* Keep language selection visible at the bottom of mobile and tablet pages. */
@media (max-width: 1024px) {
  .footer-lang-switch-wrap {
    display: block !important;
    border-top: 1px solid rgba(215, 189, 130, 0.18);
    background: #080806;
  }

  .footer-lang-switch {
    min-height: 64px;
    justify-content: flex-start;
    gap: 0;
  }

  .footer-lang-switch span {
    display: none;
  }

  .footer-lang-switch a {
    min-width: 54px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(215, 189, 130, 0.16);
    color: #c5bdaf;
  }

  .footer-lang-switch a[aria-current="page"] {
    background: #b99153;
    color: #090907;
  }
}

@media (max-width: 760px) {
  .section-wines .wine-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .section-wines .wine-filter-btn {
    white-space: normal;
  }

  .wine-modal {
    width: calc(100vw - 32px) !important;
    height: auto !important;
    max-height: calc(100dvh - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: auto !important;
  }

  .wine-modal .modal-media {
    padding: 18px !important;
  }

  .wine-modal .modal-media img {
    max-height: 34dvh;
  }

  .wine-modal .modal-content {
    border-left: 0;
    border-top: 1px solid rgba(240, 237, 230, 0.12);
    padding: 20px !important;
  }
}

/* Final correction: center mobile/tablet footer language selector. */
@media (max-width: 1024px) {
  .footer-lang-switch {
    justify-content: center !important;
    padding-inline: 0;
  }

  .footer-lang-switch a:first-child {
    border-left: 1px solid rgba(215, 189, 130, 0.16);
  }
}

/* Restore branded preloader as the first visible experience. */
.preloader {
  display: grid !important;
  background:
    linear-gradient(90deg, rgba(240,237,230,0.022) 1px, transparent 1px),
    #090907 !important;
  background-size: 96px 96px, auto;
}

.preloader.is-done {
  display: grid !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.loading {
  overflow: hidden !important;
}

@media (prefers-reduced-motion: reduce) {
  .preloader {
    display: grid !important;
  }

  .preloader-ring-svg,
  .preloader-ring-path {
    animation-duration: 1.2s !important;
    animation-iteration-count: infinite !important;
  }
}

/* Legal/privacy page and accessibility helpers. */
.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 10050;
  transform: translateY(-180%);
  padding: 12px 16px;
  border: 1px solid rgba(215, 189, 130, 0.5);
  background: #090907;
  color: #dbc084;
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.legal-main {
  background:
    linear-gradient(90deg, rgba(240,237,230,0.018) 1px, transparent 1px),
    linear-gradient(180deg, #080806 0%, #11100c 100%);
  background-size: 96px 96px, auto;
}

.legal-hero {
  padding: clamp(132px, 15vw, 190px) 0 clamp(48px, 6vw, 76px);
  border-bottom: 1px solid rgba(215, 189, 130, 0.18);
}

.legal-hero .section-title {
  text-align: left;
  max-width: 980px;
  margin-bottom: 16px;
}

.legal-updated {
  margin: 0;
  color: #c5bdaf;
  font-size: 1.12rem;
  font-style: italic;
}

.legal-content {
  padding: clamp(48px, 7vw, 86px) 0 clamp(76px, 9vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  max-width: 980px;
}

.legal-block {
  padding: clamp(24px, 3vw, 36px) 0;
  border-top: 1px solid rgba(215, 189, 130, 0.18);
}

.legal-block:last-child {
  border-bottom: 1px solid rgba(215, 189, 130, 0.18);
}

.legal-block h2 {
  margin: 0 0 14px;
  color: #dbc084;
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.legal-block p {
  max-width: 72ch;
  margin: 0 0 12px;
  color: #d2cabd;
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.68;
}

.footer-block a[href*="politika-privatnosti"] {
  color: #dbc084;
  border-bottom: 1px solid rgba(215, 189, 130, 0.38);
}


/* ---- FOOTER: nav sublinks, social, bottom bar ---- */
.footer-sublinks {
  list-style: none;
  margin: 8px 0 0;
  padding: 2px 0 0 14px;
  border-left: 1px solid rgba(215, 189, 130, 0.18);
  display: grid;
  gap: 5px;
}
.footer-sublinks a {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.footer-sublinks a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  padding-bottom: 20px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(215, 189, 130, 0.28);
  border-radius: 50%;
  color: var(--text-soft);
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 166, 107, 0.08);
}

.footer-bottom-wrap {
  border-top: 1px solid var(--border-soft);
}
.footer-bottom {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 0;
}
.footer-privacy-link {
  color: #dbc084;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(215, 189, 130, 0.38);
}
.footer-privacy-link:hover { color: var(--gold); }
@media (max-width: 680px) {
  .footer-bottom { justify-content: center; text-align: center; }
}

/* Mobile: ukloni besmislene linije (border) panela u kontakt sekciji */
@media (max-width: 680px) {
  .experience-panel {
    border-top: 0;
    border-bottom: 0;
  }
}

/* Landing remake: lighter, restrained winery editorial direction */
main > #prica,
main > #terroir,
main > #vina,
main > #linija1903,
main > #nagrade,
main > #posjetite {
  --landing-paper: #f1eadf;
  --landing-paper-soft: #e6dac8;
  --landing-ink: #1f1b16;
  --landing-muted: #665d51;
  --landing-line: rgba(95, 69, 45, 0.22);
  --landing-gold: #9f743d;
  --landing-wine: #6f1730;
  background:
    linear-gradient(90deg, rgba(95, 69, 45, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, var(--landing-paper) 0%, var(--landing-paper-soft) 100%) !important;
  background-size: 96px 96px, auto !important;
  color: var(--landing-ink);
}

main > #prica::before,
main > #terroir::before,
main > #vina::before,
main > #linija1903::before,
main > #nagrade::before,
main > #posjetite::before {
  background: linear-gradient(90deg, transparent, rgba(95, 69, 45, 0.28), transparent) !important;
}

main > #prica .section-label span:not(.label-line),
main > #terroir .section-label span:not(.label-line),
main > #vina .section-label span:not(.label-line),
main > #linija1903 .section-label span:not(.label-line),
main > #nagrade .section-label span:not(.label-line),
main > #posjetite .section-label span:not(.label-line),
main > #posjetite .experience-kicker,
main > #nagrade .award-sub,
main > #nagrade .stat-label {
  color: var(--landing-gold) !important;
}

main > #prica .label-line,
main > #terroir .label-line,
main > #vina .label-line,
main > #linija1903 .label-line,
main > #nagrade .label-line,
main > #posjetite .label-line {
  background: var(--landing-line) !important;
}

main > #prica .section-title,
main > #terroir .section-title,
main > #vina .section-title,
main > #linija1903 .section-title,
main > #nagrade .section-title,
main > #posjetite .experience-headline,
main > #vina .wine-group h3 {
  color: var(--landing-ink) !important;
}

main > #prica .section-subtitle,
main > #terroir .section-subtitle,
main > #vina .section-subtitle,
main > #linija1903 .kicker,
main > #nagrade .award-detail,
main > #posjetite .experience-note {
  color: var(--landing-muted) !important;
}

main > #prica .story-text p,
main > #prica .story-lead,
main > #terroir .section-subtitle,
main > #posjetite .experience-note {
  color: #4e463c !important;
}

main > #prica .story-text blockquote {
  color: var(--landing-ink);
  border-left-color: var(--landing-wine);
  border-top-color: var(--landing-line);
  border-bottom-color: var(--landing-line);
}

main > #prica .story-year-badge {
  background: rgba(250, 246, 238, 0.86) !important;
  border-color: var(--landing-line);
  color: var(--landing-ink);
}

main > #prica .story-year-badge span,
main > #prica .story-year-badge .counter {
  color: var(--landing-wine) !important;
}

main > #terroir {
  background:
    linear-gradient(90deg, rgba(95, 69, 45, 0.05) 1px, transparent 1px),
    radial-gradient(72% 90% at 100% 12%, rgba(111, 23, 48, 0.09), transparent 60%),
    linear-gradient(180deg, #eadfce 0%, #f4eee5 100%) !important;
  background-size: 96px 96px, auto, auto !important;
}

main > #vina {
  background:
    linear-gradient(90deg, rgba(95, 69, 45, 0.045) 1px, transparent 1px),
    radial-gradient(65% 90% at 0% 20%, rgba(159, 116, 61, 0.1), transparent 58%),
    linear-gradient(180deg, #f4eee5 0%, #ebe0d0 100%) !important;
  background-size: 96px 96px, auto, auto !important;
}

main > #linija1903 {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #302219 0%, #211713 100%) !important;
  background-size: 96px 96px, auto !important;
  color: #f2eadf;
}

main > #linija1903 .section-title,
main > #linija1903 .legacy {
  color: #f2eadf !important;
}

main > #linija1903 .kicker,
main > #linija1903 .section-label span:not(.label-line) {
  color: #d7b77a !important;
}

main > #linija1903 .watermark-1903 {
  color: rgba(255, 255, 255, 0.045) !important;
}

main > #nagrade {
  background:
    linear-gradient(90deg, rgba(95, 69, 45, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #eee4d5 0%, #f5efe6 100%) !important;
  background-size: 96px 96px, auto !important;
}

main > #nagrade .award-card {
  border-color: var(--landing-line) !important;
  color: var(--landing-ink);
}

main > #nagrade .award-card h3,
main > #nagrade .stat-number,
main > #nagrade .stat-suffix {
  color: var(--landing-wine) !important;
}

main > #nagrade .stat-divider {
  background: linear-gradient(180deg, transparent, var(--landing-line), transparent);
}

main > #vina .wine-filters {
  border-color: var(--landing-line);
}

main > #vina .wine-filter-btn {
  color: var(--landing-ink);
  border-color: var(--landing-line);
  background: rgba(255, 255, 255, 0.18);
}

main > #vina .wine-filter-btn:hover,
main > #vina .wine-filter-btn.is-active {
  color: #fff8ef !important;
  background: var(--landing-wine) !important;
  border-color: var(--landing-wine) !important;
}

main > #vina .wine-card {
  border-color: var(--landing-line) !important;
  background: rgba(250, 246, 238, 0.5) !important;
}

main > #vina .wine-card:hover {
  background: rgba(255, 252, 247, 0.78) !important;
  border-color: rgba(111, 23, 48, 0.32) !important;
}

main > #vina .wine-card-copy {
  border-top-color: var(--landing-line);
}

main > #vina .wine-card h4,
main > #vina .wine-card-copy h4 {
  color: var(--landing-ink) !important;
}

main > #vina .wine-card:hover h4,
main > #vina .wine-card:hover .wine-card-copy h4 {
  color: var(--landing-wine) !important;
}

main > #vina .wine-card-copy p {
  color: var(--landing-muted);
}

main > #vina .wine-card-copy span {
  color: var(--landing-gold);
}

main > #posjetite.section-experience {
  background:
    linear-gradient(90deg, rgba(95, 69, 45, 0.05) 1px, transparent 1px),
    radial-gradient(70% 92% at 88% 8%, rgba(111, 23, 48, 0.12), transparent 62%),
    linear-gradient(180deg, #f6efe4 0%, #e6d6c1 100%) !important;
  background-size: 96px 96px, auto, auto !important;
}

main > #posjetite.section-experience::before {
  display: block !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), transparent 26%, transparent 76%, rgba(255, 255, 255, 0.24)),
    linear-gradient(90deg, transparent, rgba(95, 69, 45, 0.28), transparent) !important;
}

main > #posjetite .experience-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: stretch;
  margin-bottom: 0;
}

main > #posjetite .experience-grid {
  display: flex;
  margin-top: 0;
}

main > #posjetite .experience-panel {
  width: 100%;
  min-height: clamp(420px, 42vw, 610px);
  padding: clamp(32px, 4.5vw, 62px) !important;
  border: 1px solid var(--landing-line) !important;
  border-left: 3px solid var(--landing-wine) !important;
  background: rgba(250, 246, 238, 0.68) !important;
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
}

main > #posjetite .experience-panel::before {
  display: block !important;
  inset: auto clamp(30px, 4vw, 58px) clamp(30px, 4vw, 58px) auto;
  width: clamp(88px, 12vw, 150px);
  height: 1px;
  background: var(--landing-line);
}

main > #posjetite .experience-kicker {
  margin: 0 0 auto;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

main > #posjetite .experience-headline {
  max-width: 10ch;
  font-size: clamp(2.5rem, 5.2vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: none;
}

main > #posjetite .experience-headline-rule {
  width: clamp(96px, 12vw, 164px);
  height: 1px;
  margin: clamp(18px, 2vw, 26px) 0 0;
  background: linear-gradient(90deg, var(--landing-wine), transparent);
}

main > #posjetite .experience-note {
  max-width: 36ch;
  margin-top: clamp(14px, 2vw, 24px);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.56;
}

.experience-contact-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--landing-line);
  border-bottom: 1px solid var(--landing-line);
}

.experience-contact-lines a {
  display: grid;
  gap: 4px;
  padding: 15px 18px 15px 0;
  color: var(--landing-ink);
  transition: color 0.2s ease, background-color 0.2s ease, padding-left 0.2s ease;
}

.experience-contact-lines a + a {
  border-left: 1px solid var(--landing-line);
  padding-left: 18px;
}

.experience-contact-lines a:hover {
  color: var(--landing-wine);
  background: rgba(111, 23, 48, 0.045);
  padding-left: 18px;
}

.experience-contact-lines span {
  color: var(--landing-gold);
  font-family: "Cinzel", serif;
  font-size: 0.68rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.experience-contact-lines strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 500;
  line-height: 1.18;
}

main > #posjetite .experience-cta {
  margin-top: clamp(26px, 3vw, 40px);
}

main > #posjetite .experience-bottle-stage {
  min-height: clamp(420px, 42vw, 610px);
  transform: none;
  border-color: var(--landing-line);
  background: #d8c4aa !important;
}

main > #posjetite .experience-bottle-backdrop::after {
  background:
    linear-gradient(90deg, rgba(246, 239, 228, 0.76) 0%, rgba(246, 239, 228, 0.12) 44%, rgba(87, 28, 35, 0.18) 100%),
    radial-gradient(55% 65% at 58% 46%, rgba(255, 255, 255, 0.2), transparent 68%) !important;
}

main > #posjetite .experience-bottle-backdrop img,
main > #prica .story-image-wrap img,
main > #terroir .terroir-media-frame img {
  filter: saturate(0.9) contrast(1.02) brightness(1.03) !important;
}

main > #posjetite .btn-wine,
main > #posjetite .experience-cta-mobile {
  background: var(--landing-wine) !important;
  border-color: var(--landing-wine) !important;
  color: #fff8ef !important;
}

@media (max-width: 980px) {
  main > #posjetite .experience-layout {
    grid-template-columns: 1fr;
  }

  main > #posjetite .experience-panel,
  main > #posjetite .experience-bottle-stage {
    min-height: auto;
  }

  main > #posjetite .experience-bottle-stage {
    min-height: clamp(330px, 72vw, 520px);
  }

  main > #posjetite .experience-cta {
    display: inline-flex;
  }

  main > #posjetite .experience-cta-mobile {
    display: none;
  }
}

@media (max-width: 680px) {
  main > #prica,
  main > #terroir,
  main > #vina,
  main > #linija1903,
  main > #nagrade,
  main > #posjetite {
    background-size: 68px 68px, auto, auto !important;
  }

  main > #posjetite .experience-panel {
    padding: 28px 22px !important;
    border-top: 1px solid var(--landing-line) !important;
    border-bottom: 1px solid var(--landing-line) !important;
  }

  main > #posjetite .experience-headline {
    font-size: clamp(2.7rem, 15vw, 4.8rem);
  }

  .experience-contact-lines {
    grid-template-columns: 1fr;
  }

  .experience-contact-lines a + a {
    border-left: 0;
    border-top: 1px solid var(--landing-line);
    padding-left: 0;
  }
}

/* Mobile hero + connected terroir editorial pass */
@media (max-width: 680px) {
  .hero {
    /* svh = small viewport height (toolbar visible) — stays constant while the
       mobile address bar collapses on scroll. dvh would resize the hero as you
       scroll, which looked like the element stretching/jumping. */
    min-height: 100svh !important;
  }

  .hero-content {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 92px !important;
    padding-bottom: 64px !important;
  }
}

main > #terroir.section-terroir {
  isolation: isolate;
  padding-top: clamp(110px, 10vw, 150px);
  padding-bottom: clamp(110px, 10vw, 150px);
}

main > #terroir.section-terroir::after {
  content: "";
  position: absolute;
  left: clamp(24px, 7vw, 120px);
  right: clamp(24px, 7vw, 120px);
  top: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111, 23, 48, 0.34), rgba(159, 116, 61, 0.2), transparent);
  pointer-events: none;
}

main > #terroir .terroir-layout {
  position: relative;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
}

main > #terroir .terroir-layout::before {
  content: "Istra";
  position: absolute;
  right: -0.04em;
  top: -0.38em;
  z-index: -1;
  color: rgba(95, 69, 45, 0.055);
  font-family: "Cinzel", serif;
  font-size: clamp(5.6rem, 17vw, 16rem);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

main > #terroir .terroir-copy {
  max-width: 520px;
}

main > #terroir .terroir-media {
  margin: 0;
}

main > #terroir .terroir-media-frame {
  border-color: rgba(95, 69, 45, 0.24) !important;
  background: rgba(250, 246, 238, 0.45);
}

main > #terroir .terroir-media-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 252, 246, 0.34);
  z-index: 2;
  pointer-events: none;
}

main > #terroir .btn-glass {
  color: #fff8ef !important;
  background: var(--landing-wine) !important;
  border-color: var(--landing-wine) !important;
}

main > #prica .story-year-badge small {
  color: #3f352b !important;
  opacity: 1;
}

main > #prica .story-text blockquote {
  color: #2b241d !important;
  background: rgba(250, 246, 238, 0.44);
}

main > #prica .story-text blockquote svg {
  color: var(--landing-wine);
}

main > #vina .wine-filters {
  border-left: 1px solid var(--landing-line);
}

main > #vina .wine-filter-btn:last-child {
  border-right: 1px solid var(--landing-line) !important;
}

main > #posjetite .experience-contact-lines {
  display: none !important;
}

main > #posjetite .experience-cta {
  margin-top: clamp(28px, 4vw, 52px);
}

main > #posjetite .experience-bottle-backdrop::after {
  background:
    linear-gradient(90deg, rgba(246, 239, 228, 0.34) 0%, rgba(246, 239, 228, 0.04) 38%, rgba(87, 28, 35, 0.1) 100%),
    radial-gradient(55% 65% at 58% 46%, rgba(255, 255, 255, 0.08), transparent 68%) !important;
}

@media (max-width: 980px) {
  main > #terroir .terroir-layout {
    grid-template-columns: 1fr;
  }

  main > #terroir .terroir-copy {
    max-width: 680px;
  }
}

/* Unified header tone across landing and subpages.
   Page type is keyed off the <body> class (.home / .vina-body / .terroir-body /
   .posjetite-body / .wine-detail) instead of :has() — :has() forces a full-DOM
   re-evaluation on every scroll-driven style change (e.g. .is-scrolled toggling)
   and was the main cause of touch-scroll stutter the reference build did not have. */
.site-header,
.site-header.is-scrolled {
  background: rgba(32, 27, 22, 0.96) !important;
  border-bottom: 1px solid rgba(215, 189, 130, 0.18) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-header .nav a {
  color: rgba(240, 237, 230, 0.78);
}

.site-header .nav a:hover {
  color: #e2c992;
}

/* Landing header blends into hero, then changes subtly on scroll */
body.home .site-header {
  background: linear-gradient(180deg, rgba(6, 8, 16, 0.34), rgba(6, 8, 16, 0)) !important;
  border-bottom-color: transparent !important;
}

body.home .site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(32, 27, 22, 0.84), rgba(32, 27, 22, 0.76)) !important;
  border-bottom-color: rgba(215, 189, 130, 0.14) !important;
  backdrop-filter: blur(10px) saturate(1.05) !important;
  -webkit-backdrop-filter: blur(10px) saturate(1.05) !important;
}

@media (max-width: 680px) {
  .to-top-btn {
    bottom: 88px !important;
  }
}

main > #posjetite .experience-headline {
  font-size: clamp(2.2rem, 4.35vw, 4.65rem);
  line-height: 1.02;
}

@media (max-width: 680px) {
  main > #posjetite .experience-headline {
    font-size: clamp(2.35rem, 12vw, 4.05rem);
  }
}

@media (max-width: 760px) {
  main > #vina .wine-filter-btn {
    border-right: 1px solid var(--landing-line) !important;
  }
}

/* ============================================
   MOBILE SCROLL PERFORMANCE
   backdrop-filter: blur() on the fixed header forces the browser to re-blur
   the page behind the bar on every scroll frame — the main cause of scroll
   stutter on touch devices, most visible on the landing page when the
   scrolled state toggles on/off. Replace the blur with a near-opaque solid
   background on touch devices and drop the animated backdrop-filter.
   ============================================ */
@media (max-width: 1023px), (hover: none), (pointer: coarse) {
  .site-header,
  .site-header.is-scrolled,
  body.home .site-header,
  body.home .site-header.is-scrolled {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: background 0.3s ease, border-color 0.3s ease !important;
  }

  body.home .site-header.is-scrolled {
    background: linear-gradient(180deg, rgba(32, 27, 22, 0.97), rgba(32, 27, 22, 0.93)) !important;
  }
}
