/* ============================================================
   NATEEL â€” Ultra Date Production Farm LLC-OPC
   Design system: white base Â· heritage gold Â· Belazu structure
   ============================================================ */

:root {
  --page: #FFFFFF;          /* Pure White Background */
  --bone: #F8F8F9;          /* Off-White Band */
  --sand: #0A0A0C;          /* Obsidian Black for Cards */
  --date: #000000;          /* Solid Black */
  --date-soft: #444444;     /* Secondary Dark Writings */
  --wine: #000000;          /* Minimalist Black Accents */
  --honey: #000000;         /* Solid Black Buttons */
  --honey-deep: #222222;    /* Dark Charcoal Hover */
  --gold-light: #FFFFFF;    /* Crisp White Highlights in Dark Sections */
  --frond: #000000;         /* Solid Black Container */
  --gold-logo: #CC9D42;       /* Exact Emblem Gold matching Logo */
  --steel: #666666;         /* Soft Charcoal */
  --hairline: rgba(0, 0, 0, 0.12); /* Clean Black Hairline */
  --hairline-light: rgba(255, 255, 255, 0.18); /* Clean White Hairline */

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Lora", Georgia, serif;
  --font-mono: "Space Grotesk", "Consolas", monospace;
  --font-arabic: "IBM Plex Sans Arabic", sans-serif;

  --max-w: 1280px;
  --gutter: 24px;
  --radius: 2px;
  --shadow-lift: 0 18px 40px -18px rgba(0, 0, 0, 0.40);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--date);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--honey); color: #fff; }

/* ---------- type ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: var(--date);
}
h1 { font-size: clamp(2.75rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--honey);
}
.eyebrow.no-rule::before { display: none; }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--date-soft);
  max-width: 62ch;
}

.ar-accent {
  font-family: var(--font-arabic);
  color: var(--honey);
  font-weight: 500;
}

/* ---------- layout ---------- */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(64px, 9vw, 132px) 0; }
.band-bone { background: var(--bone); }
.band-sand { background: var(--sand); }
.band-dark { background: linear-gradient(158deg, #5E0E19 0%, var(--date) 62%, #3B0910 100%); color: #F5EFE7; }
.band-dark .eyebrow { color: rgba(245, 239, 231, 0.6); }

.pattern-bone {
  background-color: var(--bone);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cg fill='none' stroke='%23C6862F' stroke-opacity='0.07' stroke-width='1.2'%3E%3Cpath d='M48 8c10 12 10 20 0 32-10-12-10-20 0-32z'/%3E%3Cpath d='M48 56c10 12 10 20 0 32-10-12-10-20 0-32z'/%3E%3Cpath d='M8 32c12-10 20-10 32 0-12 10-20 10-32 0z'/%3E%3Cpath d='M56 32c12-10 20-10 32 0-12 10-20 10-32 0z'/%3E%3C/g%3E%3C/svg%3E");
}
.pattern-dark {
  background-color: var(--date);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cg fill='none' stroke='%23E4B04A' stroke-opacity='0.09' stroke-width='1.2'%3E%3Cpath d='M48 8c10 12 10 20 0 32-10-12-10-20 0-32z'/%3E%3Cpath d='M48 56c10 12 10 20 0 32-10-12-10-20 0-32z'/%3E%3Cpath d='M8 32c12-10 20-10 32 0-12 10-20 10-32 0z'/%3E%3Cpath d='M56 32c12-10 20-10 32 0-12 10-20 10-32 0z'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(120% 90% at 50% 0%, #6B1019 0%, var(--date) 58%, #380810 100%);
}

.hairline { border: none; border-top: 1px solid var(--hairline); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  min-height: 48px;
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-gold { 
  background: #000000 !important; 
  color: #CC9D42 !important; 
  border: 1px solid rgba(204, 157, 66, 0.4) !important; 
  font-weight: 600 !important;
}
.btn-gold:hover { 
  background: #0D0D0D !important; 
  color: #E2B358 !important; 
  border-color: #CC9D42 !important;
  transform: translateY(-2px); 
  box-shadow: 0 8px 25px rgba(204, 157, 66, 0.25); 
}
.btn-ghost { border-color: var(--date); color: var(--date); background: transparent; }
.btn-ghost:hover { background: var(--date); color: #fff; transform: translateY(-2px); }
.btn-ghost-light { border-color: rgba(245,239,231,0.5); color: #F5EFE7; background: transparent; }
.btn-ghost-light:hover { background: #F5EFE7; color: var(--date); }
.btn-frond { background: var(--frond); color: #fff; }
.btn-frond:hover { background: #24382B; transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.text-link {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--honey-deep);
  border-bottom: 1px solid var(--honey);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}
.text-link:hover { color: var(--date); border-color: var(--date); }

/* ---------- announcement strip ---------- */
.strip {
  background: #000000;
  color: rgba(245, 239, 231, 0.92);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px var(--gutter);
}
.strip .gold { color: var(--gold-light); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  border-bottom-color: var(--hairline);
  box-shadow: 0 8px 30px -20px rgba(74, 12, 19, 0.35);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px; /* Scaled down for cleaner look */
  gap: 24px;
}
.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.brand-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.brand-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.brand-emblem {
  width: auto;
  height: 72px;
  flex-shrink: 0;
  transform: none;
  margin: 0;
}
.brand-wordmark {
  width: 280px;
  height: auto;
}
.brand-tagline {
  font-family: var(--font-mono), "Montserrat", sans-serif;
  font-size: 7.2px;
  letter-spacing: 0.36em;
  color: var(--steel);
  text-transform: uppercase;
  margin-top: -5px;
  margin-right: -0.36em; /* compensate last letter-spacing */
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a:not(.btn) {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--date-soft);
  position: relative;
  padding: 6px 0;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--honey);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:not(.btn):hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--date); }
.nav-links .btn { padding: 12px 22px; min-height: 42px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--date);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--page);
    padding: 18px var(--gutter) 28px;
    border-bottom: 1px solid var(--hairline);
    box-shadow: 0 30px 40px -30px rgba(74,12,19,0.4);
    display: none;
  }
  .nav-open .nav-links { display: flex; }
  .nav-links a:not(.btn) { padding: 12px 0; font-size: 14px; }
  .nav-links .btn { margin-top: 12px; }
}

/* ---------- hero (home) ---------- */
.hero { padding: 0; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
  min-height: min(82vh, 760px);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 110px) clamp(24px, 5vw, 90px);
}
.hero-copy h1 { margin: 0 0 26px; }
.hero-copy h1 em {
  font-style: italic;
  color: var(--honey-deep);
}
.hero-copy .lede { margin-bottom: 40px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-media { position: relative; overflow: hidden; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.8s var(--ease);
}
.loaded .hero-media img { transform: scale(1); }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,0.35) 0%, transparent 34%);
}
.hero-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: rgba(74, 12, 19, 0.90);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 18px;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge img { height: 22px; width: auto; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-media { order: -1; height: 46vh; }
}

