/* Terroirs concluding text centering */
.terroirs-section .terroirs-container .estate-text {
  text-align: center;
  margin: 1.25rem auto 0;
  max-width: 800px;
}

@media (max-width: 768px) {
  .terroirs-section .terroirs-container .estate-text {
    margin: 0.75rem auto 0;
    padding: 0 0.75rem;
  }
}
/* ========================================
   LIANTAS ESTATE - CLEAN STYLESHEET
   ======================================== */

/* 1. CSS VARIABLES & ROOT */
:root {
  --bg-color: hsl(40, 34%, 97%);
  --fg-color: hsl(0, 33%, 1%);
  --secondary-bg: hsl(36, 36%, 94%);
  --muted-fg: hsl(30, 18%, 42%);
  --border-color: hsl(35, 28%, 84%);
  --gold-accent: hsl(42, 70%, 55%);
  --olive-accent: hsl(70, 32%, 36%);
  --wine-accent: hsl(0, 0%, 0%);
  --font-display: "Playfair Display", serif;
  --font-body: "Cormorant Garamond", serif;
}

/* 2. RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--fg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

::selection {
  background: hsla(42, 59%, 40%, 0.3);
}

/* 3. NAVIGATION */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.7s ease;
  padding: 0;
  background: hsla(40, 20%, 97%, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid hsla(42, 40%, 55%, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.nav.scrolled {
  background: hsla(40, 20%, 97%, 0.99);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 2.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-img {
    height: 45px;
  }
}

.nav-desktop {
  display: none;
  gap: 3rem;
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-fg);
  text-decoration: none;
  transition: color 0.5s ease;
}

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

/* 4. MOBILE MENU */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger {
  width: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.hamburger span {
  display: block;
  height: 1px;
  background: var(--fg-color);
  transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.98);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #1a1a1a;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-weight: 500;
}

.mobile-menu-link:hover {
  opacity: 0.7;
}

/* 5. HERO SECTION */
.hero-section {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .hero-section {
    padding-bottom: 5rem;
  }
}

@media (min-width: 1200px) {
  .hero-section {
    height: 90vh;
    padding-bottom: 6rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 80vh;
    min-height: 500px;
    padding-bottom: 2.5rem;
  }
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
  overflow: hidden;
}

.hero-slide {
  display: none;
  position: absolute;
  inset: 0;
  animation: circularReveal 0.5s ease-out forwards;
}

.hero-slide.active {
  display: block;
}

.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
  filter: brightness(1);
  filter: brightness(1.08) contrast(1.12) saturate(1.55);
}

.hero-slide video.ending {
  animation: videoFadeOut 1.2s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    hsla(40, 28%, 97%, 0.98),
    hsla(40, 30%, 96%, 0.6),
    hsla(38, 28%, 94%, 0.2),
    transparent
  );
  backdrop-filter: blur(0px);
  transition: backdrop-filter 0.3s ease;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 1.5rem;
  max-width: 64rem;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 0 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 0 6rem;
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.02em;
  color: var(--wine-accent);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 6.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--olive-accent);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .hero-subtitle {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.hero-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-fg);
  max-width: 42rem;
}

@media (min-width: 768px) {
  .hero-text {
    font-size: 1.125rem;
  }
}

@media (min-width: 1200px) {
  .hero-text {
    font-size: 1.2rem;
    max-width: 48rem;
  }
}

@media (max-width: 768px) {
  .hero-text {
    font-size: 0.95rem;
  }
}

.divider {
  width: 4rem;
  height: 1px;
  background: var(--border-color);
  margin: 2rem 0;
}

.fade-in {
  animation: fadeInUp 1.8s ease-out 0.3s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeIn 1s 2s backwards;
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: hsla(30, 8%, 45%, 0.5);
  animation: scrollBounce 2s ease-in-out infinite;
}

/* 6. ESTATE SECTION */
.estate-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, hsl(40, 30%, 98%), hsl(38, 28%, 96%));
}

@media (min-width: 1200px) {
  .estate-section {
    padding: 7rem 2rem;
  }
}

@media (max-width: 768px) {
  .estate-section {
    padding: 3rem 1.5rem;
  }
}

.estate-container {
  max-width: 900px;
  margin: 0 auto;
}

.estate-section h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--wine-accent);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

@media (min-width: 1200px) {
  .estate-section h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .estate-section h2 {
    font-size: 1.75rem;
  }
}

.estate-text {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--fg-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 1200px) {
  .estate-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .estate-text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
}

.estate-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .estate-features {
    grid-template-columns: 1fr;
  }
}

