/* ======================================================================
   ELAF GROUP — site styles
   Deep gray + warm orange + wheat / cream
   ====================================================================== */
:root {
  /* palette */
  --gray-900: #18181b;
  --gray-800: #27272a;
  --gray-700: #3f3f46;
  --gray-600: #52525b;
  --gray-500: #71717a;
  --gray-300: #d4d4d8;
  --gray-100: #f4f4f5;

  --orange-700: #a85518;
  --orange-600: #c4651b;
  --orange-500: #e0792a;
  --orange-400: #ed913f;
  --orange-100: #fdebd4;

  --wheat-700: #9a7e3e;
  --wheat-500: #d4b87a;
  --wheat-300: #e7d2a1;
  --wheat-100: #f3e6c4;

  --cream:    #f5ecd6;
  --cream-2:  #ede0be;
  --paper:    #faf5e6;
  --paper-2:  #f7f0dc;

  --ink:      #09090b;
  --ink-2:    #27272a;
  --mute:     #71717a;
  --hairline: rgba(39,39,42,.12);

  /* type */
  --serif: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --sans:  "Nunito Sans", system-ui, -apple-system, sans-serif;

  /* layout */
  --container: 1240px;
  --pad-x: 32px;

  /* motion */
  --ease-out: cubic-bezier(.2,.7,.2,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  color: var(--ink);
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.018em;
  font-weight: 700;
}
p { margin: 0 0 1em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); position: relative; }

/* ============== KICKERS / SECTION HEADS ============== */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange-600);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--orange-100);
}
.kicker--on-dark {
  color: var(--wheat-300);
  background: rgba(228, 197, 138, .14);
}
.kicker .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(224,121,42,.18);
}
.kicker--on-dark .dot { background: var(--wheat-500); box-shadow: 0 0 0 4px rgba(212,184,122,.18); }

.section-title {
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 800;
  margin: 18px 0 18px;
  max-width: 22ch;
}
.section-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--orange-600);
}
.section-lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 60ch;
  line-height: 1.6;
}
.eyebrow-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 8px;
}
.eyebrow-rule { height: 1px; width: 36px; background: var(--orange-500); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.005em;
  transition: transform .25s var(--ease-out), background .25s var(--ease-out), box-shadow .25s var(--ease-out), color .25s var(--ease-out);
  white-space: nowrap;
}
.btn__arrow { transition: transform .3s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(3px); }
.btn:hover { transform: translateY(-1px) scale(1.02); }

.btn--primary {
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 6px 14px -8px rgba(224,121,42,.55), inset 0 0 0 1px rgba(255,255,255,.08);
}
.btn--primary:hover {
  background: var(--orange-400);
  box-shadow: 0 12px 28px -10px rgba(224,121,42,.65), 0 0 0 4px rgba(224,121,42,.18);
}
.btn--ghost {
  color: var(--gray-800);
  background: transparent;
  box-shadow: inset 0 0 0 1.5px rgba(39,39,42,.25);
}
.btn--ghost:hover {
  background: var(--cream);
  box-shadow: inset 0 0 0 1.5px var(--gray-700);
  color: var(--gray-800);
}
.btn--on-dark.btn--ghost {
  color: var(--cream);
  box-shadow: inset 0 0 0 1.5px rgba(245,236,214,.35);
}
.btn--on-dark.btn--ghost:hover {
  background: rgba(245,236,214,.08);
  box-shadow: inset 0 0 0 1.5px var(--wheat-300);
  color: #fff;
}

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 230, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease-soft), border-color .3s var(--ease-soft), box-shadow .3s var(--ease-soft);
}
.nav.is-stuck {
  background: rgba(250, 245, 230, .94);
  border-bottom-color: var(--hairline);
  box-shadow: 0 1px 0 rgba(0,0,0,.02), 0 8px 24px -16px rgba(24,24,27,.18);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.nav__logo img { height: 44px; width: auto; }
.nav__links {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 4px;
  flex: 1; justify-content: center;
}
.nav__links a {
  display: inline-block;
  padding: 10px 12px;
  font-family: var(--serif);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  transition: color .25s var(--ease-out);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 4px;
  height: 1.5px;
  background: var(--orange-500);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .3s var(--ease-out);
}
.nav__links a:hover { color: var(--gray-800); }
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--gray-800); }

