/* ═══════════════════════════════════════════════
   MAK PIK — Components
   All UI components for the single-page site
   ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(var(--color-bg-dark-rgb), 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 134, 60, 0.15);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
  background: rgba(var(--color-bg-dark-rgb), 0.98);
  box-shadow: var(--shadow-lg);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height-mobile, 62px);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

@media (min-width: 860px) {
  .header__inner {
    height: var(--header-height, 72px);
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-light);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  z-index: calc(var(--z-sticky) + 1);
}

.header__logo img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1.5px solid rgba(232, 184, 109, 0.45);
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

@media (min-width: 860px) {
  .header__logo {
    gap: var(--space-sm);
    font-size: 1.5rem;
  }
  .header__logo img {
    width: 44px;
    height: 44px;
  }
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__logo-brand {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--color-gold);
}

.header__logo-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: var(--fw-regular);
  color: var(--color-cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

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

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__link {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-gold);
  background: rgba(184, 134, 60, 0.1);
}

.nav__link.active {
  font-weight: var(--fw-semibold);
}

/* Right side controls */
.header__controls {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

@media (min-width: 860px) {
  .header__controls {
    gap: var(--space-md);
  }
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  padding: 2px;
  border: 1px solid rgba(184, 134, 60, 0.2);
}

.lang-toggle__btn {
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  color: var(--color-cream);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  opacity: 0.6;
  letter-spacing: 0.05em;
}

@media (min-width: 860px) {
  .lang-toggle__btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

.lang-toggle__btn.active {
  background: var(--color-gold);
  color: var(--color-maroon-dark);
  opacity: 1;
}

.lang-toggle__btn:hover:not(.active) {
  opacity: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.hamburger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-cream);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-fast), background var(--transition-fast);
  transform-origin: center;
  pointer-events: none;
}

.hamburger.open .hamburger__line {
  background: var(--color-gold);
}

.hamburger.open .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--color-maroon-dark) 0%,
    var(--color-maroon) 40%,
    var(--color-brown-dark) 100%
  );
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(
    ellipse at center,
    rgba(184, 134, 60, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Decorative curves (from PDF design) */
.hero__curve {
  position: absolute;
  pointer-events: none;
}

.hero__curve--top {
  top: 0;
  right: 0;
  width: 40%;
  opacity: 0.15;
}

.hero__curve--bottom {
  bottom: 0;
  left: 0;
  width: 30%;
  opacity: 0.1;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
  padding-top: calc(var(--header-height-mobile, 62px) + 24px);
  padding-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero__inner {
    padding-top: calc(var(--header-height, 72px) + 40px);
    padding-bottom: var(--space-3xl);
    gap: var(--space-2xl);
  }
}

.hero__content {
  color: var(--color-text-light);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  background: rgba(184, 134, 60, 0.15);
  border: 1px solid rgba(184, 134, 60, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  font-weight: var(--fw-medium);
  color: var(--color-gold-light);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.hero__title span {
  color: var(--color-gold);
  display: block;
}

.hero__desc {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-relaxed);
  color: var(--color-cream);
  opacity: 0.85;
  max-width: 50ch;
  margin-bottom: var(--space-xl);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__media img {
  max-height: clamp(220px, 40vw, 460px);
  width: auto;
  border-radius: var(--radius-xl);
  border: 3px solid rgba(232, 184, 109, 0.6);
  box-shadow: 0 16px 40px rgba(184, 134, 60, 0.25);
  animation: heroFloat 6s ease-in-out infinite;
  object-fit: contain;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ═══════════════════════════════════
   BUTTONS
   ═══════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-xl);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
  min-height: 48px;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-maroon-dark);
  border-color: var(--color-gold);
}

.btn--primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  color: var(--color-cream);
  border-color: rgba(231, 218, 192, 0.4);
}

.btn--outline:hover {
  background: rgba(231, 218, 192, 0.1);
  border-color: var(--color-cream);
}

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

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

.btn svg,
.btn .btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════
   STAT BAND
   ═══════════════════════════════════ */
.stat-band {
  background: var(--color-maroon-dark);
  border-top: 1px solid rgba(184, 134, 60, 0.2);
  border-bottom: 1px solid rgba(184, 134, 60, 0.2);
}

.stat-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  padding-block: var(--space-xl);
}

.stat-band__item {
  text-align: center;
  padding: var(--space-md);
}

