/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest: #2d5a27;
  --forest-deep: #1e3f1a;
  --forest-light: #4a7c42;
  --forest-muted: #6b9e62;
  --cream: #faf8f4;
  --cream-warm: #f5f0e8;
  --cream-dark: #e8e0d0;
  --text: #2c3e2d;
  --text-light: #5a6e5b;
  --text-muted: #8a9e8b;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(45,90,39,0.08);
  --shadow-md: 0 4px 20px rgba(45,90,39,0.10);
  --shadow-lg: 0 8px 40px rgba(45,90,39,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest-deep);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ───────────────────────────────────────── */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest-muted);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.text-center { text-align: center; }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45,90,39,0.25);
}
.btn-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(45,90,39,0.35);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }

/* ── Header ───────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  transition: var(--transition);
}

.header.scrolled .logo { color: var(--forest-deep); }

.logo-icon { flex-shrink: 0; }

.logo-text {
  line-height: 1.2;
  white-space: nowrap;
}

/* ── Nav ──────────────────────────────────────────────── */
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list a {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 50px;
  transition: var(--transition);
}

.nav-list a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.header.scrolled .nav-list a { color: var(--text-light); }
.header.scrolled .nav-list a:hover { color: var(--forest); background: rgba(45,90,39,0.08); }

.nav-cta {
  background: var(--white) !important;
  color: var(--forest) !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--cream) !important; transform: scale(1.03); }
.header.scrolled .nav-cta { background: var(--forest) !important; color: var(--white) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.header.scrolled .nav-toggle-bar { background: var(--forest); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,63,26,0.72) 0%,
    rgba(45,90,39,0.55) 40%,
    rgba(74,124,66,0.40) 70%,
    rgba(107,158,98,0.30) 100%
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(30,63,26,0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.15);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── About ────────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
  width: 55%;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--forest-muted), var(--forest-light));
  border-radius: var(--radius-md);
  opacity: 0.15;
  z-index: -1;
}

.about-text { padding-top: 20px; }

.about-text .section-title { margin-bottom: 24px; }

.about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-dark);
}

.stat { text-align: center; }
.stat-number { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.stat-value { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.25rem; font-weight: 700; color: var(--forest); line-height: 1; }
.stat-divider { width: 1px; height: 48px; background: var(--cream-dark); }

/* ── Wines ────────────────────────────────────────────── */
.wines {
  padding: 120px 0;
  background: var(--cream-warm);
}

.section-header { margin-bottom: 64px; }

.wine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.wine-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.wine-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.wine-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5/4;
}
.wine-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.wine-card:hover .wine-card-img img { transform: scale(1.06); }

.wine-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--forest);
  color: var(--white);
}
.wine-tag.rosé { background: #c4687a; }
.wine-tag.white { background: #b8a050; }

.wine-card-body {
  padding: 24px;
}
.wine-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--forest-deep);
}
.wine-card-body p {
  font-size: 0.925rem;
  color: var(--text-light);
  line-height: 1.7;
}

.wines-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Visit ────────────────────────────────────────────── */
.visit {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.visit-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.visit-bg img { width: 100%; height: 100%; object-fit: cover; }

.visit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,63,26,0.82) 0%, rgba(45,90,39,0.70) 60%, rgba(74,124,66,0.60) 100%);
  z-index: 1;
}

.visit-content {
  position: relative;
  z-index: 2;
}

.visit-text {
  max-width: 640px;
  margin-bottom: 56px;
}

.visit-text .section-title { margin-bottom: 20px; }

.light { color: var(--white) !important; }
.lead.light { color: rgba(255,255,255,0.8); }

.visit-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.detail-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}
.detail-card:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

.detail-icon {
  flex-shrink: 0;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
}

.detail-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.detail-card p, .detail-card a {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.6;
}
.detail-card a:hover { text-decoration: underline; }

.visit-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Testimonial ──────────────────────────────────────── */
.testimonial {
  padding: 100px 0;
  background: var(--cream);
}

.testimonial-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  color: var(--forest-muted);
  opacity: 0.3;
  margin-bottom: 24px;
}

.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--forest-deep);
  margin-bottom: 24px;
}

.testimonial-source {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Contact ──────────────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: var(--cream-warm);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 20px; }
.contact-info .lead { margin-bottom: 32px; }

.contact-direct { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--text);
}
.contact-direct-item svg { flex-shrink: 0; color: var(--forest-muted); }
.contact-direct-item a {
  color: var(--forest);
  font-weight: 500;
  transition: var(--transition);
}
.contact-direct-item a:hover { color: var(--forest-deep); text-decoration: underline; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--text-muted); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest-muted);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(107,158,98,0.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(45,90,39,0.08);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--forest);
  font-weight: 500;
}
.form-success svg { flex-shrink: 0; color: var(--forest); }

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-inner { display: flex; flex-direction: column; gap: 40px; }

.footer-brand {
  max-width: 360px;
}
.footer-logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.55); }

.footer-links nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-links a {
  padding: 8px 16px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  border-radius: 50px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }
.footer-legal { font-style: italic; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .wine-grid { gap: 24px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 24px 32px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
  }
  .nav-list.open { transform: translateX(0); }
  .nav-list a {
    color: var(--text-light) !important;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }
  .nav-list a:hover { background: rgba(45,90,39,0.06) !important; color: var(--forest) !important; }
  .nav-cta {
    margin-left: 0 !important;
    margin-top: 12px;
    text-align: center;
    background: var(--forest) !important;
    color: var(--white) !important;
  }

  .hero-content { padding: 100px 24px 80px; }
  .hero-headline { font-size: clamp(2.25rem, 10vw, 3.5rem); }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .about-img-secondary { right: -16px; bottom: -24px; }

  .wine-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .visit-details { grid-template-columns: 1fr; }
  .visit-cta { flex-direction: column; }
  .visit-cta .btn { width: 100%; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { gap: 32px; }
}

@media (max-width: 480px) {
  .wine-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 48px; height: 1px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
}

/* ── Animations ───────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