.nav__menu { display: none; width: 40px; height: 40px; padding: 0; }
.nav__menu span {
  display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px auto;
  transition: transform .3s var(--ease-out), opacity .2s;
}
.nav.is-open .nav__menu span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav__menu span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__menu span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__cta { display: inline-flex; }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, #fceabe 0%, #f5ecd6 38%, #faf5e6 78%, #faf5e6 100%);
}
.hero__sun {
  position: absolute;
  top: 8%; right: -8%;
  width: 760px; height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(252,210,140,.7), rgba(252,210,140,0) 60%);
  filter: blur(20px);
  z-index: -2;
  animation: shimmer 8s ease-in-out infinite alternate;
}
@keyframes shimmer {
  0%   { transform: translate3d(0,0,0) scale(1); opacity: .85; }
  100% { transform: translate3d(-30px,16px,0) scale(1.04); opacity: 1; }
}
.hero__map {
  position: absolute; inset: 0;
  z-index: -1;
  opacity: .35;
  pointer-events: none;
}
.hero__map svg { width: 100%; height: 100%; }
.hero__field {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 220px;
  z-index: -1;
  pointer-events: none;
}
.hero__field svg { width: 100%; height: 100%; }

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__copy h1 {
  font-size: clamp(40px, 5.4vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  margin: 18px 0 22px;
  max-width: 16ch;
}
.hero__copy h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--orange-500);
}
.hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 52ch;
  margin: 0 0 30px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
}
.hero__trust .t {
  display: flex; flex-direction: column; gap: 4px;
  padding-right: 10px;
  border-right: 1px solid var(--hairline);
}
.hero__trust .t:last-child { border-right: 0; }
.hero__trust .t .n {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-800);
  letter-spacing: -.015em;
}
.hero__trust .t .l {
  font-size: 12.5px;
  color: var(--mute);
  line-height: 1.35;
}

/* hero medallion */
.medallion {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 540px;
  margin-left: auto;
  display: grid;
  place-items: center;
}
.medallion__ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(39,39,42,.22);
  animation: spin 60s linear infinite;
}
.medallion__ring.r2 {
  inset: 6%;
  border: 1px dashed rgba(196,101,27,.22);
  animation-direction: reverse;
  animation-duration: 90s;
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.medallion__core {
  position: absolute; inset: 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, #fff8e3 0%, #f3e0a8 38%, #d4b87a 78%, #b6975c 100%);
  box-shadow:
    inset 0 12px 40px rgba(255,255,255,.6),
    inset 0 -20px 60px rgba(122,84,29,.25),
    0 30px 60px -30px rgba(80,55,15,.4);
}
.medallion__wheat {
  position: absolute; inset: 12%;
  display: grid; place-items: center;
  pointer-events: none;
}
.medallion__wheat svg { width: 78%; height: 78%; }
.medallion__logo {
  position: relative;
  z-index: 2;
  width: 36%;
  filter: drop-shadow(0 6px 16px rgba(80,55,15,.25));
}
.medallion__pin {
  position: absolute;
  top: 8%; right: 12%;
  display: flex; align-items: center; gap: 8px;
  background: var(--gray-800);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 14px 30px -16px rgba(24,24,27,.6);
}
.medallion__pin .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange-500); box-shadow: 0 0 0 4px rgba(224,121,42,.25); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(224,121,42,.25); }
  50%      { box-shadow: 0 0 0 9px rgba(224,121,42,0); }
}

.medallion__chip {
  position: absolute;
  bottom: 4%; left: -4%;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex; gap: 12px; align-items: center;
  box-shadow: 0 18px 40px -22px rgba(24,24,27,.35);
}
.medallion__chip .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gray-100);
  color: var(--gray-700);
  display: grid; place-items: center;
}
.medallion__chip .l1 { font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: 14px; line-height: 1; }
.medallion__chip .l2 { font-size: 11.5px; color: var(--mute); margin-top: 2px; line-height: 1; }