.estate-features li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--fg-color);
  padding-left: 1.5rem;
  position: relative;
}

.estate-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-accent);
  font-weight: bold;
}

/* 16. SUBMISSION MODAL (mobile-safe, full viewport) */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none; /* baseline hidden to avoid FOUC on Cloudflare */
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  height: 100vh;
  min-height: 100dvh; /* iOS/Android viewport */
}

.modal-overlay.show {
  display: flex;
}

.modal-card {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(0deg, hsl(40, 30%, 98%), hsl(38, 28%, 96%));
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.modal-message {
  font-family: var(--font-display);
  color: var(--olive-accent);
  font-size: 1.05rem;
  text-align: center;
  letter-spacing: 0.01em;
}

.modal-close {
  margin: 0.75rem auto 0;
  display: block;
  border: 1px solid var(--fg-color);
  background: var(--fg-color);
  color: var(--bg-color);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.modal-close:hover {
  background: transparent;
  color: var(--fg-color);
}

/* Prevent background scroll when modal is open */
html.modal-open,
body.modal-open {
  overflow: hidden;
}

/* 7. TERROIRS SECTION */
.terroirs-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(
    135deg,
    hsl(36, 32%, 93%) 0%,
    hsl(40, 28%, 96%) 100%
  );
}

@media (min-width: 768px) {
  .terroirs-section {
    padding: 6rem 1.5rem;
  }
}

@media (min-width: 1200px) {
  .terroirs-section {
    padding: 7rem 2rem;
  }
}

@media (max-width: 768px) {
  .terroirs-section {
    padding: 2rem 1rem !important;
  }
}

.terroirs-container {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .terroirs-container {
    max-width: 100%;
  }
}

.terroirs-section h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--fg-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 768px) {
  .terroirs-section h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .terroirs-section h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .terroirs-section h2 {
    font-size: 1.4rem !important;
    margin-bottom: 0.25rem;
  }
}

.terroirs-section .section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .terroirs-section .section-subtitle {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .terroirs-section .section-subtitle {
    margin-bottom: 1rem;
    font-size: 0.85rem;
  }
}

.terroir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (max-width: 1024px) {
  .terroir-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .terroir-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem !important;
    margin-top: 0.75rem;
  }
}

.terroir-card {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

@media (min-width: 1200px) {
  .terroir-card {
    padding: 2.25rem;
  }
}

@media (max-width: 768px) {
  .terroir-card {
    padding: 0.875rem;
  }
}

.terroir-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.terroir-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--fg-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .terroir-card h3 {
    font-size: 1rem;
    margin-bottom: 0.375rem;
  }
}

.terroir-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .terroir-card p {
    font-size: 0.8rem;
  }
}

.terroir-image {
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.terroir-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(1.08) contrast(1.12) saturate(1.55);
}

.terroir-tag {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive-accent);
  margin-bottom: 0.5rem;
}

/* 8. PRODUCT SECTION */
.product-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(
    135deg,
    hsl(42, 32%, 95%) 0%,
    hsl(36, 28%, 93%) 100%
  );
  position: relative;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .product-section {
    padding: 7rem 2rem;
  }
}

@media (max-width: 768px) {
  .product-section {
    padding: 3rem 1.5rem;
  }
}

.product-container {
  max-width: 1280px;
  margin: 0 auto;
}

.product-header {
  text-align: center;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .product-header {
    margin-bottom: 2rem;
  }
}

.product-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--wine-accent);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .product-header h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .product-header h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .product-header h2 {
    font-size: 1.75rem;
  }
}

.product-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--olive-accent);
  letter-spacing: 0.05em;
}

@media (min-width: 1200px) {
  .product-subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .product-subtitle {
    font-size: 0.95rem;
  }
}

.product-showcase {
  display: inline-table;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .product-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.bottle-item {
  text-align: center;
  transition: transform 0.5s ease;
}

.bottle-item:hover {
  transform: translateY(-8px);
}

.bottle-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.bottle-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(1.08) contrast(1.12) saturate(1.55);
}

.bottle-item:hover .bottle-image img {
  transform: scale(1.05);
}

.bottle-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--wine-accent);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

@media (min-width: 1200px) {
  .bottle-item h3 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .bottle-item h3 {
    font-size: 1.25rem;
  }
}

.bottle-item p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

