@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', system-ui, sans-serif; background: #fdfaf5; color: #321e10; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TOKENS ── */
:root {
  --cream-50:    #fdfaf5;
  --cream-100:   #f9f3e8;
  --cream-200:   #f2e6cc;
  --espresso-100:#e8ddd4;
  --espresso-200:#d1baab;
  --espresso-300:#b89278;
  --espresso-400:#9b6b4a;
  --espresso-500:#7c4f30;
  --espresso-600:#623c22;
  --espresso-700:#4a2c18;
  --espresso-800:#321e10;
  --espresso-900:#1e1208;
  --espresso-950:#120b04;
  --gold-400:    #d4a843;
  --gold-500:    #c49530;
  --gold-600:    #a67d22;
  --sage-500:    #6b8060;
  --sage-600:    #526347;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream-100); }
::-webkit-scrollbar-thumb { background: var(--espresso-300); border-radius: 3px; }

/* ── UTILITY ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px)  { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.section-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--espresso-400);
  margin-bottom: 14px;
}
.display-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.section-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.2;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--espresso-900);
}
.divider { width: 48px; height: 1px; background: var(--espresso-300); margin: 24px 0; }

/* Fade-up animation */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--espresso-800);
  color: var(--cream-50);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, box-shadow 0.3s;
}
.btn-primary:hover { background: var(--espresso-700); box-shadow: 0 8px 24px rgba(50,30,16,0.18); }

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--espresso-800);
  color: var(--espresso-800);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--espresso-800); color: var(--cream-50); }

.btn-outline-light {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid rgba(249,243,232,0.7);
  color: var(--cream-100);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.btn-outline-light:hover { background: var(--cream-100); color: var(--espresso-900); }

.btn-gold {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold-500);
  color: var(--espresso-950);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.btn-gold:hover { background: var(--gold-400); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,250,245,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--espresso-100);
  box-shadow: 0 1px 12px rgba(50,30,16,0.06);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.navbar-logo img {
  height: 88px;
  width: auto;
  mix-blend-mode: multiply;
  transition: transform 0.3s;
}
.navbar-logo:hover img { transform: scale(1.04); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--espresso-500);
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-500);
  transition: width 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--espresso-900); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  display: none;
  padding: 10px 20px;
  border: 1px solid var(--espresso-800);
  color: var(--espresso-800);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--espresso-800); color: var(--cream-50); }
@media (min-width: 768px) { .nav-cta { display: inline-block; } }

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 1px;
  background: var(--espresso-700);
  transition: all 0.3s;
}
.burger span:nth-child(1) { width: 24px; }
.burger span:nth-child(2) { width: 20px; }
.burger span:nth-child(3) { width: 24px; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); width: 24px; }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); width: 24px; }
@media (min-width: 1024px) { .burger { display: none; } }

/* Mobile drawer */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 90;
  background: rgba(18,11,4,0.8);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s;
}
.mobile-overlay.open { display: block; opacity: 1; }
.mobile-drawer {
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 100%;
  background: var(--cream-50);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.mobile-overlay.open .mobile-drawer { transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--espresso-100);
}
.drawer-head img { height: 72px; width: auto; mix-blend-mode: multiply; }
.drawer-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--espresso-600);
  transition: color 0.2s;
}
.drawer-close:hover { color: var(--espresso-900); }
.drawer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  gap: 2px;
}
.drawer-link {
  padding: 14px 0;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--espresso-500);
  border-bottom: 1px solid rgba(184,146,120,0.2);
  transition: color 0.2s;
}
.drawer-link:hover, .drawer-link.active { color: var(--espresso-900); }
.drawer-foot {
  padding: 0 24px 32px;
}
.drawer-foot .btn-primary { width: 100%; text-align: center; display: block; }
.drawer-email { margin-top: 16px; font-size: 0.7rem; color: var(--espresso-400); }
.drawer-email:hover { color: var(--espresso-700); }

@media (min-width: 1024px) { .nav-links { display: flex; } }
@media (max-width: 1023px) { .nav-links { display: none; } }

/* Page offset for fixed nav */
.page-top { padding-top: 88px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--espresso-950);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(196,149,48,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(98,60,34,0.15) 0%, transparent 55%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.25'/%3E%3C/svg%3E");
  opacity: 0.15;
}
.hero-vert {
  position: absolute;
  right: 40px; top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) { .hero-vert { display: flex; } }