/* ---------- category tiles ---------- */
.tile-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
  background: var(--date);
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), opacity 0.5s;
  opacity: 0.92;
}
.tile:hover img { transform: scale(1.06); opacity: 0.75; }
.tile-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 46px 18px 18px;
  background: linear-gradient(to top, rgba(58,8,14,0.90), transparent);
  color: #fff;
}
.tile-label h3 { font-size: 1.2rem; margin-bottom: 4px; color: #fff; }
.tile-label p {
  font-size: 13px;
  color: rgba(245,239,231,0.75);
  line-height: 1.4;
}
.tile-label .tile-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  display: inline-block;
  margin-top: 10px;
}
.tile:hover .tile-cta { opacity: 1; transform: translateY(0); }
@media (max-width: 1100px) { .tile-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .tile-row { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ---------- split / provenance ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
  align-items: center;
}
.split .copy { grid-column: span 5; }
.split .media { grid-column: span 7; }
.split.flip .copy { order: 2; }
.split .media-pair {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 18px;
  align-items: end;
}
.split .media img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}
.media-pair img:first-child { aspect-ratio: 4 / 5; }
.media-pair img:last-child { aspect-ratio: 4 / 4.4; }
figure figcaption {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 12px;
}
@media (max-width: 900px) {
  .split .copy, .split .media { grid-column: span 12; }
  .split.flip .copy { order: 0; }
}