.stat-band__number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-band__label {
  font-size: var(--fs-caption);
  color: var(--color-cream);
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: var(--fw-medium);
}

/* ═══════════════════════════════════
   CARD
   ═══════════════════════════════════ */
.card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card__body {
  padding: var(--space-lg);
}

.card__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
  color: var(--color-maroon);
}

.card__desc {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: var(--lh-normal);
}

/* Product card */
.product-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(45, 20, 10, 0.06);
  transition: all var(--transition-base);
  border: 1.5px solid rgba(232, 184, 109, 0.35);
  display: flex;
  flex-direction: column;
  padding: 14px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(45, 20, 10, 0.12);
  border-color: var(--color-gold);
}

.product-card__image-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
  margin-bottom: var(--space-xs);
}

.product-card__image-wrap img {
  display: block;
  height: 260px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(232, 184, 109, 0.45);
  box-shadow: 0 4px 14px rgba(45, 20, 10, 0.08);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

@media (min-width: 860px) {
  .product-card__image-wrap img {
    height: 290px;
  }
}

.product-card:hover .product-card__image-wrap img {
  border-color: var(--color-gold);
  box-shadow: 0 8px 24px rgba(184, 134, 60, 0.2);
}

.product-card__body {
  padding: 16px 6px 6px 6px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__variant {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 4px 12px;
  background: rgba(232, 184, 109, 0.14);
  border: 1.5px solid var(--color-gold);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  color: #8c5b16;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  line-height: 1;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--color-maroon);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-card__desc {
  font-size: 0.88rem;
  color: #5a4b41;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.product-card__sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.product-card__size {
  padding: 5px 12px;
  background: #fdfaf5;
  border: 1px solid rgba(232, 184, 109, 0.4);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: var(--fw-semibold);
  color: #6e5539;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════
   WHY US GRID — keunggulan kompetitif
   ═══════════════════════════════════ */
.why-card {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-gold);
  border-radius: var(--radius-full);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-base);
}

.why-card:hover::before {
  transform: scaleY(1);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 134, 60, 0.3);
}

.why-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  color: var(--color-gold);
}

.why-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-gold);
}

.why-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--color-maroon);
  margin-bottom: var(--space-sm);
}

.why-card__desc {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: var(--lh-normal);
}

/* ═══════════════════════════════════
   PROCESS FLOW — 7 langkah produksi
   ═══════════════════════════════════ */
.process-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  counter-reset: process-step;
}

.process-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  counter-increment: process-step;
  position: relative;
}

@media (min-width: 860px) {
  .process-step {
    gap: var(--space-lg);
  }
}

.process-step__number {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-maroon);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

/* Connecting line */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 42px;
  width: 2px;
  height: calc(100% + var(--space-lg) - 42px);
  background: linear-gradient(to bottom, var(--color-gold), var(--color-border));
  z-index: 0;
}

@media (min-width: 860px) {
  .process-step__number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 1.25rem;
  }
  .process-step:not(:last-child)::after {
    left: 28px;
    top: 56px;
    height: calc(100% + var(--space-lg) - 56px);
  }
}

.process-step__content {
  padding-top: var(--space-sm);
}

.process-step__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--color-maroon);
  margin-bottom: var(--space-xs);
}

.process-step__desc {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: var(--lh-normal);
}

/* ═══════════════════════════════════
   OFF-CANVAS MOBILE DRAWER NAVIGATION
   Reference: bawanggoreng.co.id
   ═══════════════════════════════════ */
.nav-drawer__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 14, 11, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-drawer__backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 320px;
  max-width: 84vw;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, visibility 0.35s ease;
  overflow: hidden;
}

.nav-drawer.open {
  transform: translateX(0);
  visibility: visible;
  box-shadow: 12px 0 40px rgba(0, 0, 0, 0.35);
}

.nav-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #eee8df;
  background: #fbf9f6;
}

.nav-drawer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-drawer__brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1.5px solid rgba(232, 184, 109, 0.45);
  background: #ffffff;
}

.nav-drawer__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-drawer__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  color: var(--color-maroon);
  letter-spacing: 0.04em;
}

