/* ==========================================================================
   Allied Bake Industries — shared stylesheet
   Palette: deep industrial blue + warm wheat + chocolate accent
   ========================================================================== */

:root {
  /* Palette */
  --navy-950: #0c1a2e;
  --navy-900: #11213a;
  --navy-800: #16294a;
  --navy-700: #1c355e;
  --navy-600: #26456f;
  --wheat-50: #fbf7f0;
  --wheat-100: #f5ecdc;
  --wheat-200: #ecdcbd;
  --wheat-400: #d9b982;
  --wheat-500: #c99f5c;
  --choc-600: #6b4226;
  --choc-700: #4e2f1c;
  --ink: #1c1b19;
  --ink-soft: #4b4844;
  --line: #e6ddcd;
  --white: #ffffff;
  --success: #3f7a4f;

  /* Motion tokens */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.25s;
  --dur-base: 0.55s;
  --dur-slow: 0.9s;

  /* Layout */
  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(12, 26, 46, 0.06);
  --shadow-md: 0 10px 30px rgba(12, 26, 46, 0.10);
  --shadow-lg: 0 24px 60px rgba(12, 26, 46, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--wheat-50);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.no-js [data-reveal] { opacity: 1 !important; transform: none !important; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--navy { background: var(--navy-900); color: var(--wheat-100); }
.section--wheat { background: var(--wheat-100); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wheat-500);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--wheat-500);
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.3rem; }
p { color: var(--ink-soft); }
.section--navy p { color: rgba(245, 236, 220, 0.78); }
.section--navy .eyebrow { color: var(--wheat-400); }

.lede { font-size: 1.1rem; max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.btn:hover { transform: translateY(-2px) scale(1.03); }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--wheat-500); color: var(--navy-950); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--wheat-400); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: rgba(245, 236, 220, 0.35); color: inherit; }
.btn-outline:hover { border-color: var(--wheat-500); background: rgba(217, 185, 130, 0.08); }
.btn-dark { background: var(--navy-900); color: var(--wheat-100); }
.btn-dark:hover { background: var(--navy-800); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.topbar {
  background: var(--navy-950);
  color: rgba(245, 236, 220, 0.85);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { transition: color var(--dur-fast) var(--ease-out); }
.topbar a:hover { color: var(--wheat-500); }
.topbar__contacts { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar__contacts span { display: inline-flex; align-items: center; gap: 6px; }

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur-fast) var(--ease-out);
}
header.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img { height: 44px; width: auto; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav__brand-text strong { font-size: 1.02rem; color: var(--navy-950); letter-spacing: -0.01em; }
.nav__brand-text span { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--wheat-500); font-weight: 600; }

.nav__links { display: flex; gap: 2px; align-items: center; }
.nav__links a {
  position: relative;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy-800);
  border-radius: 999px;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.nav__links a:hover { background: var(--wheat-100); }
.nav__links a.active { color: var(--choc-700); font-weight: 600; }
.nav__links a.active::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 3px;
  height: 2px;
  background: var(--wheat-500);
  border-radius: 2px;
}

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__toggle {
  display: none;
  background: none; border: none;
  width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--navy-950); border-radius: 2px; transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 85% -10%, rgba(201, 159, 92, 0.25), transparent 60%), var(--navy-950);
  color: var(--wheat-100);
  overflow: hidden;
  isolation: isolate;
}
.hero__orb {
  position: absolute;
  width: 46vw; aspect-ratio: 1;
  right: -12vw; top: -14vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 185, 130, 0.22), transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  animation: drift 20s ease-in-out infinite alternate;
}
@keyframes drift { to { transform: translate(6vw, -5vh) scale(1.12); } }

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 96px 0 80px;
}
.hero .line { overflow: hidden; display: block; }
.hero .line > span {
  display: block;
  animation: maskUp 0.9s var(--ease-out) both;
}
@keyframes maskUp { from { transform: translateY(112%); } to { transform: none; } }
.hero .line:nth-child(2) > span { animation-delay: 0.08s; }
.hero .line:nth-child(3) > span { animation-delay: 0.16s; }
.hero__sub { animation: riseIn 0.7s var(--ease-out) 0.34s both; margin-top: 20px; }
.hero__cta-row { animation: riseIn 0.7s var(--ease-out) 0.46s both; margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
@keyframes riseIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.hero__eyebrow { animation: riseIn 0.6s var(--ease-out) 0.02s both; }

.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  flex-wrap: wrap;
  animation: riseIn 0.7s var(--ease-out) 0.58s both;
}
.hero__stat strong { display: block; font-size: 2rem; color: var(--wheat-500); }
.hero__stat span { font-size: 0.82rem; color: rgba(245, 236, 220, 0.65); }

