/* =========================================================
   ZaaZFoods — Premium Spice Trade Co.
   Stylesheet (style.css)
   Palette: warm spice tones — saffron, turmeric, cardamom
   ========================================================= */

/* ---------- CSS Variables ---------- */
:root {
  --c-bg:        #fbf6ee;
  --c-bg-2:      #f3e9d6;
  --c-paper:     #fffaf0;
  --c-ink:       #1c1208;
  --c-ink-2:     #3a2a18;
  --c-muted:     #7b6650;
  --c-saffron:   #c2410c;
  --c-turmeric:  #d97706;
  --c-amber:     #f59e0b;
  --c-gold:      #eab308;
  --c-cardamom:  #4d6b2a;
  --c-cinnamon:  #7c2d12;
  --c-line:      rgba(28, 18, 8, 0.12);

  --radius:      14px;
  --radius-lg:   22px;
  --shadow-sm:   0 4px 14px rgba(28, 18, 8, 0.08);
  --shadow-md:   0 18px 40px -10px rgba(28, 18, 8, 0.25);
  --shadow-lg:   0 30px 80px -20px rgba(28, 18, 8, 0.45);

  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --max:         1240px;
  --nav-h:       80px;
}

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

::selection { background: var(--c-saffron); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin: 0 0 0.5em;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
}
h1 { font-size: clamp(2.0rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p  { margin: 0 0 1em; color: var(--c-ink-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-saffron);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--c-saffron);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: 110px 0; position: relative; }
@media (max-width: 768px) { section { padding: 70px 0; } }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  background: rgba(251, 246, 238, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--c-line);
}
.nav__inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.brand__mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--c-saffron), var(--c-amber));
  color: #fff;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
}
.brand__mark span { transform: translateY(-1px); }

.nav__links {
  display: flex; gap: 36px;
  list-style: none; padding: 0; margin: 0;
}
.nav__links a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--c-ink);
  padding: 6px 0;
  transition: color 0.2s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--c-saffron);
  transition: width 0.3s ease;
}
.nav__links a:hover { color: var(--c-saffron); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--c-saffron); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--c-ink);
  color: #fff;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: transform 0.25s ease, background 0.25s ease;
}
.nav__cta:hover { background: var(--c-saffron); transform: translateY(-2px); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  color: var(--c-ink);
  font-size: 1.4rem;
}

@media (max-width: 900px) {
  .nav__toggle { display: grid; place-items: center; }
  .nav__links, .nav__cta { display: none; }
  .nav.open .nav__links {
    display: flex;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    background: var(--c-paper);
    padding: 24px 28px 28px;
    gap: 18px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--c-line);
  }
  .nav.open .nav__cta {
    display: inline-flex;
    position: absolute;
    top: calc(var(--nav-h) + 220px); left: 28px; right: 28px;
    justify-content: center;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn--primary {
  background: var(--c-saffron);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(194, 65, 12, 0.6);
}
.btn--primary:hover {
  background: var(--c-cinnamon);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -10px rgba(124, 45, 18, 0.7);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn--dark {
  background: var(--c-ink);
  color: #fff;
}
.btn--dark:hover { background: var(--c-saffron); transform: translateY(-3px); }

.btn .arrow { transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* =========================================================
   HERO with Ken Burns slider
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 920px;
  overflow: hidden;
  padding: 0;
  color: #fff;
}
.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
  overflow: hidden;
}
.slide.active { opacity: 1; z-index: 2; }
.slide::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,18,8,0.2) 0%, rgba(28,18,8,0.45) 55%, rgba(28,18,8,0.85) 100%),
    linear-gradient(120deg, rgba(124,45,18,0.55) 0%, rgba(28,18,8,0.0) 50%);
  z-index: 2;
}
.slide__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transform-origin: center;
  will-change: transform;
}
.slide.active .slide__img {
  animation: kenburns 9s ease-out forwards;
}
@keyframes kenburns {
  0%   { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.22) translate(-2%, -1.5%); }
}
.slide:nth-child(2).active .slide__img {
  animation: kenburns-2 9s ease-out forwards;
}
@keyframes kenburns-2 {
  0%   { transform: scale(1.18) translate(-2%, 1%); }
  100% { transform: scale(1.04) translate(0, 0); }
}
.slide:nth-child(3).active .slide__img {
  animation: kenburns-3 9s ease-out forwards;
}
@keyframes kenburns-3 {
  0%   { transform: scale(1.05) translate(2%, -1%); }
  100% { transform: scale(1.22) translate(-1%, 1%); }
}
.slide:nth-child(4).active .slide__img {
  animation: kenburns-4 9s ease-out forwards;
}
@keyframes kenburns-4 {
  0%   { transform: scale(1.2) translate(-1%, -1%); }
  100% { transform: scale(1.05) translate(1%, 1%); }
}

