/* =========================================================
   TAZA Produce — Awning & Crate design system
   Market-sign typography · stripe motif · cool paper
   ========================================================= */

:root {
  --ink: #141a17;
  --ink-soft: #3d4a42;
  --muted: #6b7870;

  --leaf: #0f3d24;
  --leaf-mid: #1a5c35;
  --leaf-bright: #2a7a48;

  --awning: #c41e3a;
  --citrus: #e8d7a8;
  --citrus-ink: #1a2e0a;

  --paper: #f0f3f1;
  --mist: #dce5df;
  --white: #ffffff;
  --line: #c5d0c8;

  --font-display: "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;

  --container: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 4px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(rgba(20, 26, 23, 0.035) 0.7px, transparent 0.7px),
    linear-gradient(180deg, #e8eee9 0%, var(--paper) 180px);
  background-size: 14px 14px, 100% 100%;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(15, 61, 36, 0.12);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1rem; color: var(--ink-soft); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 0.4em;
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 28px;
}

.section { padding: 100px 0; }
.section--mist {
  background-color: var(--mist);
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 18px,
      rgba(15, 61, 36, 0.04) 18px,
      rgba(15, 61, 36, 0.04) 19px
    );
}
.section--leaf {
  background: var(--leaf);
  color: var(--white);
}
.section--leaf h2,
.section--leaf h3 { color: var(--white); }
.section--leaf p { color: rgba(255, 255, 255, 0.78); }

/* Stripe utility — awning language */
.stripe-bar {
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--leaf) 0 28px,
    var(--white) 28px 40px,
    var(--awning) 40px 52px,
    var(--white) 52px 64px
  );
}

.stripe-thin {
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--leaf) 0 16px,
    transparent 16px 28px
  );
}

/* ----------------------------- Type ----------------------------- */
.kicker {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--leaf-mid);
  margin-bottom: 12px;
}

.section-head { max-width: 560px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
.section-head p { font-size: 1.05rem; }

.section-head--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  max-width: none;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--ink);
}
.section-head--row .section-head { margin: 0; max-width: 520px; }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateX(3px); }
}
.btn:active { transform: none; }

.btn--solid {
  background: var(--citrus);
  color: var(--citrus-ink);
  border-color: var(--leaf);
}
.btn--solid:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.btn--ink {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--ink:hover { background: var(--leaf); border-color: var(--leaf); color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.btn--line {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--line:hover { background: var(--ink); color: var(--white); }

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ----------------------------- Header ----------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.site-header.scrolled { box-shadow: 0 8px 0 rgba(20, 26, 23, 0.04); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.brand__logo {
  display: block;
  height: 56px;
  width: auto;
  object-fit: contain;
}
.site-footer .brand__logo {
  height: 72px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  color: var(--ink-soft);
  border-bottom: 3px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  border-bottom-color: var(--leaf);
}
.nav-mobile-cta { display: none; }
.nav-backdrop { display: none; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 18px; font-size: 0.8rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------- Home hero ----------------------------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.25fr);
  align-items: stretch;
  min-height: min(100dvh, 920px);
  color: var(--ink);
  isolation: isolate;
  overflow: hidden;
  background: #f3e6cf;
}
.hero__media {
  position: relative;
  min-height: 100%;
  background: #0c1a12;
  overflow: hidden;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero__panel {
  position: relative;
  display: flex;
  align-items: center;
  background: #f3e6cf;
  border-right: 2px solid var(--ink);
  z-index: 1;
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 72px 40px 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 8px 14px;
  border: 1px solid rgba(15, 61, 36, 0.22);
  background: rgba(15, 61, 36, 0.08);
  color: var(--leaf);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: riseIn 0.8s var(--ease) both;
}
.hero__logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  padding: 10px 12px;
  animation: riseIn 0.9s var(--ease) both;
}
.hero__logo-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.18) 48%,
    transparent 74%
  );
  pointer-events: none;
}
.hero__logo-grid::before {
  content: none;
}
.hero__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(140px, 18vw, 220px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(20, 26, 23, 0.18));
  transform-origin: center center;
  will-change: transform, opacity;
}
.page-home .site-header .brand__logo {
  opacity: 0;
  transform: scale(0.72);
  transform-origin: left center;
  will-change: transform, opacity;
  pointer-events: none;
}
.page-home.logo-docked .site-header .brand__logo {
  pointer-events: auto;
}
.hero__line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--leaf);
  max-width: 14ch;
  margin: 0 0 14px;
  animation: riseIn 0.9s 0.12s var(--ease) both;
}
.hero__copy {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 34ch;
  margin: 0 0 8px;
  animation: riseIn 0.9s 0.2s var(--ease) both;
}
.hero .actions {
  margin-top: 26px;
  animation: riseIn 0.9s 0.3s var(--ease) both;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: none; }
}

