/* ============================================================
   Superfruits Valley — styles.css
   Brand: Cormorant Garamond (headings) + Outfit (body/UI)
   Dominant: white/off-white, olive + gold accents
   ============================================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  --olive: #808C42;
  --olive-dark: #5E6830;
  --olive-light: #A3AE6E;
  --olive-pale: #F0F2E4;
  --gold: #C4851E;
  --gold-light: #E8A84A;
  --gold-pale: #FBF4E8;
  --terra: #A8522A;
  --plum: #52304E;
  --sage: #6B9E72;
  --sage-pale: #E8F2E9;
  --earth: #2C1F0E;
  --earth-light: #6B5E4A;
  --white: #FFFFFF;
  --off-white: #FAFAF7;
  --cream: #F7F2E8;
  --border: #ECECEA;
  --whatsapp: #25D366;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', 'Helvetica Neue', Arial, sans-serif;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-section: 96px;

  --radius-btn: 4px;
  --radius-card: 10px;
  --radius-pill: 100px;

  --shadow-card: 0 2px 12px rgba(44,31,14,0.07);
  --shadow-hover: 0 8px 32px rgba(44,31,14,0.13);

  --nav-height: 72px;
  --transition: 0.25s 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-body);
  font-weight: 300;
  color: var(--earth);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

/* ---------- Typography Helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: 12px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--earth);
}

h1 {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
}

h2 {
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 600;
}

h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
}

p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--earth-light);
}

.section-subtitle {
  font-size: 16px;
  color: var(--earth-light);
  margin-top: 12px;
  max-width: 560px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
}
.btn-primary:hover { background: var(--olive-dark); border-color: var(--olive-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--olive);
  border-color: var(--olive);
}
.btn-outline-dark:hover { background: var(--olive); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--olive);
  border-color: var(--white);
}
.btn-white:hover { background: var(--olive-pale); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
  font-size: 13px;
  padding: 16px 32px;
}
.btn-whatsapp:hover { background: #1ebe5b; border-color: #1ebe5b; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

@media (max-width: 768px) {
  .container { padding: 0 var(--space-md); }
}

/* ---------- Section Wrapper ---------- */
.section {
  padding: var(--space-section) 0;
}

.section-header {
  margin-bottom: var(--space-2xl);
}

.section-header-center {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.nav.transparent {
  background: transparent;
}

.nav.scrolled {
  background: rgba(94, 104, 48, 0.97); /* olive-dark — on brand, white logo stays white */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.nav-logo img {
  height: 40px;
  width: auto;
  /* white PNG — visible on dark backgrounds (index hero, scrolled nav) */
}

/* Interior pages: logo needs to be dark when nav is transparent over cream background */
.nav.transparent[data-nav-style="solid"] .nav-logo img { filter: brightness(0); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

.nav.transparent .nav-links a { color: rgba(255,255,255,0.9); }
.nav.transparent .nav-links a:hover { color: var(--white); }

/* Interior pages: transparent nav sits over cream background — links must be dark */
.nav.transparent[data-nav-style="solid"] .nav-links a { color: var(--earth); }
.nav.transparent[data-nav-style="solid"] .nav-links a:hover { color: var(--olive); }

.nav.scrolled .nav-links a { color: rgba(255,255,255,0.8); }
.nav.scrolled .nav-links a:hover { color: var(--white); }

.nav-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-btn);
  border: 1.5px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.nav.transparent .nav-cta,
.nav.scrolled .nav-cta {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
}

.nav-cta:hover { background: var(--olive-dark); border-color: var(--olive-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
}

.nav.scrolled .hamburger span { background: var(--white); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--space-lg) var(--space-xl);
  z-index: 999;
  flex-direction: column;
  gap: var(--space-md);
  box-shadow: 0 8px 24px rgba(44,31,14,0.08);
}

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

.mobile-menu a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--earth);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--olive); }

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--earth); /* fallback — keeps logo visible before image loads */
  background-image: url('../images/hero-figs-tray.jpg');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,18,10,0.72) 0%,    /* dark enough for white logo at top */
    rgba(20,18,10,0.42) 40%,
    rgba(20,18,10,0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: var(--nav-height);
}

.hero .eyebrow {
  color: rgba(255,255,255,0.75);
  font-size: 10px;
  letter-spacing: 2.5px;
}

