/* ============================================================
   Khawaja Perfumery House — stylesheet
   Pure hand-written CSS. No framework/utility library.
   ============================================================ */

:root {
  --ink: #0b0a08;
  --bone: #f6f1e9;
  --sand: #d8ccb8;
  --gold: #bd9a5f;
  --goldlt: #e7cf9e;
  --rose: #9a6b66;
  --olive: #6b6a55;
  --espresso: #15110c;
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Inter", sans-serif;
}

/* ---------- reset / base ---------- */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: auto;
}
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  overflow-x: hidden;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button {
  font-family: inherit;
}

/* ---------- cursor policy: default system cursor everywhere ---------- */
body {
  cursor: default;
}
a,
button,
.chip,
.card,
.burger,
.nav-link,
.mm-link,
.btn-outline,
.btn-sample,
.detail-close,
[role="button"] {
  cursor: pointer;
}

/* ---------- shared primitives ---------- */
.eyebrow {
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 0.66rem;
}
@media (max-width: 640px) {
  .eyebrow {
    letter-spacing: 0.26em;
  }
}
.text-gold {
  color: var(--gold);
}

.display {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 9vw, 10rem);
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: -0.025em;
  margin: 0;
}
.display-sm {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 5.5vw, 4.6rem);
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: -0.025em;
  margin: 0;
}

.line-mask {
  overflow: hidden;
  display: block;
}
.word {
  display: inline-block;
  will-change: transform;
}

/* olfactory haze */
.orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
}
@media (max-width: 768px) {
  .orb {
    filter: blur(44px);
    opacity: 0.4;
  }
}

.clip-img {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.clip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* film grain */
.grain {
  position: relative;
}
.grain:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* scroll progress */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #bd9a5f, #e7cf9e);
  z-index: 120;
  width: 0;
}

/* ---------- preloader ---------- */
#loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #f8f9fa;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#loader-icon {
  animation: bloom-in 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes bloom-in {
  0% {
    transform: scale(0) rotate(-30deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
#loader-icon svg {
  animation: bloom-spin 6s linear infinite;
  transform-origin: center;
}
@keyframes bloom-spin {
  to {
    transform: rotate(360deg);
  }
}
.loader-title-wrap {
  overflow: hidden;
  margin-top: 1.25rem;
}
.loader-pct-wrap {
  overflow: hidden;
  margin-top: 0.5rem;
}
.loader-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.025em;
  color: var(--ink);
  font-weight: 300;
  margin: 0;
}

.rule {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(11, 10, 8, 0.25),
    transparent
  );
}
::selection {
  background: #bd9a5f;
  color: #0b0a08;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
     position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* mix-blend-mode: difference; */
    color: var(--bone);
    background: #232323;
    transition: padding 0.4s ease;
}

.logo-wrap {
        display: flex;
    align-items: center;
}

.logo-wrap img {
    height: 50px;
    width: auto;
    object-fit: contain;
    /* mix-blend-mode: multiply;
    filter: contrast(1.2) saturate(1.1); */
    transition: filter 0.3s ease;
}

span.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-left: 1rem;
    letter-spacing: 0.5px;
    line-height: 1.1;
    white-space: nowrap;
}
@media (min-width: 768px) {
  .site-header {
    padding: 1rem 3rem;
  }
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.025em;
  text-decoration: none;
}
.logo .dot {
  color: var(--gold);
}
.nav-desktop {
  display: none;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}
.nav-contact {
  display: none;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .nav-contact {
    display: inline-block;
  }
}
.nav-link {
  position: relative;
  text-decoration: none;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover::after {
  width: 100%;
}

.burger {
  width: 30px;
  height: 16px;
  position: relative;
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
}
@media (min-width: 1024px) {
  .burger {
    display: none;
  }
}
.burger span {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 0.4s cubic-bezier(0.76, 0, 0.24, 1),
    opacity 0.25s ease;
}
.burger span:nth-child(1) {
  top: 0;
}
.burger span:nth-child(2) {
  top: 7px;
}
.burger span:nth-child(3) {
  top: 14px;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* full-screen mobile menu */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: #f8f9fa;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  padding: 6rem 1.5rem 2rem;
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
  transition: clip-path 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}
#mobile-menu.open {
  clip-path: inset(0 0 0% 0);
  pointer-events: auto;
}
.mm-link {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  line-height: 1.08;
  font-size: clamp(2.4rem, 12vw, 4.2rem);
  padding: 0.3rem 0;
  color: #1a1a1a;
  text-decoration: none;
}
.mm-link .idx {
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #bd9a5f;
  vertical-align: super;
  margin-right: 0.6rem;
}
.mm-meta {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.15);
}
.mm-meta p + p {
  margin-top: 0.5rem;
}