.hero-vert-line { width: 1px; height: 60px; background: var(--espresso-700); }
.hero-vert-text {
  writing-mode: vertical-rl;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--espresso-500);
  font-weight: 500;
}
.hero-content { position: relative; padding: 100px 0 80px; }
.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  color: var(--cream-50);
  line-height: 1.0;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--gold-400); }
.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--espresso-300);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll p {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--espresso-500);
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: var(--espresso-600);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50%;
  background: var(--espresso-400);
  animation: scrollDrop 1.4s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ── INNER PAGE HERO ── */
.page-hero {
  position: relative;
  padding: 140px 0 72px;
  background: var(--espresso-950);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(196,149,48,0.1) 0%, transparent 55%);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--cream-50);
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 680px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-400); }
.page-hero p {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--espresso-300);
  max-width: 520px;
  line-height: 1.7;
}

/* ── SECTIONS ── */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 112px 0; }

.bg-cream   { background: var(--cream-50); }
.bg-cream2  { background: var(--cream-100); }
.bg-dark    { background: var(--espresso-950); }
.bg-dark2   { background: var(--espresso-900); }
.bg-dark3   { background: var(--espresso-800); }

/* ── GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 48px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 80px; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

/* ── WHY HADITHI ── */
.why-text p { color: var(--espresso-600); line-height: 1.8; margin-bottom: 16px; }
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--espresso-800);
  border-bottom: 1px solid var(--espresso-300);
  padding-bottom: 2px;
  transition: border-color 0.2s;
  margin-top: 8px;
}
.inline-link:hover { border-color: var(--espresso-800); }

/* ── STATS BAND ── */
.stats-band { padding: 56px 0; background: var(--espresso-900); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; text-align: center; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--gold-400);
  margin-bottom: 6px;
}
.stat-label { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--espresso-400); }

/* ── COFFEE CARDS ── */
.coffee-card {
  display: block;
  padding: 28px;
  color: var(--cream-50);
  transition: box-shadow 0.4s, transform 0.4s;
  text-decoration: none;
  height: 100%;
}
.coffee-card:hover { box-shadow: 0 20px 48px rgba(18,11,4,0.35); transform: translateY(-4px); }
.card-dark    { background: var(--espresso-900); }
.card-darker  { background: var(--espresso-800); }
.card-darkest { background: var(--espresso-700); }
.card-sage    { background: var(--sage-600); }
.card-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 8px;
  border: 1px solid rgba(196,149,48,0.35);
  color: var(--gold-400);
  margin-bottom: 20px;
}
.card-badge-sage { border-color: rgba(249,243,232,0.3); color: var(--cream-200); }
.card-arrow { margin-left: auto; opacity: 0.4; transition: opacity 0.3s, transform 0.3s; }
.coffee-card:hover .card-arrow { opacity: 0.9; transform: translate(3px,-3px); }
.card-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 8px;
}
.card-process { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(249,243,232,0.5); margin-bottom: 20px; }
.card-divider { width: 32px; height: 1px; background: rgba(249,243,232,0.25); margin-bottom: 20px; }
.card-notes { font-size: 0.82rem; font-weight: 500; color: var(--gold-400); margin-bottom: 8px; }
.card-notes-sage { color: var(--cream-200); }
.card-use { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(249,243,232,0.45); }

/* ── STEPS ── */
.step { border-top: 1px solid var(--espresso-200); padding-top: 24px; }
.step-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--espresso-200);
  margin-bottom: 16px;
}
.step-title { font-weight: 500; color: var(--espresso-800); margin-bottom: 8px; font-size: 0.95rem; }
.step-desc { font-size: 0.85rem; color: var(--espresso-500); line-height: 1.7; }

/* ── PARTNER BOXES ── */
.partner-box {
  border: 1px solid var(--espresso-700);
  padding: 24px;
  transition: border-color 0.3s;
}
.partner-box:hover { border-color: var(--espresso-500); }
.partner-icon { font-size: 1.8rem; margin-bottom: 12px; }
.partner-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; color: var(--cream-200); }

/* ── PHILOSOPHY ── */
.phil-item { text-align: center; padding: 0 16px; }
.phil-num {
  width: 40px; height: 40px;
  border: 1px solid var(--espresso-300);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--espresso-400);
}
.phil-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--espresso-900);
  margin-bottom: 12px;
}
.phil-gold { width: 32px; height: 1px; background: var(--gold-500); margin: 12px auto; }
.phil-desc { font-size: 0.85rem; color: var(--espresso-500); line-height: 1.7; }