/* ============== ABOUT ============== */
.section { padding: 120px 0; position: relative; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--gray { background: var(--gray-800); color: var(--cream); }
.section--gray h2, .section--gray h3, .section--gray h4 { color: #fff; }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__paras p { font-size: 17px; line-height: 1.65; color: var(--ink-2); }
.about__paras p + p { margin-top: 1em; }
.about__paras p strong { color: var(--gray-800); font-weight: 700; }

.glance {
  margin-top: 40px;
  padding: 22px 26px;
  border-radius: 18px;
  background: var(--cream);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  box-shadow: inset 0 0 0 1px var(--hairline);
}
.glance .g {
  padding: 4px 16px 4px 0;
  border-right: 1px solid var(--hairline);
}
.glance .g:last-child { border-right: 0; }
.glance .n {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 26px;
  color: var(--gray-800);
  letter-spacing: -.015em;
  display: block;
  line-height: 1;
}
.glance .l { font-size: 12px; color: var(--mute); margin-top: 4px; }

.about__visual {
  position: relative;
  aspect-ratio: 1.05 / 1;
}
.about__photo {
  position: absolute; inset: 0;
  border-radius: 28px;
  overflow: hidden;
  background: var(--gray-800);
  box-shadow: 0 30px 80px -30px rgba(24,24,27,.4);
}
.about__photo svg { width: 100%; height: 100%; display: block; }
.about__overlay {
  position: absolute;
  bottom: -32px; left: -28px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 18px 22px;
  display: flex; gap: 16px; align-items: center;
  box-shadow: 0 24px 60px -24px rgba(24,24,27,.3);
  max-width: 320px;
}
.about__overlay .nm {
  font-family: var(--serif); font-weight: 800;
  color: var(--gray-800);
  font-size: 30px;
  line-height: 1;
}
.about__overlay .lb { font-size: 12.5px; color: var(--mute); margin-top: 4px; line-height: 1.3; }
.about__overlay .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--orange-100);
  color: var(--orange-600);
  display: grid; place-items: center;
}

/* angled section divider */
.angle-divider {
  position: relative;
  height: 80px;
  background: var(--cream);
  margin-top: -1px;
  clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 100%);
}
.angle-divider--up {
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
}

/* ============== VMV ============== */
.vmv__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.vmv__card {
  padding: 32px 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.vmv__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -32px rgba(24,24,27,.3);
}
.vmv__card .num {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--orange-500);
}
.vmv__card h3 {
  margin: 8px 0 12px;
  font-size: 26px;
  font-weight: 700;
}
.vmv__card p { color: var(--ink-2); font-size: 15px; }
.vmv__card .ic {
  position: absolute;
  top: 24px; right: 24px;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--gray-100);
  color: var(--gray-700);
  display: grid; place-items: center;
}
.vmv__card--accent {
  background: linear-gradient(160deg, var(--gray-800) 0%, var(--gray-700) 100%);
  color: var(--cream);
  border-color: transparent;
}
.vmv__card--accent h3 { color: #fff; }
.vmv__card--accent p { color: rgba(245,236,214,.85); }
.vmv__card--accent .num { color: var(--wheat-300); }
.vmv__card--accent .ic { background: rgba(245,236,214,.12); color: var(--wheat-300); }

.values-row {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  border-top: 1px solid var(--hairline);
  padding-top: 30px;
}
.values-row .v {
  display: flex; align-items: center; gap: 12px;
  padding: 6px 12px 6px 0;
}
.values-row .v .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--orange-100);
  color: var(--orange-600);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.values-row .v .nm { font-family: var(--serif); font-weight: 700; color: var(--gray-800); font-size: 14px; line-height: 1; }
.values-row .v .ln { font-size: 11.5px; color: var(--mute); margin-top: 3px; line-height: 1.3; }

/* ============== PRODUCTS ============== */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.product-card {
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -32px rgba(24,24,27,.3);
  border-color: var(--gray-300);
}
.product-card__art {
  height: 130px;
  margin: -8px -8px 18px;
  border-radius: 14px;
  background: var(--cream);
  display: grid; place-items: center;
  overflow: hidden;
  position: relative;
}
.product-card__art svg { width: 75%; height: 75%; transition: transform .5s var(--ease-out); }
.product-card:hover .product-card__art svg { transform: scale(1.06) rotate(-2deg); }
.product-card .num {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--orange-600);
}
.product-card h3 {
  margin: 6px 0 10px;
  font-size: 24px;
  font-weight: 700;
}
.product-card p { font-size: 14.5px; color: var(--mute); margin: 0 0 16px; line-height: 1.55; }
.product-card .more {
  margin-top: auto;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 13px;
  color: var(--gray-800);
  display: inline-flex; gap: 8px; align-items: center;
}
.product-card .more::after {
  content: "→";
  transition: transform .3s var(--ease-out);
}
.product-card:hover .more::after { transform: translateX(4px); }

