/* ═══════════════════════════════════════════════════════
   ValpolicellaWines.com — Shared Stylesheet
   ═══════════════════════════════════════════════════════ */

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

:root {
  --ink:        #0d0905;
  --ink2:       #110d09;
  --ink3:       #0f0b08;
  --parchment:  #f4ede0;
  --cream:      #faf6ef;
  --wine:       #7a1525;
  --wine-light: #a6263a;
  --gold:       #c9a96e;
  --muted:      #8a7060;
  --border:     rgba(201,169,110,.2);
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', sans-serif;
  --max:        1160px;
  --max-article: 780px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--parchment);
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .026; pointer-events: none; z-index: 9999;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { color: inherit; text-decoration: none; }

/* ── Utility ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.gold      { color: var(--gold); }
.label {
  font-family: var(--ff-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
}
.divider { width: 40px; height: 1px; background: var(--gold); margin: 18px 0; }
.divider.center { margin: 18px auto; }

.btn-primary {
  display: inline-block;
  background: var(--wine); color: var(--parchment);
  font-family: var(--ff-body); font-size: 11px; font-weight: 400;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 14px 32px;
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--wine-light); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(244,237,224,.35); color: rgba(244,237,224,.8);
  font-family: var(--ff-body); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 14px 32px;
  transition: border-color .25s, color .25s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-gold {
  display: inline-block;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: var(--ff-body); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 12px 28px;
  transition: background .25s, color .25s;
}
.btn-gold:hover { background: var(--gold); color: var(--ink); }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, padding .4s, backdrop-filter .4s;
}
nav.scrolled {
  background: rgba(13,9,5,.9);
  backdrop-filter: blur(14px);
  padding: 16px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--ff-display); font-size: 18px; font-weight: 400;
  letter-spacing: .08em; color: var(--parchment);
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(244,237,224,.6);
  transition: color .25s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--gold); }
.nav-cta {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--gold); color: var(--gold);
  padding: 9px 22px;
  transition: background .25s, color .25s;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: 160px 40px 80px;
  background: var(--ink2);
  border-bottom: 1px solid var(--border);
}
.page-hero .container { max-width: var(--max); }
.page-hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.page-hero-eyebrow::after { content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--gold); }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(38px, 5vw, 68px); font-weight: 300;
  line-height: 1.06; color: var(--parchment);
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-desc { font-size: 16px; color: rgba(244,237,224,.65); max-width: 580px; }

/* ── Section ── */
section { padding: 88px 0; }
.section-header { margin-bottom: 56px; }
.section-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 52px); font-weight: 300;
  line-height: 1.1; color: var(--parchment);
}
.section-header h2 em { font-style: italic; color: var(--gold); }
.section-header p { margin-top: 16px; max-width: 520px; color: rgba(244,237,224,.62); font-size: 15px; }

/* ── Stat band ── */
.stat-band {
  background: var(--wine); padding: 18px 40px;
  display: flex; justify-content: center; gap: 64px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item strong {
  display: block; font-family: var(--ff-display);
  font-size: 26px; font-weight: 400; color: var(--parchment);
}
.stat-item span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(244,237,224,.7); }