/* ---------- process infographic (grainy photo aesthetic) ---------- */
.process-flow {
  position: relative;
  overflow: hidden;
  background-color: #0A080C;
  background-image: 
    linear-gradient(180deg, rgba(8, 6, 10, 0.88) 0%, rgba(12, 10, 15, 0.84) 50%, rgba(6, 4, 8, 0.92) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E"),
    url("../assets/img/mother.png");
  background-size: cover;
  background-position: center center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: clamp(28px, 3.4vw, 46px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}
.pf-watermark {
  position: absolute;
  top: -34px;
  right: -34px;
  width: 190px;
  opacity: 0.06;
  pointer-events: none;
}
.pf-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 18px;
  padding-bottom: 22px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--hairline);
}
.pf-eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--honey-deep);
}
.pf-track {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}
.pf-steps { position: relative; }
/* energy flowing down the process line (animates paint only, no reflow) */
.pf-steps::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 26px;
  bottom: 26px;
  width: 2px;
  opacity: 0.55;
  background-image: linear-gradient(to bottom,
    #FFFFFF 0%,
    #00E5FF 34%,
    #FFFFFF 50%,
    #00E5FF 66%,
    #FFFFFF 100%);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.8);
  opacity: 0.9;
  background-size: 100% 260%;
  background-repeat: no-repeat;
  animation: pfFlow 3.4s linear infinite;
}
@keyframes pfFlow {
  0%   { background-position: 0 120%; }
  100% { background-position: 0 -120%; }
}
.pf-step {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding-bottom: 26px;
}
.pf-step:last-child { padding-bottom: 0; }
.pf-node {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  background: rgba(15, 15, 20, 0.95);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
  animation: pfPulse 5s ease-in-out infinite;
}
.pf-node svg { transition: transform 0.35s var(--ease); }
/* sequential wave â€” each node lights as the comet reaches it */
.pf-step:nth-child(1) .pf-node { animation-delay: 0s; }
.pf-step:nth-child(2) .pf-node { animation-delay: 1s; }
.pf-step:nth-child(3) .pf-node { animation-delay: 2s; }
.pf-step:nth-child(4) .pf-node { animation-delay: 3s; }
.pf-step:nth-child(5) .pf-node { animation-delay: 4s; }
@keyframes pfPulse {
  0%, 100%  { box-shadow: 0 0 0 0 rgba(198,134,47,0); border-color: var(--honey); }
  8%        { box-shadow: 0 0 0 7px rgba(198,134,47,0.16); border-color: var(--gold-light); background: #FFFCF6; }
  20%       { box-shadow: 0 0 0 0 rgba(198,134,47,0); border-color: var(--honey); background: var(--sand); }
}
.pf-step:hover .pf-node {
  animation: none;
  background: #FFFFFF;
  color: #000000;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.pf-step:hover .pf-node svg { transform: scale(1.12); }
.pf-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  display: block;
  margin-bottom: 5px;
}
.pf-body h3 { font-size: 1.28rem; margin-bottom: 6px; }
.pf-body p { font-size: 15px; color: var(--date-soft); max-width: 42ch; }
@media (max-width: 520px) {
  .pf-step { grid-template-columns: 44px 1fr; gap: 16px; }
  .pf-node { width: 44px; height: 44px; }
  .pf-steps::before { left: 21px; }
}

/* ---------- two doors ---------- */
.doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.door {
  position: relative;
  padding: clamp(38px, 4vw, 64px);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  background: var(--sand);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.door:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.door .eyebrow { margin-bottom: 16px; }
.door h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); margin-bottom: 12px; }
.door p { color: var(--date-soft); max-width: 44ch; margin-bottom: 26px; }
.door .text-link { border-bottom-color: transparent; }
.door:hover .text-link { border-bottom-color: var(--honey); }
.door.trade { background: var(--frond); color: #EFF3EE; border-color: var(--frond); }
.door.trade .eyebrow { color: rgba(239, 243, 238, 0.65); }
.door.trade .eyebrow::before { background: var(--gold-light); }
.door.trade p { color: rgba(239, 243, 238, 0.8); }
.door.trade .text-link { color: var(--gold-light); }
.door .eyebrow,
.door h3,
.door p,
.door .text-link {
  position: relative;
  z-index: 2;
}

.door-mark {
  position: absolute;
  right: -20px;
  bottom: -35px;
  width: 220px;
  opacity: 0.38;
  filter: drop-shadow(0 0 16px rgba(247, 228, 196, 0.3));
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.door:hover .door-mark {
  opacity: 0.60;
  transform: scale(1.06);
}
@media (max-width: 800px) { .doors { grid-template-columns: 1fr; } }

/* ---------- why blocks (image â†’ highlight cards) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 340px;
  display: flex;
  background: var(--sand);
  border-top: 2px solid var(--honey);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 var(--hairline), 0 0 0 1px rgba(110,118,115,0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.why-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: opacity 0.55s var(--ease), transform 0.9s var(--ease), filter 0.55s var(--ease);
}
.why-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.25;
  pointer-events: none;
  mix-blend-mode: overlay;
  transition: opacity 0.55s var(--ease);
}
.why-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,6,12,0.93) 6%, rgba(45,6,12,0.5) 52%, rgba(45,6,12,0.24) 100%);
  transition: opacity 0.55s var(--ease);
}
.why-content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 30px 26px 34px;
}
.why-card .num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  display: block;
  margin-bottom: 14px;
  transition: color 0.45s var(--ease);
}
.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
  transition: color 0.45s var(--ease), transform 0.45s var(--ease);
}
.why-card p {
  font-size: 15px;
  color: rgba(245,239,231,0.85);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease), opacity 0.4s var(--ease), color 0.45s var(--ease);
}
/* hover / focus: photo fades, writing gets highlighted */
.why-card:hover .why-photo img,
.why-card:focus-within .why-photo img { opacity: 0.1; transform: scale(1.05); }
.why-card:hover .why-photo::after,
.why-card:focus-within .why-photo::after,
.why-card:hover .why-photo::before,
.why-card:focus-within .why-photo::before { opacity: 0; }
.why-card:hover .num,
.why-card:focus-within .num { color: var(--honey-deep); }
.why-card:hover h3,
.why-card:focus-within h3 { color: var(--date); }
.why-card:hover p,
.why-card:focus-within p { color: var(--date-soft); max-height: 240px; opacity: 1; }

/* touch devices have no hover â€” reveal the readable state */
@media (hover: none) {
  .why-photo img { opacity: 0.1; }
  .why-photo::after,
  .why-photo::before { opacity: 0; }
  .why-card .num { color: var(--honey-deep); }
  .why-card h3 { color: var(--date); }
  .why-card p { max-height: 240px; opacity: 1; color: var(--date-soft); }
}
@media (max-width: 1000px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .why-grid { grid-template-columns: 1fr; } .why-card { min-height: 300px; } }

/* ---------- segments row ---------- */
.segments {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.segment {
  flex: 1 1 180px;
  padding: 34px 22px;
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  text-align: center;
  transition: background 0.3s;
}
.segment:hover { background: var(--bone); }
.segment .display { font-size: 1.25rem; display: block; }
.segment span.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  display: block;
  margin-top: 6px;
}

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { color: #F5EFE7; margin-bottom: 14px; }
.cta-band h2 em { font-style: italic; color: var(--gold-light); }
.cta-band p { color: rgba(245,239,231,0.72); max-width: 54ch; margin: 0 auto 36px; }
.cta-band img.mark { height: 62px; margin: 0 auto 30px; width: auto; }

/* ---------- spec sheet ---------- */
.spec {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  border-top: 1px solid var(--hairline);
  margin-top: 18px;
}
.spec div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline);
}
.spec dt { color: var(--steel); text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; padding-top: 1px; }
.spec dd { color: var(--date); }

/* ---------- product grid ---------- */
.products-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.cat-rail {
  position: sticky;
  top: 108px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cat-rail button {
  text-align: left;
  background: none;
  border: none;
  border-left: 2px solid transparent;
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.cat-rail button:hover { color: var(--date); background: var(--bone); }
.cat-rail button.active { color: var(--honey-deep); border-left-color: var(--honey); font-weight: 500; }
.cat-rail .rail-note {
  margin-top: 26px;
  padding: 18px 16px;
  background: var(--bone);
  font-size: 13px;
  color: var(--date-soft);
  border-radius: var(--radius);
}
.cat-rail .rail-note a { color: var(--honey-deep); border-bottom: 1px solid var(--honey); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.product-card.hidden { display: none; }
.product-card .ph {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
}
.product-card .ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .ph img { transform: scale(1.05); }
.product-card .body { padding: 20px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.product-card .cat-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--honey-deep);
  margin-bottom: 8px;
}
.product-card h3 { font-size: 1.22rem; margin-bottom: 6px; }
.product-card .desc { font-size: 14px; color: var(--date-soft); margin-bottom: 14px; }
.product-card .mini-spec {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  border-top: 1px solid var(--hairline);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 1080px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 880px) {
  .products-layout { grid-template-columns: 1fr; }
  .cat-rail {
    position: sticky;
    top: 76px;
    z-index: 40;
    flex-direction: row;
    overflow-x: auto;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 10px 0;
    border-bottom: 1px solid var(--hairline);
  }
  .cat-rail button { white-space: nowrap; border-left: none; border-bottom: 2px solid transparent; }
  .cat-rail button.active { border-bottom-color: var(--honey); }
  .cat-rail .rail-note { display: none; }
}
@media (max-width: 620px) { .product-grid { grid-template-columns: 1fr; } }

/* ---------- product modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(45, 6, 12, 0.58);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--sand);
  max-width: 980px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: modalIn 0.4s var(--ease);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal .m-media { min-height: 380px; }
.modal .m-media img { width: 100%; height: 100%; object-fit: cover; }
.modal .m-body { padding: clamp(28px, 4vw, 48px); position: relative; }
.modal .m-body h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin: 6px 0 12px; }
.modal .m-body .desc { color: var(--date-soft); font-size: 15.5px; }
.modal .m-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--bone);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
  color: var(--date);
  transition: background 0.25s, transform 0.25s;
}
.modal-close:hover { background: var(--honey); color: #fff; transform: rotate(90deg); }
@media (max-width: 760px) {
  .modal { grid-template-columns: 1fr; }
  .modal .m-media { min-height: 240px; max-height: 300px; overflow: hidden; }
}

/* ---------- gated download ---------- */
.gate {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  background: var(--date);
  color: #F5EFE7;
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.gate::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cg fill='none' stroke='%23E4B04A' stroke-opacity='0.08' stroke-width='1.2'%3E%3Cpath d='M48 8c10 12 10 20 0 32-10-12-10-20 0-32z'/%3E%3Cpath d='M48 56c10 12 10 20 0 32-10-12-10-20 0-32z'/%3E%3Cpath d='M8 32c12-10 20-10 32 0-12 10-20 10-32 0z'/%3E%3Cpath d='M56 32c12-10 20-10 32 0-12 10-20 10-32 0z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.gate h2 { color: #F5EFE7; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.gate p { color: rgba(245,239,231,0.75); margin-top: 12px; }
.gate form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; position: relative; }
.gate form .full { grid-column: 1 / -1; }
@media (max-width: 820px) { .gate { grid-template-columns: 1fr; } .gate form { grid-template-columns: 1fr; } }

/* ---------- forms ---------- */
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 7px;
}
.band-dark .field label, .gate .field label { color: #FFFFFF !important; }
.enquiry-block .field label { color: #222222 !important; }
.field input, .field select, .field textarea,
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #000000 !important;
  background: #FFFFFF !important;
  border: 1px solid #CCCCCC !important;
  border-radius: 4px;
  transition: border-color 0.25s, box-shadow 0.25s;
  min-height: 48px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
}
.field input::placeholder, .field textarea::placeholder,
input::placeholder, textarea::placeholder {
  color: #777777 !important;
  opacity: 1;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus,
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #000000 !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12), inset 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}
.form-note {
  font-size: 13.5px;
  color: var(--steel);
  margin-top: 14px;
}
.band-dark .form-note, .gate .form-note { color: rgba(245,239,231,0.55); }
.form-success {
  display: none;
  padding: 18px 20px;
  background: rgba(47, 74, 56, 0.09);
  border-left: 2px solid var(--frond);
  color: var(--frond);
  font-size: 15px;
  margin-top: 18px;
}
.gate .form-success { background: rgba(228,176,74,0.12); border-color: var(--gold-light); color: var(--gold-light); }
.form-success.show { display: block; }

/* ---------- trade page ---------- */
.trade-hero {
  position: relative;
  overflow: hidden;
  background: #050507;
  color: #EFF3EE;
  padding: clamp(80px, 10vw, 140px) 0;
  isolation: isolate;
}
#trade-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}
.trade-hero .wrap {
  position: relative;
  z-index: 3;
}
.trade-hero .eyebrow { color: rgba(239,243,238,0.7); }
.trade-hero .eyebrow::before { background: #FFFFFF; }
.trade-hero h1 { color: #FFFFFF; max-width: 16ch; font-weight: 600; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.trade-hero .lede { color: rgba(239,243,238,0.85); }
.subnav {
  position: sticky;
  top: 76px;
  z-index: 60;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.subnav .wrap { display: flex; gap: 8px; overflow-x: auto; }
.subnav a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  padding: 16px 18px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.25s, border-color 0.25s;
}
.subnav a:hover, .subnav a.active { color: var(--frond); border-bottom-color: var(--frond); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--hairline);
}
.step {
  padding: 28px 24px 34px;
  border-right: 1px solid var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.step .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--honey);
  font-style: italic;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--date-soft); }
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-steps { grid-template-columns: 1fr; } }

.fact-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 40px; }
.fact-list div {
  padding: 20px 0;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
}
.fact-list dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  padding-top: 3px;
}
.fact-list dd { font-size: 15.5px; }
@media (max-width: 760px) { .fact-list { grid-template-columns: 1fr; } }

/* gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery figure:nth-child(4n+1) { grid-row: span 2; }
.gallery figure { display: flex; flex-direction: column; }
.gallery .gph {
  overflow: hidden;
  border-radius: var(--radius);
  flex: 1;
  min-height: 220px;
  background: var(--sand);
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery figure:hover img { transform: scale(1.04); }
@media (max-width: 800px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

.enquiry-block {
  background: var(--bone);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 52px);
  margin-top: clamp(36px, 5vw, 64px);
}
.enquiry-block form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: end;
}
.enquiry-block .field.msg { grid-column: 1 / -1; }
.enquiry-block h3 { margin-bottom: 20px; }
@media (max-width: 760px) { .enquiry-block form { grid-template-columns: 1fr; } }

/* ---------- about ---------- */
.values-list { max-width: 760px; }
.values-list li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--hairline);
}
.values-list .display { font-size: 1.4rem; }
.values-list p { color: var(--date-soft); font-size: 15.5px; padding-top: 4px; }
@media (max-width: 640px) { .values-list li { grid-template-columns: 1fr; gap: 6px; } }

.certs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.cert-card {
  position: relative;
  background: #0A0A0C !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-top: 3px solid #FFFFFF !important;
  border-radius: 4px;
  padding: 30px 24px;
  color: #FFFFFF !important;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}
.cert-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0; width: 100px; height: 100px;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}
.cert-card:hover {
  transform: translateY(-8px);
  border-color: #FFFFFF !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.15);
}
.cert-card .mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid #FFFFFF !important;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FFFFFF !important;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.cert-card:hover .mark {
  transform: scale(1.08) rotate(3deg);
  background: #FFFFFF !important;
  color: #000000 !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}