.products__strip {
  margin-top: 56px;
  padding: 28px 32px;
  border-radius: 20px;
  background: var(--gray-800);
  color: var(--cream);
  display: flex; align-items: center; gap: 28px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.products__strip .t {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.products__strip .s { font-size: 14px; color: rgba(245,236,214,.78); max-width: 50ch; }
.products__strip .mini-map {
  width: 280px;
  height: 90px;
  flex-shrink: 0;
  opacity: .9;
}

/* ============== GLOBAL ============== */
.global__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}
.global__map {
  position: relative;
  border-radius: 24px;
  background: var(--gray-900);
  padding: 30px;
  overflow: hidden;
  aspect-ratio: 1.4 / 1;
  box-shadow: 0 30px 80px -30px rgba(24,24,27,.5);
}
.global__map::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(224,121,42,.18), transparent 50%),
    radial-gradient(ellipse at 20% 70%, rgba(212,184,122,.08), transparent 60%);
  pointer-events: none;
}
.global__map svg { width: 100%; height: 100%; display: block; position: relative; z-index: 1; }
.global__legend {
  position: absolute;
  bottom: 22px; left: 30px; right: 30px;
  display: flex; gap: 18px;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,236,214,.65);
  z-index: 2;
}
.global__legend .lg { display: flex; align-items: center; gap: 8px; }
.global__legend .lg .sw { width: 10px; height: 10px; border-radius: 50%; background: var(--orange-500); }
.global__legend .lg .sw--gold { background: var(--wheat-500); }

.global__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.global__stat {
  padding: 22px;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid var(--hairline);
}
.global__stat .n {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 38px;
  color: var(--gray-800);
  letter-spacing: -.02em;
  line-height: 1;
}
.global__stat .l {
  font-size: 13px;
  color: var(--mute);
  margin-top: 8px;
  line-height: 1.45;
}

.regions {
  margin-top: 30px;
  padding: 22px 24px;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid var(--hairline);
}
.regions .h {
  font-family: var(--serif); font-weight: 700;
  color: var(--gray-800);
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 12px;
}
.regions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 18px;
}
.regions__grid div {
  font-size: 13.5px;
  display: flex; justify-content: space-between; gap: 12px;
  padding: 5px 0;
  border-bottom: 1px dashed rgba(39,39,42,.1);
}
.regions__grid div span:first-child { color: var(--gray-800); font-weight: 600; }
.regions__grid div span:last-child { color: var(--mute); }

/* ============== WHY ELAF ============== */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.why-card {
  padding: 30px 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -32px rgba(24,24,27,.3);
}
.why-card .ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--gray-100);
  color: var(--gray-700);
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: background .35s var(--ease-out), color .35s var(--ease-out);
}
.why-card:hover .ic { background: var(--orange-100); color: var(--orange-600); }
.why-card h3 { font-size: 22px; font-weight: 700; margin: 0 0 8px; }
.why-card p { font-size: 14.5px; color: var(--mute); margin: 0; line-height: 1.55; }
.why-card__num {
  position: absolute;
  top: 18px; right: 24px;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .2em;
  color: rgba(39,39,42,.18);
}

/* ============== QUALITY ============== */
.quality__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}
.steps {
  position: relative;
  padding-left: 24px;
}
.steps::before {
  content: ""; position: absolute;
  left: 11px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange-500) 0%, var(--gray-500) 100%);
  opacity: .35;
}
.step {
  position: relative;
  padding: 14px 0 14px 26px;
}
.step::before {
  content: ""; position: absolute;
  left: -19px; top: 22px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 5px rgba(224,121,42,.16), 0 0 0 1px var(--paper);
}
.step .n { font-family: var(--serif); font-size: 11px; font-weight: 700; letter-spacing: .22em; color: var(--orange-600); text-transform: uppercase; }
.step h4 { font-size: 20px; font-weight: 700; margin: 4px 0 6px; }
.step p { font-size: 14px; color: var(--mute); margin: 0; }

