/* ============================================================
   VS Croatian Imports — Savor the Tradition
   Brand: indigo ink + periwinkle (from logo), warm cream paper
   ============================================================ */
:root {
  --ink: #232f55;
  --ink-deep: #1a2240;
  --periwinkle: #aebde0;
  --periwinkle-light: #e7ecf7;
  --paper: #faf9f6;
  --paper-warm: #f3f1ea;
  --gold: #b08d3e;
  --text: #33384a;
  --text-soft: #5c6275;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(26, 34, 64, 0.10);
  --radius: 14px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- announcement ---------- */
.announcement-bar {
  background: var(--ink-deep);
  color: var(--periwinkle);
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 8px 16px;
  text-transform: uppercase;
}

/* ---------- navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--periwinkle-light);
  transition: box-shadow 0.25s ease;
}
.navbar--scrolled { box-shadow: var(--shadow); }
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.navbar__logo img { height: 48px; width: auto; }
.navbar__links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}
.navbar__links a {
  text-decoration: none;
  white-space: nowrap;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.navbar__links a:hover { color: var(--gold); border-color: var(--gold); }
.navbar__links a.nav-cta {
  background: var(--ink);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 999px;
  border-bottom: none;
}
.navbar__links a.nav-cta:hover { background: var(--gold); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(26,34,64,0.82) 0%, rgba(26,34,64,0.55) 45%, rgba(26,34,64,0.25) 100%);
}
.hero__content { max-width: 640px; padding: 90px 0; }
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  color: var(--periwinkle);
  margin-bottom: 18px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero__title em { color: var(--periwinkle); font-style: italic; }
.hero__sub {
  font-size: 19px;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
}
.btn--primary { background: var(--gold); color: var(--white); }
.btn--primary:hover { background: #997932; transform: translateY(-2px); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: var(--periwinkle-light); transform: translateY(-2px); }
.btn--outline-light { border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); }
.btn--outline { border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--white); }
.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: var(--ink-deep); transform: translateY(-2px); }
.btn--lg { padding: 16px 38px; font-size: 16px; }

/* ---------- sections ---------- */
.section { padding: 96px 0; }
.section--alt { background: var(--paper-warm); }
.section--ink { background: var(--ink-deep); color: var(--periwinkle-light); }
.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section--ink .section__title { color: var(--white); }
.section__subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-soft);
  max-width: 720px;
  margin-bottom: 48px;
}
.section--ink .section__subtitle { color: var(--periwinkle); }
.center { text-align: center; }
.center .section__subtitle { margin-left: auto; margin-right: auto; }

/* ---------- credibility strip ---------- */
.cred-strip { background: var(--ink); color: var(--white); padding: 36px 0; }
.cred-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.cred-item__num {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--periwinkle);
  font-weight: 600;
}
.cred-item__label { font-size: 14px; letter-spacing: 0.04em; color: rgba(255,255,255,0.85); }

/* ---------- story / why croatia ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.story-grid--flip { grid-template-columns: 0.9fr 1.1fr; }
.story-copy p { margin-bottom: 18px; font-weight: 300; }
.story-copy strong { color: var(--ink); font-weight: 600; }
.story-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img--tall img { aspect-ratio: 3/4; }
.story-img--wide img { aspect-ratio: 4/3; }

.video-credit {
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 12px;
}
.video-credit a { color: var(--gold); }

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.fact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--periwinkle);
}
.fact-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 10px;
}
.fact-card p { font-size: 15.5px; font-weight: 300; color: var(--text-soft); }

/* ---------- regions ---------- */
.regions-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.region-list { display: grid; gap: 18px; }
.region-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--periwinkle);
}
.region-item--active { border-left-color: var(--gold); }
.region-item h3 {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.region-item h3 .badge {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  border-radius: 999px;
  padding: 3px 10px;
}
.region-item p { font-size: 15px; font-weight: 300; color: var(--text-soft); margin-top: 6px; }

/* ---------- winery cards ---------- */
.winery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.winery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  isolation: isolate;
}
.winery-card__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.winery-card:hover .winery-card__bg { transform: scale(1.05); }
.winery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(26,34,64,0.92) 0%, rgba(26,34,64,0.25) 55%, rgba(26,34,64,0.08) 100%);
}
.winery-card__body { padding: 34px; color: var(--white); }
.winery-card__region {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12.5px;
  color: var(--periwinkle);
  margin-bottom: 8px;
}
.winery-card__name { font-family: var(--font-display); font-size: 32px; font-weight: 600; margin-bottom: 10px; }
.winery-card__desc { font-size: 15.5px; font-weight: 300; color: rgba(255,255,255,0.9); margin-bottom: 16px; }
.winery-card__link {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 3px;
}

