/* ===================================================================
   SCCoffee — Global Stylesheet
   A modern, animated multipage site for a coffee producer & distributor
=================================================================== */

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

:root {
  --espresso: #241610;
  --coffee-dark: #3b2415;
  --coffee: #6f4527;
  --coffee-mid: #96633b;
  --latte: #e7d3b8;
  --cream: #faf5ec;
  --cream-2: #f2e9da;
  --gold: #cf9a4c;
  --gold-light: #e6bd76;
  --ink: #241a12;
  --ink-soft: #5a4a3c;
  --white: #ffffff;
  --line: rgba(36, 22, 16, 0.1);

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 18px rgba(36, 22, 16, 0.08);
  --shadow-md: 0 14px 40px rgba(36, 22, 16, 0.14);
  --shadow-lg: 0 30px 70px rgba(36, 22, 16, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--espresso); letter-spacing: -0.01em; }
p { color: var(--ink-soft); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; position: relative; }
.section-tight { padding: 70px 0; }
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-tight { padding: 48px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 3.2vw, 2.7rem); margin-bottom: 16px; }
.section-lead { font-size: 1.08rem; color: var(--ink-soft); }
.on-dark .section-lead,
.on-dark p { color: rgba(250, 245, 236, 0.72); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--cream); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--espresso);
  box-shadow: 0 12px 30px rgba(207, 154, 76, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(207, 154, 76, 0.45); }
.btn-outline {
  background: transparent;
  color: inherit;
  border: 1.5px solid currentColor;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.btn-dark { background: var(--espresso); color: var(--cream); }
.btn-dark:hover { background: var(--coffee-dark); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 11px 22px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 26px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar.solid {
  padding: 14px 0;
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(36,22,16,0.08);
}
.navbar.solid .nav-link,
.navbar.solid .brand { color: var(--espresso); }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--cream);
  transition: color 0.4s var(--ease);
}
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream);
  border-radius: 100px;
  transition: background 0.3s var(--ease), color 0.4s var(--ease);
  position: relative;
}
.nav-link:hover { background: rgba(255,255,255,0.12); }
.navbar.solid .nav-link:hover { background: var(--cream-2); }
.nav-link.active { color: var(--gold-light); font-weight: 600; }
.navbar.solid .nav-link.active { color: var(--gold); }
.nav-links > .btn-primary { display: none; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12);
  color: var(--cream);
}
.navbar.solid .nav-toggle { background: var(--cream-2); color: var(--espresso); }
.nav-toggle svg { width: 20px; height: 20px; }

/* ---------- Language toggle ---------- */
.lang-toggle {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 3px;
  flex-shrink: 0;
}
.navbar.solid .lang-toggle { background: var(--cream-2); }
.lang-btn {
  padding: 6px 11px;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(250,245,236,0.55);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  /* rendered as <a> so the Indonesian pages are crawlable */
  display: inline-block;
  text-decoration: none;
  line-height: 1.2;
}
.navbar.solid .lang-btn { color: var(--ink-soft); }
.lang-btn.active { background: var(--gold); color: var(--espresso); }
.lang-btn:not(.active):hover { background: rgba(255,255,255,0.12); }
.navbar.solid .lang-btn:not(.active):hover { background: rgba(36,22,16,0.08); }

