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

:root {
  --green-900: #0f2920;
  --green-800: #1a3a2a;
  --green-700: #234d38;
  --green-600: #2d6147;
  --green-500: #3a7d5c;
  --green-400: #5a9e7a;
  --green-300: #8fbfa0;
  --green-200: #c4dcc9;
  --green-100: #e8f3ec;
  --green-50: #f4f9f6;
  --cream: #faf8f4;
  --cream-dark: #f2efe8;
  --cream-mid: #e8e4db;
  --text-primary: #1a1a18;
  --text-secondary: #4a4a46;
  --text-muted: #7a7a74;
  --text-light: #a0a098;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-primary);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 20px;
  position: relative;
  padding-left: 32px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background: var(--green-400);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text-primary);
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--green-700);
  color: var(--white);
  border-color: var(--green-700);
}

.btn-primary:hover {
  background: var(--green-800);
  border-color: var(--green-800);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(15, 41, 32, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-full {
  width: 100%;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.5s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--cream-mid);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color 0.4s var(--ease-out);
}

.site-header.scrolled .logo {
  color: var(--text-primary);
}

.logo-mark {
  width: 28px;
  height: 28px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E") center/contain no-repeat;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s var(--ease-out);
  position: relative;
}

.site-header.scrolled .nav-link {
  color: var(--text-secondary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--white);
}

.site-header.scrolled .nav-link:hover {
  color: var(--text-primary);
}

.nav-cta {
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.site-header.scrolled .nav-cta {
  border-color: var(--green-600);
  color: var(--green-600);
}

.site-header.scrolled .nav-cta:hover {
  background: var(--green-600);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  position: relative;
  transition: all 0.3s var(--ease-out);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: all 0.3s var(--ease-out);
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 41, 32, 0.55) 0%,
    rgba(15, 41, 32, 0.35) 40%,
    rgba(15, 41, 32, 0.5) 70%,
    rgba(15, 41, 32, 0.75) 100%
  );
  z-index: -1;
}

.hero-content {
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
  animation: heroFadeIn 1.2s var(--ease-out) forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-line {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 auto 32px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.1;
  font-weight: 300;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 48px;
  font-weight: 300;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ── Sections ── */
.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

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

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

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.about-image::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 1px solid var(--green-200);
  z-index: -1;
}

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

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.85;
}

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

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--green-600);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-mid);
}

/* ── Wines ── */
.wines {
  background: var(--white);
}

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

.wine-card {
  text-align: center;
  transition: transform 0.4s var(--ease-out);
}

.wine-card:hover {
  transform: translateY(-4px);
}

.wine-card-image {
  margin-bottom: 24px;
  overflow: hidden;
}

.wine-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform 0.6s var(--ease-out);
}

.wine-card:hover .wine-card-image img {
  transform: scale(1.03);
}

.wine-card-info {
  padding: 0 8px;
}

.wine-type {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 8px;
}

.wine-name {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.wine-notes {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.wine-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 48px;
  font-style: italic;
  font-family: var(--font-serif);
}

/* ── Visit ── */
.visit {
  background: var(--cream);
}

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

.visit-image {
  order: -1;
}

.visit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/7;
}

.visit-details {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.visit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--green-500);
}

.visit-detail strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.visit-detail p {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.visit-detail a {
  color: var(--green-600);
  transition: color 0.3s var(--ease-out);
}

.visit-detail a:hover {
  color: var(--green-700);
}

/* ── Events ── */
.events {
  background: var(--green-800);
  color: var(--white);
}

.events-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.events .section-label {
  color: var(--green-300);
}

.events .section-label::before {
  background: var(--green-400);
}

.events .section-title {
  color: var(--white);
}

.events .lead {
  color: rgba(255, 255, 255, 0.7);
}

.events p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  margin-bottom: 36px;
}

.events .btn-primary {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
}

.events .btn-primary:hover {
  background: var(--green-100);
  border-color: var(--green-100);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.events-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ── Contact ── */
.contact {
  background: var(--white);
}

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

.contact-info p {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 32px;
}

.contact-direct {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-mid);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-direct p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.contact-direct a {
  color: var(--green-600);
  transition: color 0.3s var(--ease-out);
}

.contact-direct a:hover {
  color: var(--green-700);
}

.contact-form-wrapper {
  background: var(--cream);
  padding: 48px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-primary);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--cream-mid);
  outline: none;
  transition: border-color 0.3s var(--ease-out);
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--green-500);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

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

.form-success {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--green-600);
  font-family: var(--font-serif);
  font-style: italic;
}

/* ── Footer ── */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s var(--ease-out);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s var(--ease-out);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .wine-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .visit-grid,
  .events-content,
  .contact-grid {
    gap: 48px;
  }
}

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

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--green-900);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1rem;
    letter-spacing: 0.15em;
  }

  .nav-link:hover {
    color: var(--white) !important;
  }

  .nav-cta {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: var(--white) !important;
  }

  .section {
    padding: 80px 0;
  }

  .about-grid,
  .visit-grid,
  .events-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .visit-image {
    order: 0;
  }

  .about-image::after {
    display: none;
  }

  .wine-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .about-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
}