.hero__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: riseIn 0.9s var(--ease-out) 0.2s both;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 26, 46, 0.55));
}
.hero__media-caption {
  position: absolute; left: 22px; bottom: 20px; z-index: 2;
  font-size: 0.85rem; color: var(--wheat-100);
  display: flex; align-items: center; gap: 8px;
}
.hero__media-caption b { color: var(--wheat-500); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.marquee__track { display: inline-flex; gap: 3.2rem; padding: 22px 0; animation: scrollMarquee 32s linear infinite; white-space: nowrap; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scrollMarquee { to { transform: translateX(-50%); } }
.marquee__item { font-weight: 600; color: var(--ink-soft); font-size: 0.95rem; opacity: 0.75; letter-spacing: 0.01em; }

/* ---------- Section headers ---------- */
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Category / product cards ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .thumb { overflow: hidden; aspect-ratio: 4/3; background: var(--wheat-100); position: relative; }
.card .thumb img { width: 100%; height: 100%; object-fit: contain; transition: transform var(--dur-slow) var(--ease-out); padding: 18px; }
.card:hover .thumb img { transform: scale(1.07); }
.card__body { padding: 20px 22px 24px; }
.card__body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card__body p { font-size: 0.9rem; margin-bottom: 16px; }
.card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--choc-600);
  background: var(--wheat-200);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* Product catalog card (with specs) */
.pcard { display: flex; flex-direction: column; height: 100%; }
.pcard .thumb { aspect-ratio: 4/3.1; }
.pcard__specs { list-style: none; margin: 10px 0 16px; font-size: 0.84rem; color: var(--ink-soft); }
.pcard__specs li { position: relative; padding-left: 16px; margin-bottom: 5px; }
.pcard__specs li::before { content: '—'; position: absolute; left: 0; color: var(--wheat-500); }
.pcard__footer { margin-top: auto; display: flex; gap: 10px; }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 28px 16px; }
.stat strong { font-size: 2.4rem; display: block; color: var(--wheat-500); }
.stat span { font-size: 0.85rem; color: rgba(245, 236, 220, 0.7); }

/* ---------- Split feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.split__media img { width: 100%; }
.feature-list li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.feature-list li:last-child { border-bottom: none; }
.feature-list .dot { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--wheat-200); color: var(--choc-700); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; margin-top: 2px; }

/* ---------- Testimonial / client cards ---------- */
.client-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.client-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-800);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.client-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--wheat-500); }
.client-chip small { display: block; font-weight: 400; color: var(--ink-soft); margin-top: 2px; font-size: 0.78rem; }

.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.quote-card p.quote-text { font-size: 1.05rem; color: var(--ink); font-style: italic; margin-bottom: 18px; }
.quote-card .who { display: flex; align-items: center; gap: 12px; }
.quote-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--wheat-200); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--choc-700); }
.quote-card .who strong { display: block; font-size: 0.92rem; }
.quote-card .who span { font-size: 0.78rem; color: var(--ink-soft); }

/* ---------- Region tags ---------- */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--white);
  transition: transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.tag-pill:hover { transform: translateY(-2px); border-color: var(--wheat-500); }

/* ---------- Timeline (About) ---------- */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 6px; top: 4px; bottom: 4px; width: 2px; background: var(--line); }
.timeline__item { position: relative; padding-bottom: 32px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before { content: ''; position: absolute; left: -28px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--wheat-500); box-shadow: 0 0 0 4px var(--wheat-100); }
.timeline__item strong { color: var(--navy-900); display: block; margin-bottom: 4px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  color: var(--wheat-100);
  border-radius: 22px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; right: -10%; top: -40%;
  width: 50%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,185,130,0.2), transparent 70%);
  filter: blur(40px);
}
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { color: rgba(245,236,220,0.75); max-width: 46ch; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy-800); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
  font: inherit;
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--wheat-500);
  box-shadow: 0 0 0 3px rgba(201,159,92,0.18);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--ink-soft); }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(63,122,79,0.1);
  border: 1px solid rgba(63,122,79,0.3);
  color: var(--success);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 14px;
}
.form-success.is-visible { display: flex; }