/* ── QUOTE BAND ── */
.quote-band { padding: 72px 0; background: var(--espresso-800); text-align: center; }
.quote-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--cream-100);
  font-style: italic;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
}
.quote-text span { color: var(--gold-400); font-style: normal; font-weight: 400; }
.quote-divider { width: 60px; height: 1px; background: var(--gold-500); margin: 28px auto 12px; }
.quote-source { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--espresso-400); }

/* ── ACCORDION (Processing) ── */
.accordion-item { border: 1px solid var(--espresso-100); margin-bottom: 8px; transition: border-color 0.3s; }
.accordion-item.open { border-color: var(--espresso-400); box-shadow: 0 4px 16px rgba(50,30,16,0.08); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  gap: 16px;
  background: none;
  cursor: pointer;
  text-align: left;
}
.accordion-meta { display: flex; align-items: center; gap: 20px; min-width: 0; }
.accordion-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--espresso-200);
  flex-shrink: 0;
}
.accordion-info { min-width: 0; }
.accordion-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  color: var(--espresso-900);
}
.accordion-tag {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 2px 7px;
  margin-left: 10px;
  vertical-align: middle;
}
.tag-trad { background: var(--sage-600); color: var(--cream-100); }
.tag-exp  { background: var(--espresso-900); color: var(--gold-400); }
.accordion-headline { font-size: 0.82rem; color: var(--espresso-500); font-style: italic; margin-top: 4px; }
.accordion-toggle {
  width: 36px; height: 36px;
  border: 1px solid var(--espresso-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--espresso-400);
  flex-shrink: 0;
  transition: all 0.3s;
}
.accordion-item.open .accordion-toggle { background: var(--espresso-800); border-color: var(--espresso-800); color: var(--cream-50); transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.accordion-item.open .accordion-body { max-height: 600px; }
.accordion-content {
  padding: 0 28px 28px;
  border-top: 1px solid var(--espresso-100);
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .accordion-content { grid-template-columns: 2fr 1fr; } }
.accordion-desc { font-size: 0.9rem; color: var(--espresso-600); line-height: 1.8; }
.accordion-chars { }
.char-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--espresso-400); margin-bottom: 12px; }
.char-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.char-list li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--espresso-700); }
.char-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-500); flex-shrink: 0; }

/* ── REGION CARDS ── */
.region-card {
  border: 1px solid var(--espresso-700);
  padding: 28px;
  transition: border-color 0.3s;
}
.region-card:hover { border-color: var(--espresso-500); }
.region-icon { color: var(--gold-500); font-size: 1.2rem; margin-bottom: 16px; }
.region-alt { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--espresso-500); }
.region-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream-100);
  margin: 6px 0 4px;
}
.region-soil { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--espresso-400); margin-bottom: 16px; }
.region-divider { width: 32px; height: 1px; background: var(--espresso-600); margin-bottom: 16px; transition: background 0.3s; }
.region-card:hover .region-divider { background: var(--gold-600); }
.region-char { font-size: 0.85rem; color: var(--espresso-300); line-height: 1.7; }

/* ── COMMITMENT ITEMS ── */
.commit-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--espresso-100);
  transition: border-color 0.3s;
  align-items: flex-start;
}
.commit-item:hover { border-color: var(--espresso-300); }
.commit-icon { font-size: 1.5rem; color: var(--gold-500); flex-shrink: 0; margin-top: 2px; }
.commit-title { font-weight: 500; color: var(--espresso-800); margin-bottom: 6px; font-size: 0.9rem; }
.commit-desc { font-size: 0.82rem; color: var(--espresso-500); line-height: 1.7; }

/* ── OFFERING CARDS ── */
.offering-card {
  background: #fff;
  border: 1px solid var(--espresso-100);
  padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.offering-card:hover { border-color: var(--espresso-300); box-shadow: 0 8px 24px rgba(50,30,16,0.07); }
.offering-detail { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 4px; }
.offering-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--espresso-900);
  margin-bottom: 12px;
}
.offering-divider { width: 32px; height: 1px; background: var(--espresso-200); margin-bottom: 14px; }
.offering-desc { font-size: 0.82rem; color: var(--espresso-500); line-height: 1.7; }

