/* ===== WINE-THREE: "Vine & Table" — Southern / Family ===== */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@300;400;500;600;700&family=Caveat:wght@400;600&display=swap');

:root {
  --sage: #5B7B5E;
  --sage-dark: #486148;
  --sage-light: #7A9B7D;
  --cream: #FAF6F0;
  --terra: #C67B4B;
  --terra-dark: #A8633A;
  --olive: #2E3A2C;
  --olive-light: #4A5A47;
  --white: #FFFFFF;
  --text: #2E3A2C;
  --text-light: #6B7568;
  --shadow: 0 2px 16px rgba(46,58,44,.08);
  --shadow-lg: 0 8px 28px rgba(46,58,44,.10);
  --radius: 12px;
  --nav-height: 72px;
}

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

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

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.accent-text { font-family: 'Caveat', cursive; font-size: 1.15rem; color: var(--terra); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block; padding: .8rem 2rem; border-radius: 50px; font-family: 'Nunito', sans-serif;
  font-weight: 600; font-size: .9rem; letter-spacing: .02em; transition: all .25s; cursor: pointer; border: 2px solid transparent;
}
.btn--primary { background: var(--sage); color: var(--white); border-color: var(--sage); }
.btn--primary:hover { background: var(--sage-dark); border-color: var(--sage-dark); color: var(--white); }
.btn--outline { background: transparent; color: var(--sage); border-color: var(--sage); }
.btn--outline:hover { background: var(--sage); color: var(--white); }
.btn--burgundy { background: var(--terra); color: var(--white); border-color: var(--terra); }
.btn--burgundy:hover { background: var(--terra-dark); border-color: var(--terra-dark); color: var(--white); }
.btn--sage { background: var(--sage); color: var(--white); border-color: var(--sage); }
.btn--sage:hover { background: var(--sage-dark); border-color: var(--sage-dark); color: var(--white); }

/* ---------- 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(--cream); box-shadow: var(--shadow); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); }
.nav__logo {
  font-family: 'Lora', Georgia, serif; font-size: 1.3rem; font-weight: 700; color: var(--white); letter-spacing: .01em;
}
.nav--scrolled .nav__logo { color: var(--olive); }
.nav__logo span { font-family: 'Caveat', cursive; color: var(--terra); font-weight: 400; margin: 0 .2em; font-size: 1.1em; }
.nav__links { list-style: none; display: flex; align-items: center; gap: 1.5rem; }
.nav__links a { font-family: 'Nunito', sans-serif; font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.85); letter-spacing: .02em; transition: color .2s; }
.nav--scrolled .nav__links a { color: var(--text-light); }
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav--scrolled .nav__links a:hover, .nav--scrolled .nav__links a.active { color: var(--terra); }
.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(--white); margin: 5px 0; border-radius: 2px; transition: all .3s; }
.nav--scrolled .nav__hamburger span { background: var(--olive); }
.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: 88vh; display: flex; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(170deg, var(--olive) 0%, var(--sage-dark) 60%, var(--sage) 100%);
  padding: calc(var(--nav-height) + 2rem) 1.5rem 4rem;
  position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(198,123,75,.1) 0%, transparent 55%);
}
.hero__content { position: relative; max-width: 700px; }
.hero__eyebrow { font-family: 'Caveat', cursive; font-size: 1.25rem; color: var(--terra); margin-bottom: .75rem; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--cream); margin-bottom: 1.25rem; }
.hero__subtitle { font-size: 1.05rem; font-weight: 300; color: rgba(250,246,240,.75); max-width: 540px; margin: 0 auto 2rem; }
.hero__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.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--olive { background: rgba(46,58,44,.04); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-top: .5rem; color: var(--olive); }
.gold-rule { border: none; height: 2px; width: 50px; background: var(--terra); margin: 1rem auto 0; border-radius: 1px; }
.gold-rule--wide { width: 100%; opacity: .15; }

.vine-divider { height: 3px; background: linear-gradient(90deg, transparent, var(--sage-light), transparent); opacity: .25; }

/* ---------- WINE CARDS ---------- */
.wines-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.wine-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem; text-align: center;
  box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s;
}
.wine-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.wine-type { font-family: 'Nunito', sans-serif; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--sage); margin-bottom: .5rem; }
.wine-card h3 { font-size: 1.15rem; color: var(--olive); margin-bottom: .5rem; }
.wine-card .price { font-family: 'Caveat', cursive; font-size: 1.6rem; color: var(--terra); margin-bottom: .75rem; }
.wine-card p { font-size: .9rem; color: var(--text-light); line-height: 1.6; }

