/* ============================================================
   ST EXPORT — shared stylesheet
   Palette: "Coastal Levant" — see AGENTS.md for the full system.
   Every page on this site should link this one file. Do not
   fork per-page styles — add to this file so pages stay consistent.
   ============================================================ */

:root {
  /* Coastal Levant palette */
  --bg:          #FAF7F0;
  --surface:     #EEF4F2;
  --surface-2:   #E4EEEA;
  --border:      #D8E2DE;
  --ink:         #0B2239;
  --text-soft:   #465A62;
  --teal:        #0E5E9C;
  --teal-ink:    #083F6F;
  --coral:       #E85D35;
  --coral-ink:   #C84A25;
  --white:       #FFFFFF;

  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;

  --radius: 8px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
  text-transform: capitalize;
}

p { margin: 0 0 1em; color: var(--text-soft); }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-ink); }

img { max-width: 100%; display: block; }

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

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--radius);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-ink); color: var(--white); }
.btn-secondary { background: transparent; border-color: var(--coral); color: var(--coral); }
.btn-secondary:hover { background: var(--coral); color: var(--white); }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(31, 42, 46, 0.05);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.3px;
  color: var(--ink);
  display: flex;
  align-items: center;
}
.logo span { color: var(--teal); }
.logo-wordmark {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--ink);
  line-height: 1;
}
.logo-wordmark span { color: currentColor; }
.logo-img {
  height: 76px;
  width: auto;
  display: block;
  margin: -8px 0;
}
.brand-group { display: flex; align-items: center; }
.brand-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-soft);
  border-left: 1px solid var(--border);
  margin-left: 14px;
  padding-left: 14px;
  line-height: 1.35;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.2px;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:not(.btn) {
  position: relative;
  padding-bottom: 4px;
}
.nav-links a:not(.btn).active { color: var(--ink); }
.nav-links a:not(.btn).active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--coral);
}
.site-header .btn-primary {
  background: var(--coral);
  border-color: var(--coral);
}
.site-header .btn-primary:hover {
  background: var(--coral-ink);
  border-color: var(--coral-ink);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--ink); }

/* header overlaid on the homepage hero — merges into the photo instead
   of sitting in its own bar; goes solid once the page scrolls past it */
.header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.header-overlay.is-scrolled {
  background: var(--white);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 28px rgba(31, 42, 46, 0.05);
}

@media (max-width: 860px) {
  .brand-tagline { display: none; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a:not(.btn).active::after { display: none; }
  .nav-links .btn { margin: 16px 24px; }
}

/* ---------- sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--surface); }
.kicker {
  color: var(--teal);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.hero-fade {
  display: none;
}
.hero-inner { position: relative; z-index: 1; width: 100%; padding: 118px 0 88px; }
.hero-copy { max-width: 520px; }
.hero-copy .kicker {
  color: var(--white);
  text-shadow: 0 2px 10px rgba(31, 42, 46, 0.24);
}
.hero-copy h1 {
  color: var(--white);
  font-size: 54px;
  max-width: 560px;
  text-shadow: 0 3px 18px rgba(31, 42, 46, 0.34);
}
.hero-copy p.lede { font-size: 16px; max-width: 460px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-primary {
  background: var(--coral);
  border-color: var(--coral);
}
.hero-actions .btn-primary:hover {
  background: var(--coral-ink);
  border-color: var(--coral-ink);
}
.hero-actions .btn-ghost {
  background: color-mix(in srgb, var(--white) 82%, transparent);
}

@media (max-width: 860px) {
  .hero { min-height: 0; display: block; }
  .hero-media { position: static; height: 240px; }
  .hero-fade { display: none; }
  .hero-inner { padding: 32px 0; }
  .hero-copy { max-width: none; }
  .hero-copy h1 { font-size: 32px; }
}

/* ---------- grids / cards ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 860px) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .grid { grid-template-columns: 1fr; }
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.section-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
@media (max-width: 860px) {
  .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.card h3 { font-size: 16px; margin-bottom: 6px; }
.card p { font-size: 14px; margin-bottom: 0; }
.card .icon { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 14px; }

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.buyer-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px;
}
.buyer-card .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  stroke-width: 1.5;
}
.buyer-label {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.buyer-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.buyer-card p {
  font-size: 15px;
  max-width: 300px;
}
@media (max-width: 860px) {
  .buyer-grid { grid-template-columns: 1fr; }
  .buyer-card { min-height: 0; }
}

/* ---------- process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: step;
}
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 16px;
}
.step h3 { font-size: 16px; }
.step p { font-size: 14px; }

/* ---------- stats / trust strip ---------- */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-soft);
  text-align: center;
}
.stats-strip .dot { color: var(--border); }

/* ---------- cta band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  padding: 64px 0;
}
.cta-band h2 { color: var(--bg); font-size: 32px; }
.cta-band p { color: #A9B4B1; max-width: 480px; margin: 0 auto 28px; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid h4 {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--ink); font-size: 14px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 13px;
  color: var(--text-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- catalogue page ---------- */
.cat-page-head { padding: 56px 0 32px; }
.cat-page-head .kicker { font-size: 16px; }
.cat-page-head h1 { font-size: 48px; }
.cat-page-head .lede { font-size: 19px; max-width: 640px; margin-bottom: 0; }

.cat-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 80px;
}
@media (max-width: 860px) {
  .cat-layout { grid-template-columns: 1fr; }
}

.cat-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 860px) { .cat-sidebar { position: static; } }

.cat-search input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
}
.cat-search input:focus { outline: 2px solid var(--teal); outline-offset: 1px; }

.cat-list { display: flex; flex-direction: column; gap: 4px; }
.cat-btn {
  text-align: left;
  background: none;
  border: none;
  border-radius: var(--radius);
  padding: 10px 12px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-soft);
  cursor: pointer;
}
.cat-btn:hover { background: var(--surface); color: var(--ink); }
.cat-btn.is-active { background: var(--teal); color: var(--white); }

.subcat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.subcat-pill {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-soft);
  cursor: pointer;
}
.subcat-pill:hover { border-color: var(--teal); color: var(--teal); }
.subcat-pill.is-active { background: var(--teal); border-color: var(--teal); color: var(--white); }

.cat-results-head {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 1024px) { .prod-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .prod-grid { grid-template-columns: 1fr; } }

.prod-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.prod-card:hover {
  border-color: var(--teal);
}
.prod-card[hidden] { display: none; }
.prod-media {
  height: 180px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-soft);
  font-size: 12px;
  padding: 8px;
}
.prod-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.prod-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.prod-cat {
  color: var(--teal);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.prod-name {
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 4px;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.prod-meta { font-size: 13px; margin-bottom: 14px; }
.btn-sm { padding: 9px 16px; font-size: 13px; width: 100%; margin-top: auto; }

.cat-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--text-soft);
}

/* ---------- product detail page ---------- */
.product-page { padding: 40px 0 80px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 28px;
}
.product-detail {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}
.product-detail-media {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.product-detail-media img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-detail-body h1 { font-size: 32px; }
.product-detail-meta { font-size: 16px; color: var(--text-soft); margin-bottom: 24px; }
.product-detail-note { font-size: 14px; max-width: 480px; margin-bottom: 28px; }
.product-detail-empty { text-align: center; padding: 64px 0; color: var(--text-soft); }

@media (max-width: 760px) {
  .product-detail { grid-template-columns: 1fr; }
  .product-detail-media { height: 280px; }
}

/* ---------- contact page ---------- */
.contact-page-head { padding: 56px 0 32px; }
.contact-page-head .lede { font-size: 16px; max-width: 560px; margin-bottom: 0; }

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 80px;
}
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-form { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--ink); }
.form-group .optional { font-weight: 400; color: var(--text-soft); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
}
.form-group input:focus,
.form-group textarea:focus { outline: 2px solid var(--teal); outline-offset: 1px; }
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-card { display: flex; flex-direction: column; gap: 20px; }
.contact-card .card { display: flex; gap: 14px; align-items: flex-start; }
.contact-card .card .icon { margin-bottom: 0; flex-shrink: 0; }
.contact-card .card h3 { font-size: 14px; margin-bottom: 2px; }
.contact-card .card p { font-size: 14px; margin-bottom: 0; }

.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { margin-bottom: 0; }

