/* ─────────────────────────────────────────────────────
   Galician Wine & Spices — gwsimport.com
   Stylesheet
───────────────────────────────────────────────────── */

/* Google Fonts loaded via <link> in HTML */

:root {
  --taupe:    #675C4D;
  --gold:     #BFA657;
  --gold-lt:  #D0B96E;
  --bg:       #F5F3F0;
  --white:    #FFFFFF;
  --dark:     #1C1714;
  --text:     #2E2A25;
  --text-lt:  #7A7068;
  --border:   rgba(191, 166, 87, .28);
  --border-solid: #DDD8CE;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1160px;
  --sp: clamp(64px, 10vw, 120px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── Layout ── */
.container {
  width: min(var(--max-w), 100% - 48px);
  margin-inline: auto;
}

/* ── Type helpers ── */
.label {
  display: block;
  font-family: var(--font-sans);
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.gold-rule {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin-block: 20px;
}

.gold-rule.center { margin-inline: auto; }

/* ── Scroll fade-in ── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─────────────── NAVIGATION ─────────────── */
.site-nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  transition: background .35s, box-shadow .35s;
}

.site-nav.scrolled {
  background: rgba(245, 243, 240, .97);
  box-shadow: 0 1px 0 var(--border-solid);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: min(var(--max-w), 100% - 48px);
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.nav-logo .wordmark {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color .3s;
}

.nav-logo .est {
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* White nav state (on dark hero, before scroll) */
.site-nav.on-dark:not(.scrolled) .nav-logo .wordmark { color: #F0EBE0; }
.site-nav.on-dark:not(.scrolled) .nav-links a { color: rgba(240, 235, 224, .78); }
.site-nav.on-dark:not(.scrolled) .nav-hamburger span { background: #F0EBE0; }

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

.nav-links a {
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 3px;
  transition: color .2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .28s;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--taupe); }
.site-nav.on-dark:not(.scrolled) .nav-links a.active { color: var(--gold); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: background .3s;
}

/* ── Mobile nav overlay ── */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--dark);
  letter-spacing: .04em;
  transition: color .18s;
}

.nav-mobile a:hover { color: var(--taupe); }

.nav-mobile-close {
  position: absolute;
  top: 22px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-lt);
  transition: color .18s;
  padding: 6px;
}

.nav-mobile-close:hover { color: var(--dark); }

/* ─────────────── HOME HERO ─────────────── */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* ★ PHOTO PLACEHOLDER — replace with:
     background: url('../img/hero.jpg') center/cover no-repeat; */
  background: linear-gradient(158deg, #191210 0%, #281C12 30%, #392B1B 58%, #4E3D2A 82%, #5C4A35 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 75% 45%, rgba(191, 166, 87, .07) 0%, transparent 55%),
    radial-gradient(ellipse 45% 70% at 20% 100%, rgba(103, 92, 77, .35) 0%, transparent 50%);
  pointer-events: none;
}

.hero-photo-note {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .6rem;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .18);
  white-space: nowrap;
  pointer-events: none;
  text-align: center;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 72px;
  padding-block-end: 80px;
}

.hero-label {
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -.015em;
  color: #F0EBE0;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-tagline {
  font-size: clamp(.88rem, 1.6vw, 1.05rem);
  font-weight: 300;
  color: rgba(240, 235, 224, .62);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 44px;
  letter-spacing: .01em;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  font-family: var(--font-sans);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .22s, border-color .22s, color .22s, transform .18s;
}

.btn-outline-light {
  border: 1px solid rgba(191, 166, 87, .55);
  color: #F0EBE0;
}

.btn-outline-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.btn-gold {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--dark);
}

.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid var(--taupe);
  color: var(--taupe);
}

.btn-outline:hover {
  background: var(--taupe);
  color: var(--white);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(240, 235, 224, .35);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-indicator .line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(191, 166, 87, .5));
  animation: scroll-drop 2s ease-in-out infinite;
}

@keyframes scroll-drop {
  0%, 100% { opacity: .35; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: .9;  transform: scaleY(1.08); }
}

/* ─────────────── INNER PAGE HERO ─────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block-start: calc(72px + clamp(56px, 9vw, 96px));
  padding-block-end: clamp(56px, 9vw, 96px);
  /* ★ PHOTO PLACEHOLDER — replace background with real image per-page */
  background: linear-gradient(158deg, #191210 0%, #281C12 30%, #392B1B 58%, #4E3D2A 82%, #5C4A35 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 75% at 85% 40%, rgba(191, 166, 87, .07) 0%, transparent 55%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.01em;
  color: #F0EBE0;
  margin-block: 12px 18px;
}

.page-hero h1 em { font-style: italic; color: var(--gold); }