/* ---------- wine cards ---------- */
.wine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.wine-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wine-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(26,34,64,0.16); }
.wine-card__img {
  background: linear-gradient(160deg, var(--periwinkle-light), var(--paper-warm));
  padding: 28px;
  display: flex;
  justify-content: center;
}
.wine-card__img img { height: 240px; width: auto; object-fit: contain; }
.wine-card__body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.wine-card__winery {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11.5px;
  color: var(--gold);
  margin-bottom: 6px;
}
.wine-card__name { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.wine-card__meta { font-size: 14px; font-weight: 300; color: var(--text-soft); margin-bottom: 14px; flex: 1; }
.wine-card__cta {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 1px solid var(--periwinkle-light);
  padding-top: 14px;
}

/* ---------- about ---------- */
.about-quote {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  margin: 26px 0;
}

/* ---------- trade ---------- */
.trade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.trade-points { display: grid; gap: 20px; margin-top: 8px; }
.trade-point { display: flex; gap: 16px; align-items: flex-start; }
.trade-point__icon {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--periwinkle-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.trade-point h3 { font-family: var(--font-display); font-size: 20px; color: var(--ink); }
.trade-point p { font-size: 15px; font-weight: 300; color: var(--text-soft); }

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px;
}
.contact-card h3 { font-family: var(--font-display); font-size: 26px; color: var(--ink); margin-bottom: 6px; }
.contact-card > p { font-size: 15px; font-weight: 300; color: var(--text-soft); margin-bottom: 24px; }
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 7px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  border: 1px solid #d5dae8;
  border-radius: 8px;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--paper);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: 2px solid var(--periwinkle);
  border-color: var(--periwinkle);
}
.form-status { margin-top: 14px; font-size: 15px; display: none; }
.form-status--ok { display: block; color: #1d7a3d; }
.form-status--err { display: block; color: #a3392f; }
.contact-direct { margin-top: 26px; border-top: 1px solid var(--periwinkle-light); padding-top: 22px; font-size: 15.5px; }
.contact-direct a { color: var(--ink); font-weight: 500; }
.contact-direct div { margin-bottom: 6px; }

/* ---------- page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  isolation: isolate;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(26,34,64,0.88), rgba(26,34,64,0.30));
}
.page-hero__content { padding: 70px 0 48px; }
.page-hero .hero__eyebrow { margin-bottom: 10px; }
.page-hero__title { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 600; }

.breadcrumb { font-size: 14px; padding: 18px 0; color: var(--text-soft); }
.breadcrumb a { color: var(--text-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { margin: 0 8px; color: var(--periwinkle); }

/* ---------- gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

/* ---------- video embed ---------- */
.video-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink-deep);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- wine detail pages ---------- */
.wine-hero { background: linear-gradient(160deg, var(--ink-deep) 0%, var(--ink) 70%, #36447a 100%); color: var(--white); }
.wine-hero__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  padding: 56px 24px 72px;
}
.wine-hero__image {
  background: linear-gradient(160deg, rgba(174,189,224,0.18), rgba(255,255,255,0.05));
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  justify-content: center;
}
.wine-hero__image img { max-height: 480px; width: auto; object-fit: contain; }
.wine-hero__winery { text-transform: uppercase; letter-spacing: 0.18em; font-size: 13px; color: var(--periwinkle); margin-bottom: 12px; }
.wine-hero__name { font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 600; line-height: 1.05; }
.wine-hero__vintage { font-family: var(--font-display); font-size: 24px; font-style: italic; color: var(--periwinkle); margin: 8px 0 18px; }
.wine-hero__tagline { font-size: 17.5px; font-weight: 300; color: rgba(255,255,255,0.92); margin-bottom: 28px; max-width: 520px; }
.wine-hero__meta { display: flex; gap: 36px; flex-wrap: wrap; margin-bottom: 32px; }
.wine-meta-item__label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--periwinkle); }
.wine-meta-item__value { font-size: 17px; font-weight: 500; }
.wine-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.tasting-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tasting-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.tasting-card__icon { font-size: 30px; margin-bottom: 12px; }
.tasting-card__title { font-family: var(--font-display); font-size: 21px; color: var(--ink); margin-bottom: 10px; }
.tasting-card__text { font-size: 15px; font-weight: 300; color: var(--text-soft); }