.product-desc {
  color: var(--fg-color);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (min-width: 1200px) {
  .product-desc {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .product-desc {
    font-size: 0.95rem;
  }
}

.product-details {
  font-size: 0.875rem;
  color: var(--wine-accent);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .product-details {
    font-size: 0.8rem;
  }
}

/* 9. CONTACT SECTION */
.contact-section {
  padding: 6rem 1.5rem;
  background: hsl(40, 26%, 97%);
}

@media (min-width: 1200px) {
  .contact-section {
    padding: 7rem 2rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 2rem 1rem !important;
  }
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-container {
    max-width: 100%;
  }
}

.contact-section h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--wine-accent);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 1200px) {
  .contact-section h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-section h2 {
    font-size: 1.4rem !important;
    margin-bottom: 0.25rem;
  }
}

.contact-section .section-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--olive-accent);
}

@media (max-width: 768px) {
  .contact-section .section-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

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

.info-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--fg-color);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .info-item h3 {
    font-size: 1rem;
  }
}

.info-item p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

@media (min-width: 1200px) {
  .info-item p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .info-item p {
    font-size: 0.8rem;
    line-height: 1.6;
  }
}

/* 10. FORM STYLES */
.contact-form {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--fg-color);
}

.form-field input {
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  color: var(--fg-color);
  transition: all 0.3s ease;
}

.form-field input:focus {
  outline: none;
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(192, 150, 70, 0.2);
}

.form-submit {
  justify-self: center;
  border: 1px solid var(--fg-color);
  background: var(--fg-color);
  color: var(--bg-color);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 3rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: transparent;
  color: var(--fg-color);
}

/* 11. FOOTER */
.footer {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

@media (min-width: 768px) {
  .footer {
    padding: 2.5rem 3rem;
  }
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
  }
}

.footer-left {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--muted-fg);
}

.footer-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.instagram-link {
  color: var(--muted-fg);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-link:hover {
  color: var(--fg-color);
}

/* Product Section */
.product-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, hsl(40, 20%, 97%) 0%, hsl(38, 25%, 92%) 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .product-section {
    padding: 6rem 1.5rem;
  }
}

.product-container {
  max-width: 1280px;
  margin: 0 auto;
}

.product-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .product-header {
    margin-bottom: 4rem;
  }
}

.product-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--fg-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .product-header h2 {
    font-size: 2.5rem;
  }
}

.product-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--muted-fg);
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .product-subtitle {
    font-size: 1.125rem;
  }
}

.product-showcase {
  display: inline-table;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}


.bottle-item {
  text-align: center;
  transition: transform 0.5s ease;
}

.bottle-item:hover {
  transform: translateY(-8px);
}

.bottle-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.bottle-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bottle-item:hover .bottle-image img {
  transform: scale(1.05);
}

.bottle-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--fg-color);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.product-desc {
  color: var(--fg-color);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.product-details {
  font-size: 0.875rem;
  color: var(--gold-accent);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}
/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--fg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

::selection {
  background: hsla(42, 40%, 55%, 0.3);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.7s ease;
  padding: 0;
  background: hsla(40, 20%, 97%, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid hsla(42, 40%, 55%, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.nav.scrolled {
  background: hsla(40, 20%, 97%, 0.99);
  backdrop-filter: blur(20px);
  padding: 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 2.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
.logo-img {
  height: 45px;
  }
}
.nav-desktop {
  display: none;
  gap: 3rem;
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-fg);
  text-decoration: none;
  transition: color 0.5s ease;
}

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

/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger {
  width: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.hamburger span {
  display: block;
  height: 1px;
  background: var(--fg-color);
  transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.98);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #1a1a1a;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-weight: 500;
}

.mobile-menu-link:hover {
  opacity: 0.7;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
}

/* Large Screen Refinements */
@media (min-width: 1200px) {
  .hero-section {
    height: 90vh;
    padding-bottom: 6rem;
  }

  .hero-title {
    font-size: 6.5rem;
  }

  .hero-subtitle {
    font-size: 1.7rem;
  }

  .hero-text {
    font-size: 1.2rem;
    max-width: 48rem;
  }

  .product-section,
  .estate-section,
  .terroirs-section,
  .contact-section {
    padding: 7rem 2rem;
  }

  .product-header h2,
  .estate-section h2,
  .terroirs-section h2,
    color: var(--wine-accent);
    font-size: 3rem;
  }

  .product-subtitle,
  .section-subtitle,
  .contact-section .section-subtitle {
    color: var(--olive-accent);
  }

  .terroir-card {
    padding: 2.25rem;
  }

  .bottle-item h3 {
    font-size: 1.75rem;
  }

  .product-desc,
  .estate-text,
  .terroir-card p,
  .info-item p {
    font-size: 1.1rem;
  }
}
@media (min-width: 768px) {
  .hero-section {
    padding-bottom: 5rem;
  }
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
  overflow: hidden;
}

.hero-slide {
  display: none;
  position: absolute;
  inset: 0;
  animation: circularReveal 0.5s ease-out forwards;
}

.hero-slide.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes videoFadeOut {
  from {
    opacity: 1;
    filter: brightness(1);
  }
  to {
    opacity: 0;
    filter: brightness(0.3);
  }
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
  filter: brightness(1);
}

.hero-slide video.ending {
  animation: videoFadeOut 1.2s ease-out forwards;
}

/* Slider Navigation Bar */
.slider-nav-bar {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
  border-radius: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 0.85rem 0.65rem;
}

.slider-dot {
  width: 5px;
  height: 45px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.6);
  height: 55px;
}

.slider-dot.active {
  background: white;
  height: 60px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .slider-nav-bar {
    top: auto;
    bottom: 1.5rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 0.65rem;
    padding: 0.65rem 0.9rem;
  }

  .slider-dot {
    width: 32px;
    height: 4px;
  }

  .slider-dot:hover {
    width: 40px;
    height: 4px;
  }

  .slider-dot.active {
    width: 44px;
    height: 4px;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--bg-color),
    hsla(40, 20%, 97%, 0.5),
    hsla(40, 20%, 97%, 0.1),
    transparent
  );
  backdrop-filter: blur(0px);
  transition: backdrop-filter 0.3s ease;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 1.5rem;
  max-width: 64rem;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 0 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 0 6rem;
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
  }
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--olive-accent);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-fg);
  max-width: 42rem;
}