@media (max-width: 980px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(340px, 84vw); height: 100vh; background: var(--espresso); flex-direction: column; align-items: flex-start; padding: 100px 32px 40px; gap: 4px; transform: translateX(100%); transition: transform 0.5s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,0.3); }
  .nav-links.open { transform: translateX(0); }
  .nav-link { color: var(--cream); width: 100%; padding: 14px 12px; }
  .nav-links > .btn-primary { display: inline-flex; margin-top: 18px; }
  .nav-toggle { display: grid; }
  .nav-cta .btn-primary { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 0%, #4a2c18 0%, var(--espresso) 55%, #170d08 100%);
  color: var(--cream);
}
.hero-inner {
  min-height: 62vh;
  padding-top: 140px;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  will-change: transform;
}
.blob-1 { width: 460px; height: 460px; background: radial-gradient(circle, var(--gold) 0%, transparent 70%); top: -120px; right: -80px; }
.blob-2 { width: 380px; height: 380px; background: radial-gradient(circle, var(--coffee-mid) 0%, transparent 70%); bottom: -140px; left: -60px; }
.blob-3 { width: 300px; height: 300px; background: radial-gradient(circle, #8a5a34 0%, transparent 70%); top: 40%; left: 55%; opacity: 0.35; }

.bean {
  position: absolute;
  opacity: 0.6;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.35));
  will-change: transform;
  animation: float 9s ease-in-out infinite;
}
.bean svg { width: 100%; height: 100%; display: block; }
.bean-1 { width: 46px; top: 22%; left: 8%; animation-delay: 0s; }
.bean-2 { width: 30px; top: 68%; left: 16%; animation-delay: 1.2s; opacity: 0.75; }
.bean-3 { width: 60px; top: 14%; right: 12%; animation-delay: 0.6s; }
.bean-4 { width: 34px; top: 76%; right: 22%; animation-delay: 2s; opacity: 0.7; }
.bean-5 { width: 24px; top: 46%; left: 4%; animation-delay: 2.6s; }
.bean-6 { width: 40px; top: 50%; right: 6%; animation-delay: 1.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-26px) rotate(12deg); }
}

/* ---------- Hero photo layer ---------- */
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0.55;
  z-index: 0;
}
.hero-photo-overlay {
  position: absolute; inset: 0;
  z-index: 0;
  background: linear-gradient(105deg,
    rgba(23,14,8,0.96) 0%,
    rgba(23,14,8,0.88) 28%,
    rgba(23,14,8,0.6) 52%,
    rgba(23,14,8,0.32) 74%,
    rgba(23,14,8,0.18) 100%);
}
@media (max-width: 720px) {
  .hero-photo-overlay { background: rgba(23,14,8,0.82); }
}

/* ---------- Terrain silhouette (hero) ---------- */
.hero-terrain {
  position: absolute; left: 0; right: 0; bottom: -2px;
  width: 100%; height: 34%; min-height: 140px;
  z-index: 1; pointer-events: none;
}
.hero-terrain .terrain-back { fill: rgba(0,0,0,0.22); }
.hero-terrain .terrain-mid { fill: rgba(0,0,0,0.32); }
.hero-terrain .terrain-front { fill: rgba(10,6,4,0.55); }
.hero-terrain .terrain-mist {
  fill: rgba(250,245,236,0.06);
  animation: mist-drift 14s ease-in-out infinite;
}
@keyframes mist-drift {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(2.5%); opacity: 1; }
}

/* ---------- Coffee branch illustration ---------- */
.branch-illustration { position: absolute; pointer-events: none; z-index: 1; }
.branch-illustration svg { width: 100%; height: 100%; overflow: visible; }
.branch-sway { transform-origin: 50% 100%; animation: branch-sway 7s ease-in-out infinite; }
@keyframes branch-sway {
  0%, 100% { transform: rotate(-1.6deg); }
  50% { transform: rotate(1.6deg); }
}
.leaf { transform-origin: center; animation: leaf-breathe 5s ease-in-out infinite; }
.leaf-2, .leaf-4 { animation-delay: 0.6s; }
.leaf-3, .leaf-5 { animation-delay: 1.2s; }
@keyframes leaf-breathe {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.03) rotate(-2deg); }
}
.cherry { animation: cherry-bob 4.5s ease-in-out infinite; transform-origin: center top; }
.cherry:nth-child(2n) { animation-delay: 0.8s; }
.cherry:nth-child(3n) { animation-delay: 1.6s; }
@keyframes cherry-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(2.5px); }
}

/* ---------- Steam / cup illustration ---------- */
.steam-illustration svg { width: 100%; height: 100%; overflow: visible; }
.steam-path {
  stroke-dasharray: 40;
  animation: steam-rise 3.2s ease-in-out infinite;
  transform-origin: center bottom;
}
.steam-path.s2 { animation-delay: 0.5s; }
.steam-path.s3 { animation-delay: 1s; }
@keyframes steam-rise {
  0% { opacity: 0; transform: translateY(6px) scaleY(0.8); }
  30% { opacity: 0.9; }
  100% { opacity: 0; transform: translateY(-22px) scaleY(1.15); }
}