.hero h1 {
  color: var(--white);
  margin: 16px 0 20px;
  line-height: 1.08;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero stats */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.15);
  background: rgba(20,18,10,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: stretch;
}

.hero-stat {
  flex: 1;
  padding: 20px var(--space-lg);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--white);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .hero-stats-inner {
    flex-wrap: wrap;
  }
  .hero-stat {
    flex: 0 0 50%;
    border-right: 1px solid rgba(255,255,255,0.12);
  }
  .hero-stat:nth-child(2n) { border-right: none; }
  .hero-stat:nth-last-child(-n+1) { flex: 0 0 100%; border-right: none; }
}

/* ============================================================
   FEATURED IN BAR
   ============================================================ */
.featured-bar {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.featured-bar-inner {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.featured-bar .eyebrow {
  margin-bottom: 0;
  flex-shrink: 0;
  color: var(--earth-light);
  font-size: 9px;
}

.featured-names {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.featured-names span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--earth);
  opacity: 0.32;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: opacity var(--transition);
}

.featured-names span:hover { opacity: 0.55; }

/* ============================================================
   OUR STORY
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.story-image-wrap {
  position: relative;
}

.story-image {
  width: 100%;
  padding-top: 125%; /* 4:5 ratio */
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.story-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-quote-card {
  position: absolute;
  bottom: var(--space-xl);
  left: -var(--space-xl);
  right: var(--space-xl);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-card);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-card);
  margin: 0 var(--space-md);
}

.story-quote-card blockquote {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--earth);
  line-height: 1.5;
  margin-bottom: 8px;
}

.story-quote-card cite {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--olive);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-style: normal;
}

.story-text h2 { margin-bottom: var(--space-lg); }

.story-text p {
  margin-bottom: var(--space-md);
}

.story-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.pillar {
  padding: 14px var(--space-lg);
  border-left: 3px solid var(--olive);
  background: var(--olive-pale);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.pillar strong {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--olive-dark);
  display: block;
  margin-bottom: 2px;
}

.pillar span {
  font-size: 13px;
  color: var(--earth-light);
}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .story-image {
    padding-top: 70%;
  }
}

/* ============================================================
   FRUIT GALLERY
   ============================================================ */
.fruit-gallery {
  background: var(--off-white);
}

.fruit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

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

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

.fruit-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: default;
}

.fruit-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.fruit-card-img {
  position: relative;
  overflow: hidden;
}

.fruit-card-img-inner {
  width: 100%;
  padding-top: 72%;
  position: relative;
}

.fruit-card-img-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fruit-card:hover .fruit-card-img-inner img {
  transform: scale(1.06);
}

.fruit-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--earth);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  z-index: 1;
}

.fruit-card-body {
  padding: var(--space-lg);
}

.fruit-card-body h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--earth);
  margin-bottom: 6px;
}

.fruit-card-body p {
  font-size: 13px;
  line-height: 1.65;
}

/* Horizontal fruit cards (lemons + soursop) */
.fruit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.fruit-card-h {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.fruit-card-h:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.fruit-card-h-img {
  flex: 0 0 40%;
  min-width: 0;
  overflow: hidden;
}

.fruit-card-h-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fruit-card-h:hover .fruit-card-h-img img {
  transform: scale(1.06);
}

.fruit-card-h-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fruit-card-h-body h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 6px;
}

.fruit-card-h-body p {
  font-size: 13px;
}

