@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --burgundy: #480f23;
  --burgundy-dark: #2e0a16;
  --gold: #e49125;
  --gold-light: #f0b455;
  --blush: #e1c4cf;
  --blush-light: #f5eaee;
  --cream: #faf6f2;
  --charcoal: #2a2a2a;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: 0.35s ease;
  --shadow: 0 8px 40px rgba(72,15,35,0.12);
  --shadow-lg: 0 20px 60px rgba(72,15,35,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; color: var(--charcoal); background: var(--cream); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }

.section-label { font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.75rem; }

/* HEADER */
.site-header { position: relative; min-height: 100vh; display: flex; flex-direction: column; background-image: linear-gradient(to bottom, rgba(30,5,14,0.85) 0%, rgba(72,15,35,0.6) 50%, rgba(30,5,14,0.9) 100%), url('../img/grapes.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.site-header.short { min-height: 55vh; }

.navbar { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 4rem; position: relative; z-index: 100; }
.nav-logo img { width: 80px; height: auto; transition: opacity var(--transition); }
.nav-logo:hover img { opacity: 0.8; }
.nav-links { display: flex; align-items: center; gap: 0.5rem; list-style: none; }
.nav-links a { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); padding: 0.5rem 1rem; transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

.hero-content { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 4rem 2rem 6rem; text-align: center; }
.hero-logo { width: clamp(260px, 40vw, 480px); margin-bottom: 2.5rem; animation: fadeInUp 1s ease both; }
.hero-tagline { font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem, 2.5vw, 1.8rem); color: rgba(255,255,255,0.75); letter-spacing: 0.05em; animation: fadeInUp 1s ease 0.2s both; margin-bottom: 2.5rem; }
.hero-divider { display: flex; align-items: center; gap: 1rem; color: var(--gold); margin-bottom: 2.5rem; animation: fadeInUp 1s ease 0.3s both; }
.hero-divider::before, .hero-divider::after { content: ''; width: 80px; height: 1px; background: var(--gold); opacity: 0.5; }
.hero-cta { display: inline-flex; gap: 1rem; animation: fadeInUp 1s ease 0.4s both; flex-wrap: wrap; justify-content: center; }

.btn { font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.9rem 2.2rem; border: 1px solid; cursor: pointer; transition: var(--transition); display: inline-block; }
.btn-primary { background: var(--gold); border-color: var(--gold); color: var(--burgundy-dark); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.page-hero-content { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem 2rem 4rem; text-align: center; }
.page-hero-content h1 { color: var(--white); font-style: italic; text-shadow: 0 4px 20px rgba(0,0,0,0.4); animation: fadeInUp 0.8s ease both; }

.scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.4); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; animation: pulse 2s ease infinite; }
.scroll-hint::after { content: ''; width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); }

.section { padding: 6rem 4rem; }
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }

.ornament { display: flex; align-items: center; gap: 1rem; margin: 1.5rem auto; max-width: 300px; }
.ornament::before, .ornament::after { content: ''; flex: 1; height: 1px; background: var(--gold); opacity: 0.4; }
.ornament-icon { color: var(--gold); }

/* HOME INTRO */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 600px; }
.intro-image { overflow: hidden; }
.intro-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.intro-image:hover img { transform: scale(1.04); }
.intro-text { background: var(--burgundy); color: var(--white); padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.intro-text h2 { color: var(--white); margin-bottom: 1.5rem; }
.intro-text p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.9; margin-bottom: 2rem; }