/* ---------- page stub (catalogue / contact placeholders) ---------- */
.page-placeholder {
  padding: 96px 0;
  text-align: center;
  color: var(--text-soft);
}
.page-placeholder h1 { color: var(--ink); }
.todo-note {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-soft);
}

/* ---------- homepage: editorial export layout ---------- */
:root {
  --olive: #3E5038;
  --olive-deep: #2D3B2B;
  --warm-paper: #F8F6EF;
  --terracotta: #C95A38;
}

.home-page { background: var(--warm-paper); }
.home-page .site-header.header-overlay {
  background: rgba(248, 246, 239, 0.9);
  border-bottom-color: rgba(62, 80, 56, 0.14);
  backdrop-filter: blur(10px);
}
.home-page .site-header .container { min-height: 66px; }
.home-page .logo-wordmark { color: var(--olive-deep); font-size: 29px; }
.home-page .brand-tagline { color: var(--olive); border-left-color: rgba(62, 80, 56, 0.25); }
.home-page .nav-links a { color: var(--olive-deep); }
.home-page .nav-links a:hover { color: var(--olive-deep); }
.home-page .nav-links a:not(.btn).active::after { background: var(--olive-deep); }

.home-page .hero {
  min-height: 690px;
  align-items: stretch;
  background: #cfe5f3;
}
.home-page .hero-media img { object-position: center top; }
.home-page .hero-fade {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 251, 241, 0.2) 0%, rgba(255, 251, 241, 0.08) 40%, transparent 68%);
}
.home-page .hero-inner {
  position: static;
  max-width: none;
  padding: 0;
}
.home-page .hero-copy {
  position: absolute;
  z-index: 2;
  top: 86px;
  left: 24px;
  width: min(315px, calc(100vw - 48px));
  max-width: 315px;
  margin-left: 0;
  padding: 20px 20px 22px;
  background: rgba(255, 251, 241, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-left: 4px solid rgba(232, 93, 53, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(19, 38, 45, 0.18);
  backdrop-filter: blur(1px);
}
.home-page .hero-copy .kicker {
  color: var(--olive);
  text-shadow: 0 1px 8px rgba(255, 251, 241, 0.86);
  font-size: 12px;
  margin-bottom: 7px;
}
.home-page .hero-copy h1 {
  color: #1D2520;
  text-shadow: 0 2px 14px rgba(255, 251, 241, 0.9);
  font-size: 38px;
  margin-bottom: 10px;
}
.home-page .hero-copy p.lede {
  color: #39473E;
  font-size: 16px;
  line-height: 1.45;
  max-width: 265px;
  margin-bottom: 20px;
  text-shadow: 0 1px 10px rgba(255, 251, 241, 0.82);
}
.home-page .hero-actions .btn-primary,
.home-page .home-cta .btn-primary {
  background: var(--olive);
  border-color: var(--olive);
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 13px;
}
.home-page .hero-actions .btn-primary:hover { background: var(--olive-deep); border-color: var(--olive-deep); }
.hero-proof {
  position: absolute;
  right: clamp(24px, 11vw, 230px);
  bottom: 118px;
  display: flex;
  align-items: stretch;
  padding: 12px 4px;
  background: rgba(15, 48, 69, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  backdrop-filter: blur(5px);
}
.proof-item {
  min-width: 100px;
  padding: 0 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  line-height: 1.25;
  text-align: center;
  text-shadow: 0 1px 5px rgba(15, 36, 40, 0.45);
}
.proof-item svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }

.home-page .section { padding: 62px 0; }
.buyer-section { background: var(--warm-paper); }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 22px; }
.section-heading-row .kicker { color: var(--olive); font-size: 12px; margin-bottom: 6px; }
.section-heading-row h2 { font-size: 32px; margin-bottom: 0; color: #1D2520; }
.section-heading-aside { display: flex; align-items: center; gap: 28px; max-width: 550px; }
.section-heading-aside p { margin: 0; font-size: 13px; max-width: 320px; }
.section-arrows { display: flex; gap: 8px; flex-shrink: 0; }
.section-arrows span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #DCE1D6;
  border-radius: 50%;
  color: var(--olive-deep);
  font-size: 18px;
}
.home-page .buyer-grid { gap: 16px; }
.home-page .buyer-card {
  min-height: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #E5E3DB;
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(34, 46, 35, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.home-page .buyer-card:hover { color: var(--ink); transform: translateY(-3px); box-shadow: 0 12px 24px rgba(34, 46, 35, 0.13); }
.buyer-card-media { height: 142px; background-image: url("../images/buyer-scenes.png"); background-size: 300% 100%; background-repeat: no-repeat; }
.buyer-card-supermarkets .buyer-card-media { background-position: left center; }
.buyer-card-wholesale .buyer-card-media { background-position: center center; }
.buyer-card-hospitality .buyer-card-media { background-position: right center; }
.buyer-card-body { position: relative; min-height: 150px; padding: 28px 52px 18px 20px; }
.buyer-card h3 { font-size: 19px; margin-bottom: 5px; color: #1D2520; }
.buyer-card p { font-size: 13px; line-height: 1.45; margin: 0; }
.buyer-icon,
.category-icon {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #E5E3DB;
  color: var(--terracotta);
}
.buyer-icon { width: 52px; height: 52px; top: -27px; left: 20px; }
.buyer-icon svg,
.category-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.card-arrow {
  position: absolute;
  right: 20px;
  bottom: 24px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 90, 56, 0.55);
  border-radius: 50%;
  color: var(--terracotta);
  font-size: 20px;
}

.category-section { background: #EEF1E8; }
.category-heading-row { margin-bottom: 18px; }
.catalogue-link { color: var(--olive-deep); font-size: 13px; font-weight: 800; white-space: nowrap; }
.catalogue-link span { margin-left: 12px; font-size: 18px; vertical-align: -1px; }
.home-page .cat-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 9px; }
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 3px 9px rgba(34, 46, 35, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.category-card:hover { color: var(--ink); transform: translateY(-3px); box-shadow: 0 10px 22px rgba(34, 46, 35, 0.12); }
.category-card-media { aspect-ratio: 1.48 / 1; background-image: url("../images/category-scenes.png"); background-size: 300% 200%; background-repeat: no-repeat; }
.category-beverages .category-card-media { background-position: left top; }
.category-coffee .category-card-media { background-position: center top; }
.category-oils .category-card-media { background-position: right top; }
.category-preserved .category-card-media { background-position: left bottom; }
.category-spices .category-card-media { background-position: center bottom; }
.category-nuts .category-card-media { background-position: right bottom; }
.category-card-body { position: relative; min-height: 126px; padding: 27px 12px 13px; }
.category-icon { width: 40px; height: 40px; top: -20px; left: 12px; }
.category-icon svg { width: 19px; height: 19px; }
.category-card h3 { color: #1D2520; font-size: 13px; line-height: 1.22; margin-bottom: 8px; }
.category-card p { font-size: 11px; line-height: 1.38; margin: 0; }

.home-page .home-cta {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  background-color: var(--olive-deep);
  color: var(--white);
  text-align: left;
}
.home-cta::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 250px;
  background: url("../images/hero-st-export-reference-style.png") left bottom / auto 100% no-repeat;
  opacity: 0.13;
  pointer-events: none;
}
.home-page .home-cta .container { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.cta-copy { max-width: 390px; }
.home-page .home-cta .kicker { color: #DCE5CF; margin-bottom: 6px; }
.home-page .home-cta h2 { color: var(--white); font-size: 30px; margin-bottom: 8px; }
.home-page .home-cta p { color: #EDF0E6; font-size: 13px; line-height: 1.45; margin-bottom: 18px; }
.home-page .home-cta .btn-primary { background: var(--warm-paper); border-color: var(--warm-paper); color: var(--olive-deep); }
.home-page .home-cta .btn-primary:hover { background: var(--white); border-color: var(--white); color: var(--olive-deep); }
.cta-proof { display: grid; grid-template-columns: repeat(4, minmax(88px, 1fr)); align-items: stretch; }
.cta-proof > div { min-width: 105px; padding: 0 17px; border-left: 1px solid rgba(255, 255, 255, 0.22); display: flex; flex-direction: column; align-items: center; gap: 9px; color: #F4F6EB; font-size: 12px; line-height: 1.35; text-align: center; }
.cta-proof svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 980px) {
  .home-page .hero-copy { margin-left: 0; }
  .home-page .cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .category-card-body { min-height: 112px; }
  .cta-proof > div { min-width: 88px; padding: 0 10px; }
}

@media (max-width: 700px) {
  .home-page .site-header .container { min-height: 58px; }
  .home-page .logo-wordmark { font-size: 23px; }
  .home-page .hero { min-height: 640px; display: flex; }
  .home-page .hero-media { position: absolute; height: auto; }
  .home-page .hero-media img { height: 100%; object-position: center top; }
  .home-page .hero-fade { background: linear-gradient(180deg, rgba(255, 251, 241, 0.55), rgba(255, 251, 241, 0.12) 62%, rgba(29, 37, 32, 0.42)); }
  .home-page .hero-inner { padding: 0; }
  .home-page .hero-copy {
    top: 64px;
    left: 0;
    max-width: 315px;
    background: rgba(255, 251, 241, 0.34);
  }
  .home-page .hero-copy h1 { font-size: 37px; }
  .home-page .hero-copy p.lede { font-size: 14px; max-width: 270px; }
  .hero-proof { left: 0; right: auto; bottom: 22px; padding: 8px 2px; }
  .proof-item { min-width: 80px; padding: 0 8px; font-size: 10px; }
  .proof-item svg { width: 24px; height: 24px; }
  .home-page .section { padding: 46px 0; }
  .section-heading-row { display: block; margin-bottom: 20px; }
  .section-heading-row h2 { font-size: 28px; }
  .section-heading-aside { margin-top: 13px; justify-content: space-between; max-width: none; }
  .section-heading-aside p { max-width: 260px; }
  .home-page .buyer-grid { grid-template-columns: 1fr; }
  .buyer-card-media { height: 162px; }
  .category-heading-row { display: flex; align-items: end; }
  .catalogue-link { font-size: 12px; }
  .catalogue-link span { margin-left: 4px; }
  .home-page .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .category-card-body { min-height: 116px; }
  .home-page .home-cta .container { display: block; }
  .home-page .home-cta { padding: 48px 0; }
  .cta-proof { margin-top: 34px; grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 24px; }
  .cta-proof > div { min-width: 0; }
  .cta-proof > div:nth-child(3) { border-left: 0; }
}

/* ---------- homepage: wholesaler screenshot layout ---------- */
.home-page .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.home-page .site-header .container {
  min-height: 48px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.home-page .logo-wordmark {
  font-size: 18px;
  line-height: 0.95;
  color: #111A15;
  text-shadow: 0 1px 12px rgba(255, 251, 241, 0.9);
}

.home-page .brand-tagline {
  font-size: 8px;
  margin-left: 9px;
  padding-left: 9px;
  color: #111A15;
  border-left-color: rgba(17, 26, 21, 0.28);
  text-shadow: 0 1px 12px rgba(255, 251, 241, 0.9);
}

.home-page .nav-links { gap: 18px; }
.home-page .nav-links a {
  font-size: 12px;
  color: #111A15;
  text-shadow: 0 1px 12px rgba(255, 251, 241, 0.9);
}

.home-page .section {
  padding: 36px 0;
}

.home-page .container {
  max-width: none;
  padding-left: clamp(24px, 7vw, 140px);
  padding-right: clamp(24px, 7vw, 140px);
}

.wholesale-top {
  padding-top: 18px;
  background: var(--warm-paper);
}

.wholesale-top .section-heading-row {
  align-items: end;
  margin-bottom: 14px;
}

.wholesale-top h1,
.section-heading-row h2,
.process-head h2,
.quality-panel h2,
.world-panel h2,
.private-label-copy h2 {
  font-size: 25px;
  line-height: 1.05;
  color: #111A15;
  margin-bottom: 0;
}

.home-page .kicker,
.section-heading-row .kicker {
  color: var(--olive);
  font-size: 9px;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}

.section-heading-aside {
  gap: 14px;
  max-width: 440px;
}

.section-heading-aside p {
  font-size: 11px;
  line-height: 1.35;
  max-width: 280px;
}

.section-arrows span {
  width: 24px;
  height: 24px;
  font-size: 13px;
  background: #fff;
}

.home-page .buyer-grid {
  gap: 12px;
}

.buyer-card-media {
  height: 104px;
}

.buyer-card-body {
  min-height: 105px;
  padding: 20px 42px 16px 16px;
}

.buyer-icon {
  width: 36px;
  height: 36px;
  top: -19px;
  left: 15px;
}

.buyer-icon svg {
  width: 17px;
  height: 17px;
}

.buyer-card h3 {
  font-size: 14px;
  margin-bottom: 4px;
}

.buyer-card p {
  font-size: 10px;
  line-height: 1.35;
}

.card-arrow {
  right: 14px;
  bottom: 16px;
  width: 28px;
  height: 28px;
  font-size: 14px;
}

.proof-strip {
  background: #EFF3EC;
  border-top: 1px solid rgba(62, 80, 56, 0.08);
  border-bottom: 1px solid rgba(62, 80, 56, 0.08);
  padding: 22px 0;
}

.proof-strip-inner {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 22px;
  align-items: center;
}

.proof-title h2 {
  font-size: 22px;
}

.proof-mini {
  display: grid;
  justify-items: center;
  text-align: center;
  grid-template-rows: 46px auto auto;
  gap: 9px;
  min-width: 0;
  align-items: start;
}

.proof-mini svg {
  width: 36px;
  height: 36px;
  align-self: center;
  fill: none;
  stroke: var(--olive-deep);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-mini-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
  align-self: center;
  margin-top: -4px;
}

.proof-mini h3 {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.15;
  margin: 0;
}

.proof-mini p {
  font-size: 14px;
  line-height: 1.3;
  margin: 0;
}

.category-section {
  background: var(--warm-paper);
}

.category-heading-row {
  margin-bottom: 12px;
}

.catalogue-link {
  font-size: 10px;
}

.catalogue-link span {
  font-size: 13px;
}

.home-page .cat-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.category-card-media {
  aspect-ratio: 1.32 / 1;
}

.category-card-body {
  min-height: 90px;
  padding: 20px 9px 10px;
}

.category-icon {
  width: 28px;
  height: 28px;
  top: -14px;
  left: 9px;
}

.category-icon svg {
  width: 14px;
  height: 14px;
}

.category-card h3 {
  font-size: 10.5px;
  line-height: 1.16;
  margin-bottom: 5px;
}

.category-card p {
  font-size: 8.5px;
  line-height: 1.3;
}

.process-section {
  background: #EFEDE4;
  padding: 22px 0;
}

.process-section .container {
  display: grid;
  grid-template-columns: 0.95fr 2fr;
  gap: 26px;
  align-items: start;
}

.process-head p {
  font-size: 10px;
  line-height: 1.35;
  max-width: 250px;
  margin-top: 7px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  position: relative;
  min-height: 68px;
  padding-left: 38px;
}

.process-step span {
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #E2DED1;
  color: var(--olive-deep);
  font-size: 10px;
  font-weight: 800;
}

.process-step h3 {
  font-family: var(--sans);
  font-size: 10.5px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.process-step p {
  font-size: 8.5px;
  line-height: 1.35;
  margin: 0;
}

.quality-world-section {
  background: var(--warm-paper);
  padding: 26px 0 18px;
}

.quality-world-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 34px;
}

.quality-panel p,
.world-panel p,
.private-label-copy p {
  font-size: 10px;
  line-height: 1.4;
  max-width: 330px;
  margin-top: 7px;
}

.cert-image-wrap {
  margin-top: 22px;
  max-width: 560px;
}

.cert-image-wrap img {
  width: 100%;
  height: auto;
}

.world-content {
  margin-top: 4px;
}

.world-map-image {
  width: 100%;
  max-width: 520px;
  height: auto;
}

.private-label-section {
  background: var(--warm-paper);
  padding: 16px 0 32px;
}

.private-label-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  align-items: center;
  gap: 28px;
}

.private-label-copy .btn-primary {
  margin-top: 10px;
  background: var(--olive);
  border-color: var(--olive);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 10px;
}

.private-label-media {
  min-height: 210px;
  overflow: hidden;
  border-radius: 7px;
}

.private-label-media img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .proof-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-title {
    grid-column: 1 / -1;
  }

  .home-page .cat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-section .container,
  .quality-world-grid,
  .private-label-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .home-page .nav-links {
    background: #FAF7F0;
  }

  .home-page .section {
    padding: 30px 0;
  }

  .wholesale-top .section-heading-row,
  .category-heading-row {
    display: block;
  }

  .home-page .buyer-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .proof-title {
    grid-column: auto;
  }

  .proof-mini {
    justify-items: start;
    text-align: left;
    grid-template-columns: 32px 1fr;
    column-gap: 12px;
  }

  .proof-mini svg {
    grid-row: 1 / 3;
  }

.buyer-card-media {
  height: 150px;
}

  .home-page .cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .world-content {
    grid-template-columns: 1fr;
  }
}

.home-page .buyer-card-media {
  aspect-ratio: 16 / 7;
  height: auto;
  min-height: 170px;
  background-size: 300% auto;
  background-position-y: center;
}

.home-page .buyer-card-supermarkets .buyer-card-media { background-position: 0% center; }
.home-page .buyer-card-wholesale .buyer-card-media { background-position: 50% center; }
.home-page .buyer-card-hospitality .buyer-card-media { background-position: 100% center; }

@media (max-width: 700px) {
  .home-page .buyer-card-media {
    aspect-ratio: 16 / 8;
    min-height: 160px;
  }
}

/* ---------- homepage: cinematic scroll refresh ---------- */
.home-page {
  --hero-scroll: 0;
  --hero-lift: 0px;
  --hero-proof-opacity: 1;
}

.home-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.28s ease, border-color 0.28s ease, backdrop-filter 0.28s ease;
}

.home-page .site-header.is-scrolled {
  background: rgba(248, 246, 239, 0.78);
  border-bottom-color: rgba(62, 80, 56, 0.16);
  backdrop-filter: blur(14px);
}

.home-page .site-header .container {
  min-height: 74px;
  padding-left: clamp(26px, 6vw, 130px);
  padding-right: clamp(26px, 6vw, 130px);
}

.logo-image-link img {
  width: clamp(160px, 16vw, 265px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.home-page .nav-links {
  gap: clamp(22px, 2.6vw, 42px);
}

.home-page .nav-links a {
  color: #102018;
  font-size: 17px;
  font-weight: 800;
  text-shadow: none;
}

.home-page .nav-links .nav-cta {
  min-height: 52px;
  padding: 15px 30px;
  color: #fff;
  text-shadow: none;
  border-radius: 999px;
  background: #3e5038;
  border-color: #3e5038;
  box-shadow: 0 10px 24px rgba(22, 35, 28, 0.24);
}

.home-page .nav-links .nav-cta:hover {
  background: #2d3b2b;
  border-color: #2d3b2b;
}

.home-page .cinematic-hero {
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  margin-bottom: 0;
  background: #cfe5f3;
  isolation: isolate;
}

.home-page .cinematic-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(104px, 18vh, 190px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(207, 229, 243, 0), rgba(248, 246, 239, 0.92) 72%, #f8f6ef);
  opacity: var(--hero-scroll);
  transition: opacity 0.08s linear;
}

.home-page .hero-media {
  background: #9bb8d0;
  transform: translate3d(0, calc(var(--hero-scroll) * 72px), 0);
  transition: transform 0.08s linear;
  will-change: transform;
}

.home-page .hero-media img {
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: center center;
}

.home-page .hero-fade {
  display: none;
}

.home-page .hero-copy {
  top: clamp(110px, 15vh, 165px);
  left: clamp(28px, 8vw, 138px);
  width: min(380px, calc(100vw - 56px));
  max-width: 380px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  transform: translate3d(0, var(--hero-lift), 0);
  opacity: calc(1 - (var(--hero-scroll) * 0.42));
  will-change: transform, opacity;
}

.home-page .hero-copy .kicker {
  color: #2d3b2b;
  letter-spacing: 4px;
  font-size: 11px;
  text-shadow: 0 1px 16px rgba(255, 251, 241, 0.75);
}

.home-page .hero-copy h1 {
  color: #233326;
  font-size: clamp(52px, 6vw, 76px);
  line-height: 0.96;
  text-shadow: 0 2px 18px rgba(255, 251, 241, 0.72);
}

.home-page .hero-copy p.lede {
  max-width: 360px;
  color: #344238;
  font-size: 17px;
}

.home-page .hero-actions .btn-primary {
  border-radius: 999px;
  background: #3e5038;
  border-color: #3e5038;
}

.home-page .hero-proof {
  z-index: 2;
  right: clamp(24px, 5vw, 76px);
  bottom: clamp(88px, 12vh, 145px);
  padding: 16px 8px;
  opacity: var(--hero-proof-opacity);
  transform: translate3d(0, calc(var(--hero-scroll) * 26px), 0);
  transition: opacity 0.08s linear;
  background: rgba(17, 26, 21, 0.46);
  border-color: rgba(255, 255, 255, 0.18);
}

.home-page .proof-item {
  min-width: 118px;
  color: #fff;
}

.wholesale-top {
  position: relative;
  z-index: 3;
  padding-top: 110px;
}

.home-page .section,
.proof-strip,
.process-section,
.quality-world-section,
.private-label-section {
  background: #f8f6ef;
}

.home-page .section-heading-row {
  align-items: end;
  margin-bottom: 26px;
}

.home-page .section-heading-row > p {
  max-width: 430px;
  margin: 0;
  font-size: 14px;
}

.home-page .buyer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-page .buyer-card {
  min-height: 385px;
  border-color: #e5e0d4;
  background: #fff;
  box-shadow: 0 16px 38px rgba(34, 46, 35, 0.08);
}

.home-page .buyer-card-media {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.buyer-card-importers .buyer-card-media {
  background-image: url("../images/private-label-packaging-remake.png");
  background-size: cover;
  background-position: center;
}

.home-page .buyer-card-body {
  min-height: 168px;
  padding: 30px 46px 22px 20px;
}

.home-page .buyer-card h3 {
  font-size: 20px;
}

.home-page .buyer-card p {
  font-size: 13px;
}

.featured-products-section {
  background: #fff;
}

.featured-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.featured-product {
  display: grid;
  gap: 14px;
  color: #111a15;
}

.featured-product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 24px;
  background: #faf7f0;
  border: 1px solid #e7e1d4;
  border-radius: 8px;
}

.featured-product span {
  font-weight: 800;
  font-size: 16px;
}

.export-strength-section {
  background: #f8f6ef;
}

.strength-grid,
.brand-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.strength-item {
  padding: 24px;
  background: #fff;
  border: 1px solid #e5e0d4;
  border-radius: 8px;
}

.strength-item h3 {
  font-family: var(--sans);
  font-size: 17px;
  color: #1d2520;
}

.strength-item p {
  font-size: 13px;
  margin: 0;
}

.export-reach-section {
  background: #eff3ec;
}

.export-reach-section .quality-world-grid {
  align-items: center;
}

.brands-section {
  background: #fff;
}

.brand-strip {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.brand-strip span {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid #e5e0d4;
  border-radius: 8px;
  color: #2d3b2b;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  background: #faf7f0;
}

.home-page .process-section {
  padding: 62px 0;
  background: #f8f6ef;
}

.home-page .process-section .container {
  display: block;
}

.home-page .process-head {
  max-width: 620px;
  margin-bottom: 28px;
}

.home-page .process-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-page .process-step {
  min-height: 150px;
  padding: 26px 20px 22px 58px;
  border: 1px solid #e5e0d4;
  border-radius: 8px;
  background: #fff;
}

.home-page .process-step span {
  top: 24px;
  left: 20px;
}

.home-page .process-step h3 {
  font-size: 18px;
}

.home-page .process-step p {
  font-size: 13px;
}

.final-cta-section {
  padding: 58px 0;
  color: #fff;
  background: #2d3b2b;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.final-cta-section h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
}

.final-cta-section .kicker {
  color: #dce5cf;
}

.final-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.final-cta-section .btn-primary {
  background: #f8f6ef;
  border-color: #f8f6ef;
  color: #2d3b2b;
}

.final-cta-section .btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* ---------- homepage: recovered lower flow polish ---------- */
.home-page .buyer-section + .proof-strip,
.home-page .category-section,
.home-page .process-section,
.home-page .quality-world-section,
.home-page .private-label-section,
.home-page .final-cta-section,
.home-page .home-footer {
  position: relative;
}

.home-page .buyer-section + .proof-strip::before,
.home-page .category-section::before,
.home-page .process-section::before,
.home-page .quality-world-section::before,
.home-page .private-label-section::before,
.home-page .final-cta-section::before,
.home-page .home-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(24px, 7vw, 140px);
  right: clamp(24px, 7vw, 140px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(62, 80, 56, 0.18), transparent);
}

.home-page .proof-strip {
  padding: 34px 0;
  background: linear-gradient(90deg, #f5f4ed 0%, #edf2eb 100%);
}

.home-page .proof-strip-inner {
  gap: 0;
  align-items: stretch;
}

.home-page .proof-title,
.home-page .proof-mini {
  padding: 0 clamp(18px, 2vw, 34px);
  border-left: 1px solid rgba(62, 80, 56, 0.18);
}

.home-page .proof-title {
  border-left: 0;
  padding-left: 0;
}

.home-page .proof-title h2 {
  font-size: clamp(25px, 2.6vw, 36px);
  color: var(--olive-deep);
}

.home-page .proof-mini {
  align-content: center;
  gap: 9px;
}

.home-page .proof-mini h3 {
  color: #111a15;
  font-size: 18px;
  font-weight: 800;
  max-width: 210px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-page .proof-mini p {
  max-width: 220px;
  font-size: 15px;
  color: #465148;
}

.home-page .category-section {
  padding-top: 44px;
  padding-bottom: 44px;
  background: #fbfaf5;
}

.home-page .category-card {
  border: 1px solid #e5e0d4;
  box-shadow: 0 8px 20px rgba(34, 46, 35, 0.06);
}

.home-page .category-card-media {
  min-height: 116px;
}

.home-page .process-section {
  background: #f1efe7;
  padding: 34px 0;
}

.home-page .process-section .container {
  max-width: none;
  padding-left: clamp(56px, 7vw, 132px);
  padding-right: clamp(56px, 7vw, 132px);
  grid-template-columns: 1fr;
  align-items: start;
  gap: 34px;
}

.home-page .process-steps {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(72px, 10vw, 180px);
}

.home-page .process-step {
  min-height: 92px;
  padding: 10px 0 10px 78px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-page .process-step::after {
  display: none;
}

.home-page .process-step:last-child::after {
  display: none;
}

.home-page .process-step span {
  width: 42px;
  height: 42px;
  top: 9px;
  left: 0;
  background: #e3ded4;
  color: #111a15;
  font-family: var(--serif);
  font-size: 22px;
}

.home-page .process-step h3 {
  font-size: 14px;
  color: #111a15;
}

.home-page .process-step p {
  font-size: 11px;
}

.home-page .quality-world-section {
  background: #f8f6ef;
  padding: 48px 0 34px;
}

.home-page .quality-world-grid {
  gap: clamp(32px, 6vw, 82px);
}

.home-page .quality-panel {
  border-right: 1px solid rgba(62, 80, 56, 0.22);
  padding-right: clamp(24px, 5vw, 70px);
}

.home-page .world-content {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) 180px;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
}

.home-page .world-map-image {
  max-width: none;
  width: 108%;
}

.market-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  color: #2d3b2b;
  font-size: 14px;
  font-weight: 700;
}

.market-list li {
  position: relative;
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 8px 12px 8px 34px;
  border: 1px solid rgba(62, 80, 56, 0.16);
  border-radius: 999px;
  background: rgba(255, 251, 241, 0.52);
}

.market-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #3e5038;
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(62, 80, 56, 0.12);
}

.home-page .private-label-section {
  padding: 24px 0 46px;
  background: #f8f6ef;
}

.home-page .private-label-grid {
  gap: 0;
}

.home-page .private-label-copy {
  position: relative;
  z-index: 2;
  padding-right: 34px;
}

.home-page .private-label-media {
  position: relative;
  min-height: 245px;
  border-radius: 0;
}

.home-page .private-label-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 42%;
  pointer-events: none;
  background: linear-gradient(90deg, #f8f6ef 0%, rgba(248, 246, 239, 0.86) 32%, rgba(248, 246, 239, 0) 100%);
}

.home-page .private-label-media img {
  min-height: 245px;
}

.home-page .final-cta-section {
  padding: 56px 0;
  background: radial-gradient(circle at 72% 40%, rgba(92, 113, 78, 0.42), transparent 36%), #213426;
}

.home-page .final-cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 30px 56px;
}

.home-page .final-cta-inner > div:first-child p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  margin-bottom: 0;
}

.home-page .final-cta-section h2 {
  font-size: clamp(34px, 4vw, 48px);
}

.home-page .final-cta-section .cta-proof {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-column: 2;
  grid-row: 1 / span 2;
}

.home-page .final-cta-section .cta-proof > div {
  justify-content: center;
  min-height: 94px;
}

.home-page .final-cta-actions {
  justify-content: flex-start;
}

.home-page .final-cta-section .btn-primary {
  border-radius: 999px;
  padding: 15px 28px;
}

.home-page .final-cta-section .btn-ghost {
  border-radius: 999px;
  padding: 15px 28px;
}

.home-footer {
  background: #edf3f1;
  padding-top: 56px;
}

.home-footer .footer-grid {
  grid-template-columns: 1.6fr 0.8fr 0.9fr 1fr;
  gap: 44px;
}

.home-footer .logo-image-link img {
  width: 190px;
  max-height: 48px;
}

.home-footer p {
  max-width: 380px;
  margin-top: 18px;
}

.home-footer h4 {
  color: #2d3b2b;
}

@media (max-width: 980px) {
  .home-page .proof-strip-inner,
  .home-page .quality-world-grid,
  .home-page .private-label-grid,
  .home-page .final-cta-inner,
  .home-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-page .proof-title,
  .home-page .proof-mini,
  .home-page .quality-panel {
    border-left: 0;
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .home-page .proof-mini {
    justify-items: start;
    text-align: left;
    border-top: 1px solid rgba(62, 80, 56, 0.14);
    padding-top: 18px;
  }

  .home-page .process-section .container,
  .home-page .process-steps {
    grid-template-columns: 1fr;
  }

  .home-page .process-step {
    border-left: 0;
    border-top: 1px solid rgba(62, 80, 56, 0.16);
    padding-left: 58px;
  }

  .home-page .process-step::after {
    display: none;
  }

  .home-page .world-content {
    grid-template-columns: 1fr;
  }

  .home-page .final-cta-section .cta-proof {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .home-page .cat-grid {
    grid-template-columns: 1fr;
  }

  .home-page .category-card-media {
    min-height: 150px;
  }

  .home-page .private-label-copy {
    padding-right: 0;
  }

  .home-page .private-label-media::before {
    width: 100%;
    background: linear-gradient(180deg, #f8f6ef 0%, rgba(248, 246, 239, 0.4) 28%, rgba(248, 246, 239, 0) 72%);
  }

  .home-page .final-cta-section .cta-proof {
    grid-template-columns: 1fr;
  }
}

.reveal-card,
.reveal-section .section-heading-row,
.featured-product,
.strength-item,
.process-step {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-card.is-visible,
.reveal-section.is-visible .section-heading-row,
.featured-product.is-visible,
.strength-item.is-visible,
.process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card:nth-child(2),
.featured-product:nth-child(2),
.strength-item:nth-child(2),
.process-step:nth-child(2) { transition-delay: 0.08s; }
.reveal-card:nth-child(3),
.featured-product:nth-child(3),
.strength-item:nth-child(3),
.process-step:nth-child(3) { transition-delay: 0.16s; }
.reveal-card:nth-child(4),
.featured-product:nth-child(4),
.strength-item:nth-child(4),
.process-step:nth-child(4) { transition-delay: 0.24s; }

@media (max-width: 980px) {
  .home-page .buyer-grid,
  .featured-product-grid,
  .strength-grid,
  .home-page .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .home-page .site-header .container {
    min-height: 62px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .logo-image-link img {
    width: 150px;
    max-height: 46px;
  }

  .home-page .nav-links {
    background: rgba(248, 246, 239, 0.94);
    backdrop-filter: blur(12px);
  }

  .home-page .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border-radius: 999px;
    background: rgba(248, 246, 239, 0.56);
  }

  .home-page .nav-toggle svg {
    stroke: #18251d;
  }

  .home-page .cinematic-hero {
    min-height: 100vh;
    min-height: 100svh;
    height: 100vh;
    height: 100svh;
    margin-bottom: 0;
  }

  .home-page .hero-media img {
    object-fit: cover;
    object-position: center top;
  }

  .home-page .hero-copy {
    top: 96px;
    left: 24px;
    width: min(330px, calc(100vw - 48px));
  }

  .home-page .hero-copy h1 {
    font-size: 43px;
  }

  .home-page .hero-proof {
    left: 18px;
    right: 18px;
    width: auto !important;
    max-width: none;
    bottom: 76px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 14px;
    overflow: visible;
    transform: translate3d(0, calc(var(--hero-scroll) * 26px), 0);
  }

  .home-page .proof-item {
    min-width: 0;
    padding: 0 10px;
    font-size: 9px;
    line-height: 1.2;
  }

  .home-page .proof-item span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .home-page .proof-item:nth-child(3) {
    border-left: 0;
  }

  .home-page .buyer-grid,
  .featured-product-grid,
  .strength-grid,
  .home-page .process-steps,
  .brand-strip {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    display: grid;
  }
}

/* ---------- catalogue reference layout ---------- */
.catalogue-page {
  --olive: #3e5038;
  --olive-deep: #2d3b2b;
  --warm-paper: #f8f6ef;
  --paper-line: #e4ddd0;
  background:
    linear-gradient(90deg, rgba(62, 80, 56, 0.28), rgba(62, 80, 56, 0) 16px) left top / 20px 100% no-repeat fixed,
    linear-gradient(270deg, rgba(62, 80, 56, 0.28), rgba(62, 80, 56, 0) 16px) right top / 20px 100% no-repeat fixed,
    radial-gradient(circle at 8% 48%, rgba(184, 164, 119, 0.17), transparent 22%),
    radial-gradient(circle at 92% 48%, rgba(184, 164, 119, 0.16), transparent 23%),
    var(--warm-paper);
  color: #17221c;
  overflow-x: hidden;
}

.catalogue-page::before,
.catalogue-page::after {
  content: "";
  position: fixed;
  top: 58%;
  bottom: auto;
  z-index: 0;
  width: clamp(118px, 15vw, 230px);
  height: clamp(170px, 23vw, 350px);
  pointer-events: none;
  opacity: 0.38;
  background: url("../images/olive-branch-transparent.png") center bottom / contain no-repeat;
}

.catalogue-page::before {
  left: -118px;
  transform: translateY(-50%) rotate(-14deg);
}

.catalogue-page::after {
  right: -118px;
  transform: translateY(-50%) scaleX(-1) rotate(-14deg);
}

.catalogue-page .site-header {
  position: sticky;
  top: 0;
  background: rgba(248, 246, 239, 0.82);
  border-bottom: 1px solid rgba(62, 80, 56, 0.12);
  backdrop-filter: blur(18px);
}

.catalogue-page .site-header > .container {
  max-width: none;
  padding-left: clamp(20px, 4.5vw, 72px);
  padding-right: clamp(20px, 4.5vw, 72px);
}

.catalogue-page .logo-image-link img {
  width: 214px;
  max-height: 58px;
  object-fit: contain;
}

.catalogue-page .nav-links a {
  color: #15231c;
}

.catalogue-page .nav-links a.active {
  color: #101915;
}

.catalogue-page main {
  position: relative;
  z-index: 1;
}

.catalogue-hero {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid rgba(62, 80, 56, 0.12);
}

.catalogue-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 246, 239, 0.98) 0%, rgba(248, 246, 239, 0.82) 34%, rgba(248, 246, 239, 0.24) 58%, rgba(248, 246, 239, 0) 100%),
    url("../images/catalogue-hero-lebanese-products-v2.png") right center / auto 100% no-repeat;
  background-color: #f8f6ef;
}

.catalogue-hero::after {
  content: none;
}

.catalogue-page .cat-page-head {
  position: relative;
  z-index: 1;
  max-width: none;
  width: 100%;
  padding: 52px clamp(20px, 5.5vw, 88px) 48px;
}

.catalogue-page .cat-page-head .kicker {
  color: #17231d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

.catalogue-page .cat-page-head h1 {
  max-width: 620px;
  margin-bottom: 8px;
  font-size: clamp(42px, 5.2vw, 72px);
  color: #1c211c;
}

.catalogue-page .cat-page-head .lede {
  max-width: 560px;
  font-size: 18px;
  color: #22312a;
}

.catalogue-page .cat-layout {
  max-width: none;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: clamp(22px, 2.8vw, 36px);
  padding: 24px clamp(20px, 4.5vw, 72px) 22px;
}

.catalogue-page .cat-sidebar {
  top: 92px;
  gap: 18px;
}

.catalogue-page .cat-search {
  position: relative;
}

.catalogue-page .cat-search::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 2px solid #14211b;
  border-radius: 50%;
  transform: translateY(-56%);
}

.catalogue-page .cat-search::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 26px;
  width: 8px;
  height: 2px;
  background: #14211b;
  transform: rotate(45deg);
}

.catalogue-page .cat-search input {
  height: 46px;
  padding-left: 48px;
  border: 1px solid #d4d0c8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  color: #17221c;
}

.catalogue-page .cat-search input::placeholder {
  color: #5e665f;
}

.catalogue-page .cat-list {
  gap: 6px;
}

.catalogue-page .cat-btn {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 14px;
  border-radius: 8px;
  color: #18231d;
  font-size: 15px;
  font-weight: 500;
}

.catalogue-page .cat-btn::before,
.catalogue-page .cat-btn::after {
  content: none;
}

.catalogue-page .cat-btn:hover {
  background: rgba(62, 80, 56, 0.08);
  color: #17231d;
}

.catalogue-page .cat-btn.is-active {
  background: linear-gradient(135deg, #2f4739, #415f4b);
  color: #fff;
  box-shadow: 0 10px 22px rgba(47, 71, 57, 0.18);
}

.cat-quality-card {
  min-height: 168px;
  margin-top: 18px;
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 15% 90%, rgba(62, 80, 56, 0.1), transparent 42%),
    rgba(238, 232, 219, 0.55);
}

.cat-quality-map {
  width: 92px;
  height: 118px;
  flex: 0 0 auto;
  clip-path: polygon(48% 0, 65% 8%, 68% 24%, 81% 38%, 72% 55%, 80% 73%, 62% 100%, 38% 92%, 30% 75%, 18% 66%, 25% 47%, 15% 31%, 32% 16%);
  background: linear-gradient(155deg, #e8d3a4, #d8bb7d);
  position: relative;
}

.cat-quality-map::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 44px;
  width: 36px;
  height: 48px;
  background:
    linear-gradient(#284737, #284737) 50% 44% / 5px 36px no-repeat,
    radial-gradient(ellipse at 50% 26%, #284737 0 38%, transparent 40%),
    radial-gradient(ellipse at 38% 45%, #284737 0 34%, transparent 36%),
    radial-gradient(ellipse at 62% 45%, #284737 0 34%, transparent 36%),
    radial-gradient(ellipse at 50% 62%, #284737 0 36%, transparent 38%);
}

.cat-quality-card strong {
  color: #21372b;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.12;
}

.catalogue-page .cat-results-head {
  min-height: 46px;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  color: #303a34;
  font-size: 14px;
}

.catalogue-page .prod-grid {
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  gap: 16px;
}

.catalogue-page .prod-card {
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 7px 18px rgba(34, 46, 35, 0.06);
}

.catalogue-page .prod-card:hover {
  border-color: rgba(62, 80, 56, 0.42);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(34, 46, 35, 0.1);
}

.catalogue-page .prod-media {
  height: 160px;
  border-bottom: 0;
  background: transparent;
}

.catalogue-page .prod-body {
  padding: 12px 18px 14px;
}

.catalogue-page .prod-cat {
  margin-bottom: 5px;
  color: #17231d;
  font-size: 10px;
  letter-spacing: 1.1px;
}

.catalogue-page .prod-name {
  min-height: 2.45em;
  color: #111a15;
  font-size: 16px;
}

.catalogue-page .prod-meta {
  color: #4f5a55;
}

.catalogue-page .btn-sm {
  height: 36px;
  padding: 8px 14px;
  border-color: #8c9991;
  color: #14211b;
}

.catalogue-page .btn-sm::before {
  content: "";
  width: 12px;
  height: 14px;
  border: 1.6px solid currentColor;
  border-radius: 2px;
  box-shadow: inset 0 4px 0 rgba(20, 33, 27, 0.08);
}

.catalogue-proof-strip {
  max-width: none;
  margin: 4px clamp(20px, 4.5vw, 72px) 72px;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr)) minmax(220px, 300px);
  gap: 16px;
  align-items: center;
  border-radius: 8px;
  background: rgba(238, 232, 219, 0.68);
}

.catalogue-proof-strip > div {
  min-height: 48px;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 12px;
  align-items: center;
  border-right: 1px solid rgba(62, 80, 56, 0.2);
}

.catalogue-proof-strip strong,
.catalogue-proof-strip small {
  grid-column: 2;
}

.catalogue-proof-strip strong {
  color: #18231d;
  font-size: 13px;
  line-height: 1.2;
}

.catalogue-proof-strip small {
  color: #33443a;
  font-size: 12px;
}

.catalogue-proof-strip .btn-primary {
  background: linear-gradient(135deg, #2f4739, #415f4b);
  border-color: transparent;
  border-radius: 8px;
}

.proof-icon {
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  border: 1.5px solid #293b31;
  border-radius: 50%;
}

.proof-leaf {
  background:
    linear-gradient(135deg, transparent 47%, #293b31 48% 52%, transparent 53%),
    radial-gradient(ellipse at 63% 34%, transparent 0 22%, #293b31 23% 26%, transparent 27%);
}

.proof-globe {
  background:
    linear-gradient(#293b31, #293b31) 50% 0 / 1.5px 100% no-repeat,
    linear-gradient(90deg, transparent 0 18%, #293b31 19% 21%, transparent 22% 78%, #293b31 79% 81%, transparent 82%),
    linear-gradient(90deg, transparent 0 8%, #293b31 9% 91%, transparent 92%) 0 50% / 100% 1.5px no-repeat;
}

.proof-handshake {
  border-radius: 10px;
  background:
    linear-gradient(45deg, transparent 36%, #293b31 37% 45%, transparent 46%),
    linear-gradient(-45deg, transparent 36%, #293b31 37% 45%, transparent 46%);
}

@media (max-width: 1180px) {
  .catalogue-page .prod-grid {
    grid-template-columns: repeat(3, minmax(190px, 1fr));
  }
}

@media (max-width: 900px) {
  .catalogue-page .cat-layout {
    grid-template-columns: 1fr;
  }

  .catalogue-page .cat-sidebar {
    position: static;
  }

  .catalogue-page .cat-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cat-quality-card {
    display: none;
  }

  .catalogue-proof-strip {
    grid-template-columns: 1fr;
  }

  .catalogue-proof-strip > div {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .catalogue-page::before,
  .catalogue-page::after {
    width: 104px;
    height: 150px;
    opacity: 0.5;
    top: 64%;
  }

  .catalogue-hero {
    min-height: 220px;
  }

  .catalogue-hero-media {
    background:
      linear-gradient(90deg, rgba(248, 246, 239, 0.99) 0%, rgba(248, 246, 239, 0.93) 55%, rgba(248, 246, 239, 0.5) 82%, rgba(248, 246, 239, 0.2) 100%),
      url("../images/catalogue-hero-lebanese-products-v2.png") right bottom / auto 86% no-repeat;
    background-color: #f8f6ef;
  }

  .catalogue-page .cat-page-head {
    padding-top: 42px;
    padding-bottom: 34px;
  }

  .catalogue-page .cat-page-head h1 {
    max-width: 310px;
    font-size: 36px;
    line-height: 1.02;
  }

  .catalogue-page .cat-page-head .lede {
    max-width: 320px;
    font-size: 16px;
  }

  .catalogue-page .cat-list {
    grid-template-columns: 1fr;
  }

  .catalogue-page .prod-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .home-page .hero-proof {
    left: 18px;
    right: 18px;
    width: auto !important;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: stretch;
    overflow: hidden;
    transform: translate3d(0, calc(var(--hero-scroll) * 26px), 0);
  }

  .home-page .proof-item {
    width: 100%;
    min-width: 0 !important;
    max-width: 100%;
    padding: 0 8px;
  }

  .home-page .proof-item span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .home-page .proof-item:nth-child(3) {
    border-left: 0;
  }
}

/* ---------- about page reference layout ---------- */
.about-page {
  --about-paper: #f8f6ef;
  --about-ink: #17231d;
  --about-green: #263f2f;
  --about-line: #d9d4c8;
  --about-red: #d85f3f;
  background: var(--about-paper);
  color: var(--about-ink);
}

.about-page .site-header {
  background: rgba(248, 246, 239, 0.96);
  border-bottom-color: rgba(38, 63, 47, 0.16);
}

.about-page .site-header .container {
  max-width: none;
  min-height: 64px;
  padding-left: clamp(28px, 4.5vw, 72px);
  padding-right: clamp(28px, 4.5vw, 72px);
}

.about-page .logo-image-link img {
  width: 222px;
  max-height: 56px;
  object-fit: contain;
}

.about-page .nav-links a {
  color: #142235;
}

.about-page .nav-links a:hover {
  color: var(--about-green);
}

.about-page .nav-links a:not(.btn).active::after {
  background: var(--about-green);
}

.about-page .site-header .btn-primary,
.about-page .btn-primary {
  border-radius: 999px;
  background: var(--about-green);
  border-color: var(--about-green);
  color: #fff;
}

.about-page .site-header .btn-primary:hover,
.about-page .btn-primary:hover {
  background: #192e22;
  border-color: #192e22;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(28px, 4.5vw, 72px);
}

.about-page .kicker {
  color: #172b3c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.about-page h1,
.about-page h2 {
  color: var(--about-ink);
  text-transform: none;
}

.about-page h2 {
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 0.98;
}

.script-note {
  font-family: "Nothing You Could Do", cursive;
  color: #172235;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 0.94;
  transform: rotate(-4deg);
}

.script-note::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 18px;
  background: var(--about-red);
}

.about-hero {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 2087 / 754;
  overflow: hidden;
}

.about-hero-media {
  position: absolute;
  inset: 0;
  background: url("../images/about-us-1.png") center / 100% 100% no-repeat;
}

.about-hero-copy {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100vw - 56px));
  padding: 88px 0 70px clamp(28px, 13vw, 260px);
}

.about-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(44px, 5vw, 74px);
  line-height: 0.95;
}

.about-hero p {
  max-width: 560px;
  color: #1d3446;
  font-size: 20px;
  line-height: 1.35;
}

.hero-script {
  position: absolute;
  z-index: 2;
  top: 80px;
  right: clamp(44px, 10vw, 190px);
}

.location-pin {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  background: rgba(18, 28, 24, 0.58);
}

.location-pin svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.about-story {
  padding: 34px 0 8px;
}

.story-grid {
  max-width: none;
  margin: 0;
  padding-left: clamp(32px, 4vw, 72px);
  padding-right: clamp(32px, 4vw, 72px);
  display: grid;
  grid-template-columns: minmax(300px, 0.98fr) minmax(330px, 0.82fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 4vw, 62px);
  align-items: center;
}

.story-copy p {
  max-width: 440px;
  color: #4b5d66;
  font-size: 16px;
  line-height: 1.5;
}

.story-sign {
  margin-top: 28px;
  font-size: 31px;
}

.story-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1122 / 1402;
  min-height: 0;
  justify-self: center;
  background: url("../images/about-story-rectangle.png") center / cover no-repeat;
}

.story-pillars {
  display: grid;
  gap: 34px;
}

.pillar {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 24px;
  align-items: start;
}

.about-icon svg,
.number-card svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-pillars .about-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 2.2;
}

.story-pillars .about-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.pillar h3,
.values-grid h3 {
  margin-bottom: 3px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
}

.pillar p,
.values-grid p {
  margin: 0;
  color: #4a5961;
  font-size: 13px;
  line-height: 1.45;
}

.about-numbers {
  position: relative;
  color: #fff;
  background: #203d2b;
}

.about-numbers img {
  width: 100%;
  height: auto;
  display: block;
}

.about-values {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.95fr);
  min-height: 390px;
}

.values-copy {
  padding: 52px clamp(32px, 6vw, 72px) 44px clamp(28px, 7vw, 72px);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 44px;
  text-align: center;
}

.values-grid > div {
  min-height: 118px;
  padding: 0 20px;
  border-left: 1px solid var(--about-line);
}

.values-grid > div:first-child {
  border-left: 0;
}

.values-grid .about-icon {
  display: inline-flex;
  margin-bottom: 12px;
}

.values-photo {
  position: relative;
  min-height: 390px;
  background: url("../images/about-values-right.png") center / cover no-repeat;
}

.values-photo .script-note {
  position: absolute;
  right: 50px;
  bottom: 42px;
  max-width: 260px;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.about-final {
  position: relative;
  min-height: 415px;
  overflow: hidden;
  color: #fff;
}

.about-final-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 28, 24, 0.76) 0%, rgba(17, 28, 24, 0.34) 46%, rgba(17, 28, 24, 0.04) 100%),
    url("../images/hero-new-download.png") center 54% / cover no-repeat;
}

.about-final-copy {
  position: relative;
  z-index: 1;
  width: min(690px, calc(100vw - 56px));
  padding: 92px 0 72px clamp(28px, 4.5vw, 72px);
}

.about-final .kicker,
.about-final h2 {
  color: #fff;
}

.about-final h2 {
  font-size: clamp(42px, 5vw, 66px);
}

.about-final p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
}

.about-final .btn-primary {
  background: #fff;
  border-color: #fff;
  color: var(--about-ink);
}

.about-final .btn-ghost {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.final-script {
  position: absolute;
  z-index: 1;
  top: 90px;
  right: clamp(38px, 8vw, 154px);
  color: #172235;
}

@media (max-width: 980px) {
  .about-page .nav-links {
    background: var(--about-paper);
  }

  .story-grid,
  .about-values {
    grid-template-columns: 1fr;
  }

  .story-photo,
  .values-photo {
    min-height: 320px;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 0;
  }

  .hero-script,
  .final-script {
    display: none;
  }
}

@media (max-width: 640px) {
  .about-page .site-header .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-page .logo-image-link img {
    width: 165px;
  }

  .about-hero {
    min-height: 0;
  }

  .about-hero-media {
    background: url("../images/about-us-1.png") center / 100% 100% no-repeat;
  }

  .about-hero-copy {
    padding: 54px 22px 52px;
  }

  .about-hero h1 {
    font-size: 42px;
  }

  .about-hero p {
    font-size: 16px;
  }

  .about-container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-grid > div {
    border-left: 0;
    border-top: 1px solid rgba(38, 63, 47, 0.18);
    padding-top: 18px;
  }

  .values-copy {
    padding-left: 22px;
    padding-right: 22px;
  }

  .about-final-copy {
    padding: 70px 22px 66px;
  }
}

/* ---------- homepage hero readability fixes ---------- */
.home-page .site-header {
  z-index: 20;
  background: transparent;
  border-bottom: 0 !important;
  box-shadow: none;
  backdrop-filter: none;
}

.home-page .site-header.is-scrolled {
  background: rgba(248, 246, 239, 0.08);
  border-bottom-color: transparent !important;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.home-page .logo-image-link {
  position: relative;
  z-index: 21;
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.home-page .logo-image-link::before {
  display: none;
}

.home-page .logo-image-link img {
  width: clamp(250px, 20vw, 380px);
  max-height: 96px;
  filter: drop-shadow(0 2px 12px rgba(255, 251, 241, 0.82)) drop-shadow(0 8px 18px rgba(22, 35, 28, 0.2));
}

.home-page .cinematic-hero {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  padding-top: 0;
  background: #cfe5f3;
}

.home-page .hero-media {
  position: absolute;
  inset: 0;
  height: auto;
  background: #cfe5f3;
  transform: translate3d(0, calc(var(--hero-scroll) * 72px), 0);
}

.home-page .hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: transparent;
}

.home-page .hero-inner {
  position: static;
  z-index: 2;
  padding: 0;
}

.home-page .hero-copy {
  top: clamp(112px, 15vh, 158px);
  left: clamp(42px, 5.5vw, 104px);
  width: min(340px, calc(100vw - 56px));
  max-width: 340px;
}

.home-page .hero-copy .kicker {
  font-size: 10px;
  letter-spacing: 2.4px;
}

.home-page .hero-copy h1 {
  font-size: clamp(40px, 4.7vw, 60px);
  line-height: 0.98;
  margin-bottom: 12px;
}

.home-page .hero-copy p.lede {
  max-width: 310px;
  font-size: 13px;
  line-height: 1.45;
  color: #1e2f24;
  text-shadow: 0 1px 16px rgba(255, 251, 241, 0.94);
}

@media (max-width: 700px) {
  .home-page .site-header .container {
    min-height: 62px;
  }

  .home-page .logo-image-link img {
    width: 196px;
    max-height: 66px;
  }

  .home-page .cinematic-hero {
    display: flex;
    min-height: 100vh;
    min-height: 100svh;
    height: 100vh;
    height: 100svh;
    padding-top: 0;
  }

  .home-page .hero-media {
    position: absolute;
    inset: 0;
    height: auto;
    transform: translate3d(0, calc(var(--hero-scroll) * 72px), 0);
  }

  .home-page .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 48% center;
  }

  .home-page .hero-inner {
    position: static;
    padding: 0;
  }

  .home-page .hero-copy {
    top: 88px;
    left: 16px;
    width: min(235px, calc(100vw - 40px));
  }

  .home-page .hero-copy .kicker {
    font-size: 8px;
    letter-spacing: 1.4px;
  }

  .home-page .hero-copy h1 {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 8px;
  }

  .home-page .hero-copy p.lede {
    max-width: 220px;
    font-size: 11px;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .home-page .hero-actions .btn-primary {
    padding: 10px 18px;
    font-size: 11px;
  }

  .home-page .hero-proof {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 76px;
    width: auto !important;
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: translate3d(0, calc(var(--hero-scroll) * 26px), 0);
  }
}

/* ---------- homepage hero premium polish ---------- */
.home-page .hero-proof {
  position: absolute !important;
  display: flex !important;
  left: auto !important;
  right: clamp(28px, 4vw, 72px);
  bottom: clamp(96px, 13vh, 148px);
  z-index: 12;
  gap: 0;
  padding: 18px 14px;
  box-sizing: border-box;
  overflow: hidden;
  opacity: 1 !important;
  transform: none !important;
  background: linear-gradient(135deg, rgba(20, 32, 25, 0.62), rgba(69, 49, 25, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(10, 16, 12, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px) saturate(128%);
}

.home-page .proof-item {
  min-width: 132px;
  padding: 0 18px;
  box-sizing: border-box;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  color: #fffdf5;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.home-page .proof-item:first-child {
  border-left: 0;
}

.home-page .proof-item svg {
  width: 33px;
  height: 33px;
  stroke-width: 1.65;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

.home-page .proof-item:first-child {
  color: #fff7d9;
}

@media (max-width: 700px) {
  .home-page .hero-proof {
    display: grid !important;
    left: 16px !important;
    right: 16px;
    bottom: 70px;
    padding: 14px 8px;
  }

  .home-page .proof-item {
    min-width: 0;
    padding: 0 10px;
    font-size: 10px;
  }

  .home-page .proof-item svg {
    width: 26px;
    height: 26px;
  }
}

/* ---------- requested hero cleanup ---------- */
.home-page .logo-image-link {
  padding: 0;
}

.home-page .logo-image-link::before {
  content: none;
}

.home-page .logo-image-link img {
  width: clamp(250px, 20vw, 380px);
  max-height: 96px;
}

.home-page .hero-proof {
  display: none !important;
  position: absolute !important;
  left: auto !important;
  right: clamp(28px, 4vw, 72px);
  bottom: clamp(96px, 13vh, 148px);
  z-index: 12;
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 860px) {
  .home-page .nav-links {
    border-bottom: 0;
  }

  .home-page .logo-image-link img {
    width: 196px;
    max-height: 66px;
  }

  .home-page .hero-proof {
    display: grid !important;
    left: 16px !important;
    right: auto;
    bottom: 70px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 0;
    padding: 16px 10px;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px);
  }

  .home-page .proof-item {
    width: 100%;
    min-width: 0 !important;
    padding: 0 8px;
    box-sizing: border-box;
    border-left: 0;
  }

  .home-page .proof-item:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.42);
  }

  .home-page .proof-item span {
    display: block;
    max-width: 96px;
    margin: 0 auto;
    overflow-wrap: anywhere;
  }
}