/* ---------- WINE LIST ---------- */
.wine-category { margin-bottom: 3rem; }
.wine-category h3 { font-size: 1.3rem; color: var(--sage); border-bottom: 2px solid var(--terra); 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(46,58,44,.08); }
.wine-list-item:last-child { border-bottom: none; }
.wine-list-item h4 { font-family: 'Lora', serif; font-size: 1.05rem; color: var(--olive); }
.wine-list-item .price { font-family: 'Caveat', cursive; font-size: 1.3rem; color: var(--terra); white-space: nowrap; margin-left: 1rem; }
.wine-list-item p { font-size: .88rem; color: var(--text-light); margin-top: .15rem; }

/* ---------- EVENT CARDS ---------- */
.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.event-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow);
  border-left: 4px solid var(--terra); transition: transform .3s;
}
.event-card:hover { transform: translateY(-3px); }
.event-date { font-family: 'Caveat', cursive; font-size: 1rem; color: var(--terra); margin-bottom: .35rem; }
.event-card h3 { font-size: 1.1rem; color: var(--olive); margin-bottom: .5rem; }
.event-card p { font-size: .9rem; color: var(--text-light); line-height: 1.65; }

/* ---------- REVIEW CARDS ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow);
}
.review-card::before { content: '\201C'; font-size: 3rem; color: var(--sage-light); opacity: .4; font-family: Georgia, serif; line-height: 1; display: block; margin-bottom: .25rem; }
.stars { color: var(--terra); font-size: 1.05rem; margin-bottom: .75rem; letter-spacing: .1em; }
.review-card blockquote { font-size: .92rem; color: var(--text-light); font-style: italic; line-height: 1.65; margin-bottom: 1rem; }
.reviewer { font-family: 'Nunito', sans-serif; font-size: .85rem; font-weight: 600; color: var(--olive); }

/* ---------- FIND US ---------- */
.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: 'Caveat', cursive; font-size: 1.05rem; color: var(--terra); margin-bottom: .2rem; }
.hours-table { border-collapse: collapse; width: 100%; }
.hours-table td { padding: .35rem 0; font-size: .9rem; }
.hours-table td:first-child { padding-right: 2rem; }
.hours-table .closed { color: var(--terra); 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(--olive); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.about-image-placeholder { color: var(--sage-light); font-family: 'Lora', serif; font-size: 1.4rem; opacity: .4; text-align: center; padding: 2rem; }
.about-text h3 { font-size: 1.25rem; color: var(--sage); 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: 'Lora', serif; font-size: 1.05rem; color: var(--olive); margin-bottom: .5rem; }
.value-card p { font-size: .88rem; color: var(--text-light); }

/* ---------- CTA ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--olive), var(--sage-dark));
  text-align: center; padding: 4rem 1.5rem; color: var(--cream);
}
.cta-banner h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: .5rem; color: var(--cream); }
.cta-banner .accent-text { color: var(--terra); }

/* ---------- FOOTER ---------- */
.footer { background: var(--olive); color: rgba(250,246,240,.65); 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: 'Lora', 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(250,246,240,.65); }
.footer a:hover { color: var(--terra); }
.footer__bottom { border-top: 1px solid rgba(250,246,240,.1); padding-top: 1.5rem; text-align: center; font-size: .8rem; opacity: .55; }
.footer__est { display: block; font-family: 'Caveat', cursive; font-size: 1rem; margin-bottom: .35rem; opacity: .8; }

/* ---------- TIER PRICING ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.tier-card { background: var(--white); border-radius: var(--radius); padding: 2.5rem 2rem; text-align: center; box-shadow: var(--shadow); position: relative; transition: transform .3s, box-shadow .3s; }
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tier-card--featured { border: 2px solid var(--terra); }
.tier-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--terra); color: var(--white); font-family: 'Nunito', sans-serif; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .3rem 1rem; border-radius: 50px; }
.tier-name { font-family: 'Lora', serif; font-size: 1.3rem; color: var(--olive); margin-bottom: .5rem; }
.tier-price { font-family: 'Caveat', cursive; font-size: 2.4rem; color: var(--terra); margin-bottom: 1.5rem; }
.tier-price span { font-size: 1rem; color: var(--text-light); }
.tier-benefits { list-style: none; text-align: left; margin-bottom: 2rem; }
.tier-benefits li { padding: .4rem 0; font-size: .88rem; color: var(--text-light); border-bottom: 1px solid rgba(46,58,44,.06); }
.tier-benefits li:last-child { border-bottom: none; }
.tier-benefits li::before { content: '\2713'; color: var(--sage); font-weight: 700; margin-right: .5rem; }

/* ---------- FADE ---------- */
.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(--cream); 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 { color: var(--text-light) !important; font-size: .95rem; padding: .5rem 0; }
  .nav__links a:hover, .nav__links a.active { color: var(--terra) !important; }
  .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; }
}