@media (min-width: 768px) {
  .hero-text {
    font-size: 1.125rem;
  }
}

.fade-in {
  animation: fadeInUp 1.8s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes circularReveal {
  from {
    clip-path: circle(0% at 50% 50%);
    opacity: 0;
  }
  to {
    clip-path: circle(100% at 50% 50%);
    opacity: 1;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeIn 1s 2s backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: hsla(30, 8%, 45%, 0.5);
  animation: scrollBounce 2s ease-in-out infinite;
}

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

/* Section Styles */
.section {
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 3rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 8rem 6rem;
  }
}

.divider {
  width: 4rem;
  height: 1px;
  background: var(--border-color);
  margin: 2rem 0;
}

/* Terroirs Section */
.terroir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (max-width: 1024px) {
  .terroir-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .terroir-grid {
    grid-template-columns: 1fr;
  }
}

.terroir-card {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.terroir-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.terroir-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--fg-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.terroir-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

.terroir-image {
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.terroir-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.terroir-tag {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive-accent);
  margin-bottom: 0.5rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-form {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--fg-color);
}

.form-field input {
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  color: var(--fg-color);
}

.form-field input:focus {
  outline: none;
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(192, 150, 70, 0.2);
}

.form-submit {
  justify-self: center;
  border: 1px solid var(--fg-color);
  background: var(--fg-color);
  color: var(--bg-color);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 3rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: transparent;
  color: var(--fg-color);
}

.warm-filter,
.iot-filter {
  filter: brightness(1.1) contrast(1.15) saturate(1.8) sepia(0.25)
    hue-rotate(-8deg);
  transition: filter 0.5s ease;
}

.warm-filter:hover,
.iot-filter:hover {
  filter: brightness(1.15) contrast(1.2) saturate(1.95) sepia(0.28)
    hue-rotate(-8deg);
}

.hero-slide video,
.terroir-image img,
.bottle-image img {
  filter: brightness(1.08) contrast(1.12) saturate(1.55);
}

/* Subtle color richness */
.hero-overlay {
  background: linear-gradient(
    to top,
    hsla(40, 28%, 97%, 0.98),
    hsla(40, 30%, 96%, 0.6),
    hsla(38, 28%, 94%, 0.2),
    transparent
  );
}

.estate-section {
  background: linear-gradient(180deg, hsl(40, 30%, 98%), hsl(38, 28%, 96%));
}

.terroirs-section {
  background: linear-gradient(
    135deg,
    hsl(36, 32%, 93%) 0%,
    hsl(40, 28%, 96%) 100%
  );
}

.product-section {
  background: linear-gradient(
    135deg,
    hsl(42, 32%, 95%) 0%,
    hsl(36, 28%, 93%) 100%
  );
}

.contact-section {
  background: hsl(40, 26%, 97%);
}

@media (max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr;
  }
}

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

.info-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--fg-color);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.info-item p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

/* Product Section */
.product-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(
    135deg,
    hsl(40, 20%, 97%) 0%,
    hsl(38, 25%, 92%) 100%
  );
  position: relative;
  overflow: hidden;
}

.product-container {
  max-width: 1280px;
  margin: 0 auto;
}

