/* ============================================================
   TERROIR SELECTIONS — REDESIGN
   Inspired by European Cellars: elegant, editorial, artisanal
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --cream:        #f7f3ee;
  --cream-dark:   #ede8e0;
  --charcoal:     #1c1c1c;
  --charcoal-mid: #3a3a3a;
  --wine:         #6b1a2a;
  --wine-light:   #8b2a3e;
  --gold:         #b8933a;
  --green:        #2d4a2d;
  --text:         #2e2e2e;
  --text-light:   #6b6b6b;
  --border:       #d8d0c4;

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Montserrat', Arial, sans-serif;

  --max-width:    1200px;
  --nav-height:   80px;
  --transition:   0.3s ease;
}

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

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

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

h1 em, h2 em { font-style: italic; font-weight: 400; color: var(--wine); }

p { font-size: 1rem; color: var(--text-light); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout Helpers ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.container.narrow { max-width: 780px; }
.centered { text-align: center; }

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--wine);
  color: #fff;
  border: 2px solid var(--wine);
}
.btn-primary:hover { background: var(--wine-light); border-color: var(--wine-light); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-text {
  padding: 0;
  color: var(--wine);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.btn-text:hover { border-color: var(--wine); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(247, 243, 238, 0.97);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
  transition: background var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
  background: rgba(247, 243, 238, 0.97);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 60px;
  width: auto;
  /* Always show natural SVG colors — nav is always cream */
  filter: none;
  transition: filter var(--transition);
}

/* Hero logo */
.hero-logo-wrap {
  margin-bottom: 1.5rem;
  text-align: center;
}
.hero-logo {
  height: 120px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

#site-header.scrolled .nav-links a { color: var(--charcoal-mid); }
.nav-links a:hover { color: var(--wine); }
#site-header.scrolled .nav-links a:hover { color: var(--wine); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}
#site-header.scrolled .nav-toggle span { background: var(--charcoal); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('images/hero-clos-vougeot.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.35) 50%,
    rgba(10,10,10,0.65) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 2rem;
  max-width: 860px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 500;
}

/* Superimposed logo watermark */
.hero-logo-overlay {
  margin-bottom: 1.5rem;
}
.hero-logo-overlay img {
  width: 220px;
  max-width: 55vw;
  opacity: 0.82;
  filter: invert(1) brightness(1.8);
  mix-blend-mode: screen;
  display: block;
  margin: 0 auto;
}

.hero-title {
  color: #fff;
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  font-weight: 600;
}
.hero-title em {
  color: #fff;
  font-style: italic;
  font-weight: 300;
}

.hero-subtitle {
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin: 0 auto 2.2rem;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  padding: 7rem 0;
  background: var(--cream);
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.philosophy-text h2 { margin-bottom: 1.5rem; }
.philosophy-text p { font-size: 1.05rem; margin-bottom: 1.2rem; }
.philosophy-text .btn-text { margin-top: 1rem; }

.philosophy-image {
  position: relative;
}

.philosophy-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: sepia(10%) saturate(90%);
}

.philosophy-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 100px;
  height: 100px;
  background: var(--wine);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 4px 20px rgba(107,26,42,0.3);
}

/* ============================================================
   FEATURED PRODUCERS (Home)
   ============================================================ */
.featured-producers {
  padding: 7rem 0;
  background: var(--cream-dark);
}

.featured-producers h2 { margin-bottom: 1rem; }

.producers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
}

.producer-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: transform var(--transition);
}

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

.producer-card-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.producer-card:hover .producer-card-img { transform: scale(1.04); }

.producer-card-body {
  padding: 2rem;
  border-top: 3px solid var(--wine);
}

.producer-region {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 0.5rem;
}

.producer-card-body h3 { margin-bottom: 0.75rem; font-size: 1.3rem; }
.producer-card-body p { font-size: 0.9rem; margin-bottom: 1.2rem; }

/* ============================================================
   QUOTE BANNER
   ============================================================ */
.quote-banner {
  position: relative;
  padding: 8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 10, 15, 0.72);
  z-index: 1;
}

.quote-banner blockquote {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
}

.quote-banner blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-style: italic;
  font-weight: 300;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.quote-banner blockquote cite {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-style: normal;
  font-family: var(--font-sans);
}

/* ============================================================
   WHY US / PILLARS
   ============================================================ */
.why-us {
  padding: 7rem 0;
  background: var(--cream);
}

.why-us h2 { margin-bottom: 1rem; }

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

.pillar {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border-bottom: 3px solid var(--wine);
  transition: box-shadow var(--transition);
}

.pillar:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }

.pillar-icon {
  font-size: 2rem;
  color: var(--wine);
  margin-bottom: 1.2rem;
  display: block;
}

.pillar h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.pillar p { font-size: 0.88rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 7rem 0;
  background: var(--cream-dark);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-details li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  color: var(--wine);
  font-size: 0.5rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.contact-details strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
  font-family: var(--font-sans);
}