.certs { display: grid; gap: 14px; }
.cert {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--hairline);
  align-items: center;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.cert:hover { transform: translateY(-2px); box-shadow: 0 20px 50px -28px rgba(24,24,27,.3); }
.cert__seal {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--wheat-300) 0%, var(--wheat-500) 60%, var(--wheat-700) 100%);
  display: grid; place-items: center;
  position: relative;
  color: var(--gray-900);
  font-family: var(--serif);
  font-weight: 800;
  font-size: 11px;
  text-align: center;
  line-height: 1.05;
  box-shadow: inset 0 -8px 16px rgba(122,84,29,.3), inset 0 8px 16px rgba(255,255,255,.4);
}
.cert__seal::before {
  content: ""; position: absolute; inset: 4px;
  border-radius: 50%;
  border: 1px dashed rgba(24,24,27,.45);
}
.cert__name { font-family: var(--serif); font-weight: 700; color: var(--gray-800); font-size: 16px; }
.cert__desc { font-size: 13.5px; color: var(--mute); margin-top: 3px; line-height: 1.5; }

/* ============== SUSTAINABILITY ============== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.pillar {
  padding: 28px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(245,236,214,.14);
  transition: transform .35s var(--ease-out), background .35s var(--ease-out), border-color .35s var(--ease-out);
}
.pillar:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.1);
  border-color: rgba(212,184,122,.4);
}
.pillar .ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(212,184,122,.18);
  color: var(--wheat-300);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.pillar h3 { color: #fff; font-size: 20px; font-weight: 700; margin: 0 0 8px; }
.pillar p { font-size: 14px; color: rgba(245,236,214,.78); margin: 0; line-height: 1.55; }

.sustain__metrics {
  margin-top: 56px;
  padding: 32px 36px;
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(212,184,122,.18) 0%, rgba(212,184,122,.04) 100%);
  border: 1px solid rgba(212,184,122,.25);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.sustain__metric .n {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 44px;
  color: var(--wheat-300);
  letter-spacing: -.02em;
  line-height: 1;
}
.sustain__metric .bar {
  height: 3px; border-radius: 2px;
  background: rgba(212,184,122,.16);
  margin-top: 14px;
  overflow: hidden;
}
.sustain__metric .bar i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--wheat-500), var(--orange-500));
  width: 0;
  transition: width 1.4s var(--ease-out);
}
.sustain__metric.is-revealed .bar i { width: var(--w, 70%); }
.sustain__metric .l {
  font-size: 13px;
  color: rgba(245,236,214,.78);
  margin-top: 12px;
  line-height: 1.5;
}

/* ============== SOURCING ============== */
.sourcing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
  align-items: center;
}
.bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.bullets li {
  padding: 16px 18px 16px 56px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--hairline);
  position: relative;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 18px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--orange-100);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23c4651b' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 8 7 12 13 4'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}
.bullets li h4 { font-size: 17px; font-weight: 700; margin: 0 0 2px; color: var(--gray-800); }
.bullets li p { margin: 0; font-size: 13.5px; color: var(--mute); }

.packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pack {
  aspect-ratio: .7;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: grid; place-items: end center;
  padding: 16px;
  color: #fff;
  background: var(--gray-700);
  box-shadow: 0 16px 30px -22px rgba(24,24,27,.5);
  transition: transform .35s var(--ease-out);
}
.pack:hover { transform: translateY(-4px) rotate(-1deg); }
.pack svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.pack__cap {
  position: relative; z-index: 1;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 999px;
}

.promise {
  margin-top: 64px;
  padding: 22px 30px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--hairline);
  display: flex; gap: 26px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.promise .h { font-family: var(--serif); font-weight: 700; color: var(--gray-800); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; flex-shrink: 0; }
.promise__row { display: flex; gap: 22px; flex-wrap: wrap; }
.promise__row .p { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-2); font-weight: 600; }
.promise__row .p .ic { width: 28px; height: 28px; border-radius: 50%; background: var(--orange-100); color: var(--orange-600); display: grid; place-items: center; }