.nav-drawer__subtitle {
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-drawer__close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e2ded5;
  border-radius: 8px;
  color: #4a3e35;
  cursor: pointer;
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.nav-drawer__close:hover,
.nav-drawer__close:active {
  background: #fdfaf3;
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.nav-drawer__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 14px;
}

.nav-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-drawer__link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: var(--fw-medium);
  color: #3f352b;
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.nav-drawer__link:hover {
  background: #f6f2ea;
  color: var(--color-maroon);
}

.nav-drawer__link.active {
  color: var(--color-gold);
  font-weight: var(--fw-bold);
  background: #fdfaf3;
  border-left: 3px solid var(--color-gold);
  padding-left: 14px;
}

.nav-drawer__footer {
  padding: 16px 20px;
  border-top: 1px solid #eee8df;
  background: #fbf9f6;
}

.nav-drawer__footer-label {
  display: block;
  font-size: 0.72rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8c8074;
  margin-bottom: 8px;
}

.nav-drawer__lang {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.nav-drawer__lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e2ded5;
  font-size: 0.85rem;
  font-weight: var(--fw-semibold);
  color: #4a3e35;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nav-drawer__lang-btn.active {
  border-color: var(--color-gold);
  background: #fdfaf3;
  color: var(--color-maroon);
  font-weight: var(--fw-bold);
  box-shadow: 0 2px 6px rgba(184, 134, 60, 0.15);
}

/* ═══════════════════════════════════
   KAPASITAS PRODUKSI — EDITORIAL SUITE
   ═══════════════════════════════════ */
/* Section Tag */
.section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(184, 134, 60, 0.15);
  border: 1px solid rgba(184, 134, 60, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.section-tag--gold {
  background: linear-gradient(135deg, rgba(184, 134, 60, 0.25), rgba(184, 134, 60, 0.08));
  border-color: var(--color-gold);
}

/* Metric Highlights Bar */
.cap-stats-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  background: rgba(30, 23, 18, 0.75);
  border: 1px solid rgba(184, 134, 60, 0.28);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
  .cap-stats-bar {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    padding: var(--space-xl) var(--space-2xl);
  }
}

.cap-stat-item {
  text-align: center;
}

.cap-stat-val {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-cream);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.cap-stat-label {
  font-size: 0.95rem;
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.cap-stat-sub {
  font-size: 0.8rem;
  color: var(--color-cream);
  opacity: 0.72;
  margin: 0;
}

.cap-stat-divider {
  display: none;
}

@media (min-width: 768px) {
  .cap-stat-divider {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(184, 134, 60, 0.4), transparent);
  }
}

/* Editorial Split (Specs + Real Photo Mosaic) */
.cap-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-2xl);
}

@media (min-width: 900px) {
  .cap-editorial {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-2xl);
  }
}

.cap-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: var(--fw-bold);
  color: var(--color-cream);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.cap-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--color-gold);
}

.cap-spec-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.cap-spec-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.cap-spec-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  opacity: 0.8;
  line-height: 1;
  padding-top: 2px;
}

.cap-spec-body {
  flex: 1;
}

.cap-spec-title {
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  color: var(--color-cream);
  margin-bottom: 4px;
}

.cap-spec-desc {
  font-size: var(--fs-small);
  color: var(--color-cream);
  opacity: 0.78;
  line-height: 1.6;
  margin: 0;
}

/* Asymmetric Photo Mosaic (Real Plant Photos) */
.cap-photo-mosaic {
  position: relative;
  border-radius: var(--radius-xl);
  padding-bottom: 30px;
}

.cap-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(184, 134, 60, 0.25);
}

.cap-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.cap-photo:hover img {
  transform: scale(1.03);
}

.cap-photo__tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(18, 14, 11, 0.85);
  backdrop-filter: blur(4px);
  color: var(--color-cream);
  font-size: 0.72rem;
  font-weight: var(--fw-semibold);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(184, 134, 60, 0.3);
  letter-spacing: 0.04em;
}

.cap-photo--main {
  width: 90%;
  height: 280px;
}

@media (min-width: 600px) {
  .cap-photo--main {
    height: 320px;
  }
}

.cap-photo--sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 190px;
  border: 3px solid #1D1713;
  z-index: 2;
}

.cap-badge-floating {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  background: rgba(27, 21, 17, 0.92);
  border: 1px solid var(--color-gold);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.cap-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 8px #2ecc71;
}

.cap-photo__caption {
  font-size: 0.75rem;
  color: var(--color-cream);
  opacity: 0.6;
  text-align: right;
  margin-top: 8px;
  font-style: italic;
}