/* ── REASON CARDS ── */
.reason-card {
  background: #fff;
  border: 1px solid var(--espresso-100);
  padding: 20px;
  transition: border-color 0.3s;
}
.reason-card:hover { border-color: var(--espresso-300); }
.reason-line { width: 24px; height: 1px; background: var(--gold-500); margin-bottom: 14px; }
.reason-title { font-weight: 500; color: var(--espresso-800); margin-bottom: 6px; font-size: 0.82rem; }
.reason-desc { font-size: 0.78rem; color: var(--espresso-500); line-height: 1.7; }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--espresso-500);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--espresso-900);
  border: 1px solid var(--espresso-700);
  padding: 14px 16px;
  color: var(--cream-100);
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold-600); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--espresso-600); }
.form-textarea { resize: none; }
.form-select option { background: var(--espresso-900); }
.enquiry-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 0; }
.enquiry-btn {
  padding: 10px 18px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--espresso-200);
  color: var(--espresso-500);
  transition: all 0.2s;
  cursor: pointer;
  background: none;
  font-family: 'Inter', sans-serif;
}
.enquiry-btn:hover, .enquiry-btn.active {
  background: var(--espresso-800);
  border-color: var(--espresso-800);
  color: var(--cream-50);
}
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--gold-500);
  color: var(--espresso-950);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}
.form-submit:hover { background: var(--gold-400); }
.form-success {
  display: none;
  text-align: center;
  padding: 64px 32px;
  border: 1px solid var(--espresso-100);
}
.form-success.show { display: block; }
.form-success-icon {
  width: 64px; height: 64px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold-500);
}
.form-success h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--espresso-900);
  margin-bottom: 12px;
}
.form-success p { font-size: 0.85rem; color: var(--espresso-500); max-width: 320px; margin: 0 auto 28px; }

/* ── COFFEE DETAIL (Coffees page) ── */
.coffee-row {
  border: 2px solid var(--espresso-100);
  margin-bottom: 16px;
  transition: all 0.3s;
  cursor: pointer;
}
.coffee-row.open { border-color: var(--espresso-400); box-shadow: 0 8px 24px rgba(50,30,16,0.1); }
.coffee-row-head { padding: 28px; }
.coffee-row-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.coffee-row-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 8px;
  margin-bottom: 10px;
}
.badge-exp  { background: var(--espresso-900); color: var(--gold-400); }
.badge-export { background: var(--sage-600); color: var(--cream-100); }
.coffee-row-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--espresso-900);
  line-height: 1.2;
}
.coffee-row-toggle {
  width: 36px; height: 36px;
  border: 1px solid var(--espresso-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--espresso-400);
  flex-shrink: 0;
  margin-top: 4px;
  transition: all 0.3s;
}
.coffee-row.open .coffee-row-toggle { background: var(--espresso-800); border-color: var(--espresso-800); color: var(--cream-50); transform: rotate(45deg); }
.coffee-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.coffee-tag {
  font-size: 0.75rem;
  padding: 5px 11px;
  background: var(--espresso-100);
  color: var(--espresso-600);
}
.coffee-row-meta { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; border-top: 1px solid var(--espresso-100); padding-top: 20px; }
.meta-key { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--espresso-400); margin-bottom: 4px; }
.meta-val { font-size: 0.82rem; font-weight: 500; color: var(--espresso-700); }
.coffee-row-body { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.coffee-row.open .coffee-row-body { max-height: 500px; }
.coffee-row-detail {
  padding: 24px 28px 28px;
  border-top: 1px solid var(--espresso-100);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .coffee-row-detail { grid-template-columns: 1fr 1fr; } }
.detail-key { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--espresso-400); margin-bottom: 8px; }
.detail-val { font-size: 0.88rem; color: var(--espresso-600); line-height: 1.7; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.detail-grid-item .detail-key { font-size: 0.58rem; }
.detail-grid-item .detail-val { font-size: 0.82rem; }

/* ── FILTER BAR ── */
.filter-bar {
  position: sticky;
  top: 88px;
  z-index: 30;
  background: rgba(253,250,245,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--espresso-100);
}
.filter-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-inner::-webkit-scrollbar { display: none; }
.filter-btn {
  white-space: nowrap;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  color: var(--espresso-400);
  transition: all 0.2s;
  cursor: pointer;
  background: none;
  font-family: 'Inter', sans-serif;
}
.filter-btn:hover { color: var(--espresso-700); }
.filter-btn.active { color: var(--espresso-900); border-bottom-color: var(--espresso-800); }
.filter-count { margin-left: auto; font-size: 0.7rem; color: var(--espresso-400); white-space: nowrap; }

/* ── CONTACT INFO ── */
.contact-detail { margin-bottom: 32px; }
.contact-key { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--espresso-400); margin-bottom: 6px; }
.contact-val {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--espresso-900);
  transition: color 0.2s;
}
a.contact-val:hover { color: var(--gold-600); }
.quick-links { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--espresso-100); }
.quick-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--espresso-500);
  padding: 8px 0;
  transition: color 0.2s;
}
.quick-link:hover { color: var(--espresso-900); }
.quick-link-line { width: 16px; height: 1px; background: var(--espresso-300); transition: all 0.2s; flex-shrink: 0; }
.quick-link:hover .quick-link-line { width: 24px; background: var(--espresso-700); }