/* ============================================================
   HERO — full-bleed background video with overlaid text
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
  display: flex;
  align-items: center;
}
/* jquery.ripples reads this element's own background-image as its WebGL
   texture source — required for the plugin to have anything to distort */
.hero {
  background-image: url("https://images.unsplash.com/photo-1490750967868-88df5691b5ae?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}
/* jquery.ripples wraps its canvas in its own div and forces z-index:-1
   inline; the z-index is corrected via JS right after init (see the
   inline script at the bottom of index.html) so it paints above the
   video but stays beneath the dark overlay tint and the text content */
.hero .jquery-ripples-canvas,
.hero > div > canvas {
  pointer-events: none;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(11, 10, 8, 0.55) 0%,
    rgba(11, 10, 8, 0.32) 45%,
    rgba(11, 10, 8, 0.78) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  pointer-events: none;
}
.hero-content a,
.hero-content button {
  pointer-events: auto;
}
@media (min-width: 768px) {
  .hero-content {
    padding: 0 3rem;
  }
}
.hero-eyebrow {
  color: var(--gold);
  margin: 0 0 1.5rem;
}
.hero-title {
  max-width: 900px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-desc {
  margin: 2rem 0 0;
  max-width: 28rem;
  color: rgba(246, 241, 233, 0.78);
  font-weight: 300;
  line-height: 1.625;
}
.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(246, 241, 233, 0.45);
  border-radius: 9999px;
  padding: 1rem 1.75rem;
  color: var(--bone);
  text-decoration: none;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 0.66rem;
  transition:
    background 0.5s,
    color 0.5s;
}
.btn-outline:hover {
  background: var(--bone);
  color: var(--ink);
}
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(246, 241, 233, 0.45);
  pointer-events: none;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: #f0ece4;
  color: var(--ink);
  padding: 5rem 1.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .stats {
    padding: 7rem 3rem;
  }
}
.stats-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  row-gap: 3rem;
}
@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 3.75rem;
  color: var(--gold);
}
@media (min-width: 768px) {
  .stat-num {
    font-size: 4.5rem;
  }
}
.stat-label {
  margin: 0.75rem 0 0;
  color: rgba(11, 10, 8, 0.5);
}

/* ============================================================
   LEGACY — heritage timeline
   ============================================================ */
