/* ===== WINE-TWO: "Uncorked" — Modern / Clean ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@300;400;500;600&family=Fira+Code:wght@400;500&display=swap');

:root {
  --wine: #8B2252;
  --wine-dark: #6E1A41;
  --charcoal: #2C2C2C;
  --charcoal-light: #444444;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --rose: #E8D5D3;
  --rose-dark: #D4B8B5;
  --text: #2C2C2C;
  --text-light: #777777;
  --shadow: 0 1px 12px rgba(0,0,0,.06);
  --shadow-lg: 0 6px 24px rgba(0,0,0,.08);
  --radius: 4px;
  --nav-height: 72px;
}

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

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'DM Serif Display', Georgia, serif; line-height: 1.2; font-weight: 400; }
a { color: var(--wine); text-decoration: none; transition: color .2s; }
a:hover { color: var(--wine-dark); }
img { max-width: 100%; display: block; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.accent-text { font-family: 'Inter', sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; color: var(--wine); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block; padding: .75rem 2rem; border-radius: var(--radius); font-family: 'Inter', sans-serif;
  font-weight: 500; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; transition: all .2s; cursor: pointer; border: 1.5px solid transparent;
}
.btn--primary { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn--primary:hover { background: var(--wine); border-color: var(--wine); color: var(--white); }
.btn--outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--outline:hover { background: var(--charcoal); color: var(--white); }
.btn--burgundy { background: var(--wine); color: var(--white); border-color: var(--wine); }
.btn--burgundy:hover { background: var(--wine-dark); border-color: var(--wine-dark); color: var(--white); }
.btn--rose { background: var(--rose); color: var(--charcoal); border-color: var(--rose); }
.btn--rose:hover { background: var(--rose-dark); border-color: var(--rose-dark); color: var(--charcoal); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: transparent; transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav--scrolled { background: var(--white); box-shadow: var(--shadow); border-bottom-color: var(--light-gray); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); }
.nav__logo {
  font-family: 'DM Serif Display', Georgia, serif; font-size: 1.3rem; color: var(--white); letter-spacing: .01em;
}
.nav--scrolled .nav__logo { color: var(--charcoal); }
.nav__logo span { color: var(--rose); margin: 0 .2em; font-family: 'Inter', sans-serif; font-weight: 300; font-size: .85em; text-transform: uppercase; letter-spacing: .08em; }
.nav--scrolled .nav__logo span { color: var(--wine); }
.nav__links { list-style: none; display: flex; align-items: center; gap: 1.75rem; }
.nav__links a { font-family: 'Inter', sans-serif; font-size: .82rem; font-weight: 400; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .08em; 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(--wine); }
.nav__cta.btn { padding: .45rem 1.2rem; font-size: .78rem; }
.nav__hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); margin: 5px 0; border-radius: 1px; transition: all .3s; }
.nav--scrolled .nav__hamburger span { background: var(--charcoal); }
.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: 92vh; display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--charcoal);
  padding: calc(var(--nav-height) + 2rem) 1.5rem 4rem;
  position: relative;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(transparent, rgba(44,44,44,.4));
}
.hero__content { position: relative; z-index: 1; max-width: 680px; }
.hero__eyebrow { font-family: 'Fira Code', monospace; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--rose); margin-bottom: 1.25rem; }
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); color: var(--white); margin-bottom: 1.25rem; letter-spacing: -.01em; }
.hero__subtitle { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,.65); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.8; }
.hero__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero--small {
  min-height: 38vh; 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--gray { background: var(--light-gray); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-top: .5rem; color: var(--charcoal); }
.gold-rule { border: none; height: 1.5px; width: 40px; background: var(--wine); margin: 1rem auto 0; }
.gold-rule--wide { width: 100%; background: var(--light-gray); height: 1px; }

.vine-divider { height: 1px; background: var(--light-gray); }

/* ---------- WINE CARDS ---------- */
.wines-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); gap: 1.5rem; }
.wine-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem; text-align: center;
  border: 1px solid var(--light-gray); transition: transform .25s, box-shadow .25s;
}
.wine-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.wine-type { font-family: 'Fira Code', monospace; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--wine); margin-bottom: .5rem; }
.wine-card h3 { font-size: 1.15rem; color: var(--charcoal); margin-bottom: .5rem; }
.wine-card .price { font-family: 'Fira Code', monospace; font-size: 1.3rem; font-weight: 500; color: var(--wine); margin-bottom: .75rem; }
.wine-card p { font-size: .88rem; color: var(--text-light); line-height: 1.6; font-weight: 300; }