.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px 9px 9px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.82rem; font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 26px; height: 26px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; color: var(--espresso); }
.hero-badge .dot svg { width: 13px; height: 13px; }

.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.5rem); color: var(--cream); margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 1.14rem; color: rgba(250,245,236,0.75); max-width: 560px; margin-bottom: 40px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 56px; }
.hero-actions .btn-outline { color: var(--cream); }

.hero-stats { display: flex; flex-wrap: wrap; gap: 40px; }
.hero-stat .num { font-family: var(--font-head); font-size: 2rem; color: var(--gold-light); font-weight: 700; display: flex; align-items: baseline; gap: 2px; }
.hero-stat .label { font-size: 0.82rem; color: rgba(250,245,236,0.6); margin-top: 4px; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2; color: rgba(250,245,236,0.55); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.scroll-cue .wheel { width: 24px; height: 38px; border: 1.5px solid rgba(250,245,236,0.4); border-radius: 20px; position: relative; }
.scroll-cue .wheel::before {
  content: ''; position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; background: var(--gold-light);
  border-radius: 3px; transform: translateX(-50%); animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel { 0% { opacity: 1; top: 7px; } 70% { opacity: 0; top: 20px; } 100% { opacity: 0; top: 7px; } }

/* Inner page hero (shorter) */
.hero-inner-page {
  min-height: 56vh;
  padding-top: 150px;
  padding-bottom: 70px;
}
.hero-inner-page .hero-content { max-width: 720px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: rgba(250,245,236,0.55); margin-bottom: 20px; }
.breadcrumb span { color: var(--gold-light); }

/* ---------- Reveal Animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.up { transform: translateY(34px); }
.reveal.left { transform: translateX(-40px); }
.reveal.right { transform: translateX(40px); }
.reveal.scale { transform: scale(0.9); }
.reveal.in-view { opacity: 1; transform: translate(0, 0) scale(1); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.4s; }

/* ---------- Grid utility ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  border: 1px solid var(--line);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cream-2), var(--latte));
  color: var(--coffee);
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { font-size: 0.95rem; }

/* Feature row (icon-left) */
.feature {
  display: flex; gap: 18px; align-items: flex-start;
}
.feature .card-icon { flex-shrink: 0; width: 48px; height: 48px; margin-bottom: 0; }
.feature h4 { font-size: 1.05rem; margin-bottom: 6px; }
.feature p { font-size: 0.92rem; }

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--espresso);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(207,154,76,0.18), transparent 55%);
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-item .num { font-family: var(--font-head); font-size: clamp(2.1rem, 3.4vw, 2.7rem); color: var(--gold-light); font-weight: 700; }
.stat-item .label { font-size: 0.86rem; color: rgba(250,245,236,0.65); margin-top: 6px; }
@media (max-width: 768px) { .stats-band { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--gold), var(--latte)); }
.timeline-item { position: relative; padding-bottom: 44px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -40px; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--cream); border: 3px solid var(--gold); }
.timeline-item .year { font-family: var(--font-head); font-weight: 700; color: var(--gold); font-size: 1.05rem; margin-bottom: 6px; }
.timeline-item h4 { font-size: 1.12rem; margin-bottom: 8px; }
.timeline-item p { font-size: 0.95rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 6px; }
.step .step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--espresso); font-family: var(--font-head); font-weight: 700;
  display: grid; place-items: center; margin-bottom: 18px; font-size: 1.1rem;
}
.step h4 { font-size: 1.02rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; }
.step:not(:last-child)::after {
  content: ''; position: absolute; top: 23px; left: 100%; width: 24px; height: 2px;
  background: var(--latte); display: none;
}
@media (min-width: 981px) { .step:not(:last-child)::after { display: block; } }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Region / product cards with image-style header ---------- */
.origin-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  border: 1px solid var(--line);
}
.origin-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.origin-media {
  height: 168px;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 18px;
  color: var(--cream);
}
.origin-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent 70%); }
.origin-media span { position: relative; z-index: 1; font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; }
.origin-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.origin-card:hover .origin-photo { transform: scale(1.06); }
.origin-body { padding: 22px 24px 26px; }
.origin-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.tag {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.03em;
  padding: 5px 12px; border-radius: 100px;
  background: var(--cream-2); color: var(--coffee);
}

