/* ==========================================================================
   Vina Koglot — spletna stran (rebuild iz WordPressa v čisti HTML/CSS)
   Dizajn po template.jpg
   ========================================================================== */

/* ---------- Lokalne pisave: Crimson Pro ---------- */
@font-face { font-family: 'Crimson Pro'; font-weight: 200; font-style: normal; font-display: swap; src: url('../../fonts/CrimsonPro-ExtraLight.ttf') format('truetype'); }
@font-face { font-family: 'Crimson Pro'; font-weight: 200; font-style: italic; font-display: swap; src: url('../../fonts/CrimsonPro-ExtraLightItalic.ttf') format('truetype'); }
@font-face { font-family: 'Crimson Pro'; font-weight: 300; font-style: normal; font-display: swap; src: url('../../fonts/CrimsonPro-Light.ttf') format('truetype'); }
@font-face { font-family: 'Crimson Pro'; font-weight: 300; font-style: italic; font-display: swap; src: url('../../fonts/CrimsonPro-LightItalic.ttf') format('truetype'); }
@font-face { font-family: 'Crimson Pro'; font-weight: 400; font-style: normal; font-display: swap; src: url('../../fonts/CrimsonPro-Regular.ttf') format('truetype'); }
@font-face { font-family: 'Crimson Pro'; font-weight: 400; font-style: italic; font-display: swap; src: url('../../fonts/CrimsonPro-RegularItalic.ttf') format('truetype'); }
@font-face { font-family: 'Crimson Pro'; font-weight: 500; font-style: normal; font-display: swap; src: url('../../fonts/CrimsonPro-Medium.ttf') format('truetype'); }
@font-face { font-family: 'Crimson Pro'; font-weight: 500; font-style: italic; font-display: swap; src: url('../../fonts/CrimsonPro-MediumItalic.ttf') format('truetype'); }
@font-face { font-family: 'Crimson Pro'; font-weight: 600; font-style: normal; font-display: swap; src: url('../../fonts/CrimsonPro-SemiBold.ttf') format('truetype'); }
@font-face { font-family: 'Crimson Pro'; font-weight: 600; font-style: italic; font-display: swap; src: url('../../fonts/CrimsonPro-SemiBoldItalic.ttf') format('truetype'); }
@font-face { font-family: 'Crimson Pro'; font-weight: 700; font-style: normal; font-display: swap; src: url('../../fonts/CrimsonPro-Bold.ttf') format('truetype'); }
@font-face { font-family: 'Crimson Pro'; font-weight: 700; font-style: italic; font-display: swap; src: url('../../fonts/CrimsonPro-BoldItalic.ttf') format('truetype'); }

/* ---------- Design tokens ---------- */
:root {
  --cream:        #F9F8F4;
  --cream-2:      #f1ece2;
  --white:        #ffffff;
  --ink:          #2a2724;
  --ink-soft:     #4a4640;
  --muted:        #8c857a;
  --line:         #e5ddce;
  --gold:         #c2a15d;
  --gold-dark:    #a8863f;
  --gold-soft:    #d8c295;
  --dark:         #1f1c19;

  --serif: 'Crimson Pro', 'Times New Roman', Georgia, serif;
  --sans:  'Crimson Pro', 'Times New Roman', Georgia, serif;

  --wrap: 1180px;
  --wrap-narrow: 900px;
  --ease: cubic-bezier(.25,.46,.45,.94);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink-soft);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 250;
  line-height: 1.15;
  margin: 0;
}
p { margin: 0 0 1.2em; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding: 96px 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.text-center { text-align: center; }

/* Overline (npr. "O NAS") */
.overline {
  font-family: var(--sans);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .42em;
  font-size: 12px;
  color: var(--gold-dark);
  margin: 0 0 22px;
  padding-left: .42em;
}
.overline::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin: 16px auto 0;
}
.overline--left { text-align: left; }
.overline--left::after { margin-left: 0; }