.page-hero p {
  font-size: clamp(.88rem, 1.4vw, 1rem);
  font-weight: 300;
  color: rgba(240, 235, 224, .58);
  max-width: 480px;
  line-height: 1.7;
}

/* ─────────────── SECTIONS ─────────────── */
section { padding-block: var(--sp); }

.section-header { margin-bottom: clamp(40px, 6vw, 68px); }

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--dark);
}

/* ─────────────── HOME: INTRO ─────────────── */
.intro-section { background: var(--white); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.intro-text p {
  font-size: 1rem;
  line-height: 1.82;
  color: var(--text);
  margin-bottom: 18px;
}

.intro-text p:last-child { margin-bottom: 0; }

.intro-text a {
  color: var(--taupe);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ★ PHOTO PLACEHOLDER — replace .intro-visual with <img> */
.intro-visual {
  aspect-ratio: 4 / 3;
  background: linear-gradient(148deg, #2A1F16 0%, #675C4D 55%, #8A7B68 100%);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.intro-visual::after {
  content: '[ Photo placeholder — Galician region / product imagery ]';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  padding: 24px;
  text-align: center;
}

/* ─────────────── HOME: PILLARS ─────────────── */
.pillars-section { background: var(--bg); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-solid);
  border: 1px solid var(--border-solid);
}

.pillar {
  background: var(--bg);
  padding: clamp(28px, 5vw, 52px) clamp(22px, 4vw, 44px);
  transition: background .22s;
}

.pillar:hover { background: var(--white); }

.pillar-num {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 300;
  color: var(--border-solid);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -.03em;
}

.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.pillar p {
  font-size: .875rem;
  color: var(--text-lt);
  line-height: 1.72;
}

/* ─────────────── QUOTE / DARK SECTION ─────────────── */
.dark-section {
  background: var(--dark);
  padding-block: clamp(72px, 11vw, 140px);
}

.quote-wrap {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.55rem);
  font-weight: 300;
  font-style: italic;
  color: #F0EBE0;
  line-height: 1.48;
  margin-bottom: 28px;
}

.quote-attr {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Dark section prose (Our Story philosophy) */
.dark-prose { max-width: 700px; }

.dark-prose h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 300;
  color: #F0EBE0;
  line-height: 1.12;
  letter-spacing: -.01em;
  margin-block: 12px 28px;
}

.dark-prose p {
  font-size: .97rem;
  color: rgba(240, 235, 224, .6);
  line-height: 1.82;
  margin-bottom: 16px;
}

.dark-prose p:last-child { margin-bottom: 0; }

/* ─────────────── CTA SECTION ─────────────── */
.cta-section {
  background: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.12;
}

.cta-section p {
  font-size: .93rem;
  color: var(--text-lt);
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 36px;
  line-height: 1.72;
}

/* ─────────────── OUR STORY ─────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.story-body {
  font-size: 1.02rem;
  line-height: 1.87;
  color: var(--text);
}

.story-body p { margin-bottom: 1.5em; }
.story-body p:last-child { margin-bottom: 0; }

.story-body a {
  color: var(--taupe);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.story-sidebar {
  position: sticky;
  top: 100px;
}

/* ★ PHOTO PLACEHOLDER — replace .story-photo with <img> */
.story-photo {
  aspect-ratio: 3 / 4;
  background: linear-gradient(162deg, #2A1F16 0%, #675C4D 58%, #8A7B68 100%);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.story-photo::after {
  content: '[ Photo placeholder — founders / estate visit ]';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  padding: 20px;
  text-align: center;
}

.sidebar-card {
  background: var(--white);
  border-left: 2px solid var(--gold);
  padding: 24px 22px;
  margin-bottom: 16px;
}

.sidebar-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.sidebar-card p {
  font-size: .83rem;
  color: var(--text-lt);
  line-height: 1.65;
}

.sidebar-card a { color: var(--taupe); }

/* ─────────────── OUR APPROACH ─────────────── */
.process-steps { margin-top: clamp(40px, 5vw, 64px); }

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 68px);
  border-bottom: 1px solid var(--border-solid);
  margin-bottom: clamp(40px, 5vw, 68px);
  align-items: start;
}

.process-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--border-solid);
  line-height: 1;
  padding-top: 2px;
  letter-spacing: -.04em;
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.15;
}

.step-content p {
  font-size: .93rem;
  color: var(--text-lt);
  line-height: 1.78;
  max-width: 600px;
}

.step-content p + p { margin-top: 12px; }

/* ─────────────── PORTFOLIO ─────────────── */
.portfolio-intro {
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--text);
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 68px);
}

.producer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.producer-card {
  background: var(--white);
  border: 1px solid var(--border-solid);
  overflow: hidden;
  transition: box-shadow .28s, transform .28s;
}

.producer-card:hover {
  box-shadow: 0 16px 48px rgba(103, 92, 77, .14);
  transform: translateY(-4px);
}