.serving-info {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid #e3e0d6;
}
.serving-item { display: flex; gap: 14px; align-items: center; }
.serving-item__icon { font-size: 26px; }
.serving-item__label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.serving-item__text { font-size: 16px; color: var(--ink); }

.pairing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pairing-item {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
}
.pairing-item__emoji { font-size: 34px; margin-bottom: 10px; }
.pairing-item__name { font-family: var(--font-display); font-size: 20px; color: var(--ink); margin-bottom: 8px; }
.pairing-item__desc { font-size: 14.5px; font-weight: 300; color: var(--text-soft); }

.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 920px; margin: 0 auto; }
.detail-group { margin-bottom: 34px; }
.detail-group__title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  border-bottom: 2px solid var(--periwinkle);
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.detail-row { display: flex; justify-content: space-between; gap: 18px; padding: 8px 0; border-bottom: 1px dashed #e3e0d6; font-size: 15.5px; }
.detail-row__label { color: var(--text-soft); font-weight: 300; }
.detail-row__value { color: var(--ink); font-weight: 500; text-align: right; }

.cta-band { background: var(--ink-deep); color: var(--white); text-align: center; padding: 76px 24px; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 600; margin-bottom: 14px; }
.cta-band p { font-weight: 300; color: var(--periwinkle); max-width: 600px; margin: 0 auto 30px; }

/* ---------- footer ---------- */
.footer { background: var(--ink-deep); color: rgba(255,255,255,0.82); padding: 64px 0 36px; }
.footer__inner { display: grid; gap: 36px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}
.footer__brand img { height: 54px; background: var(--white); padding: 6px 10px; border-radius: 8px; }
.footer__brand p { margin-top: 16px; font-size: 14.5px; font-weight: 300; max-width: 320px; }
.footer h4 {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--periwinkle);
  margin-bottom: 16px;
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 15px; }
.footer a:hover { color: var(--white); }
.footer__compliance {
  border-top: 1px solid rgba(174,189,224,0.25);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-align: center;
}
.footer__compliance p { margin-bottom: 6px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
}
.footer__bottom a { font-size: 13.5px; color: rgba(255,255,255,0.65); margin-left: 18px; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .story-grid, .story-grid--flip, .regions-grid, .trade-grid, .wine-hero__inner { grid-template-columns: 1fr; }
  .wine-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-grid, .tasting-grid, .pairing-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .cred-strip__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .winery-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .detail-grid { grid-template-columns: 1fr; }
  .wine-hero__image img { max-height: 360px; }
}
@media (max-width: 1024px) {
  .navbar__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 28px 30px;
    gap: 20px;
    box-shadow: 0 18px 30px rgba(26,34,64,0.16);
    border-top: 1px solid var(--periwinkle-light);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
  .navbar__links.open { visibility: visible; opacity: 1; transform: translateY(0); }
  .hamburger { display: flex; }
}
@media (max-width: 720px) {
  .wine-grid, .facts-grid, .tasting-grid, .pairing-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .hero { min-height: 72vh; }
}