/* ============== STORY ============== */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}
.story__paras p { font-size: 16px; line-height: 1.65; color: var(--ink-2); }
.story__paras p + p { margin-top: 1em; }
.story__paras p strong { color: var(--gray-800); font-weight: 700; }
.story__signature {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-family: var(--serif);
  font-style: italic;
  color: var(--gray-800);
  font-size: 18px;
}
.story__signature small { display: block; font-style: normal; font-size: 12px; color: var(--mute); letter-spacing: .14em; text-transform: uppercase; margin-top: 6px; font-weight: 600; }

.timeline {
  position: relative;
  padding-left: 28px;
}
.timeline::before {
  content: ""; position: absolute;
  left: 11px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--gray-500) 0%, var(--orange-500) 100%);
  opacity: .35;
}
.tl-item {
  padding: 18px 0 18px 32px;
  position: relative;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -22px; top: 26px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--gray-600);
  box-shadow: 0 0 0 4px var(--paper);
}
.tl-item.is-now::before { background: var(--orange-500); border-color: var(--orange-500); box-shadow: 0 0 0 4px var(--paper), 0 0 0 8px rgba(224,121,42,.18); }
.tl-item .yr {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 22px;
  color: var(--gray-800);
  letter-spacing: -.01em;
  line-height: 1;
}
.tl-item h4 { font-size: 17px; font-weight: 700; margin: 6px 0 4px; }
.tl-item p { font-size: 13.5px; color: var(--mute); margin: 0; }