/* ----------------------------- Interior page hero ----------------------------- */
.pagehero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  padding: 110px 0 70px;
  overflow: hidden;
}
.pagehero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.pagehero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(15, 61, 36, 0.92) 0%, rgba(20, 26, 23, 0.72) 55%, rgba(20, 26, 23, 0.45) 100%);
}
.pagehero .breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
}
.pagehero .breadcrumb a:hover { color: var(--citrus); }
.pagehero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 5rem);
  max-width: 12ch;
}
.pagehero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 42ch;
  font-size: 1.08rem;
}

/* ----------------------------- Why TAZA — compact rail ----------------------------- */
.section--why {
  padding: 48px 0;
}
.why-rail {
  display: grid;
  grid-template-columns: minmax(200px, 0.75fr) 1.5fr;
  gap: 0;
  align-items: stretch;
  border: 2px solid var(--ink);
  background: var(--white);
  overflow: hidden;
}
.why-rail__intro {
  padding: 28px 28px 32px;
  border-right: 2px solid var(--ink);
  background:
    linear-gradient(180deg, var(--citrus) 0 6px, transparent 6px),
    var(--leaf);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.why-rail__intro .kicker { color: var(--citrus); }
.why-rail__intro h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin-bottom: 10px;
}
.why-rail__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
}

.promise-index {
  display: grid;
  grid-template-columns: 1fr;
}
.promise {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s var(--ease);
}
.promise:last-child { border-bottom: none; }
.promise:hover { background: var(--mist); }
.promise:nth-child(odd) { background: rgba(220, 229, 223, 0.35); }
.promise:nth-child(odd):hover { background: var(--mist); }
.promise__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 0.9;
  color: var(--leaf);
}
.promise__copy h3 {
  font-size: 1.55rem;
  margin: 0 0 2px;
}
.promise__copy p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.4;
}

/* ----------------------------- Department directory ----------------------------- */
.section--depts { padding-bottom: 56px; }
.dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ink);
  border: 2px solid var(--ink);
}
.dept-tile {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--white);
  transition: background 0.25s var(--ease);
}
.dept-tile:hover { background: var(--mist); }
.dept-tile__img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border: 2px solid var(--ink);
}
.dept-tile__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--awning);
  margin-bottom: 2px;
}
.dept-tile__body h3 {
  font-size: 1.35rem;
  margin: 0 0 4px;
}
.dept-tile__body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--ink-soft);
}

/* ----------------------------- Story panel ----------------------------- */
.story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: var(--white);
  border: 2px solid var(--ink);
}
.story__media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
}
.story__body {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, transparent 0, transparent calc(100% - 10px), var(--citrus) calc(100% - 10px), var(--citrus) 100%),
    var(--white);
}
.story__body h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.checklist {
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}
.checklist li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.checklist li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 3px;
  background: var(--citrus);
  border: 2px solid var(--ink);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}

/* ----------------------------- Marquee band ----------------------------- */
.ticker {
  background: var(--citrus);
  color: var(--citrus-ink);
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 14px 0;
}
.ticker__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: ticker 28s linear infinite;
}
.ticker__track span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 28px;
  white-space: nowrap;
}
.ticker__track span::after {
  content: "◆";
  margin-left: 28px;
  color: var(--awning);
}
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ----------------------------- Photo mosaic ----------------------------- */
.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 10px;
}
.mosaic a,
.mosaic .mosaic__cell {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  display: block;
}
.mosaic a:first-child {
  grid-row: span 2;
}
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.4s var(--ease);
  filter: saturate(1.05);
}
.mosaic a:hover img { transform: scale(1.05); filter: saturate(1.15); }
.mosaic__label {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--citrus);
  color: var(--citrus-ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-top: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
}