/* ---------- WINE LIST ---------- */
.wine-category { margin-bottom: 3rem; }
.wine-category h3 { font-size: 1.25rem; color: var(--charcoal); border-bottom: 1.5px solid var(--wine); 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 var(--light-gray); }
.wine-list-item:last-child { border-bottom: none; }
.wine-list-item h4 { font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: var(--charcoal); }
.wine-list-item .price { font-family: 'Fira Code', monospace; font-weight: 500; color: var(--wine); white-space: nowrap; margin-left: 1rem; }
.wine-list-item p { font-size: .85rem; color: var(--text-light); margin-top: .15rem; font-weight: 300; }

/* ---------- 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;
  border: 1px solid var(--light-gray); transition: transform .25s;
}
.event-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.event-date { font-family: 'Fira Code', monospace; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--wine); margin-bottom: .5rem; }
.event-card h3 { font-size: 1.1rem; color: var(--charcoal); margin-bottom: .5rem; }
.event-card p { font-size: .88rem; color: var(--text-light); line-height: 1.65; font-weight: 300; }

/* ---------- 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;
  border: 1px solid var(--light-gray);
}
.review-card::before { content: '\201C'; font-size: 2.5rem; color: var(--rose); font-family: Georgia, serif; line-height: 1; display: block; margin-bottom: .5rem; }
.stars { color: var(--wine); font-size: 1rem; margin-bottom: .75rem; letter-spacing: .08em; }
.review-card blockquote { font-size: .9rem; color: var(--text-light); font-weight: 300; line-height: 1.7; margin-bottom: 1rem; }
.reviewer { font-family: 'Fira Code', monospace; font-size: .78rem; color: var(--charcoal); }

/* ---------- 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; border: 1px solid var(--light-gray); 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: 'Fira Code', monospace; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--wine); margin-bottom: .3rem; }
.hours-table { border-collapse: collapse; width: 100%; }
.hours-table td { padding: .3rem 0; font-size: .9rem; font-weight: 300; }
.hours-table td:first-child { padding-right: 2rem; }
.hours-table .closed { color: var(--wine); font-weight: 500; }

/* ---------- 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(--charcoal); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.about-image-placeholder { color: var(--rose); font-family: 'DM Serif Display', serif; font-size: 1.4rem; opacity: .4; text-align: center; padding: 2rem; }
.about-text h3 { font-size: 1.25rem; color: var(--charcoal); margin-bottom: .75rem; }
.about-text p { margin-bottom: 1rem; color: var(--text-light); font-weight: 300; }
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.value-card { background: var(--light-gray); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.value-icon { font-size: 1.8rem; margin-bottom: .75rem; }
.value-card h4 { font-family: 'DM Serif Display', serif; font-size: 1rem; color: var(--charcoal); margin-bottom: .5rem; }
.value-card p { font-size: .85rem; color: var(--text-light); font-weight: 300; }

/* ---------- CTA ---------- */
.cta-banner {
  background: var(--charcoal);
  text-align: center; padding: 4rem 1.5rem; color: var(--white);
}
.cta-banner h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: .5rem; color: var(--white); }
.cta-banner .accent-text { color: var(--rose); }

/* ---------- FOOTER ---------- */
.footer { background: var(--charcoal); color: rgba(255,255,255,.6); padding: 4rem 0 2rem; font-size: .88rem; font-weight: 300; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer h4 { font-family: 'DM Serif Display', serif; color: var(--white); font-size: 1.05rem; margin-bottom: 1rem; font-weight: 400; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .5rem; }
.footer a { color: rgba(255,255,255,.6); }
.footer a:hover { color: var(--rose); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; text-align: center; font-size: .78rem; opacity: .5; }
.footer__est { display: block; font-family: 'DM Serif Display', serif; font-size: .88rem; margin-bottom: .35rem; opacity: .8; }

/* ---------- CONTACT FORM ---------- */
.contact-form-wrapper { max-width: 640px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-family: 'Fira Code', monospace; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--wine); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 300; color: var(--text);
  background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius);
  padding: .7rem 1rem; transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--wine); }
.form-group textarea { resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.contact-form .btn { align-self: flex-start; }
.form-note { font-size: .78rem; color: var(--text-light); margin-top: 1rem; font-style: italic; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- FADE ---------- */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s 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: 260px; height: calc(100vh - var(--nav-height));
    background: var(--white); flex-direction: column; align-items: flex-start; padding: 2rem;
    gap: .5rem; transition: right .3s ease; box-shadow: var(--shadow-lg); border-left: 1px solid var(--light-gray);
  }
  .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(--wine) !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; }
}
