/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Quicksand', 'Segoe UI', sans-serif;
  color: #1e3a5f;
  background: #fdf9ee;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Lora', Georgia, serif; font-weight: 600; line-height: 1.2; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d4a017;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1e3a5f;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.05rem;
  color: #486581;
  max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-gold {
  background: #d4a017;
  color: #1e3a5f;
  border-color: #d4a017;
}
.btn-gold:hover { background: #bf8a10; border-color: #bf8a10; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,0.35); }
.btn-outline-light {
  background: transparent;
  color: #fdf9ee;
  border-color: rgba(253,249,238,0.6);
}
.btn-outline-light:hover { background: rgba(253,249,238,0.12); border-color: #fdf9ee; }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}
.site-header.scrolled {
  background: rgba(15, 29, 46, 0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fdf9ee;
}
.logo-text { transition: color 0.3s; }
.logo-light { color: #fdf9ee; }
.logo-light .logo-text { color: #fdf9ee; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  color: rgba(253,249,238,0.85);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4a017;
  border-radius: 2px;
  transition: width 0.3s;
}
.main-nav a:hover { color: #d4a017; }
.main-nav a:hover::after { width: 100%; }
.nav-cta {
  background: #d4a017 !important;
  color: #1e3a5f !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #bf8a10 !important; color: #1e3a5f !important; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fdf9ee;
  padding: 4px;
}

/* Nav overlay (mobile) */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(15, 29, 46, 0.97);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.nav-overlay-link {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  color: rgba(253,249,238,0.85);
  transition: color 0.3s;
}
.nav-overlay-link:hover { color: #d4a017; }
.nav-cta-overlay {
  margin-top: 12px;
  background: #d4a017;
  color: #1e3a5f !important;
  padding: 12px 36px;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/38339437/pexels-photo-38339437.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1280') center center / cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 29, 46, 0.55) 0%,
    rgba(30, 58, 95, 0.65) 50%,
    rgba(15, 29, 46, 0.80) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
  animation: fadeUp 1s ease 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-greeting {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #d4a017;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.hero-headline {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  color: #fdf9ee;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(253,249,238,0.85);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-scroll {
  animation: bounce 2s ease infinite;
  color: rgba(253,249,238,0.5);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

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

/* ── About ── */
.about { background: #fdf9ee; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(30,58,95,0.15);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(30,58,95,0.2);
  border: 4px solid #fdf9ee;
  width: 55%;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
  position: absolute;
  top: -20px;
  left: -16px;
  width: 72px;
  height: 72px;
  background: #d4a017;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(212,160,23,0.3);
}
.about-text p {
  color: #486581;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(30,58,95,0.1);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #d4a017;
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: #627d98;
  font-weight: 600;
  margin-top: 4px;
}

/* ── Wines ── */
.wines { background: #f0f4f8; }
.wine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}
.wine-card {
  background: #fdf9ee;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(30,58,95,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wine-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(30,58,95,0.14); }
.wine-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.wine-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.wine-card:hover .wine-card-img img { transform: scale(1.05); }
.wine-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #1e3a5f;
  color: #d4a017;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}
.white-tag { background: #d4a017; color: #1e3a5f; }
.rose-tag { background: #c06070; color: #fff; }
.wine-card-body { padding: 24px; }
.wine-name {
  font-size: 1.25rem;
  color: #1e3a5f;
  margin-bottom: 8px;
}
.wine-desc {
  font-size: 0.92rem;
  color: #627d98;
  line-height: 1.6;
}
.wines-note {
  text-align: center;
  font-size: 0.88rem;
  color: #829ab1;
  font-style: italic;
}

/* ── Visit ── */
.visit { background: #fdf9ee; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.visit-desc {
  font-size: 1.05rem;
  color: #486581;
  margin-bottom: 32px;
}
.visit-features { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.visit-features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.visit-features svg { flex-shrink: 0; margin-top: 2px; }
.visit-features strong { color: #1e3a5f; }
.visit-features span { color: #486581; font-size: 0.95rem; }
.visit-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(30,58,95,0.15);
}
.visit-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Location ── */
.location { background: #1e3a5f; color: #fdf9ee; }
.location .section-tag { color: #d4a017; }
.location .section-title { color: #fdf9ee; }
.location .section-sub { color: rgba(253,249,238,0.7); }
.location .section-header { margin-bottom: 48px; }
.map-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.map-placeholder {
  background: #334e68;
  padding: 64px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.map-placeholder p {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: rgba(253,249,238,0.9);
  line-height: 1.6;
}
.map-placeholder .btn { margin-top: 8px; }

/* ── Contact ── */
.contact { background: #f0f4f8; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-desc {
  font-size: 1.02rem;
  color: #486581;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item svg { flex-shrink: 0; margin-top: 2px; }
.contact-item strong {
  display: block;
  color: #1e3a5f;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.contact-item a,
.contact-item span {
  color: #486581;
  font-size: 0.95rem;
}
.contact-item a:hover { color: #d4a017; }

/* Form */
.contact-form-wrap {
  background: #fdf9ee;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 16px 48px rgba(30,58,95,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1e3a5f;
}
.form-opt { text-transform: none; letter-spacing: 0; font-weight: 500; color: #829ab1; }
.form-group input,
.form-group textarea {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 2px solid rgba(30,58,95,0.12);
  border-radius: 12px;
  background: #fff;
  color: #1e3a5f;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #d4a017;
  box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success p { color: #16a34a; font-weight: 600; font-size: 0.95rem; }

/* ── Footer ── */
.footer { background: #0f1d2e; color: rgba(253,249,238,0.7); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p { margin-top: 16px; font-size: 0.92rem; line-height: 1.7; }
.footer-links h4,
.footer-hours h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d4a017;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.92rem;
  color: rgba(253,249,238,0.65);
  transition: color 0.3s;
}
.footer-links a:hover { color: #d4a017; }
.footer-hours p { font-size: 0.92rem; line-height: 1.7; }
.footer-hours .hours-note { font-size: 0.82rem; color: rgba(253,249,238,0.45); margin-top: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(253,249,238,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(253,249,238,0.4);
}
.footer-bottom a { color: rgba(253,249,238,0.5); transition: color 0.3s; }
.footer-bottom a:hover { color: #d4a017; }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid,
  .visit-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-secondary { right: 0; }
  .about-images { max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .visit-image { order: -1; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