/* ═══════════════════════════════════
   DISTRIBUTION MAP & TRADE LANES
   ═══════════════════════════════════ */
.dist-showcase {
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(184, 134, 60, 0.2);
}

.dist-showcase__header {
  max-width: 720px;
  margin: 0 auto var(--space-xl);
}

.dist-showcase__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.95rem);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-xs);
}

.dist-showcase__desc {
  font-size: var(--fs-small);
  color: var(--color-cream);
  opacity: 0.78;
  line-height: 1.6;
  margin: 0;
}

/* Telemetry Status Strip on top of the map */
.dist-map-telemetry {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  background: rgba(22, 17, 13, 0.95);
  border: 1px solid rgba(184, 134, 60, 0.3);
  border-bottom: none;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 12px 20px;
  font-size: 0.82rem;
  color: var(--color-cream);
}

.telemetry-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.telemetry-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 8px #2ecc71;
}

.telemetry-label {
  opacity: 0.7;
}

.telemetry-val {
  font-weight: var(--fw-bold);
  color: var(--color-gold);
}

.telemetry-badge {
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(184, 134, 60, 0.15);
  border: 1px solid rgba(184, 134, 60, 0.35);
  color: var(--color-gold);
}

.dist-map-card {
  background: #140F0C;
  border: 1px solid rgba(184, 134, 60, 0.3);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: var(--space-xs);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}

/* World Map & Focused Map SVG Elements */
.wmap-svg, .fmap-svg {
  width: 100%;
  height: auto;
  display: block;
  min-height: 280px;
  background: radial-gradient(circle at 78% 58%, #201712 0%, #130E0B 70%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.wmap-grid, .fmap-grid {
  stroke: rgba(255, 255, 255, 0.06);
  stroke-dasharray: 4 8;
}

.wmap-grid--equator, .fmap-grid--equator {
  stroke: rgba(232, 184, 109, 0.35);
  stroke-dasharray: 6 6;
}

.wmap-country, .fmap-land {
  fill: #221A15;
  stroke: #3A2E25;
  stroke-width: 0.65;
  transition: fill 0.25s ease, stroke 0.25s ease;
}

.wmap-country:hover, .fmap-land:hover {
  fill: #3E2B1F;
  stroke: #E8B86D;
  cursor: pointer;
}

.wmap-country--origin, .fmap-land--idn {
  fill: #4E2E18;
  stroke: #E8B86D;
  stroke-width: 1.25;
  filter: drop-shadow(0 0 2px rgba(232, 184, 109, 0.4));
}

.wmap-country--partner, .fmap-land--my, .fmap-land--sg {
  fill: #38251A;
  stroke: #E8B86D;
  stroke-width: 1.1;
}

/* Animated Trade Routes */
.wmap-route, .fmap-route {
  stroke-dasharray: 6 5;
  stroke-linecap: round;
  fill: none;
  animation: routeFlow 3s linear infinite;
  transition: stroke-width 0.3s, stroke 0.3s, filter 0.3s;
}

.wmap-route--primary, .fmap-route--sg, .fmap-route--my {
  stroke: #E8B86D;
  stroke-width: 2.2;
  filter: drop-shadow(0 0 4px rgba(232, 184, 109, 0.6));
}

.wmap-route--domestic, .fmap-route--sum, .fmap-route--jawa {
  stroke: #C9A060;
  stroke-width: 1.8;
  stroke-dasharray: 5 4;
}

.wmap-route.is-highlighted, .fmap-route.is-highlighted {
  stroke: #FFF !important;
  stroke-width: 3.5 !important;
  filter: drop-shadow(0 0 8px #E8B86D) !important;
}

@keyframes routeFlow {
  from { stroke-dashoffset: 44; }
  to { stroke-dashoffset: 0; }
}

.wmap-hub-pulse, .fmap-hub-wave {
  animation: hubPulsing 2.5s ease-out infinite;
  transform-origin: center;
}

@keyframes hubPulsing {
  0% { transform: scale(0.6); opacity: 0.95; }
  100% { transform: scale(1.8); opacity: 0; }
}

.wmap-node, .fmap-node {
  transition: transform 0.3s ease, fill 0.3s ease;
}

.wmap-node--active {
  fill: #FFFFFF;
  stroke: #E8B86D;
  stroke-width: 2;
}

.wmap-node--dom {
  fill: #E7DAC0;
  stroke: #B8863C;
  stroke-width: 1.5;
}

.wmap-tag text, .fmap-tag text {
  font-family: 'Nunito Sans', sans-serif;
  letter-spacing: 0.02em;
}

/* Route Specifications Grid */
.dist-routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 600px) {
  .dist-routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .dist-routes-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.route-spec-card {
  background: rgba(28, 22, 18, 0.78);
  border: 1px solid rgba(184, 134, 60, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  cursor: pointer;
}

.route-spec-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  background: rgba(42, 32, 25, 0.95);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.route-spec-card--featured {
  border-color: var(--color-gold);
  background: linear-gradient(145deg, rgba(52, 38, 28, 0.85), rgba(28, 21, 16, 0.92));
  box-shadow: 0 6px 20px rgba(184, 134, 60, 0.18);
}

.route-spec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-xs);
}

.route-pill {
  font-size: 0.68rem;
  font-weight: var(--fw-bold);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(231, 218, 192, 0.25);
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.route-pill--gold {
  background: linear-gradient(135deg, var(--color-gold), #d4af37);
  color: #1a120b;
  border: none;
  font-weight: 800;
}

.route-badge-cross {
  font-size: 0.68rem;
  font-weight: var(--fw-semibold);
  color: var(--color-gold);
}

.route-spec-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  color: var(--color-cream);
  margin-bottom: var(--space-xs);
}

.route-spec-desc {
  font-size: var(--fs-small);
  color: var(--color-cream);
  opacity: 0.78;
  line-height: 1.55;
  margin: 0;
}

/* ═══════════════════════════════════
   OFFICIAL DOCUMENT PHYSICAL EXHIBITION
   ═══════════════════════════════════ */
.cert-showcase {
  margin-top: var(--space-xl);
}

.cert-showcase__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: var(--fw-bold);
  color: #ffffff;
  margin-bottom: 4px;
}

.cert-showcase__sub {
  font-size: var(--fs-small);
  color: var(--color-cream);
  opacity: 0.75;
  margin: 0;
}

.cert-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .cert-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .cert-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
  }
}