.cert-card h3 {
  font-family: var(--font-display);
  font-size: 1.28rem !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #FFFFFF !important;
  margin-bottom: 10px;
}
.cert-card p {
  font-family: var(--font-body);
  font-size: 14.5px !important;
  line-height: 1.6;
  color: #CCCCCC !important;
  margin: 0;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.stat-row div {
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.stat-row div:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: #FFFFFF;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.12);
}
.stat-row .display {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.4rem) !important;
  font-weight: 700;
  color: #FFFFFF !important;
  line-height: 1;
  display: block;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease;
}
.stat-row div:hover .display {
  transform: scale(1.06);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}
.stat-row span {
  font-family: var(--font-mono);
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D0D0D5 !important;
  display: block;
  margin-top: 12px;
  opacity: 0.95;
}
@media (max-width: 760px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat-row div { padding: 24px 16px; }
}
@media (max-width: 480px) {
  .stat-row { grid-template-columns: 1fr; }
}

/* ---------- contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .full { grid-column: 1 / -1; }
.contact-aside { display: flex; flex-direction: column; gap: 0; }
.contact-aside .info-block {
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
}
.contact-aside .info-block dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  padding-top: 3px;
}
.contact-aside .info-block dd a { color: var(--honey-deep); }
.contact-aside .info-block dd a:hover { text-decoration: underline; }
.map-shell {
  margin-top: 28px;
  aspect-ratio: 4 / 3;
  background: var(--sand);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.map-shell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-consent { padding: 24px; }
.map-consent p { font-size: 13.5px; color: var(--steel); margin-bottom: 16px; max-width: 34ch; }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 14px 24px;
  background: #128C4A;
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.whatsapp-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
@media (max-width: 880px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
}

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding: clamp(64px, 8vw, 110px) 0 clamp(40px, 5vw, 72px); }
.page-hero h1 { max-width: 18ch; margin-bottom: 20px; }
.page-hero .lede { max-width: 58ch; }

/* ---------- editorial grid (Trade Page) ---------- */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(24px, 4vw, 48px);
  margin-top: 48px;
}