/* Section title */
.sect-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 250;
  margin-bottom: 18px;
}
.sect-title em { font-style: italic; color: var(--gold-dark); }
.sect-lead {
  max-width: 680px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 16px;
}
.section--cream .sect-lead { color: var(--ink-soft); }

/* ---------- Buttons ---------- */
/* Vsi gumbi: zlato zapolnjeni, zaobljeni (pill), s ševronom — enoten slog */
.btn,
.btn--outline,
.btn--light {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #D7B46A;
  color: #fff;
  font-family: var(--sans);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  padding: 18px 40px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(150,116,45,.22);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), transform .2s var(--ease);
}
.btn::before,
.btn--outline::before,
.btn--light::before {
  content: "";
  width: 7px; height: 7px;
  border-right: 1.6px solid currentColor;
  border-top: 1.6px solid currentColor;
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
  margin-right: 2px;
}
.btn:hover,
.btn--outline:hover,
.btn--light:hover {
  background: #c9a253;
  color: #fff;
  box-shadow: 0 11px 28px rgba(150,116,45,.32);
  transform: translateY(-1px);
}
.btn:hover::before,
.btn--outline:hover::before,
.btn--light:hover::before { transform: rotate(45deg) translate(2px, -2px); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.07); }
.site-header .wrap { max-width: 1360px; }
/* Skrčena menijska vrstica ob drsenju navzdol (ostane sticky) */
.site-header.scrolled .nav { min-height: 74px; }
.site-header.scrolled .nav__brand img { height: 60px; }
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 118px;
  gap: 40px;
  transition: min-height .35s var(--ease);
}
.nav__group { display: flex; align-items: center; gap: 44px; }
.nav__group--left { justify-content: flex-end; }
.nav__group--right { justify-content: flex-start; }
.nav__link {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--ink);
  font-weight: 400;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--gold-dark); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.nav__brand { display: flex; justify-content: center; }
.nav__brand img { height: 105px; width: auto; transition: height .35s var(--ease); }

.nav__lang { display: flex; align-items: center; gap: 8px; margin-left: auto; font-size: 13px; letter-spacing: .12em; }
.nav__lang a { color: var(--muted); }
.nav__lang a.active, .nav__lang a:hover { color: var(--gold-dark); }
.nav__lang span { color: var(--line); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 26px; height: 2px; background: var(--ink); transition: .3s var(--ease); }

/* Spacer so fixed header doesn't cover content on interior pages */
.header-spacer { height: 118px; }

/* ==========================================================================
   HERO (home slider)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.28));
}
.hero__card {
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(30,26,22,.34);
  backdrop-filter: blur(2px);
  padding: 60px 64px;
  max-width: 640px;
  margin: 0 24px;
}
.hero__title {
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 250;
  margin-bottom: 20px;
}
.hero__text {
  color: rgba(255,255,255,.9);
  font-size: 15px;
  max-width: 440px;
  margin: 0 auto 34px;
}
.hero__arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  cursor: pointer;
  transition: background .3s var(--ease);
}
.hero__arrow:hover { background: rgba(255,255,255,.28); }
.hero__arrow--prev { left: 30px; }
.hero__arrow--next { right: 30px; }
.hero__arrow svg { width: 18px; height: 18px; }
.hero__dots {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 12px;
}
.hero__dot { width: 9px; height: 9px; border-radius: 50%; border: 1px solid #fff; background: transparent; cursor: pointer; transition: background .3s; }
.hero__dot.active { background: #fff; }

/* ==========================================================================
   PAGE HERO (interior pages)
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 120px 24px 70px;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.32), rgba(0,0,0,.5));
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero__title { color: #fff; font-size: clamp(34px, 5vw, 54px); font-weight: 250; margin-bottom: 12px; }
.page-hero .overline { color: var(--gold-soft); }
.page-hero .overline::after { background: var(--gold-soft); }
.breadcrumb { font-size: 12px; letter-spacing: .12em; color: rgba(255,255,255,.8); margin-top: 8px; text-transform: uppercase; }
.breadcrumb a:hover { color: #fff; }

/* ==========================================================================
   ABOUT (3 images)
   ========================================================================== */