.cert-item {
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(231, 218, 192, 0.4);
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.cert-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  border-color: var(--color-gold);
}

.cert-item__frame {
  position: relative;
  width: 100%;
  height: 280px;
  background: #fbf9f4;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid #ebdcc5;
}

.cert-item__frame img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  background: #ffffff;
  transition: transform var(--transition-base);
}

.cert-item:hover .cert-item__frame img {
  transform: scale(1.04);
}

.cert-item__action {
  position: absolute;
  inset: 0;
  background: rgba(28, 14, 17, 0.75);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.cert-item:hover .cert-item__action {
  opacity: 1;
}

.cert-item__zoom-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-maroon);
  color: #ffffff;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: var(--fw-bold);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--color-gold);
}

.cert-item__meta {
  padding: var(--space-md) var(--space-lg);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.cert-item__org {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 3px 10px;
  background: rgba(139, 21, 21, 0.08);
  border: 1px solid rgba(139, 21, 21, 0.22);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  color: #8b1515 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.cert-item .cert-item__title,
.cert-item__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: var(--fw-bold);
  color: #1a120c !important; /* Overrides .section-on-dark h4 */
  line-height: 1.3;
  margin: 2px 0 4px 0;
}

.cert-item__reg-box {
  background: #fdfaf3;
  border: 1.5px solid #e7d8be;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  margin-top: auto;
}

.cert-item__reg-label {
  display: block;
  font-size: 0.75rem;
  color: #543820; /* High-contrast warm deep brown */
  font-weight: var(--fw-bold);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cert-item__no {
  font-size: 0.95rem;
  font-weight: var(--fw-bold);
  color: #8b1515; /* Deep rich maroon */
  letter-spacing: 0.03em;
  font-family: var(--font-body);
}

.cert-item__mobile-action {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--color-maroon);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: var(--fw-bold);
  border-radius: var(--radius-sm);
  padding: 8px;
  margin-top: 6px;
  text-align: center;
  letter-spacing: 0.02em;
}

/* Lightbox Modal */
.cert-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cert-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cert-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 9, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cert-modal__container {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  max-height: 90dvh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cert-modal.open .cert-modal__container {
  transform: scale(1);
}

.cert-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2;
}

.cert-modal__close:hover {
  background: var(--color-maroon);
  color: #ffffff;
}

.cert-modal__header {
  padding: 18px 56px 12px 20px;
  border-bottom: 1px solid #f0ede6;
}

.cert-modal__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  color: var(--color-maroon);
  margin-bottom: 2px;
}