.grad-1 { background: linear-gradient(135deg, #4a2c18, #7a4a26); }
.grad-2 { background: linear-gradient(135deg, #5c3620, #8f5a2f); }
.grad-3 { background: linear-gradient(135deg, #3a2415, #6a4428); }
.grad-4 { background: linear-gradient(135deg, #663d22, #9c6a3a); }
.grad-5 { background: linear-gradient(135deg, #442a18, #7c5230); }
.grad-6 { background: linear-gradient(135deg, #573319, #8a5c33); }

/* ---------- Split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split-media { position: relative; }
.media-frame {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3.1;
  background: linear-gradient(135deg, var(--coffee-dark), var(--coffee));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.media-frame::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 25% 20%, rgba(255,255,255,0.15), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0,0,0,0.25), transparent 50%);
}
.media-frame .decor-bean { position: absolute; opacity: 0.22; animation: float 10s ease-in-out infinite; }
.media-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.split-media:hover .media-photo { transform: scale(1.04); }
.media-frame.has-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,12,7,0) 45%, rgba(20,12,7,0.62) 100%);
}
.ship-illustration,
.sprout-illustration,
.steam-illustration { position: absolute; opacity: 0.9; z-index: 1; pointer-events: none; }
.ship-illustration svg { width: 100%; height: 100%; overflow: visible; }
.ship-bob { animation: ship-bob 5s ease-in-out infinite; transform-origin: center; }
@keyframes ship-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(-0.6deg); }
}
.sprout-illustration svg { width: 100%; height: 100%; overflow: visible; }
.sprout-grow { animation: sprout-grow 5s ease-in-out infinite; transform-origin: center bottom; }
@keyframes sprout-grow {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.05); }
}
.media-badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 18px 22px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
  max-width: 240px;
}
.media-badge .card-icon { margin-bottom: 0; }
.media-badge strong { display: block; font-family: var(--font-head); font-size: 1.05rem; color: var(--espresso); }
.media-badge span { font-size: 0.8rem; color: var(--ink-soft); }

.checklist { display: flex; flex-direction: column; gap: 14px; margin: 26px 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.96rem; color: var(--ink-soft); }
.checklist .check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--cream-2); color: var(--gold); display: grid; place-items: center; margin-top: 2px;
}
.checklist .check svg { width: 13px; height: 13px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--espresso), #4a2c18 60%, var(--coffee));
  border-radius: var(--radius-lg);
  padding: 68px 56px;
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(207,154,76,0.25), transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(207,154,76,0.18), transparent 50%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--cream); font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.cta-banner p { max-width: 560px; margin: 0 auto 32px; color: rgba(250,245,236,0.72); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn-outline { color: var(--cream); }
@media (max-width: 640px) { .cta-banner { padding: 48px 26px; } }

/* ---------- Quote / testimonial ---------- */
.quote-block {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 52px;
  position: relative;
}
.quote-block svg.quote-mark { width: 44px; height: 44px; color: var(--gold); opacity: 0.5; margin-bottom: 18px; }
.quote-block blockquote { font-family: var(--font-head); font-size: 1.35rem; color: var(--espresso); line-height: 1.5; margin-bottom: 22px; }
.quote-author { display: flex; align-items: center; gap: 14px; }
.quote-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--coffee), var(--coffee-mid)); display: grid; place-items: center; color: var(--cream); font-weight: 700; font-family: var(--font-head); }
.quote-author strong { display: block; font-size: 0.95rem; }
.quote-author span { font-size: 0.82rem; color: var(--ink-soft); }
@media (max-width: 640px) { .quote-block { padding: 32px 24px; } }

/* ---------- Table ---------- */
.spec-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.spec-table th, .spec-table td { text-align: left; padding: 16px 20px; font-size: 0.92rem; border-bottom: 1px solid var(--line); }
.spec-table th { background: var(--cream-2); color: var(--espresso); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }
.spec-table tr:last-child td { border-bottom: none; }
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); }

/* ---------- Accordion (FAQ) ---------- */
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item:first-child { border-top: 1px solid var(--line); }
.accordion-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 4px; font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--espresso);
  text-align: left;
}
.accordion-head .plus { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--cream-2); color: var(--coffee); display: grid; place-items: center; transition: transform 0.4s var(--ease), background 0.4s var(--ease); }
.accordion-item.open .accordion-head .plus { transform: rotate(135deg); background: var(--gold); color: var(--espresso); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.accordion-body-inner { padding: 0 4px 22px; font-size: 0.95rem; color: var(--ink-soft); max-width: 640px; }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } .form-card { padding: 28px 22px; } }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--espresso); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--cream); color: var(--ink); transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(207,154,76,0.15); }
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 10px; }
.form-success {
  display: none; align-items: center; gap: 12px; background: #eef7ef; color: #2e6b3a;
  padding: 16px 18px; border-radius: 12px; font-size: 0.9rem; margin-top: 18px; font-weight: 500;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-error {
  display: none; align-items: center; gap: 12px; background: #fbeae6; color: #9c3521;
  padding: 16px 18px; border-radius: 12px; font-size: 0.9rem; margin-top: 18px; font-weight: 500;
}
.form-error.show { display: flex; }
/* Spam honeypot: hidden from people, still filled in by bots. Kept out of
   the layout without display:none, which some bots skip. */
.hp-field {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* Contact info list */
.info-list { display: flex; flex-direction: column; gap: 22px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item h4 { font-size: 0.98rem; margin-bottom: 4px; }
.info-item p { font-size: 0.9rem; margin: 0; }
.info-item a:hover { color: var(--gold); }

.map-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--coffee-dark), var(--espresso));
  position: relative;
  display: grid; place-items: center;
  color: rgba(250,245,236,0.5);
}
.map-block .pin { width: 52px; height: 52px; border-radius: 50%; background: var(--gold); color: var(--espresso); display: grid; place-items: center; box-shadow: 0 0 0 10px rgba(207,154,76,0.2); animation: pulse 2.4s ease-in-out infinite; }
.map-block .pin svg { width: 24px; height: 24px; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 10px rgba(207,154,76,0.2); } 50% { box-shadow: 0 0 0 18px rgba(207,154,76,0.08); } }
.map-block .grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 36px 36px; }