/* Feature card (takes up more space) */
.ed-card {
  display: flex;
  flex-direction: column;
  grid-column: span 12;
}
.ed-card.feat {
  grid-column: span 12; /* Default to full width for featured */
}
@media (min-width: 768px) {
  .ed-card.feat {
    grid-column: span 12;
  }
}
@media (min-width: 1024px) {
  .ed-card {
    grid-column: span 6; /* 2 up */
  }
  .ed-card.feat {
    grid-column: span 12; /* full width feature */
  }
}

.ed-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 20px;
}
.ed-card.feat .ed-image-wrap {
  aspect-ratio: 16/9; /* wider ratio for feature */
}
.ed-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.ed-card:hover .ed-image-wrap img {
  transform: scale(1.04);
}

.ed-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--date);
  display: inline-block;
  padding: 6px 10px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.ed-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--date);
  margin-bottom: 12px;
}
.ed-desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--date-soft);
  max-width: 60ch;
}


/* ---------- footer ---------- */
footer.site-footer {
  background: var(--date);
  color: rgba(245,239,231,0.8);
  padding: clamp(56px, 7vw, 96px) 0 0;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-grid a { font-size: 14.5px; line-height: 2.1; transition: color 0.25s; display: inline-block; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-brand img { height: 110px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: rgba(245,239,231,0.6); max-width: 34ch; }
.footer-brand .ar {
  font-family: var(--font-arabic);
  color: var(--gold-light);
  font-size: 1.15rem;
  margin-top: 14px;
}
.footer-certs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.footer-certs span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  border: 1px solid rgba(228,176,74,0.4);
  color: var(--gold-light);
  padding: 6px 10px;
  border-radius: var(--radius);
}
.footer-bottom {
  border-top: 1px solid rgba(245,239,231,0.14);
  padding: 22px 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: rgba(245,239,231,0.45);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-img { overflow: hidden; }
.reveal-img img { transition: transform 1.1s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* section headers */
.sec-head { margin-bottom: clamp(34px, 5vw, 60px); }
.sec-head.center { text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head.split-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

/* ---------- BLACK BOXES WITH WHITE FONTS & HIGH READABILITY ---------- */
.process-flow, .door, .why-card, .product-card, .gate, .modal {
  background: #0A0A0C !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.process-flow h3, .door h3, .why-card h3, .product-card h3, .gate h2, .modal h3 {
  color: #FFFFFF !important;
}

.process-flow p, .door p, .why-card p, .product-card p, .gate p, .modal p, .modal-close {
  color: #E0E0E6 !important;
}

.pf-eyebrow, .pf-track, .pf-num, .spec dt, .cat-tag {
  color: #CCCCCC !important;
}

.spec dd {
  color: #FFFFFF !important;
}

.btn-white-cta {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid #FFFFFF !important;
  font-weight: 600 !important;
  border-radius: 0 !important;
  padding: 13px 28px !important;
  letter-spacing: 0.1em !important;
}

.btn-white-cta:hover {
  background: #E0E0E0 !important;
  color: #000000 !important;
}

/* ---------- HERO SLIDER (EDGE-TO-EDGE FULL FILL) ---------- */
.hero-slider-section {
  position: relative;
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  background: #FFFFFF;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(550px, 82vh, 880px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 8vw;
}

.hero-slide-content {
  max-width: 680px;
  color: #FFFFFF;
}

.slide-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFFFFF;
  display: block;
  margin-bottom: 14px;
  opacity: 0.9;
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: #FFFFFF !important;
  margin-bottom: 28px;
  text-transform: uppercase;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #000000;
  border: none;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.slider-arrow:hover {
  background: #FFFFFF;
  transform: translateY(-50%) scale(1.08);
}

.prev-arrow { left: 24px; }
.next-arrow { right: 24px; }

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.slider-dots .dot.active {
  background: #FFFFFF;
  transform: scale(1.25);
}

/* ---------- cyclical infographic ---------- */
.cycle-infographic {
  display: grid;
  grid-template-columns: 1fr 30px 1fr;
  grid-template-rows: 1fr 30px 1fr;
  gap: 15px;
  align-items: center;
  justify-items: center;
  background: var(--bone);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
}
.cycle-step {
  text-align: center;
  background: #ffffff;
  padding: 15px;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(204, 157, 66, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cycle-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.cycle-step h4 {
  font-family: var(--font-display);
  font-size: 15px;
  margin: 6px 0 2px;
  color: var(--date);
}
.cycle-step p {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--steel);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cycle-icon {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-logo);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cycle-arrow {
  color: var(--gold-logo);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-1 { grid-column: 1; grid-row: 1; }
.arrow-1 { grid-column: 2; grid-row: 1; }
.step-2 { grid-column: 3; grid-row: 1; }
.arrow-2 { grid-column: 3; grid-row: 2; }
.step-3 { grid-column: 3; grid-row: 3; }
.arrow-3 { grid-column: 2; grid-row: 3; }
.step-4 { grid-column: 1; grid-row: 3; }
.arrow-4 { grid-column: 1; grid-row: 2; }

@media (max-width: 500px) {
  .cycle-infographic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 30px;
  }
  .step-1 { grid-column: 1; grid-row: 1; }
  .arrow-1 { grid-column: 1; grid-row: 2; transform: rotate(90deg); }
  .step-2 { grid-column: 1; grid-row: 3; }
  .arrow-2 { grid-column: 1; grid-row: 4; transform: rotate(90deg); }
  .step-3 { grid-column: 1; grid-row: 5; }
  .arrow-3 { grid-column: 1; grid-row: 6; transform: rotate(90deg); }
  .step-4 { grid-column: 1; grid-row: 7; }
  .arrow-4 { display: none; }
}

/* ---------- craft grid ---------- */
.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.craft-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  background: var(--date);
}
.craft-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.5s;
  opacity: 0.95;
}
.craft-item:hover img {
  transform: scale(1.05);
  opacity: 0.8;
}
@media (max-width: 900px) {
  .craft-grid { grid-template-columns: 1fr; gap: 12px; }
  .craft-item { aspect-ratio: 4 / 3; }
}

/* ---------- WhatsApp Floating Widget ---------- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

/* ---------- Cart UI ---------- */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.cart-backdrop.open { opacity: 1; visibility: visible; }
.cart-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 400px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cart-backdrop.open .cart-panel { transform: translateX(0); }
.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--date); }
.cart-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--date-soft); }
.cart-items { flex: 1; overflow-y: auto; padding: 24px; }
.cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}
.cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 4px; }
.cart-item-details { flex: 1; }
.cart-item-details h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 4px; color: var(--date); }
.cart-item-price { font-family: var(--font-mono); font-size: 12px; color: var(--honey-deep); margin-bottom: 8px; }
.cart-item-qty { display: flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 13px; }
.cart-item-qty button { background: var(--bone); border: 1px solid var(--hairline); width: 24px; height: 24px; border-radius: 50%; cursor: pointer; }
.cart-item-remove { background: none; border: none; color: #999; cursor: pointer; font-size: 18px; padding: 4px; }
.cart-footer { padding: 24px; border-top: 1px solid var(--hairline); background: #FAFAFA; }
.cart-total { display: flex; justify-content: space-between; font-weight: 600; font-family: var(--font-display); font-size: 1.2rem; color: var(--date); }



.brand-wordmark-text {
    font-family: 'Clicker Script', cursive;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--gold-logo);
    font-weight: 400;
    -webkit-text-stroke: 0.5px var(--gold-logo);
}
.cycle-infographic {
  display: grid;
  grid-template-columns: 1fr 30px 1fr;
  grid-template-rows: 1fr 30px 1fr;
  gap: 15px;
  align-items: center;
  justify-items: center;
  background: var(--bone);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
}
.cycle-step {
  text-align: center;
  background: #ffffff;
  padding: 15px;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(204, 157, 66, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cycle-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.cycle-step h4 {
  font-family: var(--font-display);
  font-size: 15px;
  margin: 6px 0 2px;
  color: var(--date);
}
.cycle-step p {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--steel);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cycle-icon {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-logo);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cycle-arrow {
  color: var(--gold-logo);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-1 { grid-column: 1; grid-row: 1; }
.arrow-1 { grid-column: 2; grid-row: 1; }
.step-2 { grid-column: 3; grid-row: 1; }
.arrow-2 { grid-column: 3; grid-row: 2; }
.step-3 { grid-column: 3; grid-row: 3; }
.arrow-3 { grid-column: 2; grid-row: 3; }
.step-4 { grid-column: 1; grid-row: 3; }
.arrow-4 { grid-column: 1; grid-row: 2; }

@media (max-width: 500px) {
  .cycle-infographic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 30px;
  }
  .step-1 { grid-column: 1; grid-row: 1; }
  .arrow-1 { grid-column: 1; grid-row: 2; transform: rotate(90deg); }
  .step-2 { grid-column: 1; grid-row: 3; }
  .arrow-2 { grid-column: 1; grid-row: 4; transform: rotate(90deg); }
  .step-3 { grid-column: 1; grid-row: 5; }
  .arrow-3 { grid-column: 1; grid-row: 6; transform: rotate(90deg); }
  .step-4 { grid-column: 1; grid-row: 7; }
  .arrow-4 { display: none; }
}

/* ---------- craft grid ---------- */
.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.craft-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  background: var(--date);
}
.craft-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.5s;
  opacity: 0.95;
}
.craft-item:hover img {
  transform: scale(1.05);
  opacity: 0.8;
}
@media (max-width: 900px) {
  .craft-grid { grid-template-columns: 1fr; gap: 12px; }
  .craft-item { aspect-ratio: 4 / 3; }
}

/* ---------- WhatsApp Floating Widget ---------- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

/* ---------- Cart UI ---------- */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.cart-backdrop.open { opacity: 1; visibility: visible; }
.cart-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 400px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cart-backdrop.open .cart-panel { transform: translateX(0); }
.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--date); }
.cart-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--date-soft); }
.cart-items { flex: 1; overflow-y: auto; padding: 24px; }
.cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}
.cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 4px; }
.cart-item-details { flex: 1; }
.cart-item-details h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 4px; color: var(--date); }
.cart-item-price { font-family: var(--font-mono); font-size: 12px; color: var(--honey-deep); margin-bottom: 8px; }
.cart-item-qty { display: flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 13px; }
.cart-item-qty button { background: var(--bone); border: 1px solid var(--hairline); width: 24px; height: 24px; border-radius: 50%; cursor: pointer; }
.cart-item-remove { background: none; border: none; color: #999; cursor: pointer; font-size: 18px; padding: 4px; }
.cart-footer { padding: 24px; border-top: 1px solid var(--hairline); background: #FAFAFA; }
.cart-total { display: flex; justify-content: space-between; font-weight: 600; font-family: var(--font-display); font-size: 1.2rem; color: var(--date); }



.brand-wordmark-text {
    font-family: 'Clicker Script', cursive;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--gold-logo);
    font-weight: 400;
    -webkit-text-stroke: 0.5px var(--gold-logo);
}
.brand-ateel {
    position: relative;
    top: 4px;
}

/* ==========================================================================
   LOGO OPTICAL ALIGNMENT & CONTRAST (Refined per feedback)
   ========================================================================== */

/* 1. Logo Container: subtle background tint, proper padding, snug fit */
.brand {
  padding: 6px 24px 6px 32px !important; /* Breathing room, especially on left */
  display: flex !important;
  align-items: center !important; 
  background: #FDF9F1 !important; /* Very soft cream/tan tint tying into hero tones */
  border-radius: 6px !important; /* Snug rounded rectangle */
  box-shadow: 0 2px 6px rgba(0,0,0,0.02), inset 0 0 0 1px rgba(204, 157, 66, 0.15) !important;
  margin: 0 !important;
  max-height: 86px !important; /* Safely inside 88px header */
  height: auto !important;
}

/* 2. Logo Image: increased size and stronger contrast */
.brand-emblem {
  height: 74px !important; /* Push closer to 85% of available header space */
  width: auto !important;
  object-fit: contain !important;
  /* Richer gold and stronger drop-shadow to prevent washout */
  filter: brightness(0.82) saturate(1.4) contrast(1.15) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.12)) !important;
}

/* 3. Rebalance Cart Button: outline style so logo is the primary anchor */
.site-header .cart-toggle-nav {
  background: transparent !important;
  color: var(--date) !important; 
  border: 1px solid rgba(0,0,0,0.2) !important;
  box-shadow: none !important;
}
.site-header .cart-toggle-nav:hover {
  background: rgba(0,0,0,0.03) !important;
  border-color: rgba(0,0,0,0.4) !important;
  color: var(--date) !important;
}