/* FEATURES STRIP */
.features-strip { background: var(--blush-light); padding: 4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; text-align: center; }
.feature-item { padding: 2rem 1rem; }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; color: var(--gold); }
.feature-item h3 { font-size: 1.4rem; color: var(--burgundy); margin-bottom: 0.75rem; }
.feature-item p { font-size: 0.85rem; color: #666; line-height: 1.8; }

/* ABOUT PREVIEW */
.about-preview { background: var(--cream); padding: 6rem 4rem; }
.about-preview .container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center; }
.about-preview-text h2 { color: var(--burgundy); margin-bottom: 1rem; }
.about-preview-text p { font-size: 0.9rem; color: #555; margin-bottom: 1.5rem; line-height: 1.9; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 500px; object-fit: cover; }
.about-img-wrap::before { content: ''; position: absolute; top: -20px; left: -20px; right: 20px; bottom: 20px; border: 1px solid var(--gold); opacity: 0.3; pointer-events: none; }

/* ABOUT PAGE */
.mission-block { background: var(--burgundy); color: var(--white); padding: 5rem 4rem; text-align: center; }
.mission-block h2 { color: var(--gold); margin-bottom: 1rem; }
.mission-block p { max-width: 750px; margin: 0 auto; color: rgba(255,255,255,0.82); font-size: 0.95rem; line-height: 1.95; }
.about-story { padding: 6rem 4rem; background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.story-text h2 { color: var(--burgundy); margin-bottom: 1.5rem; }
.story-text p { font-size: 0.9rem; color: #555; line-height: 1.95; margin-bottom: 1rem; }
.story-image img { width: 100%; height: 480px; object-fit: cover; }
.full-bleed-image { width: 100%; height: 450px; object-fit: cover; object-position: center; }
.history-block { padding: 6rem 4rem; background: var(--blush-light); text-align: center; }
.history-block h2 { color: var(--burgundy); margin-bottom: 2.5rem; }
.history-block p { max-width: 750px; margin: 0 auto 1.25rem; font-size: 0.9rem; color: #555; line-height: 1.95; }
.company-block { background: var(--gold); padding: 5rem 4rem; text-align: center; }
.company-block h2 { color: var(--burgundy-dark); margin-bottom: 1rem; }
.company-block p { max-width: 750px; margin: 0 auto; font-size: 0.9rem; color: rgba(30,10,18,0.8); line-height: 1.95; }
.locations-block { padding: 6rem 4rem; text-align: center; background: var(--cream); }
.locations-block h2 { color: var(--burgundy); margin-bottom: 1rem; }
.locations-block > .container > p { font-size: 0.9rem; color: #555; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.map-placeholder { width: 100%; max-width: 800px; height: 380px; background: var(--blush); margin: 0 auto; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.2rem; color: var(--burgundy); letter-spacing: 0.1em; border: 1px solid rgba(72,15,35,0.15); }

/* WOMEN PAGE */
.woman-panel { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.woman-image { overflow: hidden; background: var(--burgundy-dark); }
.woman-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.8s ease; }
.woman-panel:hover .woman-image img { transform: scale(1.04); }
.woman-text { padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; background: var(--cream); }
.woman-panel.dark .woman-text { background: var(--burgundy); color: var(--white); }
.woman-panel.dark .woman-text h2 { color: var(--gold); }
.woman-panel.dark .woman-text p { color: rgba(255,255,255,0.8); }
.woman-panel.dark .woman-text .dates { color: rgba(228,145,37,0.8); }
.woman-text h2 { color: var(--burgundy); margin-bottom: 0.5rem; }
.woman-text .dates { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; margin-bottom: 1.5rem; display: block; }
.woman-text p { font-size: 0.88rem; line-height: 1.95; color: #555; }

/* PRODUCTS PAGE */
.products-intro { text-align: center; padding: 4rem 2rem 2rem; background: var(--cream); }
.products-intro h2 { color: var(--burgundy); margin-bottom: 0.5rem; }
.products-grid { padding: 3rem 4rem 6rem; background: var(--cream); }
.products-grid .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.product-card { background: var(--white); border: 1px solid rgba(72,15,35,0.08); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-image { overflow: hidden; height: 280px; background: var(--blush-light); display: flex; align-items: center; justify-content: center; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-body { padding: 1.75rem; border-top: 1px solid rgba(72,15,35,0.06); }
.product-card-body h3 { font-size: 1.4rem; color: var(--burgundy); margin-bottom: 0.4rem; }
.product-card-body p { font-size: 0.82rem; color: #777; margin-bottom: 1rem; line-height: 1.7; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--burgundy); }
.product-link { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 1px; transition: color var(--transition); }
.product-link:hover { color: var(--gold-light); }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 0; min-height: 70vh; }
.contact-info { background: var(--burgundy); color: var(--white); padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.contact-info h2 { color: var(--white); margin-bottom: 0.75rem; }
.contact-info p { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.9; margin-bottom: 2.5rem; }
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.contact-details li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.contact-details .detail-label { font-weight: 600; letter-spacing: 0.08em; color: var(--gold); min-width: 70px; text-transform: uppercase; font-size: 0.72rem; }
.contact-form-wrap { background: var(--cream); padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.contact-form-wrap h2 { color: var(--burgundy); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--burgundy); margin-bottom: 0.5rem; }
input[type="text"], input[type="email"], select, textarea { width: 100%; padding: 0.9rem 1.1rem; border: 1px solid rgba(72,15,35,0.2); background: var(--white); font-family: var(--font-body); font-size: 0.9rem; color: var(--charcoal); transition: border-color var(--transition); appearance: none; -webkit-appearance: none; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--burgundy); }
textarea { min-height: 150px; resize: vertical; }
select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23480f23'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; background-color: white; }
.btn-submit { background: var(--burgundy); color: var(--white); border: none; padding: 1rem 2.5rem; font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: background var(--transition); width: 100%; margin-top: 0.5rem; }
.btn-submit:hover { background: var(--burgundy-dark); }

/* PRIVACY */
.privacy-wrap { padding: 5rem 4rem; max-width: 900px; margin: 0 auto; }
.privacy-wrap h1 { color: var(--burgundy); margin-bottom: 1rem; }
.privacy-wrap h2 { color: var(--burgundy); font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.privacy-wrap h3 { color: var(--charcoal); font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.privacy-wrap p { font-size: 0.9rem; color: #555; line-height: 1.9; margin-bottom: 0.75rem; }
.privacy-wrap ul { margin-left: 1.5rem; margin-bottom: 0.75rem; }
.privacy-wrap ul li { font-size: 0.9rem; color: #555; line-height: 1.8; }

/* FOOTER */
.site-footer { background: var(--burgundy-dark); color: rgba(255,255,255,0.6); padding: 3rem 4rem; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand img { width: 55px; opacity: 0.85; }
.footer-copy { text-align: center; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-copy p { margin-top: 0.25rem; font-size: 0.68rem; opacity: 0.6; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; transition: var(--transition); color: rgba(255,255,255,0.6); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-privacy { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-privacy:hover { color: var(--gold); }

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.8; } }
.fade-in { opacity: 0; transform: translateY(25px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .navbar { padding: 1.5rem 2rem; }
  .section, .about-story, .history-block, .company-block, .locations-block, .products-grid, .about-preview, .mission-block, .contact-info, .contact-form-wrap { padding-left: 2rem; padding-right: 2rem; }
  .features-strip { padding: 3rem 2rem; gap: 2rem; }
  .about-preview .container { gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(30,5,14,0.97); flex-direction: column; padding: 1.5rem; gap: 0; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 1rem; width: 100%; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }
  .navbar { position: relative; }
  .intro-grid, .story-grid, .woman-panel { grid-template-columns: 1fr; }
  .woman-image { height: 400px; }
  .intro-text, .woman-text { padding: 3rem 2rem; }
  .features-strip { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-preview .container { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; text-align: center; padding: 2.5rem 2rem; }
  .footer-brand { justify-content: center; }
  .footer-links { align-items: center; }
}
@media (max-width: 600px) {
  .hero-cta { flex-direction: column; }
  .products-grid { padding: 2rem 1rem 4rem; }
  .products-grid .container { grid-template-columns: 1fr; }
  .privacy-wrap { padding: 3rem 1.5rem; }
}

/* ===========================
   PRODUCTS PAGE EXTRAS
=========================== */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 2.5rem 2rem 0;
  background: var(--cream);
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(72,15,35,0.2);
  background: transparent;
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
}

.product-card.hidden { display: none; }

.category-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0 0.5rem;
}

.category-heading h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--burgundy);
  white-space: nowrap;
}

.category-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(72,15,35,0.15);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  z-index: 2;
}

.product-badge.gold { background: var(--gold); color: var(--burgundy-dark); }
.product-badge.blush { background: #c97a8a; color: white; }
.product-badge.green { background: #3a6b4a; color: white; }

.product-card-image { position: relative; background: white; }
.product-card-image img { background: white; }

.wine-type {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
  display: block;
}

.club-cta {
  background: var(--burgundy);
  text-align: center;
  padding: 4.5rem 2rem;
  color: white;
}

.club-cta h2 { color: white; margin-bottom: 1rem; }

/* ===========================
   WOMEN PAGE EXTRAS
=========================== */
.woman-image {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.woman-panel.dark .woman-image { background: #1a3a2a; }

.woman-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 0.8s ease;
}

.woman-panel:hover .woman-image img { transform: scale(1.04); }

.women-quote {
  background: var(--blush-light);
  padding: 3.5rem 2rem;
  text-align: center;
}

.women-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--burgundy);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.women-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.wine-pairing {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(228,145,37,0.35);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.woman-panel.dark .wine-pairing { border-color: rgba(228,145,37,0.3); }