/* ============== BRAND IN ACTION ============== */
.mosaic {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 220px;
  gap: 14px;
}
.mos {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--gray-700);
  color: #fff;
  box-shadow: 0 20px 50px -28px rgba(24,24,27,.4);
  transition: transform .4s var(--ease-out);
}
.mos:hover { transform: translateY(-4px); }
.mos:nth-child(1) { grid-row: span 2; }
.mos svg { width: 100%; height: 100%; display: block; }
.mos__cap {
  position: absolute; bottom: 14px; left: 18px; right: 18px;
  display: flex; gap: 12px; align-items: flex-end; justify-content: space-between;
  z-index: 2;
}
.mos__cap .lb { font-family: var(--serif); font-weight: 700; font-size: 16px; color: #fff; }
.mos__cap .ln { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 2px; }
.mos__cap .pill { font-family: var(--serif); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); color: #fff; }
.mosaic__caption { margin-top: 28px; font-style: italic; color: var(--mute); text-align: center; max-width: 70ch; margin-left: auto; margin-right: auto; }

/* ============== CTA ============== */
.cta {
  position: relative;
  background: linear-gradient(180deg, #18181b 0%, #27272a 100%);
  color: var(--cream);
  padding: 140px 0 100px;
  overflow: hidden;
}
.cta__field {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 160px;
  opacity: .5;
}
.cta__field svg { width: 100%; height: 100%; }
.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.cta h2 { font-size: clamp(36px, 4.6vw, 64px); color: #fff; line-height: 1; margin-bottom: 22px; }
.cta h2 em { font-style: italic; color: var(--orange-400); font-weight: 600; }
.cta__lede { color: rgba(245,236,214,.84); font-size: 17px; max-width: 50ch; margin-bottom: 36px; }
.cta__contact { display: grid; gap: 18px; margin-top: 30px; }
.cta__contact .row { display: flex; gap: 14px; align-items: center; }
.cta__contact .ic { width: 40px; height: 40px; border-radius: 12px; background: rgba(212,184,122,.16); color: var(--wheat-300); display: grid; place-items: center; flex-shrink: 0; }
.cta__contact .lb { font-family: var(--serif); font-weight: 700; color: #fff; font-size: 14px; line-height: 1; }
.cta__contact .vl { font-size: 13.5px; color: rgba(245,236,214,.7); margin-top: 3px; line-height: 1; }

.cta__sub {
  margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap;
}

.form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,184,122,.18);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(8px);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form .field { display: flex; flex-direction: column; gap: 6px; }
.form label {
  font-family: var(--serif);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,236,214,.65);
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(245,236,214,.16);
  border-radius: 12px;
  color: #fff;
  font-family: var(--sans);
  font-size: 14.5px;
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out);
}
.form textarea { min-height: 100px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 0;
  border-color: var(--wheat-500);
  background: rgba(0,0,0,.28);
}
.form input::placeholder, .form textarea::placeholder { color: rgba(245,236,214,.4); }
.form select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23d4b87a' stroke-width='1.6'><path d='M3 5l3 3 3-3'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.form .submit-row { display: flex; gap: 12px; margin-top: 20px; align-items: center; flex-wrap: wrap; }
.form .ts { font-size: 11.5px; color: rgba(245,236,214,.55); }

/* ============== FOOTER ============== */
.footer {
  background: #09090b;
  color: rgba(245,236,214,.7);
  padding: 64px 0 28px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245,236,214,.1);
}
.footer h6 { font-family: var(--serif); font-weight: 700; color: #fff; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer ul a { font-size: 13.5px; color: rgba(245,236,214,.7); transition: color .25s var(--ease-out); }
.footer ul a:hover { color: var(--orange-400); }
.footer__brand img { height: 48px; margin-bottom: 18px; filter: brightness(0) saturate(100%) invert(95%) sepia(8%) saturate(380%) hue-rotate(8deg) brightness(96%) contrast(92%); }
.footer__brand p { font-size: 13.5px; max-width: 38ch; line-height: 1.6; }
.footer__bottom {
  margin-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.footer__bottom .legal { font-size: 12px; color: rgba(245,236,214,.5); }
.footer__bottom .links { display: flex; gap: 18px; }
.footer__bottom .links a { font-size: 12px; color: rgba(245,236,214,.6); }
.footer__badges {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 18px;
}
.footer__badges .b {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212,184,122,.3);
  color: var(--wheat-300);
}

/* ============== REVEAL UTILITIES ============== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="pop"]   { transform: scale(.95); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .4s; }
[data-reveal-delay="6"] { transition-delay: .48s; }

/* arc strokes */
.arc {
  fill: none;
  stroke: var(--orange-500);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  filter: drop-shadow(0 0 6px rgba(224,121,42,.5));
}
.arc.is-on { animation: drawArc 2.2s var(--ease-out) forwards; }
@keyframes drawArc { to { stroke-dashoffset: 0; } }

.dest-dot {
  fill: var(--orange-500);
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
}
.dest-dot.is-on { opacity: 1; }
.dest-pulse {
  fill: none;
  stroke: var(--orange-500);
  stroke-width: 1;
  opacity: 0;
}
.dest-pulse.is-on {
  animation: destPulse 1.8s ease-out infinite;
}
@keyframes destPulse {
  0%   { r: 3; opacity: .8; }
  100% { r: 14; opacity: 0; }
}

/* count-up */
.cu { display: inline-block; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__menu { display: block; }
  .nav__cta { display: none; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column;
    position: fixed;
    top: 76px; left: 0; right: 0;
    padding: 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--hairline);
    gap: 8px;
  }
  .nav.is-open .nav__cta {
    display: inline-flex;
    position: fixed;
    top: 76px; right: 24px;
    margin-top: 280px;
  }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .medallion { max-width: 420px; margin: 0 auto; }
  .about__grid, .quality__grid, .global__inner, .story__grid, .sourcing__grid, .cta__inner {
    grid-template-columns: 1fr; gap: 48px;
  }
  .vmv__cards, .why__grid, .products__grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .sustain__metrics { grid-template-columns: repeat(2, 1fr); }
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 200px 200px; }
  .mosaic .mos:nth-child(1) { grid-row: 1; grid-column: span 2; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .values-row { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr; }
  .hero__trust { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
  .hero__trust .t:nth-child(2) { border-right: 0; }
}
@media (max-width: 640px) {
  :root { --pad-x: 20px; }
  .section { padding: 80px 0; }
  .hero { padding: 56px 0 90px; }
  .vmv__cards, .why__grid, .products__grid, .pillars, .sustain__metrics, .global__stats { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .mosaic .mos:nth-child(1) { grid-row: 1; grid-column: 1; }
  .footer__top { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: 1fr; }
  .promise { border-radius: 22px; }
  .glance { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
  .glance .g:nth-child(2) { border-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .15s !important;
  }
  [data-reveal] { transform: none; }
  .hero__sun { animation: none; }
  .medallion__ring { animation: none; }
}