.legacy {
  padding: 6rem 1.5rem;
  max-width: 1600px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .legacy {
    padding: 10rem 3rem;
  }
}
.legacy-intro {
  margin-bottom: 3rem;
  max-width: 48rem;
}
@media (min-width: 768px) {
  .legacy-intro {
    margin-bottom: 5rem;
  }
}
.legacy-intro .eyebrow {
  margin-bottom: 1.25rem;
}
.legacy-intro p {
  margin: 1.5rem 0 0;
  color: rgba(11, 10, 8, 0.6);
  font-weight: 300;
  line-height: 1.625;
}
.legacy-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .legacy-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
  }
}
.legacy-visual-wrap {
  position: relative;
  height: 44vh;
  order: 1;
}
@media (min-width: 640px) {
  .legacy-visual-wrap {
    height: 56vh;
  }
}
@media (min-width: 1024px) {
  .legacy-visual-wrap {
    height: 74vh;
    position: sticky;
    top: 7rem;
  }
}
.legacy-visual {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  height: 100%;
}
.legacy-visual .year {
  position: absolute;
  left: 1.5rem;
  top: 1.25rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  line-height: 0.9;
  font-size: clamp(3rem, 8vw, 6rem);
  color: #f6f1e9;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}
.ms-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.legacy-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 10, 8, 0.8),
    rgba(11, 10, 8, 0.1) 60%,
    transparent
  );
}
.legacy-caption-row {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.timeline-wrap {
  position: relative;
  padding-left: 2.25rem;
  order: 2;
}
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 768px) {
  .timeline-list {
    gap: 6rem;
  }
}
.tl-line {
  position: absolute;
  left: 7px;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: rgba(11, 10, 8, 0.14);
}
.tl-fill {
  position: absolute;
  left: 7px;
  top: 0.5rem;
  width: 1px;
  height: 0;
  background: #bd9a5f;
}
.ms {
  position: relative;
  transition: opacity 0.5s ease;
}
.ms-node {
  position: absolute;
  left: -37px;
  top: 0.35rem;
  width: 15px;
  height: 15px;
  border-radius: 9999px;
  background: #f6f1e9;
  border: 1px solid rgba(11, 10, 8, 0.2);
  box-shadow: 0 0 0 4px #f6f1e9;
  transition:
    background 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.ms.is-active .ms-node {
  background: #bd9a5f;
  transform: scale(1.15);
  box-shadow:
    0 0 0 4px #f6f1e9,
    0 0 18px rgba(189, 154, 95, 0.6);
}
.ms.is-active .ms-head {
  color: #0b0a08;
}
.ms .ms-head {
  color: rgba(11, 10, 8, 0.55);
  transition: color 0.4s ease;
}
.ms-eyebrow {
  margin-bottom: 0.75rem;
}
.ms-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  letter-spacing: -0.025em;
  margin: 0 0 0.75rem;
}
@media (min-width: 768px) {
  .ms-title {
    font-size: 2.25rem;
  }
}
.ms-text {
  max-width: 28rem;
  color: rgba(11, 10, 8, 0.65);
  font-weight: 300;
  line-height: 1.625;
  margin: 0;
}
.ms-emphasis {
  color: var(--ink);
}
.ms-card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ms:hover .ms-card {
  transform: translateX(6px);
}

/* ============================================================
   OFFERINGS
   ============================================================ */
.offerings {
  padding: 5rem 1.5rem;
  max-width: 1600px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .offerings {
    padding: 7rem 3rem;
  }
}
.offerings-head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .offerings-head {
    flex-direction: row;
    align-items: flex-end;
  }
}
.offerings-head .eyebrow {
  margin-bottom: 1rem;
}
.offerings-note {
  max-width: 20rem;
  color: rgba(11, 10, 8, 0.6);
  font-weight: 300;
  margin: 0;
}
.offerings-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 2rem;
  row-gap: 4rem;
}
@media (min-width: 768px) {
  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .offerings-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* card (JS-generated) */
.card {
  cursor: pointer;
}
.card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #f0ece4;
  border-radius: 2px;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover .card-media img {
  transform: scale(1.07);
}
.card-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 10, 8, 0.6), transparent);
}
.card-index {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: rgba(246, 241, 233, 0.7);
}
.card-title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--bone);
  letter-spacing: -0.025em;
  margin: 0;
}
.card-meta {
  margin-top: 1rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.card-tag {
  color: rgba(11, 10, 8, 0.4);
}
.card-explore {
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.5s;
}
.card:hover .card-explore {
  opacity: 1;
}
.card-desc {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: rgba(11, 10, 8, 0.55);
  font-weight: 300;
  max-width: 20rem;
}
.tilt {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

/* ============================================================
   REACH — Bangladesh divisions map
   ============================================================ */
.reach {
  background: #f8f9fa;
  color: var(--ink);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .reach {
    padding: 10rem 0;
  }
}
.reach-inner {
  padding: 0 1.5rem;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .reach-inner {
    padding: 0 3rem;
  }
}
.reach-inner > .eyebrow {
  margin-bottom: 1.25rem;
}
.reach-inner h2 {
  margin-bottom: 1.5rem;
}
.reach-desc {
  max-width: 36rem;
  color: rgba(11, 10, 8, 0.6);
  font-weight: 300;
  margin: 0 0 4rem;
}
.reach-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .reach-grid {
    grid-template-columns: 1.25fr 1fr;
  }
}

/* map — solid black stage, no drop shadow */
#map-stage {
  background: #000;
  border-radius: 16px;
  padding: 2rem;
}
#bd-map {
  width: 100%;
  height: auto;
  max-height: 50vh;
  margin: 0 auto;
  overflow: visible;
  display: block;
}
@media (min-width: 640px) {
  #bd-map {
    max-height: 60vh;
  }
}
@media (min-width: 1024px) {
  #bd-map {
    max-height: 68vh;
  }
}
.pin-dot {
  cursor: pointer;
}
.pin-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0.9;
  }
  80%,
  100% {
    transform: scale(3.2);
    opacity: 0;
  }
}
.map-3d {
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}
.arc {
  stroke-dasharray: 6 6;
  animation: dash 22s linear infinite;
}
@keyframes dash {
  to {
    stroke-dashoffset: -400;
  }
}
@media (hover: none) {
  .map-3d {
    transform: none !important;
  }
}