/* ----------------------------- Values (about) ----------------------------- */
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--ink);
  border: 2px solid var(--ink);
}
.value {
  background: var(--paper);
  padding: 40px 36px;
  min-height: 220px;
}
.value__mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.85;
  color: var(--leaf);
  margin-bottom: 16px;
}
.value h3 { font-size: 1.8rem; }
.value p { margin: 0; }

/* ----------------------------- CTA bleed ----------------------------- */
.cta-bleed {
  position: relative;
  isolation: isolate;
  padding: 100px 0;
  color: var(--white);
  text-align: left;
  overflow: hidden;
}
.cta-bleed__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.cta-bleed__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15, 61, 36, 0.94) 0%, rgba(20, 26, 23, 0.7) 60%, rgba(20, 26, 23, 0.4) 100%);
}
.cta-bleed h2 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  max-width: 12ch;
}
.cta-bleed p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 40ch;
}

/* ----------------------------- Gallery reel ----------------------------- */
.page-gallery .site-footer { margin-top: 0; }

.gallery-shell {
  padding: 28px 0 48px;
  background: var(--paper);
}
.gallery-shell .container {
  max-width: var(--container);
}
.gallery-shell__note {
  margin: 0 0 16px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.reel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(52vh, 560px);
  height: auto;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
  border: 2px solid var(--ink);
}
.reel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s var(--ease), transform 5.5s linear;
  z-index: 0;
  display: grid;
  place-items: center;
  background: #0c1a12;
}
.reel__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.reel__slide.is-leaving {
  opacity: 0;
  z-index: 2;
  transition: opacity 1.1s var(--ease);
}
.reel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.reel__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  max-width: min(92%, 480px);
  padding: 40px 18px 16px;
  background: linear-gradient(transparent, rgba(20, 26, 23, 0.9));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s var(--ease) 0.2s, transform 0.55s var(--ease) 0.2s;
}
.reel__slide.is-active .reel__caption {
  opacity: 1;
  transform: none;
}