/* ---------- Logos strip ---------- */
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px; opacity: 0.75; }
.logo-strip span { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--ink-soft); letter-spacing: 0.02em; }

/* ---------- Footer ---------- */
.footer { background: var(--espresso); color: rgba(250,245,236,0.7); padding-top: 90px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .brand { color: var(--cream); margin-bottom: 16px; }
.footer-brand p { max-width: 300px; font-size: 0.92rem; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: background 0.3s var(--ease), transform 0.3s var(--ease); }
.footer-social a:hover { background: var(--gold); color: var(--espresso); transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { color: var(--cream); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold-light); }
.footer-newsletter form { display: flex; gap: 0; margin-top: 16px; border: 1px solid rgba(255,255,255,0.15); border-radius: 100px; padding: 5px; }
.footer-newsletter input { flex: 1; background: transparent; border: none; padding: 10px 16px; color: var(--cream); font-size: 0.88rem; }
.footer-newsletter input::placeholder { color: rgba(250,245,236,0.4); }
.footer-newsletter button { background: var(--gold); color: var(--espresso); width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; transition: transform 0.3s var(--ease); }
.footer-newsletter button:hover { transform: scale(1.08); }
.footer-newsletter button svg { width: 16px; height: 16px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; font-size: 0.82rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }

@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 40px; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--espresso); color: var(--gold-light);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; }
.back-to-top:hover { background: var(--gold); color: var(--espresso); }

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--line); margin: 0; }
.on-dark .divider { background: rgba(255,255,255,0.1); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.bg-cream-2 { background: var(--cream-2); }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }

.page-loaded .hero-content > * { animation: enter 0.9s var(--ease) both; }
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-content > *:nth-child(3) { animation-delay: 0.25s; }
.hero-content > *:nth-child(4) { animation-delay: 0.35s; }
.hero-content > *:nth-child(5) { animation-delay: 0.45s; }
@keyframes enter { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