.reach-panel {
  border-top: 1px solid rgba(11, 10, 8, 0.15);
  padding-top: 2.5rem;
}
@media (min-width: 1024px) {
  .reach-panel {
    border-top: none;
    border-left: 1px solid rgba(11, 10, 8, 0.15);
    padding-left: 2rem;
    padding-top: 0;
  }
}
.reach-panel .eyebrow {
  margin-bottom: 1rem;
}
.reach-panel h3 {
  font-family: var(--font-serif);
  font-size: 3rem;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .reach-panel h3 {
    font-size: 3.75rem;
  }
}
.reach-note {
  max-width: 24rem;
  color: rgba(11, 10, 8, 0.6);
  font-weight: 300;
  line-height: 1.625;
  margin: 0 0 2rem;
}
.reach-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.reach-stats span {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--gold);
}
.reach-stats p {
  margin: 0.5rem 0 0;
  color: rgba(11, 10, 8, 0.4);
}
.reach-chips {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chip {
  border: 1px solid rgba(11, 10, 8, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  background: none;
  cursor: pointer;
  color: inherit;
  font: inherit;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 0.66rem;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   PROCESS (horizontal)
   ============================================================ */
.process {
  background: #faf8f5;
  color: var(--ink);
  overflow: hidden;
}
.process-head {
  padding: 6rem 1.5rem 0;
  max-width: 1600px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .process-head {
    padding-top: 8rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.process-head .eyebrow {
  margin-bottom: 1.25rem;
}
.process-head h2 {
  max-width: 48rem;
}
.process-hint {
  margin-top: 1.5rem;
  color: rgba(11, 10, 8, 0.4);
  display: none;
}
@media (min-width: 768px) {
  .process-hint {
    display: block;
  }
}
.process-pin {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}
.process-track {
  display: flex;
  gap: 2rem;
  padding: 0 1.5rem;
  will-change: transform;
}
@media (min-width: 768px) {
  .process-track {
    padding: 0 3rem;
  }
}
.process-card {
  flex-shrink: 0;
  width: 78vw;
  border: 1px solid rgba(11, 10, 8, 0.15);
  border-radius: 2px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 52vh;
  background: var(--bone);
}
@media (min-width: 640px) {
  .process-card {
    width: 46vw;
  }
}
@media (min-width: 1024px) {
  .process-card {
    width: 30vw;
    padding: 2.5rem;
  }
}
.process-num {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  color: var(--gold);
}
@media (min-width: 768px) {
  .process-num {
    font-size: 6rem;
  }
}
.process-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .process-title {
    font-size: 2.25rem;
  }
}
.process-desc {
  color: rgba(11, 10, 8, 0.55);
  font-weight: 300;
  line-height: 1.625;
  margin: 0;
}

/* ============================================================
   PARTNERS
   ============================================================ */
.partners {
  padding: 6rem 1.5rem;
  max-width: 1600px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .partners {
    padding: 10rem 3rem;
  }
}
.partners > .eyebrow {
  margin-bottom: 1.25rem;
}
.partners > h2 {
  margin-bottom: 1.5rem;
}
.partners-desc {
  max-width: 36rem;
  color: rgba(11, 10, 8, 0.6);
  font-weight: 300;
  margin: 0 0 3rem;
}
@media (min-width: 768px) {
  .partners-desc {
    margin-bottom: 4rem;
  }
}
.partners-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.partner-media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.partner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s;
}
.partner-card:hover .partner-media img {
  transform: scale(1.05);
}
.partner-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  letter-spacing: -0.025em;
  margin: 0 0 0.75rem;
}
.partner-desc {
  color: rgba(11, 10, 8, 0.6);
  font-weight: 300;
  max-width: 28rem;
  margin: 0 0 1rem;
}
.partner-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 10, 8, 0.4);
  padding-bottom: 0.25rem;
  transition: color 0.3s;
}
.partner-link:hover {
  color: var(--gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #f0ece4;
  color: var(--ink);
  position: relative;
}


.footer-inner {
  padding: 6rem 1.5rem;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
p.headOffice {
  margin-top:30px !important;
}

@media (min-width: 768px) {
  .footer-inner {
    padding: 8rem 3rem;
  }
}
.footer-inner > h2 {
  margin-bottom: 4rem;
}
.footer-grid {
  display: grid;
  gap: 3rem;
  border-top: 1px solid rgba(11, 10, 8, 0.15);
  padding-top: 3rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer-col .eyebrow {
  margin-bottom: 1.25rem;
}
.footer-col p {
  color: rgba(11, 10, 8, 0.7);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0;
}
.footer-col p + p {
  margin-top: 0.5rem;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  color: rgba(11, 10, 8, 0.7);
  font-weight: 300;
  font-size: 0.875rem;
}
.footer-links li + li {
  margin-top: 0.5rem;
}
.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-copy {
  margin-top: 4rem;
  color: rgba(11, 10, 8, 0.3);
}

/* ============================================================
   DETAIL OVERLAY
   ============================================================ */
.detail {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: #f8f9fa;
  color: #1a1a1a;
  visibility: hidden;
  pointer-events: none;
}
.detail.is-open {
  visibility: visible;
  pointer-events: auto;
}
.detail-scroll {
  height: 100%;
  overflow-y: auto;
}
.detail-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  border: 1px solid rgba(26, 26, 26, 0.3);
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  color: rgba(26, 26, 26, 0.8);
  background: none;
  cursor: pointer;
  font: inherit;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 0.66rem;
  transition:
    background 0.5s,
    color 0.5s;
}
@media (min-width: 768px) {
  .detail-close {
    top: 2rem;
    right: 3rem;
  }
}
.detail-close:hover {
  background: var(--ink);
  color: var(--bone);
}
.detail-grid {
  display: grid;
  min-height: 100vh;
}
@media (min-width: 1024px) {
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.detail-media-wrap {
  position: relative;
  background: #f0ece4;
  min-height: 40vh;
}
@media (min-width: 1024px) {
  .detail-media-wrap {
    min-height: 0;
  }
}
#detail-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.detail-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .detail-content {
    padding: 4rem 5rem;
  }
}
@media (min-width: 1024px) {
  .detail-content {
    padding: 5rem;
  }
}
.detail-content > .eyebrow {
  margin-bottom: 1rem;
}
.detail-name {
  margin-bottom: 1.5rem;
}
.detail-desc {
  color: rgba(26, 26, 26, 0.6);
  font-weight: 300;
  line-height: 1.625;
  max-width: 28rem;
  margin: 0 0 2.5rem;
}
.detail-rule {
  opacity: 0.3;
  margin-bottom: 2rem;
}
.detail-grid-label {
  color: rgba(26, 26, 26, 0.5);
  margin-bottom: 1.5rem;
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(26, 26, 26, 0.1);
  border: 1px solid rgba(26, 26, 26, 0.1);
}
@media (min-width: 640px) {
  .ingredients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ing {
  background: #f0ece4;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 120px;
  justify-content: space-between;
}
.ing-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
}
.ing-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--ink);
}
.ing-num {
  color: rgba(26, 26, 26, 0.3);
}
.detail-actions {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.btn-sample {
  background: var(--ink);
  color: var(--bone);
  border-radius: 9999px;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  font: inherit;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 0.66rem;
  transition: background 0.5s;
}
.btn-sample:hover {
  background: var(--gold);
}
.detail-note {
  color: rgba(26, 26, 26, 0.4);
}

/* ============================================================
   RESPONSIVE FINE-TUNING
   ============================================================ */
@media (max-width: 640px) {
  .display {
    line-height: 0.92;
  }
}

/* honour reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .pin-ring,
  .arc,
  .ms-img {
    animation: none !important;
    transition: none !important;
  }
  * {
    scroll-behavior: auto !important;
  }
}