.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.45 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 3;
}

.hero__content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero__inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-amber);
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.3s ease forwards;
}
.hero__title {
  font-size: clamp(2rem, 6vw, 6.8rem);
  color: #fff;
  max-width: 980px;
  margin: 0 0 24px;
  opacity: 0;
  animation: fadeUp 1.1s 0.5s ease forwards;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-amber);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 580px;
  color: rgba(255,255,255,0.86);
  margin-bottom: 38px;
  opacity: 0;
  animation: fadeUp 1.1s 0.7s ease forwards;
}
.hero__actions {
  display: flex; gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.1s 0.9s ease forwards;
}
.hero__meta {
  position: absolute;
  bottom: 48px; right: 28px;
  z-index: 4;
  display: flex; align-items: center; gap: 26px;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__dots { display: flex; gap: 10px; }
.dot {
  width: 30px; height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.dot.active { background: var(--c-amber); width: 48px; }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 32px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.5);
  animation: scrollLine 2s infinite ease-in-out;
}
@keyframes scrollLine {
  0% { transform: scaleY(0.2); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0.2); transform-origin: bottom; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 700px) {
  .hero__meta { right: auto; left: 28px; bottom: 90px; gap: 14px; }
  .hero__scroll { display: none; }
}

/* =========================================================
   Marquee — origins ticker
   ========================================================= */
.marquee {
  background: var(--c-ink);
  color: rgba(255,255,255,0.85);
  padding: 22px 0;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.06);
}
.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -0.01em;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee__track i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-amber);
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   Stats Strip
   ========================================================= */
.stats {
  padding: 80px 0 60px;
  background: var(--c-paper);
  border-bottom: 1px solid var(--c-line);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  color: var(--c-saffron);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.92rem;
  color: var(--c-muted);
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* =========================================================
   Section heading block
   ========================================================= */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head p { color: var(--c-muted); max-width: 480px; }
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 48px; }
}

/* =========================================================
   About Preview / Story block
   ========================================================= */
.story {
  background: var(--c-bg-2);
  position: relative;
  overflow: hidden;
}
.story__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.story__visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.story__visual:hover img { transform: scale(1.05); }
.story__badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--c-amber);
  color: var(--c-ink);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}
.story__points {
  list-style: none; padding: 0; margin: 28px 0 36px;
  display: grid; gap: 14px;
}
.story__points li {
  display: flex; gap: 14px; align-items: flex-start;
  color: var(--c-ink-2);
}
.story__points li::before {
  content: "✦";
  color: var(--c-saffron);
  font-size: 1.2rem;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .story__grid { grid-template-columns: 1fr; gap: 40px; }
  .story__visual { aspect-ratio: 4/3; }
}

/* =========================================================
   Products grid
   ========================================================= */
.products { background: var(--c-bg); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product {
  position: relative;
  background: var(--c-paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.product:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.product__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.product__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.product:hover .product__media img { transform: scale(1.08); }
.product__tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.94);
  color: var(--c-ink);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.product__body {
  padding: 24px 26px 28px;
}
.product__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 6px;
  color: var(--c-ink);
}
.product__origin {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-saffron);
  margin-bottom: 12px;
}
.product__desc { color: var(--c-muted); margin: 0; font-size: 0.94rem; }
.product__meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 18px; padding-top: 18px;
  border-top: 1px dashed var(--c-line);
  font-size: 0.85rem;
  color: var(--c-ink-2);
}
.product__meta strong { color: var(--c-cinnamon); }

