/* ===== WINE-ONE: "The Cellar" — Warm / Rustic ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lora:ital,wght@0,400;0,600;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --burgundy: #722F37;
  --burgundy-dark: #5A2129;
  --cream: #FFF8F0;
  --gold: #C5A55A;
  --gold-light: #D4BA7A;
  --walnut: #3B2316;
  --walnut-light: #5C3D2E;
  --text: #2E1A11;
  --text-light: #6B5548;
  --white: #FFFFFF;
  --shadow: 0 2px 16px rgba(59,35,22,.10);
  --shadow-lg: 0 8px 32px rgba(59,35,22,.12);
  --radius: 10px;
  --nav-height: 72px;
}

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

html { scroll-behavior: smooth; }
body {
  font-family: 'Lora', Georgia, serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.25; }
a { color: var(--burgundy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.accent-text { font-family: 'Jost', sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: .12em; font-size: .85rem; color: var(--gold); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block; padding: .8rem 2rem; border-radius: 6px; font-family: 'Jost', sans-serif;
  font-weight: 500; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; transition: all .25s; cursor: pointer; border: 2px solid transparent;
}
.btn--primary { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); }
.btn--primary:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); color: var(--cream); }
.btn--outline { background: transparent; color: var(--burgundy); border-color: var(--burgundy); }
.btn--outline:hover { background: var(--burgundy); color: var(--cream); }
.btn--burgundy { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); }
.btn--burgundy:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); color: var(--cream); }
.btn--gold { background: var(--gold); color: var(--walnut); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--walnut); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: transparent; transition: background .3s, box-shadow .3s;
}
.nav--scrolled { background: var(--walnut); box-shadow: var(--shadow); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); }
.nav__logo {
  font-family: 'Playfair Display', Georgia, serif; font-size: 1.35rem; font-weight: 700; color: var(--cream); letter-spacing: .02em;
}
.nav__logo span { color: var(--gold); font-weight: 400; margin: 0 .25em; }
.nav__links { list-style: none; display: flex; align-items: center; gap: 1.5rem; }
.nav__links a { font-family: 'Jost', sans-serif; font-size: .9rem; font-weight: 400; color: var(--cream); text-transform: uppercase; letter-spacing: .06em; opacity: .85; transition: opacity .2s, color .2s; }
.nav__links a:hover, .nav__links a.active { opacity: 1; color: var(--gold); }
.nav__cta.btn { padding: .5rem 1.3rem; font-size: .82rem; }
.nav__hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); margin: 5px 0; border-radius: 2px; transition: all .3s; }
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---------- HERO ---------- */
.hero {
  min-height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(160deg, var(--walnut) 0%, var(--burgundy-dark) 50%, var(--burgundy) 100%);
  padding: calc(var(--nav-height) + 2rem) 1.5rem 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(197,165,90,.12) 0%, transparent 60%);
}
.hero__content { position: relative; max-width: 720px; }
.hero__eyebrow { font-family: 'Jost', sans-serif; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--cream); margin-bottom: 1.25rem; }
.hero__subtitle { font-size: 1.1rem; color: rgba(255,248,240,.8); max-width: 560px; margin: 0 auto 2rem; }
.hero__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- HERO (interior pages) ---------- */
.hero--small {
  min-height: 40vh; padding: calc(var(--nav-height) + 3rem) 1.5rem 3rem;
}
.hero--small h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }

/* ---------- SECTIONS ---------- */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-top: .5rem; color: var(--walnut); }
.gold-rule { border: none; height: 2px; width: 60px; background: var(--gold); margin: 1rem auto 0; }
.gold-rule--wide { width: 100%; opacity: .2; }

/* ---------- VINE DIVIDER ---------- */
.vine-divider { height: 4px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .3; }

/* ---------- WINE CARDS ---------- */
.wines-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.wine-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem; text-align: center;
  box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s; border-top: 3px solid var(--gold);
}
.wine-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.wine-type { font-family: 'Jost', sans-serif; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--burgundy); margin-bottom: .5rem; }
.wine-card h3 { font-size: 1.2rem; color: var(--walnut); margin-bottom: .5rem; }
.wine-card .price { font-family: 'Jost', sans-serif; font-size: 1.4rem; font-weight: 600; color: var(--burgundy); margin-bottom: .75rem; }
.wine-card p { font-size: .92rem; color: var(--text-light); line-height: 1.6; }