@media (max-width: 720px) {
  .gallery-shell {
    padding: 16px 0 32px;
  }
  .gallery-shell .container {
    padding-inline: 0;
  }
  .gallery-shell__note {
    padding-inline: 16px;
    margin-bottom: 12px;
  }
  .reel {
    aspect-ratio: 16 / 10;
    max-height: min(42vh, 340px);
    border-left: none;
    border-right: none;
  }
  .reel__caption {
    padding: 36px 14px 14px;
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reel__slide,
  .reel__slide.is-active {
    transition: opacity 0.4s ease;
    transform: none;
  }
}


/* ----------------------------- Contact ----------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: start;
}
.contact-layout--solo {
  grid-template-columns: 1fr;
  max-width: 640px;
}

.store-panel {
  border: 2px solid var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 243, 241, 0.98)),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 11px,
      rgba(197, 208, 200, 0.35) 11px,
      rgba(197, 208, 200, 0.35) 12px
    );
  box-shadow: 12px 12px 0 var(--leaf);
  padding: clamp(28px, 4vw, 48px);
}
.store-panel__head {
  max-width: 42rem;
  margin-bottom: 28px;
}
.store-panel__head h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 10px;
}
.store-panel__head p {
  margin: 0;
  font-size: 1.05rem;
}

.store-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.store-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 22px 20px;
  border: 2px solid var(--ink);
  background: var(--white);
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
a.store-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--citrus);
  background: #fbfff3;
}
.store-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--leaf);
  color: var(--citrus);
}
.store-card__icon svg {
  width: 22px;
  height: 22px;
}
.store-card__label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.store-card__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--leaf);
}
.store-card__value--plain {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  word-break: break-word;
}
.store-card__hint {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--awning);
}
.store-card__badge {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--citrus);
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 6px 10px;
}
.store-card--hours {
  background: linear-gradient(160deg, var(--leaf) 0%, #0a2918 100%);
  color: var(--white);
}
.store-card--hours .store-card__icon {
  background: var(--citrus);
  color: var(--ink);
  border-color: var(--citrus);
}
.store-card--hours .store-card__label { color: rgba(255, 255, 255, 0.7); }
.store-card--hours .store-card__value { color: var(--white); }

.detail-block {
  border-top: 2px solid var(--ink);
  padding: 22px 0;
}
.detail-block h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.detail-block p { margin: 0; }
.detail-block a {
  color: var(--leaf);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.detail-block a:hover { color: var(--ink); }

.placeholder {
  color: var(--muted);
  font-style: italic;
  border-bottom: 2px dashed var(--line);
  padding-bottom: 2px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
}
.hours-table td:last-child {
  text-align: right;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--leaf);
}

.form-panel {
  background: var(--white);
  border: 2px solid var(--ink);
  padding: 36px;
  box-shadow: 10px 10px 0 var(--citrus);
}
.form-panel h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: var(--ink);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--paper);
  transition: box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--citrus);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 10px; }

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 7;
  border: 2px solid var(--ink);
  background: var(--mist);
  overflow: hidden;
  padding: 0;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ----------------------------- Footer ----------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 0;
}
.site-footer .stripe-bar { margin-bottom: 0; }
.footer-inner { padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
  gap: 40px;
  padding-bottom: 48px;
}
.site-footer h4 {
  color: var(--citrus);
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.footer-about p {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 16px;
  max-width: 300px;
}
.footer-links { display: grid; gap: 10px; }
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color 0.2s var(--ease);
}
.footer-links a:hover { color: var(--citrus); }
.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s var(--ease);
}
.footer-contact a:hover { color: var(--citrus); }
.footer-contact svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--citrus);
  margin-top: 3px;
}
.socials { display: flex; gap: 8px; margin-top: 18px; }
.socials a {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: var(--radius);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.socials a:hover {
  background: var(--citrus);
  border-color: var(--citrus);
  color: var(--ink);
}
.socials svg { width: 18px; height: 18px; }
.halal-mark {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--citrus);
  padding: 8px 12px;
  border: 2px solid var(--citrus);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.84rem;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}
.footer-legal a:hover { color: var(--citrus); }

/* ----------------------------- Legal pages ----------------------------- */
.pagehero--compact {
  min-height: 280px;
  padding: 88px 0 48px;
}
.section--legal { padding-top: 48px; padding-bottom: 80px; }
.legal {
  max-width: 760px;
}
.legal h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin: 36px 0 12px;
  color: var(--leaf);
}
.legal h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 22px 0 10px;
  color: var(--ink);
  text-transform: none;
}
.legal p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}
.legal ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
  color: var(--muted);
}
.legal li {
  margin-bottom: 6px;
  line-height: 1.55;
}
.legal a {
  color: var(--leaf);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal a:hover { color: var(--ink); }
.legal-contact {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.legal-contact li { margin-bottom: 8px; }

/* ----------------------------- Reveal ----------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ----------------------------- Responsive ----------------------------- */
@media (max-width: 980px) {
  .why-rail { grid-template-columns: 1fr; }
  .why-rail__intro {
    padding: 24px;
    border-right: none;
    border-bottom: 2px solid var(--ink);
  }
  .dept-grid { grid-template-columns: 1fr 1fr; }
  .story { grid-template-columns: 1fr; }
  .story__media { min-height: 260px; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .store-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 180px 180px;
  }
  .mosaic a:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
  .values { grid-template-columns: 1fr; }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero__panel {
    border-right: none;
    border-bottom: 2px solid var(--ink);
  }
  .hero__inner {
    max-width: none;
    padding: 56px 32px 40px;
  }
  .hero__media {
    min-height: min(72vw, 560px);
  }
  .hero__photo {
    width: 100%;
    height: 100%;
    min-height: min(72vw, 560px);
    object-fit: cover;
  }
  .section-head--row { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* Mobile drawer + touch-first layout */
@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: clamp(2rem, 9vw, 2.8rem); }

  .site-header { padding-top: env(safe-area-inset-top, 0); }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(20, 26, 23, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  }
  .nav-backdrop.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    position: fixed;
    top: calc(72px + env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    z-index: 58;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 20px;
    border-bottom: 3px solid var(--ink);
    box-shadow: 0 18px 40px rgba(20, 26, 23, 0.18);
    transform: translateY(-110%);
    transition: transform 0.35s var(--ease);
    max-height: calc(100dvh - 72px - env(safe-area-inset-top, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    pointer-events: none;
  }
  .nav-links.open {
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links > li:not(.nav-mobile-cta) > a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 14px 22px;
    border-bottom: 1px solid var(--line);
    border-left: 4px solid transparent;
    font-size: 1rem;
  }
  .nav-links > li:not(.nav-mobile-cta) > a:hover,
  .nav-links > li:not(.nav-mobile-cta) > a.active {
    border-bottom-color: var(--line);
    border-left-color: var(--leaf);
    background: var(--mist);
  }
  .nav-links .nav-mobile-cta {
    list-style: none;
    margin: 16px 22px 4px;
    display: flex;
  }
  .nav-links .nav-mobile-cta .btn {
    width: 100%;
    min-height: 48px;
    border-left: none;
    border-bottom: none;
    letter-spacing: 0.08em;
    color: var(--white);
  }

  .nav-toggle {
    display: flex;
    min-width: 48px;
    min-height: 48px;
  }
  .nav-cta .btn { display: none; }
  .brand__logo { height: 48px; }
  .site-footer .brand__logo { height: 64px; }

  body.nav-open { overflow: hidden; touch-action: none; }

  .section--why { padding: 28px 0; }
  .section--depts { padding-bottom: 40px; }
  .dept-grid { grid-template-columns: 1fr; }
  .dept-tile {
    grid-template-columns: 72px 1fr;
    gap: 12px;
    padding: 12px;
    min-height: 72px;
  }
  .dept-tile__img {
    width: 72px;
    height: 72px;
  }
  .promise {
    grid-template-columns: 52px 1fr;
    gap: 12px;
    padding: 14px 16px;
    min-height: 72px;
  }

  .hero {
    grid-template-columns: 1fr;
    display: grid;
  }
  .hero__media {
    order: -1;
    min-height: min(92vw, 440px);
  }
  .hero__photo {
    width: 100%;
    min-height: min(92vw, 440px);
    height: 100%;
    object-fit: cover;
  }
  .hero__panel {
    border-right: none;
    border-bottom: none;
    background: #f3e6cf;
  }
  .hero__inner {
    padding: 18px 16px 22px;
    align-items: center;
    text-align: center;
    max-width: none;
  }
  .hero__eyebrow,
  .hero__line,
  .hero__copy {
    display: none;
  }
  .hero__logo-wrap {
    margin: 0 0 14px;
    padding: 4px;
  }
  .hero__logo {
    width: clamp(96px, 28vw, 132px);
  }
  .hero .actions {
    width: 100%;
    margin-top: 0;
    flex-direction: column;
    gap: 10px;
  }
  .hero .actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .pagehero {
    padding: 72px 0 44px;
    min-height: 0;
  }
  .pagehero h1 {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }
  .pagehero p { font-size: 1rem; }

  .story__body { padding: 24px 18px; }
  .story__media { min-height: 220px; }
  .story__media img { clip-path: none; }

  .why-rail__intro { padding: 22px 18px; }
  .why-rail__intro h2 { font-size: 1.75rem; }

  .dept-tile__body h3 { font-size: 1.2rem; }
  .dept-tile__body p { font-size: 0.84rem; }

  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 150px 150px;
    gap: 8px;
  }
  .cta-bleed h2 { font-size: clamp(2rem, 9vw, 3rem); }

  .store-cards { gap: 12px; }
  .hours-table td { font-size: 0.9rem; padding: 8px 0; }
  .map-embed { aspect-ratio: 1 / 1; }

  .footer-contact a,
  .footer-contact span {
    word-break: break-word;
  }

  .actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }
  .actions .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .ticker__track span { font-size: 1.05rem; padding: 0 16px; }

  .form-panel {
    padding: 24px 18px;
    box-shadow: 6px 6px 0 var(--citrus);
  }
  .field input,
  .field textarea,
  .field select {
    font-size: 16px; /* prevent iOS zoom */
    min-height: 48px;
  }
  .field textarea { min-height: 130px; }

  .map-embed { aspect-ratio: 4 / 3; }

  .socials a {
    width: 48px;
    height: 48px;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { padding-top: 48px; }
  .cta-bleed {
    padding: 64px 0 calc(64px + env(safe-area-inset-bottom, 0px));
  }
  .cta-bleed h2 { max-width: none; }

  .mosaic__label {
    font-size: 0.9rem;
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  .container,
  .hero__inner { padding-inline: 16px; }
  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 160px 160px;
  }
  .mosaic a:first-child {
    grid-column: span 2;
    grid-row: auto;
  }
  .why-rail__intro h2 { font-size: 1.85rem; }
}

/* Touch devices: keep mosaic labels visible without hover */
@media (hover: none) {
  .mosaic__label { opacity: 1; }
}
