/* ============================================================
   ARKEN OLFACTIVE — Materials page
   Reuses the .feature split layout from product.css; this file
   only tunes proportions + holds the provenance map.
   ============================================================ */
body.materials .feature { min-height: 60vh; }
body.materials .feature-visual { min-height: 56vh; }
body.materials .feature-name { margin-top: 1rem; }

@media (max-width: 768px) {
  body.materials .feature,
  body.materials .feature-visual { min-height: auto; }
}

/* ---------- From earth to bottle — process steps ---------- */
.process { background: var(--paper); padding: var(--sp-sm) 0; }
.process-head { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.process-head .headline { margin-top: 0.8rem; }
.process-head .rule { margin: 1.2rem auto 0; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.6rem; max-width: 1040px; margin: 0 auto; }
.process-step { position: relative; padding-top: 2.4rem; border-top: 1px solid var(--border-2); }
.process-step::before { content: ""; position: absolute; top: -4px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--vetiver); }
.process-num { display: block; font-family: var(--mono, var(--sans)); font-feature-settings: "tnum" 1; font-size: 10px; letter-spacing: 0.24em; color: var(--ink-mute); margin-bottom: 0.8rem; }
.process-step h3 { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: 1.5rem; line-height: 1; color: var(--vetiver); margin-bottom: 0.6rem; }
.process-step p { font-family: var(--sans); font-weight: 400; font-size: 12px; line-height: 1.7; color: var(--ink-soft); }
@media (max-width: 768px) {
  .process { padding: 5rem 0; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ---------- Provenance map ---------- */
.provenance { background: var(--stone-1); padding: var(--sp-sm) 0; }
.prov-head { text-align: center; margin-bottom: 4rem; }
.prov-head .headline { margin-top: 0.8rem; }
.prov-head .rule { margin: 1.2rem auto 0; }
.prov-map { position: relative; max-width: 440px; margin: 0 auto; }
.prov-india { width: 100%; height: auto; display: block; overflow: visible; }
.prov-india path {
  fill: var(--vetiver-trace);
  stroke: var(--vetiver-lt);
  stroke-width: 1.2;
  stroke-linejoin: round;
  opacity: 0.7;
}
.prov-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.prov-dot--left { flex-direction: row-reverse; }
.prov-pin {
  width: 9px; height: 9px; flex: none;
  border-radius: 50%;
  background: var(--vetiver);
}
.prov-label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .provenance { padding: 6rem 0; }
  .prov-map { max-width: 320px; }
  .prov-label { font-size: 8px; letter-spacing: 0.12em; }
}