.gallery-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 44px 0;
}
.gallery-3 figure { margin: 0; overflow: hidden; }
.gallery-3 img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery-3 figure:hover img { transform: scale(1.06); }

/* About / O nas — dvostolpčna postavitev kot original */
.about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.about-col { display: flex; flex-direction: column; gap: 30px; }
.about-col figure { margin: 0; overflow: hidden; }
.about-col img { width: 100%; height: auto; display: block; transition: transform .8s var(--ease); }
.about-col figure:hover img { transform: scale(1.03); }
.about-text { font-size: 16px; line-height: 1.95; color: var(--ink-soft); text-align: justify; margin: 0; }
/* Zaključni banner: slogan čez fotografijo vinograda */
.signature-band {
  position: relative;
  min-height: 540px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 70px 7%;
  overflow: hidden;
}
.signature-band::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(24,16,6,0) 42%, rgba(24,16,6,.34) 100%);
}
.signature-band__inner { position: relative; z-index: 2; text-align: center; width: 100%; max-width: 460px; }
.signature-band__k { width: 90px; height: auto; display: block; margin: 0 auto 14px; filter: drop-shadow(0 3px 12px rgba(0,0,0,.3)); }
.signature-band__word { font-family: var(--serif); font-weight: 250; letter-spacing: .34em; font-size: 30px; color: #e8c67c; margin: 0 0 20px; padding-left: .34em; text-shadow: 0 2px 12px rgba(24,14,4,.6); }
.signature-band__divider { display: block; width: 200px; height: 1px; background: rgba(232,198,124,.8); margin: 0 auto 26px; }
.signature-band__quote {
  font-family: var(--serif); font-style: italic; font-weight: 250;
  font-size: clamp(22px, 2.2vw, 32px); line-height: 1.55;
  color: #eecb82; margin: 0; text-shadow: 0 2px 14px rgba(24,14,4,.65);
}
@media (max-width: 800px) {
  .about-cols { grid-template-columns: 1fr; gap: 26px; }
  .about-col { gap: 22px; }
  .signature-band { justify-content: center; padding: 56px 24px; min-height: 420px; background-attachment: scroll; }
  .signature-band::before { background: rgba(24,16,6,.42); }
  .band__bg { background-attachment: scroll; }
}

/* ==========================================================================
   PRODUCTS (bottles)
   ========================================================================== */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.product {
  text-align: center;
  padding: 30px 18px 34px;
  background: transparent;
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.product:hover { background: var(--white); transform: translateY(-4px); box-shadow: 0 22px 45px rgba(40,34,26,.09); }
.section--white .product:hover { background: var(--cream); }
.product__media {
  height: 240px;
  display: flex; align-items: flex-end; justify-content: center;
  margin-bottom: 22px;
}
.product__media img { max-height: 240px; width: auto; transition: transform .5s var(--ease); }
.product:hover .product__media img { transform: translateY(-6px) scale(1.03); }
.product__name { font-size: 23px; font-weight: 250; margin-bottom: 4px; }
.product__type { font-size: 12.5px; letter-spacing: .06em; color: var(--muted); text-transform: none; }

/* ==========================================================================
   DINAMIČNI KATALOG (vina / žganja iz JSON) + modal
   ========================================================================== */
.catalog__status { text-align: center; color: var(--muted); padding: 50px 0; font-size: 15px; }
.catalog__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.catalog-item {
  font-family: inherit; background: transparent; border: none; cursor: pointer;
  text-align: center; padding: 30px 18px 34px; display: flex; flex-direction: column; align-items: center;
  transition: background .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.catalog-item:hover, .catalog-item:focus-visible { background: var(--cream); transform: translateY(-4px); box-shadow: 0 22px 45px rgba(40,34,26,.09); outline: none; }
.catalog-item__media { height: 250px; display: flex; align-items: flex-end; justify-content: center; margin-bottom: 20px; }
.catalog-item__media img { max-height: 250px; max-width: 100%; width: auto; transition: transform .5s var(--ease); }
.catalog-item:hover .catalog-item__media img { transform: translateY(-6px) scale(1.03); }
.catalog-item__title { font-family: var(--serif); font-size: 21px; line-height: 1.3; color: var(--ink); }

/* Modal */
.catalog-modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.catalog-modal.open { display: block; }
.catalog-modal__overlay { position: absolute; inset: 0; background: rgba(20,16,12,.62); backdrop-filter: blur(3px); }
.catalog-modal__dialog {
  position: relative; z-index: 2; background: var(--white);
  max-width: 920px; width: calc(100% - 40px); max-height: 88vh; margin: 6vh auto 0;
  overflow: auto; box-shadow: 0 40px 90px rgba(0,0,0,.4); animation: modalIn .35s var(--ease);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.catalog-modal__close {
  position: absolute; top: 12px; right: 14px; z-index: 3; background: none; border: none;
  font-size: 34px; line-height: 1; color: var(--muted); cursor: pointer; width: 44px; height: 44px; transition: color .3s var(--ease);
}
.catalog-modal__close:hover { color: var(--gold-dark); }
.catalog-modal__body { display: grid; grid-template-columns: 0.9fr 1.1fr; }
.catalog-modal__media { background: var(--cream); display: flex; align-items: center; justify-content: center; padding: 44px; }
.catalog-modal__media img { max-height: 460px; max-width: 100%; width: auto; }
.catalog-modal__info { padding: 50px 44px; }
.catalog-modal__title { font-size: clamp(24px, 3vw, 32px); margin: 0 0 22px; color: var(--ink); line-height: 1.2; }
.catalog-modal__specs { list-style: none; margin: 0 0 24px; padding: 0; border-top: 1px solid var(--line); }
.catalog-modal__specs li { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.catalog-modal__specs .k { color: var(--muted); flex: 0 0 auto; }
.catalog-modal__specs .v { color: var(--ink); text-align: right; }
.catalog-modal__desc { font-size: 15px; line-height: 1.85; color: var(--ink-soft); }
.catalog-modal__desc p { margin: 0 0 1em; }
.catalog-modal__desc p:last-child { margin-bottom: 0; }
@media (max-width: 900px) { .catalog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) {
  .catalog-modal__body { grid-template-columns: 1fr; }
  .catalog-modal__media { padding: 30px; }
  .catalog-modal__media img { max-height: 300px; }
  .catalog-modal__info { padding: 32px 26px; }
  .catalog-modal__dialog { margin: 4vh auto 0; max-height: 92vh; }
}
@media (max-width: 560px) {
  .catalog__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .catalog-item { padding: 20px 10px 24px; }
  .catalog-item__media { height: 200px; }
  .catalog-item__media img { max-height: 200px; }
  .catalog-item__title { font-size: 18px; }
}

/* ==========================================================================
   SPLIT band (degustacija)
   ========================================================================== */
.band {
  position: relative;
  padding: 130px 24px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.band__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; z-index: 0; }
.band__bg::after { content: ""; position: absolute; inset: 0; background: rgba(20,16,12,.5); }
.band__inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.band__title { color: #fff; font-size: clamp(30px, 4vw, 44px); margin-bottom: 20px; }
.band__text { color: rgba(255,255,255,.88); margin-bottom: 34px; }

/* ==========================================================================
   PROSE (text pages)
   ========================================================================== */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { font-size: 16.5px; color: var(--ink-soft); }
.prose a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--ink); }
.prose .lead-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--gold-dark);
  text-align: center;
  line-height: 1.35;
  margin: 46px 0;
  position: relative;
}
.prose .lead-quote::before,
.prose .lead-quote::after { content: ""; display: block; width: 44px; height: 1px; background: var(--gold); margin: 22px auto; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split img { width: 100%; height: 100%; max-height: 560px; object-fit: cover; }
.split__body h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 24px; }

/* ==========================================================================
   WINE / SPIRIT TECHNICAL CARDS
   ========================================================================== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.tech-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 34px 28px 30px;
  text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.tech-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px rgba(40,34,26,.1); }
.tech-card__media { height: 210px; display: flex; align-items: flex-end; justify-content: center; margin-bottom: 20px; }
.tech-card__media img { max-height: 210px; width: auto; }
.tech-card__name { font-size: 24px; font-weight: 600; margin-bottom: 6px; }
.tech-card__cat { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 20px; }
.tech-card__specs { list-style: none; margin: 0; padding: 20px 0 0; border-top: 1px solid var(--line); text-align: left; font-family: var(--sans); font-size: 14px; margin-top: auto; }
.tech-card__specs li { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; color: var(--ink-soft); }
.tech-card__specs li span:first-child { color: var(--muted); }
.tech-card__specs li span:last-child { font-weight: 400; color: var(--ink); text-align: right; }
.tech-card__desc { font-size: 14.5px; color: var(--ink-soft); margin: 4px 0 18px; text-align: left; }

/* ==========================================================================
   WINE / SPIRIT LIST (technical sheets)
   ========================================================================== */
.winelist { max-width: 900px; margin: 0 auto; }
.winelist__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 30px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.winelist__item:first-child { border-top: 1px solid var(--line); }
.winelist__head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.winelist__name { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--ink); }
.winelist__cat { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); }
.winelist__variety { grid-column: 1 / -1; font-size: 14.5px; color: var(--muted); margin-top: 2px; }
.winelist__specs { display: flex; gap: 26px; font-size: 13.5px; color: var(--ink-soft); white-space: nowrap; }
.winelist__specs b { display: block; font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--gold-dark); line-height: 1.1; }
.winelist__specs span { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.winelist__spec { text-align: center; }

/* Flagship bottle intro on product pages */
.page-intro { max-width: 720px; margin: 0 auto 10px; text-align: center; }

/* ==========================================================================
   DEGUSTACIJE — paketi / cene
   ========================================================================== */
.price-title { text-align: center; font-size: clamp(24px, 3vw, 32px); margin: 0 0 30px; }
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 780px; margin: 0 auto 28px; }
.price-card { background: var(--white); border: 1px solid var(--line); padding: 34px 22px; text-align: center; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.price-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(40,34,26,.1); }
.price-card--feat { border-color: var(--gold); }
.price-card__name { display: block; font-family: var(--serif); font-size: 22px; color: var(--ink); margin-bottom: 14px; }
.price-card__price { display: block; font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--gold-dark); line-height: 1; }
.price-note { text-align: center; color: var(--muted); font-size: 15px; letter-spacing: .04em; margin: 0; }
@media (max-width: 620px) { .price-cards { grid-template-columns: 1fr; gap: 14px; } }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h3 { font-size: 26px; margin-bottom: 24px; }
.contact-list { list-style: none; margin: 0 0 30px; padding: 0; }
.contact-list li { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.contact-list .ci-icon { color: var(--gold-dark); flex: 0 0 auto; margin-top: 3px; }
.contact-list .ci-icon svg { width: 20px; height: 20px; }
.contact-list .ci-label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 2px; }
.contact-list .ci-value { color: var(--ink); font-size: 16px; }