.cert-modal__no {
  font-size: 0.82rem;
  font-weight: var(--fw-semibold);
  color: var(--color-gold-dark);
}

.cert-modal__media {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f6f2;
}

.cert-modal__media img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cert-modal__footer {
  padding: 12px 20px;
  border-top: 1px solid #f0ede6;
  background: #fbf9f6;
  text-align: center;
}

.cert-modal__caption {
  font-size: 0.75rem;
  color: #7d7268;
}

/* ═══════════════════════════════════
   MARKET SEGMENTS — chip style
   ═══════════════════════════════════ */
.segment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.segment-chip {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small);
  color: var(--color-maroon);
  transition: all var(--transition-base);
}

.segment-chip:hover {
  background: var(--color-maroon);
  color: var(--color-text-light);
  border-color: var(--color-maroon);
}

.segment-chip svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════
   STORY ALBUM — polaroid style
   ═══════════════════════════════════ */
.story-album {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.story-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.polaroid {
  background: white;
  padding: var(--space-xs);
  padding-bottom: var(--space-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  max-width: 500px;
  margin-inline: auto;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.polaroid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}

.polaroid__caption {
  position: absolute;
  bottom: var(--space-xs);
  left: var(--space-sm);
  right: var(--space-sm);
  font-family: var(--font-display);
  font-size: var(--fs-caption);
  font-style: italic;
  color: var(--color-text-muted);
  text-align: center;
}

@media (min-width: 860px) {
  .polaroid {
    padding: var(--space-sm);
    padding-bottom: var(--space-2xl);
    max-width: 500px;
  }

  .polaroid__caption {
    bottom: var(--space-sm);
    left: var(--space-md);
    right: var(--space-md);
  }
}

/* ═══════════════════════════════════
   PARTNER CTA
   ═══════════════════════════════════ */
.partner-cta {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.partner-cta__quote {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-style: italic;
  font-weight: var(--fw-medium);
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  line-height: var(--lh-normal);
}

.partner-cta__quote::before,
.partner-cta__quote::after {
  content: '"';
  color: var(--color-gold);
  font-size: 1.5em;
}

.partner-cta__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════
   GALLERY
   ═══════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small);
}

/* ═══════════════════════════════════
   CONTACT BLOCK
   ═══════════════════════════════════ */
.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-maroon);
  color: var(--color-gold);
  border-radius: 50%;
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
}

.contact-item__label {
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
  color: var(--color-maroon);
  margin-bottom: var(--space-2xs);
}

.contact-item__value {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: var(--lh-normal);
  margin-bottom: 0.25rem;
}

.contact-item__value:last-child {
  margin-bottom: 0;
}

.contact-item__value a {
  color: var(--color-gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-item__value a:hover {
  color: var(--color-gold);
}

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-cream);
  padding-top: var(--space-3xl);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(231, 218, 192, 0.1);
}

.footer__brand {
  max-width: 320px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.footer__brand-desc {
  font-size: var(--fs-small);
  color: var(--color-cream);
  opacity: 0.7;
  line-height: var(--lh-normal);
}

.footer__nav-title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__nav-link {
  font-size: var(--fs-small);
  color: var(--color-cream);
  opacity: 0.7;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.footer__nav-link:hover {
  opacity: 1;
  color: var(--color-gold-light);
}

.footer__bottom {
    display: flex;
    justify-content: center;
    align-items: center;

    padding-block: var(--space-lg);
    font-size: var(--fs-caption);
    opacity: 0.5;
}

/* ═══════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }

/* ═══════════════════════════════════
   PURE DISTRIBUTION MAP DISPLAY
   ═══════════════════════════════════ */
.dist-pure-container {
  max-width: 1000px;
  margin: var(--space-xl) auto 0;
  width: 100%;
}

.dist-pure-header {
  margin-bottom: var(--space-md);
}

.dist-pure-sub {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-top: 4px;
}

.dist-pure-card {
  background: #F7EFE4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(232, 184, 109, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.dist-pure-img {
  width: 100%;
  height: auto;
  display: block;
}