/* ── FOOTER ── */
footer { background: var(--espresso-950); color: var(--cream-200); }
.footer-cta { border-bottom: 1px solid rgba(74,44,24,0.4); padding: 72px 0; }
.footer-cta-head {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream-100);
  line-height: 1.2;
}
.footer-cta-head em { font-style: italic; color: var(--gold-400); }
.footer-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .footer-cta-inner { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}
.footer-cta-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-main { padding: 56px 0; }
.footer-brand { }
.footer-logo img {
  height: 88px;
  width: auto;
  filter: invert(1) sepia(0.15) saturate(0.8) brightness(0.92);
  margin-bottom: 20px;
  transition: opacity 0.2s;
}
.footer-logo:hover img { opacity: 0.8; }
.footer-tagline { font-size: 0.85rem; color: var(--espresso-300); line-height: 1.7; max-width: 240px; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--espresso-700);
  display: flex; align-items: center; justify-content: center;
  color: var(--espresso-400);
  transition: all 0.2s;
}
.social-btn:hover { color: var(--cream-100); border-color: var(--cream-100); }
.footer-col-title { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; color: var(--espresso-500); margin-bottom: 20px; }
.footer-link { display: block; font-size: 0.85rem; color: var(--espresso-300); padding: 5px 0; transition: color 0.2s; }
.footer-link:hover { color: var(--cream-100); }
.footer-contact-key { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--espresso-500); margin-bottom: 4px; }
.footer-contact-val { font-size: 0.85rem; color: var(--espresso-300); margin-bottom: 16px; }
a.footer-contact-val:hover { color: var(--cream-100); }
.footer-bottom {
  border-top: 1px solid rgba(74,44,24,0.35);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-copy { font-size: 0.7rem; color: var(--espresso-500); }
.footer-tagmark { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--espresso-600); }

/* ── GRID RESPONSIVE FIX ── */
@media (min-width: 1024px) {
  .footer-main .grid-4 { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

/* ── UTILS ── */
.text-center { text-align: center; }
.mt-2  { margin-top: 8px; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-10 { margin-bottom: 40px; }
.gap-4 { gap: 16px; }
.flex  { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.max-w-lg { max-width: 580px; }
.max-w-xl { max-width: 680px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.dark-text { color: var(--espresso-600); line-height: 1.8; font-size: 0.95rem; }
.light-text { color: var(--espresso-300); line-height: 1.8; font-size: 0.95rem; }
.gold-text { color: var(--gold-400); }
.cream-text { color: var(--cream-100); }

/* ── LIGHT-BG FORM INPUTS (Contact page) ── */
.form-input.dark-input {
  background: #fff;
  border: 1px solid var(--espresso-200);
  color: var(--espresso-800);
}
.form-input.dark-input::placeholder { color: var(--espresso-300); }
.form-input.dark-input:focus { border-color: var(--espresso-600); }

/* ── WHOLESALE CARDS (Wholesale page) ── */
.wholesale-card {
  background: #fff;
  border: 1px solid var(--espresso-100);
  padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.wholesale-card:hover { border-color: var(--espresso-300); box-shadow: 0 8px 24px rgba(50,30,16,0.07); }

/* ── STORY GRID 2-COL (narrow left, wide right) ── */
.story-grid-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }
@media (max-width: 767px) { .story-grid-2 { grid-template-columns: 1fr; gap: 40px; } }

/* ── ENQUIRY TYPE GRID ── */
.enquiry-type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
@media (max-width: 480px) { .enquiry-type-grid { grid-template-columns: repeat(2, 1fr); } }