.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-field input, .form-field textarea {
  width: 100%;
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  transition: border-color .3s var(--ease);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field textarea { min-height: 150px; resize: vertical; }
.map-embed { width: 100%; border: 0; height: 100%; min-height: 340px; filter: grayscale(.2); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--white); border-top: 1px solid var(--line); padding: 58px 0 40px; color: var(--ink-soft); }
.footer-inner { display: flex; align-items: flex-start; gap: 50px; }

/* Blagovna znamka: logo + besedilo drug ob drugem */
.footer-brand { display: flex; gap: 22px; align-items: flex-start; flex: 0 0 auto; }
.footer-logo { width: 66px; height: auto; flex: 0 0 auto; }
.footer-company { font-family: var(--sans); font-size: 14px; letter-spacing: .06em; color: var(--ink); font-weight: 600; margin: 0 0 8px; }
.footer-address { font-style: normal; font-size: 14px; line-height: 1.85; color: var(--muted); margin: 0 0 12px; }
.footer-line { font-size: 14px; line-height: 1.9; margin: 0; color: var(--ink-soft); display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-key { color: var(--gold-dark); }
.footer-line a { color: var(--ink-soft); }
.footer-line a:hover { color: var(--gold-dark); }
.footer-line a[href^="mailto"] { text-decoration: underline; text-underline-offset: 2px; }

/* Družbena omrežja — mali krogci */
.footer-social { display: inline-flex; gap: 8px; margin-left: 6px; }
.footer-social a { width: 26px; height: 26px; border-radius: 50%; background: #d8d3c7; color: #fff; display: inline-flex; align-items: center; justify-content: center; transition: background .3s var(--ease); }
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 13px; height: 13px; }

/* Meni — en stolpec */
.footer-menu { display: flex; flex-direction: column; gap: 12px; flex: 0 0 auto; }
.footer-menu a { font-size: 14.5px; color: var(--ink); }
.footer-menu a:hover { color: var(--gold-dark); }

/* Pravno / copyright — spodaj desno */
.footer-legal { flex: 1 1 auto; align-self: flex-end; display: flex; align-items: baseline; gap: 26px; font-size: 13px; }
.footer-legal a { color: var(--ink); }
.footer-legal a:hover { color: var(--gold-dark); }
.footer-copy { margin-left: auto; color: var(--muted); white-space: nowrap; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1240px) {
  .nav { gap: 26px; }
  .nav__group { gap: 20px; }
  .nav__link { font-size: 14px; letter-spacing: .1em; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .section { padding: 70px 0; }
  .nav { grid-template-columns: auto 1fr auto; min-height: 90px; }
  .nav__brand img { height: 66px; }
  .nav__group--left { display: none; }
  .nav__group--right { display: none; }
  .nav__brand { justify-content: flex-start; }
  .nav__toggle { display: flex; order: 3; }
  .nav__brand { order: 1; }

  .mobile-menu {
    position: fixed; top: 90px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform .4s var(--ease);
    z-index: 99;
    padding: 18px 0 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a { display: block; padding: 14px 28px; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; border-bottom: 1px solid var(--cream); }
  .mobile-menu .m-lang { display: flex; gap: 14px; padding: 18px 28px 4px; }
  .mobile-menu .m-lang a { display: inline; padding: 0; border: 0; }

  .products { grid-template-columns: repeat(2, 1fr); }
  .gallery-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split img { max-height: 380px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; gap: 34px; }
  .footer-legal { flex: none; align-self: stretch; flex-wrap: wrap; gap: 16px 26px; padding-top: 20px; border-top: 1px solid var(--line); }
  .footer-copy { margin-left: 0; }
  .hero__arrow { display: none; }
  .hero__card { padding: 44px 30px; }
}
@media (max-width: 560px) {
  .tech-grid { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr 1fr; gap: 8px; }
  .product__media { height: 190px; }
  .product__media img { max-height: 190px; }
  .footer-brand { flex-direction: column; gap: 16px; }
}
@media (max-width: 600px) {
  .winelist__item { grid-template-columns: 1fr; }
  .winelist__specs { gap: 20px; margin-top: 10px; }
}

/* Desktop: hide mobile menu container */
@media (min-width: 901px) { .mobile-menu { display: none; } }