/* ---------- WINE LIST (full page) ---------- */
.wine-category { margin-bottom: 3rem; }
.wine-category h3 { font-size: 1.3rem; color: var(--burgundy); border-bottom: 2px solid var(--gold); padding-bottom: .5rem; margin-bottom: 1.5rem; }
.wine-list-item { display: flex; justify-content: space-between; align-items: baseline; padding: .75rem 0; border-bottom: 1px solid rgba(59,35,22,.08); }
.wine-list-item:last-child { border-bottom: none; }
.wine-list-item h4 { font-family: 'Lora', serif; font-size: 1.05rem; color: var(--walnut); }
.wine-list-item .price { font-family: 'Jost', sans-serif; font-weight: 600; color: var(--burgundy); white-space: nowrap; margin-left: 1rem; }
.wine-list-item p { font-size: .88rem; color: var(--text-light); margin-top: .2rem; }

/* ---------- EVENT CARDS ---------- */
.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.event-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow);
  border-left: 4px solid var(--gold); transition: transform .3s;
}
.event-card:hover { transform: translateY(-3px); }
.event-date { font-family: 'Jost', sans-serif; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: .5rem; }
.event-card h3 { font-size: 1.15rem; color: var(--walnut); margin-bottom: .5rem; }
.event-card p { font-size: .92rem; color: var(--text-light); line-height: 1.6; }

/* ---------- REVIEW CARDS ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow);
  position: relative;
}
.review-card::before { content: '\201C'; position: absolute; top: .5rem; left: 1.2rem; font-size: 3rem; color: var(--gold); opacity: .3; font-family: Georgia, serif; }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .75rem; letter-spacing: .1em; }
.review-card blockquote { font-size: .95rem; color: var(--text-light); font-style: italic; line-height: 1.65; margin-bottom: 1rem; }
.reviewer { font-family: 'Jost', sans-serif; font-size: .85rem; font-weight: 500; color: var(--walnut); }

/* ---------- FIND US / MAP ---------- */
.find-us-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }
.contact-info { padding: 1rem 0; }
.info-item { margin-bottom: 1.5rem; }
.info-label { font-family: 'Jost', sans-serif; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: .35rem; }
.hours-table { border-collapse: collapse; width: 100%; }
.hours-table td { padding: .35rem 0; font-size: .92rem; }
.hours-table td:first-child { padding-right: 2rem; }
.hours-table .closed { color: var(--burgundy); font-weight: 600; }

/* ---------- ABOUT ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-image { border-radius: var(--radius); overflow: hidden; background: var(--walnut); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.about-image-placeholder { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.5rem; opacity: .5; text-align: center; padding: 2rem; }
.about-text h3 { font-size: 1.3rem; color: var(--burgundy); margin-bottom: .75rem; }
.about-text p { margin-bottom: 1rem; color: var(--text-light); }
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); text-align: center; }
.value-icon { font-size: 2rem; margin-bottom: .75rem; }
.value-card h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--walnut); margin-bottom: .5rem; }
.value-card p { font-size: .88rem; color: var(--text-light); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--walnut), var(--burgundy-dark));
  text-align: center; padding: 4rem 1.5rem; color: var(--cream);
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .5rem; }

/* ---------- FOOTER ---------- */
.footer { background: var(--walnut); color: rgba(255,248,240,.75); padding: 4rem 0 2rem; font-size: .9rem; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer h4 { font-family: 'Playfair Display', serif; color: var(--cream); font-size: 1.1rem; margin-bottom: 1rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .5rem; }
.footer a { color: rgba(255,248,240,.75); }
.footer a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,248,240,.1); padding-top: 1.5rem; text-align: center; font-size: .8rem; opacity: .6; }
.footer__est { display: block; font-family: 'Playfair Display', serif; font-size: .9rem; margin-bottom: .35rem; opacity: .8; }

/* ---------- FADE ANIMATIONS ---------- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .find-us-grid, .about-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav__hamburger { display: block; }
  .nav__links {
    position: fixed; top: var(--nav-height); right: -100%; width: 280px; height: calc(100vh - var(--nav-height));
    background: var(--walnut); flex-direction: column; align-items: flex-start; padding: 2rem;
    gap: .5rem; transition: right .3s ease; box-shadow: var(--shadow-lg);
  }
  .nav__links.open { right: 0; }
  .nav__links a { font-size: 1rem; padding: .5rem 0; }
  .nav__cta.btn { margin-top: .5rem; }
  .hero { min-height: 70vh; }
  .hero--small { min-height: 30vh; }
  .section { padding: 3.5rem 0; }
  .wines-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .wines-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