/* ★ PHOTO PLACEHOLDER — replace .producer-img with <img> */
.producer-img {
  aspect-ratio: 16 / 9;
  background: linear-gradient(148deg, #2A1F16 0%, #675C4D 55%, #8C7B68 100%);
  position: relative;
  overflow: hidden;
}

.producer-img.alt {
  background: linear-gradient(148deg, #1C1A14 0%, #3D3525 55%, #675C4D 100%);
}

.producer-img.alt2 {
  background: linear-gradient(148deg, #1E1810 0%, #3B2C1D 55%, #5C4A35 100%);
}

.producer-img::after {
  content: '[ Producer imagery placeholder ]';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  padding: 16px;
  text-align: center;
}

.producer-body { padding: 26px 22px 24px; }

.producer-region {
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.producer-body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.15;
}

.producer-sub {
  font-family: var(--font-serif);
  font-size: .83rem;
  font-style: italic;
  color: var(--text-lt);
  margin-bottom: 12px;
}

.producer-desc {
  font-size: .86rem;
  color: var(--text-lt);
  line-height: 1.68;
}

.producer-badge {
  display: inline-block;
  margin-top: 14px;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 4px 10px;
}

.portfolio-note {
  display: block;
  font-size: .85rem;
  font-style: italic;
  color: var(--text-lt);
  padding-left: 16px;
  border-left: 2px solid var(--border-solid);
  line-height: 1.62;
}

/* ─────────────── PARTNERSHIPS & CONTACT ─────────────── */
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-solid);
  border: 1px solid var(--border-solid);
  margin-bottom: clamp(56px, 8vw, 96px);
}

.partner-block {
  background: var(--bg);
  padding: clamp(32px, 5vw, 52px) clamp(24px, 4vw, 48px);
  transition: background .22s;
}

.partner-block:hover { background: var(--white); }

.partner-block h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 400;
  color: var(--dark);
  margin-block: 10px 14px;
  line-height: 1.15;
}

.partner-block p {
  font-size: .9rem;
  color: var(--text-lt);
  line-height: 1.78;
  margin-bottom: 10px;
}

.partner-block p:last-of-type { margin-bottom: 0; }

.divider {
  width: 100%;
  height: 1px;
  background: var(--border-solid);
  margin-block: 0 clamp(48px, 6vw, 72px);
}

/* Contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 20px;
}

.contact-direct-lead {
  font-size: .97rem;
  color: var(--text-lt);
  line-height: 1.78;
  max-width: 480px;
  margin-bottom: 32px;
}

.contact-email-btn {
  display: inline-flex;
  margin-bottom: 20px;
}

.contact-phone-alt {
  font-size: .84rem;
  color: var(--text-lt);
}

.contact-phone-alt a {
  color: var(--taupe);
  transition: color .18s;
}

.contact-phone-alt a:hover { color: var(--dark); }

/* Contact aside */
.contact-aside { }

.contact-aside h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 24px;
}

.contact-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-solid);
}

.contact-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-block h4 {
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-block p,
.contact-block a {
  display: block;
  font-size: .9rem;
  color: var(--text-lt);
  line-height: 1.62;
}

.contact-block a { transition: color .18s; }
.contact-block a:hover { color: var(--taupe); }

/* ─────────────── FOOTER ─────────────── */
.site-footer {
  background: var(--dark);
  padding-block-start: clamp(48px, 7vw, 76px);
  padding-block-end: 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 56px);
  border-bottom: 1px solid rgba(191, 166, 87, .15);
  margin-bottom: 28px;
}

.footer-brand .wordmark {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #F0EBE0;
  margin-bottom: 3px;
}

.footer-brand .est {
  display: block;
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: .82rem;
  color: rgba(240, 235, 224, .4);
  line-height: 1.68;
  max-width: 300px;
}

.footer-col h4 {
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: .82rem;
  color: rgba(240, 235, 224, .44);
  line-height: 1.7;
  transition: color .18s;
}

.footer-col a:hover { color: rgba(240, 235, 224, .88); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: .72rem;
  color: rgba(240, 235, 224, .26);
}

.footer-bottom a {
  font-size: .72rem;
  color: var(--gold);
  transition: color .18s;
}

.footer-bottom a:hover { color: var(--gold-lt); }

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 960px) {
  .intro-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-sidebar { position: static; }

  .producer-grid { grid-template-columns: 1fr 1fr; }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .pillars-grid,
  .partner-grid { grid-template-columns: 1fr; }

  .producer-grid { grid-template-columns: 1fr; }

  .process-step { grid-template-columns: 56px 1fr; gap: 18px; }

  .form-grid { grid-template-columns: 1fr; }

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

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.7rem; }
  .partner-block { padding: 28px 20px; }
}