.product-header {
  text-align: center;
  margin-bottom: 4rem;
}

.product-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--fg-color);
  .footer-left {
  font-weight: 600;
}

.product-subtitle {
  font-family: var(--font-body);
  .footer-right {
  color: var(--muted-fg);
  letter-spacing: 0.05em;
    align-items: center;
}

  .instagram-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

    display: flex;
    align-items: center;
    justify-content: center;
@media (max-width: 768px) {
  .product-showcase {
  .instagram-link:hover {
    gap: 2rem;
  }
}
.bottle-item:hover {
  transform: translateY(-8px);
}

.bottle-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.bottle-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bottle-item:hover .bottle-image img {
  transform: scale(1.05);
}

.bottle-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--wine-accent);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.bottle-item p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

.product-desc {
  color: var(--fg-color);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.product-details {
  font-size: 0.875rem;
  color: var(--wine-accent);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

/* Estate Section */
.estate-section {
  padding: 6rem 1.5rem;
  background: var(--bg-color);
}

.estate-container {
  max-width: 900px;
  margin: 0 auto;
}

.estate-section h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--wine-accent);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--olive-accent);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.estate-text {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--fg-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.estate-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .estate-features {
    grid-template-columns: 1fr;
  }
}

.estate-features li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--fg-color);
  padding-left: 1.5rem;
  position: relative;
}

.estate-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-accent);
  font-weight: bold;
}

/* Terroirs Section */
.terroirs-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(
    135deg,
    hsl(38, 25%, 92%) 0%,
    hsl(40, 20%, 97%) 100%
  );
}

.terroirs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.terroirs-section h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--fg-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-align: center;
}

.terroirs-section .section-subtitle {
  text-align: center;
  margin-bottom: 3rem;
}

.terroir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .terroir-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .terroir-grid {
    grid-template-columns: 1fr;
  }
}

.terroir-card {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.terroir-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.terroir-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--fg-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.terroir-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  padding: 6rem 1.5rem;
  background: var(--bg-color);
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-section h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--wine-accent);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-align: center;
}

.contact-section .section-subtitle {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr;
  }
}

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

.info-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--fg-color);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.info-item p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.7;
}
/* Mobile-First Responsive Improvements */

/* Product Section - Reduced padding on mobile */
@media (max-width: 768px) {
  .product-section {
    padding: 3rem 1.5rem;
  }
  
  .product-header {
    margin-bottom: 2rem;
  }
  
  .product-header h2 {
    font-size: 1.75rem;
  }
  
  .product-subtitle {
    font-size: 0.95rem;
  }
  
  .bottle-item h3 {
    font-size: 1.25rem;
  }
  
  .product-desc {
    font-size: 0.95rem;
  }
  
  .product-details {
    font-size: 0.8rem;
  }
}

/* Estate Section - Reduced padding on mobile */
@media (max-width: 768px) {
  .estate-section {
    padding: 3rem 1.5rem;
  }
  
  .estate-section h2 {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .estate-text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
}

/* Terroirs Section - Reduced padding, tighter spacing on mobile */
@media (max-width: 768px) {
  .terroirs-section {
    padding: 2rem 1rem !important;
  }
  
  .terroirs-container {
    max-width: 100%;
  }

  .terroirs-section h2 {
    font-size: 1.4rem !important;
    margin-bottom: 0.25rem;
  }
  
  .terroirs-section .section-subtitle {
    margin-bottom: 1rem;
    font-size: 0.85rem;
  }
  
  .terroir-grid {
    gap: 0.75rem !important;
    margin-top: 0.75rem;
  }
  
  .terroir-card {
    padding: 0.875rem;
  }
  
  .terroir-card h3 {
    font-size: 1rem;
    margin-bottom: 0.375rem;
  }
  
  .terroir-card p {
    font-size: 0.8rem;
  }
}

/* Contact Section - Reduced padding on mobile */
@media (max-width: 768px) {
  .contact-section {
    padding: 2rem 1rem !important;
  }

  .contact-container {
    max-width: 100%;
  }
  
  .contact-section h2 {
    font-size: 1.4rem !important;
    margin-bottom: 0.25rem;
  }
  
  .contact-section .section-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .contact-info {
    gap: 1rem;
  }
  
  .info-item h3 {
    font-size: 1rem;
  }
  
  .info-item p {
    font-size: 0.8rem;
    line-height: 1.6;
  }
}

/* Hero Section - Better mobile padding */
@media (max-width: 768px) {
  .hero-section {
    height: 80vh;
    min-height: 500px;
    padding-bottom: 2.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-text {
    font-size: 0.95rem;
  }
}