@media (max-width: 700px) {
  .fruit-row { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUCT LINES
   ============================================================ */
/* Fruju hero card */
.fruju-card {
  background: var(--olive);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: var(--space-lg);
}

.fruju-card-text {
  padding: var(--space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
}

.fruju-card-text .eyebrow {
  color: var(--gold-light);
}

.fruju-card-text h3 {
  color: var(--white);
  line-height: 1.1;
}

.fruju-card-text p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
}

.fruju-variants {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fruju-pill {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1.5px solid;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.fruju-card-img {
  overflow: hidden;
  min-height: 380px;
}

.fruju-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product grid cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.product-card-img {
  width: 100%;
  padding-top: 60%;
  position: relative;
  overflow: hidden;
}

.product-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-accent {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: var(--space-sm);
}

.product-card-body h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 4px;
}

.product-card-tagline {
  font-size: 13px;
  font-weight: 500;
  color: var(--earth-light);
  margin-bottom: var(--space-md);
}

.product-card-body p {
  font-size: 14px;
  flex: 1;
  margin-bottom: var(--space-lg);
}

@media (max-width: 900px) {
  .fruju-card { grid-template-columns: 1fr; }
  .fruju-card-img { min-height: 260px; }
  .product-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESTAURANTS
   ============================================================ */
.restaurants {
  background: var(--olive-pale);
}

/* Restaurant marquee carousel */
.restaurant-marquee {
  overflow: hidden;
  margin-top: var(--space-xl);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  align-items: center;
  animation: marquee-scroll 60s linear infinite;
}

/* Pause on hover — desktop only via pointer media */
@media (hover: hover) {
  .marquee-track:hover {
    animation-play-state: paused;
  }
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Per-logo card config — use .restaurant-logo-item--deep-earth for white-on-transparent logos */
.restaurant-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  width: 180px;
  height: 100px;
  padding: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.restaurant-logo-item:hover {
  border-color: rgba(128,140,66,0.4);
  box-shadow: 0 2px 14px rgba(0,0,0,0.08);
}

.restaurant-logo-item img {
  display: block;
  width: auto;
  height: auto;
  max-height: 60px;
  max-width: 85%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter var(--transition);
}

.restaurant-logo-item:hover img {
  filter: grayscale(0%);
}

/* Deep Earth card — for logos that are white on transparent (e.g. Firewood) */
.restaurant-logo-item--deep-earth {
  background: #2C1F0E;
  border-color: #2C1F0E;
}

.restaurant-logo-item--deep-earth img {
  filter: none;
}

.restaurant-logo-item--deep-earth:hover {
  border-color: #2C1F0E;
  box-shadow: 0 2px 14px rgba(0,0,0,0.3);
}

.restaurant-logo-item--deep-earth:hover img {
  filter: none;
}

/* Per-logo max-height overrides (desktop) */
.logo-akar img          { max-height: 70px; }
.logo-carbon img        { max-height: 55px; }
.logo-chocha img        { max-height: 65px; }
.logo-communal-table img { max-height: 45px; }
.logo-dewakan img       { max-height: 45px; }
.logo-firewood img      { max-height: 55px; }
.logo-gen img           { max-height: 60px; }
.logo-hide img          { max-height: 55px; }
.logo-joloko img        { max-height: 55px; }
.logo-locus img         { max-height: 50px; }
.logo-reka img          { max-height: 60px; }
.logo-reuf img          { max-height: 50px; }

/* Partner list below carousel */
.partner-list-wrap {
  text-align: center;
  margin: 64px auto 24px;
}

.partner-list-wrap::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(128, 140, 66, 0.3);
  margin: 0 auto 20px;
}

.partner-list {
  font-family: var(--font-body);
  font-size: 13px;
  /* rgba avoids opacity stacking with child .partner-list-label */
  color: rgba(107, 94, 74, 0.65);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.partner-list-label {
  display: block;
  font-size: 11px;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--olive);
  margin-bottom: 8px;
}

/* Mobile: 140px x 80px, 2.5 visible */
@media (max-width: 768px) {
  .marquee-track {
    gap: 8px;
  }

  .restaurant-logo-item {
    width: 140px;
    height: 80px;
    padding: 12px;
  }

  .restaurant-logo-item img {
    max-height: 48px;
    max-width: 85%;
  }

  /* Logos that need to stay smaller than 48px on mobile */
  .logo-communal-table img { max-height: 36px; }
  .logo-dewakan img        { max-height: 36px; }

  /* Reset larger desktop overrides to mobile base */
  .logo-akar img  { max-height: 48px; }
  .logo-chocha img { max-height: 48px; }

  .partner-list-wrap {
    margin: 48px 0 24px;
    padding: 0 20px;
  }

  .partner-list {
    max-width: 90%;
    font-size: 12px;
  }
}


/* ============================================================
   MEDIA & RECOGNITION
   ============================================================ */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.media-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-xl);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.media-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--olive-light);
}

a.media-card .media-card-source::after {
  content: ' ↗';
  font-size: 11px;
  opacity: 0.5;
}

.media-card-source {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--olive-dark);
}

.media-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--earth-light);
  flex: 1;
}

.media-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.media-badge {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--olive-pale);
  color: var(--olive);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

.media-year {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--earth-light);
  opacity: 0.6;
}

/* NCER Stats Bar */
.ncer-stats {
  background: var(--olive);
  border-radius: var(--radius-card);
  padding: var(--space-xl) var(--space-3xl);
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.ncer-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  flex-shrink: 0;
}

