/* ===== Foundation ===== */
:root {
  --ink: #0a1a24;
  --ink-2: #102b3a;
  --paper: #f5f2ea;
  --paper-2: #ebe7dc;
  --white: #ffffff;
  --blue: #2e5bff;
  --blue-dark: #1e42ca;
  --cyan: #9eeaf0;
  --wa: #20b95a;
  --wa-dark: #168c42;
  --text: #17252e;
  --muted: #64727b;
  --line: #d8d7d0;
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(10, 26, 36, 0.14);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--cyan); color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.page { padding: 48px 0 88px; }
.section { padding: 88px 0; }
.section-compact { padding: 64px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-white { background: var(--white); }
.section-blue { background: var(--blue); color: var(--white); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.section-dark .eyebrow, .section-blue .eyebrow, .inner-hero .eyebrow { color: var(--cyan); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 38px;
}
.section-head h2, .section-title {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}
.section-dark .section-head h2, .section-blue .section-head h2,
.section-dark .section-title, .section-blue .section-title { color: var(--white); }
.section-head p { max-width: 460px; color: var(--muted); }
.section-dark .section-head p, .section-blue .section-head p { color: rgba(255, 255, 255, 0.7); }
.lead { max-width: 700px; color: var(--muted); font-size: 19px; }
.prose { max-width: 760px; }
.prose p { margin-bottom: 20px; }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 4px; }
.text-link { color: var(--blue); font-size: 14px; font-weight: 800; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-wa { background: var(--wa); color: var(--white); }
.btn-wa:hover { background: var(--wa-dark); }
.btn-ghost { border-color: currentColor; background: transparent; color: inherit; }
.btn-light { background: var(--white); color: var(--ink); }
.btn-arrow::after { content: "↗"; font-size: 16px; }
.btn-row { min-height: 38px; padding: 9px 13px; font-size: 12px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(10, 26, 36, 0.1);
  background: rgba(245, 242, 234, 0.94);
  backdrop-filter: blur(16px);
}
.nav-inner { display: flex; min-height: 76px; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-weight: 900; letter-spacing: -0.02em; }
.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--ink);
  color: var(--cyan);
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: -0.04em;
}
.brand-name { font-size: 18px; }
.nav-links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav-links > a:not(.btn) { position: relative; color: #33434c; font-size: 14px; font-weight: 700; }
.nav-links > a:not(.btn)::after {
  position: absolute;
  content: "";
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--blue);
  transition: right 0.2s ease;
}
.nav-links > a:hover::after, .nav-links > a.active::after { right: 0; }
.nav-links > a.active { color: var(--ink); }
.nav-links .btn { min-height: 40px; padding: 10px 15px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 5px;
  cursor: pointer;
  font-size: 0;
}
.nav-toggle::before { content: "☰"; font-size: 22px; }
.nav-open .nav-toggle::before { content: "×"; font-size: 28px; }