.contact-details p { font-size: 0.95rem; margin: 0; }
.contact-details a { color: var(--wine); transition: opacity var(--transition); }
.contact-details a:hover { opacity: 0.75; }

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  padding: 3rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  appearance: none;
}

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

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

.contact-form .btn-primary { width: 100%; text-align: center; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  padding-bottom: 4rem;
  padding-left: 2rem;
  margin-top: var(--nav-height);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.2) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}

.page-hero-content h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); }
.page-hero-content p { color: rgba(255,255,255,0.7); font-size: 1.1rem; font-family: var(--font-display); font-style: italic; margin-top: 0.5rem; }

/* ============================================================
   PRODUCERS PAGE
   ============================================================ */
.producers-intro {
  padding: 4rem 0 2rem;
  background: var(--cream);
}

.producers-intro p {
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-style: italic;
  text-align: center;
  color: var(--text-light);
  line-height: 1.8;
}

.filter-section {
  padding: 1.5rem 0 2rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.filter-buttons { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.filter-btn {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  color: var(--text-light);
  background: transparent;
  transition: var(--transition);
  font-family: var(--font-sans);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
}

.producers-list {
  padding: 4rem 0 7rem;
  background: var(--cream);
}

.producers-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.producer-full-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: box-shadow var(--transition), transform var(--transition);
}

.producer-full-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.producer-full-card.hidden { display: none; }

.pfc-image {
  background-size: cover;
  background-position: center;
  min-height: 260px;
  transition: transform 0.6s ease;
}

.producer-full-card:hover .pfc-image { transform: scale(1.04); }

.pfc-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 3px solid var(--wine);
}

.pfc-farming { margin-bottom: 0.75rem; }

.farming-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  background: rgba(107,26,42,0.08);
  color: var(--wine);
  border: 1px solid rgba(107,26,42,0.2);
}

.pfc-body h3 { margin-bottom: 0.25rem; font-size: 1.4rem; }
.pfc-body p { font-size: 0.9rem; margin-bottom: 1.2rem; }
.pfc-body .btn-text { margin-top: auto; }

.producers-cta {
  padding: 7rem 0;
  background: var(--cream-dark);
}

.producers-cta h2 { margin-bottom: 1rem; }
.producers-cta p { margin-bottom: 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: start;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
  /* Transparent PNG on dark footer: invert to white */
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  font-family: var(--font-display);
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-nav a:hover { color: #fff; }

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
}
.footer-contact a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact a:hover { color: #fff; }

.footer-instagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.footer-ig-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.footer-qr {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  padding: 4px;
  display: block;
  transition: transform 0.2s;
}
.footer-qr:hover {
  transform: scale(1.05);
}
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

/* ============================================================
   NEW ARRIVALS
   ============================================================ */
.new-arrivals {
  padding: 6rem 0;
  background: var(--cream);
}

.arrivals-hero-img {
  margin: 2.5rem auto;
  max-width: 900px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.arrivals-hero-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.arrivals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.arrival-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.8rem;
  position: relative;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.arrival-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.arrival-score {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: -0.02em;
}

.arrival-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  padding-right: 50px;
}

.arrival-region {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 0.8rem;
}

.arrival-desc {
  font-size: 0.9rem;
  color: var(--mid-charcoal);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.arrival-critic {
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(0,0,0,0.4);
  font-family: var(--font-display);
}

.arrivals-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.arrivals-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .producers-full-grid { grid-template-columns: 1fr; }
  .producer-full-card { grid-template-columns: 240px 1fr; }
}

@media (max-width: 900px) {
  .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }
  .philosophy-image img { height: 340px; }
  .producers-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-instagram { grid-column: 1 / -1; flex-direction: row; justify-content: center; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 1rem 2rem;
    color: var(--charcoal) !important;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a::after { display: none; }

  .nav-toggle { display: flex; }

  .hero { height: 90vh; }
  .hero-subtitle { font-size: 1.1rem; }

  .producer-full-card { grid-template-columns: 1fr; }
  .pfc-image { min-height: 200px; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pillars-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .contact-form-wrap { padding: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .philosophy { padding: 4rem 0; }
  .featured-producers { padding: 4rem 0; }
  .why-us { padding: 4rem 0; }
  .contact-section { padding: 4rem 0; }
  .quote-banner { padding: 5rem 1.5rem; }
}

/* ============================================================
   PRODUCER CARD LINKS (producers.html)
   ============================================================ */
.prod-card h3 a {
  color: #6b1a2a;
  text-decoration: none;
  border-bottom: 1px solid rgba(107,26,42,0.25);
  transition: border-color 0.22s ease, color 0.22s ease;
}
.prod-card h3 a:hover {
  color: #8b2a3e;
  border-bottom-color: #6b1a2a;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