/* ── Tour cards ── */
.tours-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.tour-card { position: relative; height: 480px; overflow: hidden; }
.tour-card:first-child { grid-row: span 2; height: auto; }
.tour-card img { transition: transform .6s ease; }
.tour-card:hover img { transform: scale(1.06); }
.tour-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,9,5,.92) 0%, rgba(13,9,5,.08) 58%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; transition: background .4s;
}
.tour-card:hover .tour-overlay {
  background: linear-gradient(to top, rgba(122,21,37,.88) 0%, rgba(13,9,5,.15) 58%);
}
.tour-badge { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.tour-overlay h3 { font-family: var(--ff-display); font-size: 22px; font-weight: 400; color: var(--parchment); margin-bottom: 10px; }
.tour-overlay p { font-size: 13px; color: rgba(244,237,224,.65); margin-bottom: 18px; display: none; }
.tour-card:hover .tour-overlay p { display: block; }
.tour-link { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 8px; }
.tour-link::after { content: '→'; transition: transform .25s; }
.tour-card:hover .tour-link::after { transform: translateX(4px); }

/* ── Wine list ── */
.wine-item {
  display: grid; grid-template-columns: 64px 1fr auto;
  gap: 32px; align-items: start;
  padding: 36px 0; border-bottom: 1px solid var(--border);
  transition: padding-left .3s;
}
.wine-item:first-child { border-top: 1px solid var(--border); }
.wine-item:hover { padding-left: 12px; }
.wine-num { font-family: var(--ff-display); font-size: 48px; font-weight: 300; color: rgba(201,169,110,.2); line-height: 1; padding-top: 4px; }
.wine-info h3 { font-family: var(--ff-display); font-size: 26px; font-weight: 400; color: var(--parchment); margin-bottom: 8px; }
.wine-info p { font-size: 14px; color: rgba(244,237,224,.62); max-width: 560px; }
.wine-cta {
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  border: 1px solid var(--border); color: var(--gold);
  padding: 10px 22px; white-space: nowrap; align-self: center;
  transition: background .25s, border-color .25s;
}
.wine-cta:hover { background: rgba(201,169,110,.1); border-color: var(--gold); }

/* ── Stay cards ── */
.stay-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.stay-card {
  display: grid; grid-template-columns: 200px 1fr;
  overflow: hidden; border: 1px solid var(--border);
  transition: border-color .3s;
}
.stay-card:hover { border-color: rgba(201,169,110,.5); }
.stay-img { height: 200px; overflow: hidden; }
.stay-img img { transition: transform .5s ease; }
.stay-card:hover .stay-img img { transform: scale(1.08); }
.stay-info { padding: 28px; }
.stay-type { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.stay-info h3 { font-family: var(--ff-display); font-size: 20px; font-weight: 400; color: var(--parchment); margin-bottom: 10px; }
.stay-info p { font-size: 13px; color: rgba(244,237,224,.6); margin-bottom: 18px; }
.stay-link { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.faq-item { padding: 32px; border: 1px solid var(--border); transition: background .3s; }
.faq-item:hover { background: rgba(201,169,110,.04); }
.faq-item h3 { font-family: var(--ff-display); font-size: 19px; font-weight: 400; color: var(--parchment); margin-bottom: 12px; }
.faq-item p { font-size: 14px; color: rgba(244,237,224,.62); line-height: 1.75; }

/* ── Article preview cards (homepage/listing) ── */
.articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.article-card { border-top: 1px solid var(--border); padding-top: 24px; }
.article-cat { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--wine-light); margin-bottom: 12px; }
.article-card h3 { font-family: var(--ff-display); font-size: 21px; font-weight: 400; color: var(--parchment); line-height: 1.25; margin-bottom: 12px; }
.article-card p { font-size: 13.5px; color: rgba(244,237,224,.6); margin-bottom: 18px; line-height: 1.75; }
.article-read { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.article-read:hover { opacity: .8; }

/* ── Article page layout ── */
.article-body {
  max-width: var(--max-article); margin: 0 auto;
  padding: 72px 40px 100px;
}
.article-body h2 {
  font-family: var(--ff-display); font-size: 28px; font-weight: 400;
  color: var(--parchment); margin: 48px 0 16px; line-height: 1.2;
}
.article-body p { font-size: 15.5px; color: rgba(244,237,224,.72); margin-bottom: 22px; line-height: 1.8; }
.article-body p strong { color: var(--parchment); font-weight: 500; }
.article-body p em { font-style: italic; color: rgba(244,237,224,.85); }
.article-body ul { margin: 0 0 22px 20px; }
.article-body li { font-size: 15px; color: rgba(244,237,224,.68); margin-bottom: 8px; line-height: 1.75; }
.article-pullquote {
  margin: 40px 0;
  padding: 28px 36px;
  border-left: 3px solid var(--wine);
  background: rgba(122,21,37,.1);
  font-family: var(--ff-display); font-size: 22px; font-style: italic;
  color: var(--parchment); line-height: 1.4;
}
.article-cta-box {
  margin: 48px 0;
  padding: 36px;
  border: 1px solid var(--border);
  background: rgba(201,169,110,.05);
  text-align: center;
}
.article-cta-box p { font-size: 14px; color: rgba(244,237,224,.65); margin-bottom: 20px; }
.article-related { margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--border); }
.article-related h4 { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.related-links { display: flex; flex-direction: column; gap: 12px; }
.related-link { font-family: var(--ff-display); font-size: 18px; color: rgba(244,237,224,.7); transition: color .2s; }
.related-link:hover { color: var(--gold); }
.related-link::before { content: '→  '; color: var(--wine-light); }

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 100px 40px 0;
  max-width: var(--max-article); margin: 0 auto;
}
.breadcrumb ol { display: flex; gap: 8px; list-style: none; }
.breadcrumb li { font-size: 11px; letter-spacing: .1em; color: rgba(244,237,224,.4); }
.breadcrumb li + li::before { content: '/'; margin-right: 8px; }
.breadcrumb a { color: rgba(244,237,224,.5); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li:last-child { color: var(--gold); }

/* ── CTA strip ── */
.cta-strip { background: var(--wine); padding: 72px 40px; text-align: center; }
.cta-strip h2 {
  font-family: var(--ff-display); font-size: clamp(28px, 4vw, 48px);
  font-weight: 300; font-style: italic; color: var(--parchment); margin-bottom: 12px;
}
.cta-strip p { font-size: 15px; color: rgba(244,237,224,.75); margin-bottom: 32px; }
.cta-strip .btn-primary { background: var(--parchment); color: var(--wine); }
.cta-strip .btn-primary:hover { background: var(--cream); }

/* ── Footer ── */
footer { background: #080504; padding: 56px 40px 36px; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 20px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(244,237,224,.4); max-width: 260px; }
.footer-col h4 { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 13px; color: rgba(244,237,224,.45); transition: color .2s; }
.footer-col a:hover { color: var(--parchment); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 11px; color: rgba(244,237,224,.28); }
.footer-bottom a { color: rgba(244,237,224,.38); }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 960px) {
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .container { padding: 0 24px; }
  .stat-band { gap: 28px; padding: 18px 24px; }
  .tours-grid { grid-template-columns: 1fr; }
  .tour-card:first-child { grid-row: span 1; height: 420px; }
  .tour-card { height: 340px; }
  .wine-item { grid-template-columns: 48px 1fr; }
  .wine-cta { display: none; }
  .stay-grid { grid-template-columns: 1fr; }
  .stay-card { grid-template-columns: 1fr; }
  .stay-img { height: 220px; }
  .faq-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-hero { padding: 130px 24px 60px; }
  .article-body { padding: 48px 24px 80px; }
  .breadcrumb { padding: 80px 24px 0; }
}