/* ===== Footer ===== */
.site-footer { background: #06141d; color: rgba(255, 255, 255, 0.68); }
.footer-main { display: grid; grid-template-columns: 1.7fr 0.8fr 0.8fr; gap: 64px; padding: 70px 0 50px; }
.site-footer .brand { color: var(--white); margin-bottom: 18px; }
.site-footer .brand-mark { background: var(--cyan); color: var(--ink); }
.footer-intro { max-width: 480px; }
.footer-label { color: var(--white); font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 32px;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
}
.footer-disclaimer { max-width: 620px; text-align: right; }

/* ===== Home hero ===== */
.hero { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.hero::before {
  position: absolute;
  content: "";
  width: 540px;
  height: 540px;
  left: -280px;
  bottom: -380px;
  border: 110px solid rgba(158, 234, 240, 0.08);
  border-radius: 50%;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; align-items: center; min-height: 700px; padding: 80px 0; }
.hero-copy { position: relative; z-index: 1; }
.hero h1 {
  max-width: 730px;
  color: var(--white);
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  margin-bottom: 26px;
}
.hero-copy > p { max-width: 650px; color: rgba(255, 255, 255, 0.72); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { margin-top: 20px; color: rgba(255, 255, 255, 0.48); font-size: 12px; letter-spacing: 0.03em; }
.hero-visual { position: relative; min-width: 0; }
.hero-visual::before {
  position: absolute;
  z-index: 0;
  content: "";
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(158, 234, 240, 0.34);
}
.hero-visual img { position: relative; z-index: 1; width: 100%; height: 500px; object-fit: cover; filter: saturate(0.72) contrast(1.08); }
.supply-card {
  position: absolute;
  z-index: 2;
  left: -34px;
  bottom: -30px;
  width: min(300px, 82%);
  padding: 22px;
  border-left: 4px solid var(--cyan);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.supply-card small { display: block; color: var(--blue); font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px; }
.supply-card strong { display: block; font-size: 21px; line-height: 1.15; margin-bottom: 8px; }
.supply-card span { color: var(--muted); font-size: 13px; }

.signal-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.signals { display: grid; grid-template-columns: repeat(4, 1fr); }
.signal { min-height: 118px; padding: 28px 24px; border-right: 1px solid var(--line); }
.signal:first-child { border-left: 1px solid var(--line); }
.signal strong { display: block; color: var(--ink); font-size: 20px; letter-spacing: -0.03em; }
.signal span { display: block; color: var(--muted); font-size: 13px; margin-top: 4px; }

/* ===== Home modules ===== */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.category-card {
  position: relative;
  display: block;
  min-height: 310px;
  overflow: hidden;
  background: var(--ink-2);
  color: var(--white);
}
.category-card img { width: 100%; height: 310px; object-fit: cover; filter: saturate(0.78) contrast(1.04); transition: transform 0.45s ease; }
.category-card::after { position: absolute; content: ""; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(6, 20, 29, 0.9)); }
.category-card:hover img { transform: scale(1.035); }
.category-label { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; display: flex; justify-content: space-between; align-items: end; gap: 16px; }
.category-label strong { font-size: 23px; letter-spacing: -0.03em; }
.category-label span { color: rgba(255, 255, 255, 0.7); font-size: 12px; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); }
.process-step { position: relative; padding: 34px 30px 10px 0; }
.process-step + .process-step { padding-left: 30px; border-left: 1px solid var(--line-dark); }
.process-number { display: block; color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: 0.14em; margin-bottom: 52px; }
.process-step h3 { max-width: 250px; font-size: 25px; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 12px; }
.process-step p { max-width: 320px; color: rgba(255, 255, 255, 0.62); font-size: 14px; }

.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.path-card { position: relative; min-height: 420px; padding: 42px; overflow: hidden; background: var(--white); border: 1px solid var(--line); }
.path-card.featured { background: var(--blue); color: var(--white); border-color: var(--blue); }
.path-index { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: 0.14em; }
.featured .path-index { color: var(--cyan); }
.path-card h3 { max-width: 420px; font-size: clamp(34px, 4vw, 52px); line-height: 1; letter-spacing: -0.05em; margin: 70px 0 18px; }
.path-card p { max-width: 460px; color: var(--muted); }
.path-card.featured p { color: rgba(255, 255, 255, 0.72); }
.path-card .text-link { position: absolute; left: 42px; bottom: 40px; }
.path-card.featured .text-link { color: var(--white); }

.quote-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 90px; align-items: start; }
.quote-list { border-top: 1px solid var(--line); }
.quote-item { display: grid; grid-template-columns: 38px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.quote-item b { color: var(--blue); font-size: 12px; }
.quote-item h3 { font-size: 19px; margin-bottom: 4px; }
.quote-item p { color: var(--muted); font-size: 14px; }

.brand-wall { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.brand-wall span { display: grid; min-height: 90px; place-items: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #879098; font-size: 21px; font-weight: 850; letter-spacing: -0.03em; }

.cta-band { background: var(--blue); color: var(--white); }
.cta-band-inner { display: grid; grid-template-columns: 1fr auto; gap: 44px; align-items: center; padding: 70px 0; }
.cta-band h2 { max-width: 780px; font-size: clamp(36px, 5vw, 64px); line-height: 0.98; letter-spacing: -0.05em; }
.cta-band p { margin-top: 14px; color: rgba(255, 255, 255, 0.72); }

/* ===== Inner pages ===== */
.inner-hero { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.inner-hero::after { position: absolute; content: ""; width: 420px; height: 420px; right: -160px; top: -200px; border: 80px solid rgba(158, 234, 240, 0.07); border-radius: 50%; }
.inner-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: end; padding: 90px 0 82px; }
.inner-hero h1 { max-width: 800px; font-size: clamp(48px, 6.5vw, 80px); line-height: 0.98; letter-spacing: -0.055em; }
.inner-hero-copy { max-width: 590px; padding-bottom: 5px; color: rgba(255, 255, 255, 0.7); font-size: 19px; }
.inner-hero-copy strong { color: var(--white); }

.story-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 90px; }
.story-aside { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.story-copy { font-size: 22px; line-height: 1.55; letter-spacing: -0.02em; }
.story-copy p + p { margin-top: 24px; }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.principle { min-height: 290px; padding: 28px; border: 1px solid var(--line); background: var(--white); }
.principle .path-index { display: block; margin-bottom: 82px; }
.principle h3 { font-size: 23px; line-height: 1.1; margin-bottom: 12px; }
.principle p { color: var(--muted); font-size: 14px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.step { padding: 26px 25px 0 0; }
.step + .step { padding-left: 25px; border-left: 1px solid var(--line); }
.step strong { display: block; color: var(--ink); font-size: 18px; line-height: 1.2; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14px; }
.step-number { display: block; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: 0.12em; margin-bottom: 40px; }

.transparency-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: start; }
.fact-list { border-top: 1px solid var(--line-dark); }
.fact { display: grid; grid-template-columns: 1fr 1.5fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
.fact strong { color: var(--white); }
.fact span { color: rgba(255, 255, 255, 0.65); }

.brief-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 18px; }
.brief-panel { padding: 40px; background: var(--white); border: 1px solid var(--line); }
.brief-panel.dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.brief-panel h2 { font-size: 35px; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 30px; }
.check-list { list-style: none; }
.check-list li { position: relative; padding: 15px 0 15px 34px; border-top: 1px solid var(--line); }
.check-list li::before { position: absolute; left: 0; content: "✓"; color: var(--blue); font-weight: 900; }
.dark .check-list li { border-color: var(--line-dark); }
.dark .check-list li::before { color: var(--cyan); }
.check-list small { display: block; color: var(--muted); margin-top: 3px; }
.dark .check-list small { color: rgba(255, 255, 255, 0.55); }

.bullet-list { padding-left: 20px; }
.bullet-list li { margin-bottom: 10px; }

/* ===== Catalog ===== */
.catalog-hero { padding: 64px 0 48px; }
.catalog-head { display: grid; grid-template-columns: 1fr 0.8fr; gap: 64px; align-items: end; }
.catalog-head h1 { max-width: 680px; color: var(--ink); font-size: clamp(48px, 6vw, 74px); line-height: 0.98; letter-spacing: -0.055em; }
.catalog-head .lead { font-size: 17px; }
.update-banner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 18px 22px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}
.update-banner::after { content: "Open WhatsApp ↗"; color: var(--cyan); white-space: nowrap; }
.catalog-shell { margin-top: 20px; padding: 28px; background: var(--white); border: 1px solid var(--line); }
.catalog-meta { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 20px; color: var(--muted); font-size: 12px; }
.stock-note { max-width: 680px; }
.status-guide { margin-bottom: 20px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.status-guide-head { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; margin-bottom: 18px; }
.status-guide-head h2 { color: var(--ink); font-size: 16px; letter-spacing: -0.02em; }
.status-guide-head p { color: var(--muted); font-size: 12px; }
.status-guide-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.status-guide-item { display: grid; align-content: start; justify-items: start; gap: 9px; }
.status-guide-item p { color: var(--muted); font-size: 12px; line-height: 1.5; }
.catalog-controls { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tabs { display: flex; gap: 7px; flex-wrap: wrap; }
.tab { min-height: 38px; padding: 8px 13px; border: 1px solid var(--line); background: var(--white); color: var(--text); border-radius: 4px; cursor: pointer; font-size: 13px; font-weight: 700; }
.tab:hover { border-color: var(--ink); }
.tab.active { border-color: var(--blue); background: var(--blue); color: var(--white); }
#search { min-width: 240px; min-height: 42px; margin-left: auto; padding: 9px 14px; border: 1px solid var(--line); background: var(--paper); border-radius: 4px; color: var(--ink); font-size: 14px; }
.item-count { color: var(--muted); font-size: 12px; margin: 18px 0 6px; }
.product-table { width: 100%; border-collapse: collapse; }
.product-table th { padding: 12px 12px 10px 0; border-bottom: 2px solid var(--ink); color: var(--muted); text-align: left; font-size: 10px; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.product-table td { padding: 16px 12px 16px 0; border-bottom: 1px solid var(--line); vertical-align: middle; font-size: 14px; }
.product-table .c-product { color: var(--ink); font-weight: 800; }
.product-table .c-upc { color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.empty-row { padding: 42px 0 !important; color: var(--muted); text-align: center; }
.badge { display: inline-block; padding: 4px 9px; border-radius: 999px; font-size: 10px; font-weight: 850; white-space: nowrap; }
.badge-ready { background: #dff5e6; color: #126b34; }
.badge-booking { background: #fff0c8; color: #8a5c00; }
.badge-transit { background: #dce8ff; color: #214ea8; }
.badge-other { background: #e8eaeb; color: #59656c; }
.catalog-error { padding: 40px; border: 1px solid var(--line); background: var(--white); text-align: center; }
.catalog-error p { margin-bottom: 18px; }

/* ===== Contact ===== */
.contact-cards { display: grid; grid-template-columns: 1.2fr 0.9fr 0.9fr; gap: 18px; }
.contact-card { min-height: 260px; padding: 30px; border: 1px solid var(--line); background: var(--white); }
.contact-card.primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.contact-card h2 { font-size: 25px; letter-spacing: -0.03em; margin-bottom: 12px; }
.contact-card p { color: var(--muted); font-size: 14px; }
.contact-card.primary p { color: rgba(255, 255, 255, 0.7); }
.contact-card .btn, .contact-card > a:not(.btn) { margin-top: 34px; }
.contact-note { margin-top: 12px !important; font-size: 12px !important; }
.contact-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: start; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 7px; color: var(--ink); font-size: 12px; font-weight: 850; letter-spacing: 0.04em; text-transform: uppercase; }
.contact-form label:last-of-type { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line); background: var(--white); border-radius: 3px; color: var(--ink); font-weight: 400; text-transform: none; }
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form .btn { grid-column: 1 / -1; justify-self: start; }
.form-note { grid-column: 1 / -1; color: var(--muted); font-size: 12px; }
.contact-aside { padding: 32px; background: var(--ink); color: var(--white); }
.contact-aside h2 { font-size: 27px; line-height: 1.1; margin-bottom: 22px; }
.contact-aside ol { list-style: none; counter-reset: brief; }
.contact-aside li { counter-increment: brief; display: grid; grid-template-columns: 28px 1fr; gap: 10px; padding: 14px 0; border-top: 1px solid var(--line-dark); color: rgba(255, 255, 255, 0.7); font-size: 14px; }
.contact-aside li::before { content: "0" counter(brief); color: var(--cyan); font-size: 11px; font-weight: 900; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding-bottom: 110px; }
  .hero-copy { max-width: 780px; }
  .hero-visual { width: calc(100% - 20px); margin-left: 20px; }
  .hero-visual img { height: 430px; }
  .signals { grid-template-columns: repeat(2, 1fr); }
  .signal:nth-child(3) { border-left: 1px solid var(--line); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid, .story-grid, .transparency-grid, .contact-layout { gap: 50px; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .step:nth-child(3) { padding-left: 0; border-left: 0; }
  .principles { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .contact-card.primary { grid-column: 1 / -1; }
}

@media (max-width: 800px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    display: none;
    top: 76px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 22px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .nav-open .nav-links { display: flex; }
  .nav-links > a:not(.btn)::after { display: none; }
  .nav-links .btn { margin-top: 4px; }
  .inner-hero-inner, .catalog-head { grid-template-columns: 1fr; gap: 30px; }
  .inner-hero-inner { padding: 70px 0; }
  .section-head { align-items: start; flex-direction: column; }
  .process-grid, .principles { grid-template-columns: 1fr; }
  .process-step, .process-step + .process-step { min-height: auto; padding: 30px 0; border-left: 0; border-bottom: 1px solid var(--line-dark); }
  .process-number { margin-bottom: 24px; }
  .path-grid, .brief-grid, .quote-grid, .story-grid, .transparency-grid, .contact-layout { grid-template-columns: 1fr; }
  .story-grid, .transparency-grid, .contact-layout { gap: 38px; }
  .brand-wall { grid-template-columns: repeat(2, 1fr); }
  .cta-band-inner { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 68px 0; }
  .section-compact { padding: 52px 0; }
  .nav-inner { min-height: 68px; }
  .nav-links { top: 68px; }
  .brand-name { font-size: 16px; }
  .hero-inner { gap: 48px; padding: 64px 0 100px; }
  .hero h1 { font-size: clamp(46px, 15vw, 64px); }
  .hero-copy > p { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { width: 100%; margin-left: 0; }
  .hero-visual::before { inset: -10px 10px 10px -10px; }
  .hero-visual img { height: 320px; }
  .supply-card { left: 14px; bottom: -48px; }
  .signals { grid-template-columns: 1fr 1fr; }
  .signal { min-height: 105px; padding: 22px 16px; }
  .signal strong { font-size: 17px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card, .category-card img { min-height: 275px; height: 275px; }
  .path-card { min-height: 390px; padding: 30px; }
  .path-card h3 { margin-top: 64px; }
  .path-card .text-link { left: 30px; bottom: 30px; }
  .quote-item { grid-template-columns: 28px 1fr; }
  .brand-wall span { min-height: 72px; font-size: 17px; }
  .inner-hero h1, .catalog-head h1 { font-size: clamp(45px, 14vw, 62px); }
  .inner-hero-copy { font-size: 17px; }
  .story-copy { font-size: 19px; }
  .steps { grid-template-columns: 1fr; row-gap: 0; }
  .step, .step + .step { padding: 24px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .step-number { margin-bottom: 22px; }
  .fact { grid-template-columns: 1fr; gap: 5px; }
  .brief-panel { padding: 28px; }
  .catalog-hero { padding-top: 48px; }
  .update-banner { align-items: flex-start; flex-direction: column; }
  .catalog-shell { padding: 18px; }
  .catalog-meta { flex-direction: column; }
  .status-guide-head { align-items: flex-start; flex-direction: column; gap: 5px; }
  .status-guide-items { grid-template-columns: 1fr; gap: 16px; }
  .status-guide-item { grid-template-columns: auto 1fr; align-items: start; gap: 10px; }
  #search { width: 100%; min-width: 0; margin-left: 0; }
  .product-table thead { display: none; }
  .product-table, .product-table tbody, .product-table tr, .product-table td { display: block; border: 0; padding: 0; }
  .product-table tr { position: relative; min-height: 112px; padding: 18px 100px 18px 0; border-bottom: 1px solid var(--line); }
  .product-table td.c-product { margin-bottom: 5px; }
  .product-table td.c-upc, .product-table td.c-category, .product-table td.c-qty, .product-table td.c-status, .product-table td.c-location { color: var(--muted); font-size: 12px; }
  .product-table td.c-upc, .product-table td.c-category, .product-table td.c-location { margin-bottom: 3px; }
  .product-table td.c-upc::before { content: "UPC "; }
  .product-table td.c-qty, .product-table td.c-status { display: inline-block; margin-right: 6px; }
  .product-table td.c-qty::before { content: "Qty "; }
  .product-table td.is-empty { display: none; }
  .product-table td.c-action { position: absolute; top: 18px; right: 0; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-card.primary { grid-column: auto; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form label, .contact-form label:last-of-type, .contact-form .btn, .form-note { grid-column: 1; }
  .footer-main { grid-template-columns: 1fr; padding: 54px 0 38px; }
  .footer-bottom { flex-direction: column; }
  .footer-disclaimer { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