.ncer-stats-row {
  display: flex;
  gap: var(--space-3xl);
  flex-wrap: wrap;
  flex: 1;
}

.ncer-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ncer-stat-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--white);
  line-height: 1;
}

.ncer-stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}

@media (max-width: 768px) {
  .ncer-stats { padding: var(--space-lg); gap: var(--space-lg); }
  .ncer-stats-row { gap: var(--space-xl); }
}

/* ============================================================
   VISIT SECTION
   ============================================================ */
.visit-section {
  background: var(--off-white);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.visit-info h2 {
  margin-bottom: var(--space-lg);
  white-space: pre-line;
}

.visit-info > p {
  margin-bottom: var(--space-xl);
  max-width: 440px;
}

.visit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.visit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
}

.visit-card-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: 4px;
}

.visit-card-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--earth);
  line-height: 1.3;
}

.visit-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.visit-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.visit-photo {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.visit-photo:hover img { transform: scale(1.05); }

@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
  .visit-photo { aspect-ratio: 1/1; }
}

@media (max-width: 560px) {
  .visit-photo-grid { grid-template-columns: 1fr 1fr; }
  .visit-cards { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CONTACT / ENQUIRY
   ============================================================ */
.contact-section {
  background: var(--olive);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-col .eyebrow {
  color: var(--gold-light);
}

.contact-col h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.contact-col p {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-xl);
}

.contact-phone {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  display: block;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.quick-order-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.quick-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition);
}

.quick-link:hover {
  background: rgba(255,255,255,0.22);
  color: var(--white);
}

/* Form */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-btn);
  padding: 12px 16px;
  width: 100%;
  outline: none;
  transition: background var(--transition), border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.enquiry-form select {
  color: rgba(255,255,255,0.8);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.6)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.enquiry-form select option {
  background: var(--olive-dark);
  color: var(--white);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.55);
}

.enquiry-form textarea {
  resize: vertical;
  min-height: 110px;
}

.form-footer-note {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: var(--space-sm);
}

.form-footer-note a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1C1C1A;
  color: rgba(255,255,255,0.75);
  padding: var(--space-section) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 36px;
  margin-bottom: var(--space-md);
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  max-width: 240px;
  line-height: 1.7;
}

.footer-col-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

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

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

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  opacity: 0;
  transform: scale(0.85) translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow var(--transition);
  pointer-events: none;
}

.whatsapp-float.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.whatsapp-float:hover {
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */
.img-placeholder {
  background: var(--olive-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--olive);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: var(--space-md);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ============================================================
   INNER PAGE HERO (story, products, visit, journal)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-height) + 64px) 0 80px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.page-hero .eyebrow { color: var(--olive); }
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); margin-top: 12px; }
.page-hero p { max-width: 560px; margin-top: 16px; font-size: 17px; }

/* ============================================================
   JOURNAL CARD
   ============================================================ */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.journal-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.journal-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.journal-card-img {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}

.journal-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-card-body {
  padding: var(--space-xl);
}

.journal-card-body .eyebrow {
  margin-bottom: 8px;
}

.journal-card-body h3 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 8px;
}

.journal-card-body p {
  font-size: 14px;
  margin-bottom: var(--space-md);
}

.journal-read-more {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.journal-read-more:hover { gap: 10px; }

/* ============================================================
   UTILITY
   ============================================================ */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

.text-olive { color: var(--olive); }
.text-gold { color: var(--gold); }
.text-earth { color: var(--earth); }
.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-olive-pale { background: var(--olive-pale); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   FOUNDER NOTE
   ============================================================ */
.founder-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: var(--olive-pale);
  border-radius: var(--radius-card);
  padding: var(--space-lg) var(--space-xl);
  border-left: 3px solid var(--olive);
}

.founder-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.founder-note-text strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--earth);
}

.founder-note-text span {
  display: block;
  font-size: 11px;
  color: var(--olive-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.founder-note-text p {
  font-size: 14px;
  color: var(--earth-light);
  line-height: 1.65;
  font-style: italic;
  margin: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--olive-light);
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 20px;
  opacity: 0.4;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.6;
  color: var(--earth);
  padding-top: 28px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
}

.testimonial-author strong {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--earth);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--earth-light);
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .founder-note { flex-direction: column; }
}