/* ---------- Contact info cards ---------- */
.info-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.info-card .icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--wheat-200);
  color: var(--choc-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.info-card h4 { font-size: 0.98rem; margin-bottom: 4px; }
.info-card p { font-size: 0.88rem; margin: 0; }
.info-card a { color: var(--choc-700); font-weight: 600; }

.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Floating WhatsApp / Call ---------- */
.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-cta a {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-fast) var(--ease-out);
}
.floating-cta a:hover { transform: scale(1.08); }
.floating-cta .wa { background: #25D366; color: #fff; }
.floating-cta .call { background: var(--navy-900); color: var(--wheat-100); }
@keyframes pulse-once {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.floating-cta .wa.pulse { animation: pulse-once 1.6s var(--ease-out) 1; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy-950); color: rgba(245,236,220,0.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(245,236,220,0.1); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 36px; }
.footer-brand strong { color: var(--wheat-100); font-size: 1.05rem; }
footer.site-footer h4 { color: var(--wheat-100); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
footer.site-footer ul li { margin-bottom: 10px; font-size: 0.88rem; }
footer.site-footer ul li a { transition: color var(--dur-fast) var(--ease-out); }
footer.site-footer ul li a:hover { color: var(--wheat-500); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 0.8rem; flex-wrap: wrap; gap: 10px; }
.footer-bottom .heart { color: #e0555f; display: inline-block; animation: heartbeat 1.6s ease-in-out infinite; }
.footer-bottom a { font-weight: 600; color: var(--wheat-500); transition: color var(--dur-fast) var(--ease-out); }
.footer-bottom a:hover { color: var(--wheat-400); text-decoration: underline; }
@keyframes heartbeat { 0%, 100% { transform: scale(1); } 25% { transform: scale(1.25); } 40% { transform: scale(1); } }

/* ---------- Reveal system ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal="clip"] { opacity: 1; clip-path: inset(0 0 100% 0); transition: clip-path var(--dur-slow) var(--ease-out); }
[data-reveal="clip"].is-visible { clip-path: inset(0); }

[data-tilt] { transition: transform 0.4s var(--ease-out); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--navy-950);
  color: var(--wheat-100);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { font-size: 0.85rem; color: rgba(245,236,220,0.6); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--wheat-500); }

/* ---------- Utilities ---------- */
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.text-center { text-align: center; }
.muted { color: var(--ink-soft); }

/* ---------- FAQ accordion (AEO) ---------- */
.faq-list { display: grid; gap: 12px; max-width: 820px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--dur-fast) var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex: none;
  font-size: 1.3rem;
  color: var(--wheat-500);
  transition: transform var(--dur-fast) var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--wheat-100); }
.faq-item p { padding: 0 22px 20px; font-size: 0.92rem; }

/* ---------- Product spec sheet ---------- */
.spec-sheet { list-style: none; display: grid; gap: 10px; }
.spec-sheet li {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.spec-sheet li::before { content: '⚙'; color: var(--wheat-500); flex: none; }

/* ---------- Location badge ---------- */
.loc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(217, 185, 130, 0.16);
  color: var(--wheat-500);
  border: 1px solid rgba(217, 185, 130, 0.35);
  margin-bottom: 14px;
}

/* ---------- Mini product grid on location pages ---------- */
.miniprod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.miniprod { display: flex; gap: 14px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px; transition: box-shadow var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out); }
.miniprod:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.miniprod img { width: 76px; height: 76px; object-fit: contain; background: var(--wheat-100); border-radius: 8px; padding: 6px; flex: none; }
.miniprod h4 { font-size: 0.92rem; margin-bottom: 4px; }
.miniprod p { font-size: 0.82rem; margin: 0 0 8px; }
.miniprod a { font-size: 0.78rem; font-weight: 700; color: var(--choc-600); }

/* ---------- Breadcrumb schema list ---------- */
.breadcrumb ol { list-style: none; display: inline-flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 6px; }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 6px; color: rgba(245,236,220,0.35); }
.breadcrumb a:hover { color: var(--wheat-500); }

/* ---------- Footer sitewide directory (all products / all locations) ---------- */
.footer-directory { border-top: 1px solid rgba(245,236,220,0.1); padding: 32px 0; }
.footer-directory details { margin-bottom: 14px; }
.footer-directory summary {
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--wheat-100);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 0;
}
.footer-directory .dir-links { display: flex; flex-wrap: wrap; gap: 8px 14px; padding: 14px 0 4px; }
.footer-directory .dir-links a { font-size: 0.8rem; color: rgba(245,236,220,0.65); transition: color var(--dur-fast) var(--ease-out); }
.footer-directory .dir-links a:hover { color: var(--wheat-500); }
.footer-directory .dir-group-label { width: 100%; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--wheat-400); margin: 8px 0 2px; }

/* ---------- Table of contents (long pages) ---------- */
.toc { background: var(--wheat-100); border-radius: var(--radius-sm); padding: 18px 22px; font-size: 0.88rem; }
.toc strong { display: block; margin-bottom: 8px; color: var(--navy-900); }
.toc ul { display: grid; gap: 6px; }
.toc a { color: var(--choc-700); }
.toc a:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; padding: 64px 0 56px; }
  .hero__media { order: -1; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .miniprod-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .miniprod-grid { grid-template-columns: 1fr; }
  .nav__links { position: fixed; top: 76px; left: 0; right: 0; background: var(--white); flex-direction: column; align-items: stretch; padding: 12px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out); }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 13px 16px; }
  .nav__toggle { display: flex; }
  .nav__actions .btn-primary.btn-sm { padding: 9px 16px; font-size: 0.82rem; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 24px; flex-direction: column; align-items: flex-start; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .client-grid { grid-template-columns: 1fr; }
  .topbar__contacts { gap: 12px; }
}