@media (max-width: 980px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .products__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Containers / Logistics section
   ========================================================= */
.logistics {
  background: var(--c-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.logistics h2 { color: #fff; }
.logistics p { color: rgba(255,255,255,0.78); }
.logistics__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.logistics__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-lg);
}
.logistics__visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.logistics__chip {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(20, 12, 4, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex; align-items: center; gap: 14px;
}
.logistics__chip .dot-live {
  width: 10px; height: 10px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,0.25);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%     { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
}
.logistics__chip span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-list {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: grid; gap: 18px;
}
.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.feature:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.feature__num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--c-amber);
  letter-spacing: 0.12em;
}
.feature h3 {
  color: #fff; font-size: 1.2rem; margin: 0 0 6px;
}
.feature p { margin: 0; font-size: 0.94rem; }

@media (max-width: 900px) {
  .logistics__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================================
   Process / How it works
   ========================================================= */
.process { background: var(--c-paper); }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.step {
  padding: 32px 26px;
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.step:hover { transform: translateY(-6px); background: var(--c-bg-2); }
.step__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--c-saffron);
  line-height: 1;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 18px;
  opacity: 0.85;
}
.step h3 { margin-bottom: 10px; font-size: 1.25rem; }
.step p { margin: 0; color: var(--c-muted); font-size: 0.94rem; }
@media (max-width: 900px) { .process__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process__grid { grid-template-columns: 1fr; } }

/* =========================================================
   Testimonial
   ========================================================= */
.testimonial {
  background: var(--c-bg-2);
  text-align: center;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.25;
  font-weight: 400;
  max-width: 920px;
  margin: 0 auto 30px;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.testimonial__quote::before,
.testimonial__quote::after {
  content: "“";
  color: var(--c-saffron);
  font-style: italic;
}
.testimonial__quote::after { content: "”"; }
.testimonial__author {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* =========================================================
   CTA Band
   ========================================================= */
.cta-band {
  padding: 100px 0;
  background:
    radial-gradient(800px 400px at 20% 30%, rgba(245,158,11,0.25), transparent 60%),
    linear-gradient(135deg, #7c2d12 0%, #1c1208 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; max-width: 800px; margin: 0 auto 18px; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 580px; margin: 0 auto 36px; }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer h4 {
  color: #fff;
  font-size: 0.84rem;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer ul a { font-size: 0.95rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--c-amber); }
.footer__brand p {
  color: rgba(255,255,255,0.6);
  max-width: 320px;
  margin-top: 18px;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer__socials { display: flex; gap: 14px; }
.footer__socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.footer__socials a:hover {
  background: var(--c-saffron);
  border-color: var(--c-saffron);
  color: #fff;
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 14px; }
}

/* =========================================================
   PAGE: Sub-page hero (used on About, Products, Contact)
   ========================================================= */
.page-hero {
  padding: calc(var(--nav-h) + 100px) 0 80px;
  background:
    radial-gradient(600px 400px at 85% 20%, rgba(245,158,11,0.18), transparent 60%),
    var(--c-bg);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--c-line);
}
.page-hero__inner { max-width: 920px; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero p { font-size: 1.15rem; color: var(--c-ink-2); max-width: 640px; }

/* =========================================================
   PAGE: About
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-grid img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  padding: 36px 28px;
  background: var(--c-paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
}
.value-card__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-saffron), var(--c-amber));
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.value-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.value-card p { color: var(--c-muted); margin: 0; }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .values { grid-template-columns: 1fr; }
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.t-item {
  padding: 32px 24px;
  border-right: 1px solid var(--c-line);
  position: relative;
}
.t-item:last-child { border-right: none; }
.t-year {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  color: var(--c-saffron);
  margin-bottom: 10px;
}
.t-item h3 { font-size: 1.15rem; margin-bottom: 6px; }
.t-item p { color: var(--c-muted); font-size: 0.94rem; margin: 0; }
@media (max-width: 760px) {
  .timeline { grid-template-columns: 1fr 1fr; }
  .t-item:nth-child(2n) { border-right: none; }
}

/* =========================================================
   PAGE: Contact
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.4rem;
  margin: 28px 0 6px;
}
.contact-info p { color: var(--c-muted); margin: 0; }
.contact-info a { color: var(--c-cinnamon); text-decoration: underline; text-underline-offset: 4px; }

.info-block {
  padding: 22px 0;
  border-top: 1px solid var(--c-line);
}
.info-block:last-child { border-bottom: 1px solid var(--c-line); }
.info-block__label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-saffron);
  margin-bottom: 6px;
}

.form {
  background: var(--c-paper);
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  background: #fff;
  color: var(--c-ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-saffron);
  box-shadow: 0 0 0 4px rgba(194,65,12,0.12);
}
.field textarea { resize: vertical; min-height: 140px; }
.form__submit {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px;
}
.form__note { font-size: 0.84rem; color: var(--c-muted); margin: 0; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form { padding: 30px 22px; }
  .form__row { grid-template-columns: 1fr; }
  .form__submit { flex-direction: column-reverse; align-items: stretch; gap: 14px; }
}

/* =========================================================
   PAGE: Products filters
   ========================================================= */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.chip {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  color: var(--c-ink-2);
  transition: all 0.25s ease;
}
.chip:hover { border-color: var(--c-saffron); color: var(--c-saffron); }
.chip.active {
  background: var(--c-ink);
  color: #fff;
  border-color: var(--c-ink);
}

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Toast
   ========================================================= */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  background: var(--c-ink);
  color: #fff;
  padding: 16px 22px;
  border-radius: 12px;
  font-size: 0.92rem;
  box-shadow: var(--shadow-md);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* =========================================================
   Helpers
   ========================================================= */
.text-center { text-align: center; }
.muted { color: var(--c-muted); }
.divider {
  height: 1px;
  background: var(--c-line);
  margin: 0;
  border: none;
}
