@font-face {
  font-family: Barlow;
  src: url('./fonts/barlow-regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('./fonts/barlow-semibold.ttf') format('truetype');
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('./fonts/barlow-condensed-bold.ttf') format('truetype');
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #f5f4f2;
  --surface: #fff;
  --surface-raised: #ece9e7;
  --line: #d5cfcc;
  --line-strong: #958a85;
  --text: #171313;
  --muted: #655b58;
  --accent: #9e1b32;
  --accent-ink: #fff;
  --shell: 1200px;
  --font-sans: Barlow,Arial,sans-serif;
  --font-display: 'Barlow Condensed','Arial Narrow',Impact,sans-serif;
  --accent-on-dark: #f2b3b8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-clearance, 88px);
  background: var(--bg);
}

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

button,input,select {
  font: inherit;
}

button,a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

button,input,a {
  touch-action: manipulation;
}

img {
  max-width: 100%;
}

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

[hidden] {
  display: none!important;
}

.shell {
  width: min(calc(100% - 64px),var(--shell));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

/* A compact, persistent signature; the directory stays one tap away. */

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: #100e0e;
  color: #fff;
  border-bottom: 1px solid #ffffff26;
}

.header-inner {
  width: min(calc(100% - 64px),var(--shell));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1;
  white-space: nowrap;
}

.brand-period {
  color: #cb4f62;
}

.brand-caption {
  max-width: 90px;
  border-left: 1px solid #5e5554;
  padding-left: 20px;
  font-size: .75rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #c7bfbb;
}

.header-contact {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #8b7b75;
}

.header-contact span {
  color: #f2e8e3;
  font-size: 1.25rem;
}

.header-contact:hover {
  border-color: #fff;
}

/* A real person and a clear contact action beside the catalog. */

.intro {
  background: #100e0e;
  color: #fff;
  border-bottom: 6px solid var(--accent);
}

.intro-inner {
  display: grid;
  grid-template-columns: minmax(0,1.4fr) minmax(260px,.75fr);
  align-items: center;
  gap: 60px;
  padding-block: 38px;
}

.intro-copy {
  min-width: 0;
}

.kicker,.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.5;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--muted);
}

.intro .kicker {
  color: #c8beb8;
}

.intro h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem,7.9vw,7.1rem);
  letter-spacing: -.025em;
  line-height: .9;
  font-weight: 800;
  margin: 0;
  overflow-wrap: anywhere;
}

.intro h1 span {
  display: block;
  color: #f8f5f1;
}

.intro-copy>p:last-child {
  font-size: 1.0625rem;
  line-height: 1.5;
  margin: 22px 0 0;
  color: #d9d1cb;
}

.intro-contact {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  align-self: center;
  min-width: 0;
  padding: 24px;
  border: 1px solid #64514d;
  background: #211b1a;
  color: #fff;
  text-decoration: none;
  transition: border-color 160ms, background 160ms;
}

.intro-contact:hover {
  border-color: #fff;
  background: #302321;
}

.intro-contact:focus-visible {
  outline-color: #fff;
}

.intro-portrait {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

.intro-contact-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: .875rem;
  color: #d3c7c0;
}

.intro-contact-copy strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.intro-contact-label {
  font-size: .75rem;
}

.intro-contact-action {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #64514d;
  padding-top: 14px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--accent-on-dark);
}

.intro-contact-action > span {
  font-size: 1.4rem;
  flex: none;
}

.browse-tools {
  padding-top: 30px;
}

.catalog-controls {
  min-width: 0;
}

.browse-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

.browse-heading .section-label {
  color: var(--text);
  margin: 0;
}

.search-help {
  font-size: .875rem;
  color: var(--muted);
  margin: 0;
}

.search-box {
  min-height: 60px;
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  padding: 0 20px;
  transition: border-color 160ms,box-shadow 160ms;
}

.search-box:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #9e1b321a;
}

.search-icon {
  width: 18px;
  height: 18px;
  border: 2px solid var(--muted);
  border-radius: 50%;
  position: relative;
}

.search-icon::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  transform: rotate(45deg);
  background: var(--muted);
}

.search-box input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  padding-block: 16px;
}

.search-box input::placeholder {
  color: #766a66;
  opacity: 1;
}

.search-box kbd {
  padding: 2px 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .875rem;
}

.category-nav {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
  margin-top: 18px;
}

.category-button {
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 124px;
  border: 0;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  padding: 14px 18px 18px;
  text-align: left;
  transition: background 160ms,color 160ms;
}

.category-topline {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.category-button strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.05;
  margin-top: 16px;
  text-transform: uppercase;
  max-width: calc(100% - 20px);
}

.category-description {
  display: none;
}

.category-arrow {
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: var(--accent);
  font-size: 1.375rem;
}

.category-button:hover {
  background: #fff;
}

.category-button.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.category-button.is-active .category-topline {
  color: #fff0f0;
}

.category-button.is-active .category-arrow {
  color: #fff;
}

.category-button:focus-visible {
  outline-offset: -4px;
}

.category-button.is-active:focus-visible {
  outline-color: #fff;
}

.catalog-destination-note {
  font-size: .875rem;
  color: var(--muted);
  margin: 12px 0 0;
}

.results-shell {
  padding-block: 42px 80px;
}

.results-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--text);
}

.results-toolbar h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem,4vw,3.4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.results-toolbar .section-label {
  color: var(--accent);
  margin-bottom: 6px;
}

.result-count {
  margin: 0;
  font-size: .875rem;
  color: var(--muted);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.back-control {
  min-height: 44px;
  margin-top: 18px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
  padding: 10px 16px;
  font-size: .875rem;
  font-weight: 600;
}

.back-control:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.catalog-section {
  padding-top: 36px;
}

.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.section-heading {
  display: flex;
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.section-heading>span {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
  overflow-wrap: anywhere;
}

.section-heading p {
  color: var(--muted);
  font-size: .875rem;
  margin: 3px 0 0;
}

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

/* Original supplier logos keep their own colors and proportions. */

.catalog-card {
  min-width: 0;
  display: flex;
  border: 1px solid #201a19;
  background: #201a19;
  color: #fff;
  position: relative;
  transition: transform 180ms,border-color 180ms,box-shadow 180ms;
}

.catalog-card:hover,.catalog-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 4px 4px 0 var(--accent);
}

button.card-link {
  width: 100%;
  height: 100%;
  min-width: 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 16px 14px;
  text-decoration: none;
  font: inherit;
}

.card-link:focus-visible {
  outline-offset: -3px;
}

.brand-logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  height: 112px;
  margin: 0 -16px 16px;
  padding: 22px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand-logo-panel-dark {
  background: #181818;
  border-color: #5a4b46;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-crop {
  display: block;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-logo-cropped {
  position: absolute;
  max-width: none;
  height: auto;
  display: block;
}

.card-brand-name {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 6px;
  overflow-wrap: anywhere;
}

.card-note {
  color: #d2c4bd;
  font-size: .875rem;
  line-height: 1.4;
  min-height: 20px;
  margin: 0 0 18px;
}

.view-button {
  overflow-wrap: anywhere;
  min-height: 32px;
  width: 100%;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid #66524a;
  color: #fff;
  padding-top: 10px;
  font-size: .875rem;
  font-weight: 600;
}

.view-button>span {
  font-size: 1.25rem;
  color: #f2b3b8;
  transition: transform 180ms;
}

.catalog-card:hover .view-button>span {
  transform: translateX(3px);
}

.section-password {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  padding: 6px 8px 6px 14px;
  font-size: .875rem;
}

.section-password>span {
  color: var(--muted);
}

.section-password code {
  color: var(--accent);
  font-weight: 700;
}

.copy-password {
  min-height: 44px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  padding: 0 12px;
  font-size: .875rem;
  font-weight: 600;
}

.copy-password:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.empty-state {
  margin-top: 36px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 44px 24px;
  text-align: center;
}

.empty-state>span {
  font-size: .875rem;
  color: var(--accent);
}

.empty-state h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  text-transform: uppercase;
  margin: 12px 0 4px;
}

.empty-state p {
  color: var(--muted);
  margin: 0 0 22px;
}

.empty-state button {
  min-height: 48px;
  border: 0;
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
}

.sourcing-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 2px;
  color: var(--accent);
  font-size: .875rem;
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.sourcing-shortcut > span {
  flex: none;
}

.empty-state p a {
  color: var(--accent);
  text-underline-offset: 3px;
}

.sourcing-services {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.sourcing-services > div {
  border-left: 2px solid #cb4f62;
  padding-left: 16px;
}

.sourcing-services h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.4;
}

.sourcing-services p {
  max-width: 590px;
  margin: 0;
  color: #d3c4bb;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-wrap {
  background: #100e0e;
  color: #fff;
  border-top: 6px solid var(--accent);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0,1fr) 260px;
  align-items: center;
  gap: 80px;
  padding-block: 52px 60px;
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.contact-person img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-person .kicker {
  margin: 0;
  color: #d3c4bb;
  font-size: .75rem;
}

.contact-person .kicker span {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  font-size: .875rem;
}

.contact-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem,6vw,5rem);
  line-height: .95;
  letter-spacing: -.02em;
  font-weight: 800;
  margin: 0;
}

.contact-copy h2>span {
  color: #f8f5f1;
}

.contact-copy>p:not(.kicker) {
  color: #d3c4bb;
  max-width: 510px;
  font-size: 1rem;
  margin: 20px 0 26px;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #796157;
  padding: 14px 18px;
  color: #d3c4bb;
  font-size: .875rem;
  text-decoration: none;
  transition: background 160ms,border-color 160ms;
}

.contact-link strong {
  display: block;
  color: #fff;
  font-size: 1.125rem;
  margin-top: 3px;
  overflow-wrap: anywhere;
}

.contact-link>span:last-child {
  color: #f2b3b8;
  font-size: 1.5rem;
}

.contact-link:hover {
  background: #362124;
  border-color: #f2b3b8;
}

.contact-qr {
  text-align: center;
}

.whatsapp-qr-frame {
  display: block;
  position: relative;
  overflow: hidden;
  width: 200px;
  aspect-ratio: 1;
  margin: 0 auto;
  background: #fff;
  border: 8px solid #fff;
}

.whatsapp-qr-frame img {
  position: absolute;
  max-width: none;
  width: 210.962%;
  height: auto;
  left: -55.481%;
  top: -179.418%;
}

.contact-qr p {
  color: #d2c4bd;
  font-size: .875rem;
  line-height: 1.5;
  margin: 16px 0 0;
}

.site-footer {
  background: #100e0e;
  color: #fff;
  border-top: 1px solid #493733;
  padding-bottom: env(safe-area-inset-bottom);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.footer-inner>span {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  white-space: normal;
}

.footer-inner p {
  font-size: .875rem;
  color: #d2c4bd;
  margin: 0;
}

.dialog-open {
  overflow: hidden;
}

.collection-dialog {
  box-sizing: border-box;
  max-width: none;
  width: min(660px,calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 28px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid #9c8780;
  border-top: 6px solid var(--accent);
  border-radius: 0;
  overflow: auto;
  overscroll-behavior: contain;
  box-shadow: 0 24px 90px #0007;
}

.collection-dialog::backdrop {
  background: #110808bd;
  backdrop-filter: blur(5px);
}

.dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  position: sticky;
  top: -28px;
  background: var(--bg);
  z-index: 3;
  padding-block: 10px 12px;
}

.dialog-heading h2 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 6px 0 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.dialog-heading .section-label {
  margin: 0;
  color: var(--accent);
}

.dialog-close {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--text);
  font-size: 28px;
  line-height: 1;
}

.dialog-close:hover {
  background: var(--accent);
  color: #fff;
}

#collection-intro,.collection-note,.collection-help {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 18px;
}

.collection-note {
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: #f4e5e7;
}

.collection-list {
  display: grid;
  gap: 10px;
}

.collection-option {
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
}

.collection-option.is-featured {
  border: 2px solid var(--accent);
}

.collection-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  color: var(--text);
  text-decoration: none;
  min-height: 64px;
}

.collection-link:hover {
  background: #fbf0f1;
}

.collection-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.collection-copy strong {
  font-size: 1rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.collection-copy>span {
  font-size: .875rem;
  line-height: 1.5;
  color: var(--muted);
}

.collection-arrow {
  color: var(--accent);
  font-size: 1.375rem;
  flex: none;
}

.collection-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.collection-badges small {
  font-size: .75rem;
  border: 1px solid var(--line-strong);
  padding: 2px 7px;
}

.supplier-browse {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.supplier-browse h3 {
  font-size: 1.125rem;
  margin: 0 0 8px;
}

.supplier-browse>p {
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.6;
  margin: 0 0 14px;
}

.supplier-browse .collection-option+.collection-option {
  margin-top: 10px;
}

.collection-password {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  font-size: .875rem;
}

.collection-password code {
  color: var(--accent);
}

.collection-help {
  margin-top: 24px;
  margin-bottom: 0;
}

.collection-help a {
  color: var(--accent);
  text-underline-offset: 3px;
}

.collection-link:focus-visible {
  outline-offset: -3px;
}

.toast {
  position: fixed;
  z-index: 50;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  transform: translateY(18px);
  opacity: 0;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  font-size: .875rem;
  font-weight: 600;
  pointer-events: none;
  transition: opacity 160ms,transform 160ms;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media(max-width:1000px) {
  .intro-inner {
    gap: 32px;
    grid-template-columns: minmax(0,1fr) 300px;
  }
  .intro h1 {
    font-size: 5.25rem;
  }
  .catalog-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
  .category-button strong {
    font-size: 1.5rem;
  }
  .contact-section {
    gap: 36px;
  }
}

@media(max-width:720px) {
  .shell,.header-inner {
    width: calc(100% - 32px);
  }
  .header-inner {
    min-height: 64px;
    gap: 16px;
  }
  .site-header {
    padding-top: env(safe-area-inset-top);
  }
  .brand-caption {
    display: none;
  }
  .brand-name {
    font-size: 1.75rem;
  }
  .header-contact {
    gap: 12px;
  }
  .intro-inner {
    padding-block: 28px;
    grid-template-columns: minmax(0,1fr);
    gap: 22px;
  }
  .intro h1 {
    font-size: clamp(3.5rem,13vw,5.75rem);
  }
  .intro h1 span {
    display: inline;
  }
  .intro-copy>p:last-child {
    margin-top: 14px;
    font-size: 1rem;
  }
  .intro-contact {
    grid-template-columns: 68px minmax(0, 1fr);
    padding: 18px;
    gap: 14px;
  }
  .intro-portrait {
    width: 68px;
    height: 68px;
  }
  .intro-contact-copy strong {
    font-size: 1.75rem;
  }
  .intro-contact-action {
    padding-top: 12px;
    color: var(--accent-on-dark);
  }
  .browse-tools {
    padding-top: 24px;
  }
  .browse-heading .search-help {
    display: none;
  }
  .search-box {
    padding-inline: 16px;
    gap: 14px;
    min-height: 56px;
  }
  .search-box kbd {
    display: none;
  }
  .category-nav {
    grid-template-columns: repeat(2,minmax(0,1fr));
    margin-top: 16px;
  }
  .category-button {
    min-height: 106px;
    padding: 12px 14px;
  }
  .category-button strong {
    font-size: 1.5rem;
    margin-top: 12px;
  }
  .category-arrow {
    bottom: 9px;
    right: 12px;
  }
  .catalog-destination-note {
    font-size: .875rem;
    line-height: 1.5;
  }
  .results-shell {
    padding-block: 32px 54px;
  }
  .results-toolbar {
    gap: 14px;
  }
  .results-toolbar h2 {
    font-size: 2.5rem;
  }
  .catalog-section {
    padding-top: 28px;
  }
  .section-heading-row {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }
  .section-heading {
    gap: 12px;
  }
  .section-heading h2 {
    font-size: 1.75rem;
  }
  .section-heading>span {
    font-size: 2.5rem;
  }
  .catalog-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px;
  }
  .catalog-card:hover {
    transform: none;
    box-shadow: none;
  }
  button.card-link {
    padding: 0 12px 12px;
  }
  .brand-logo-panel {
    height: 96px;
    margin: 0 -12px 14px;
    padding: 16px;
  }
  .card-brand-name {
    font-size: 1rem;
  }
  .card-note {
    font-size: .875rem;
    margin-bottom: 14px;
  }
  .view-button {
    font-size: .875rem;
  }
  .contact-section {
    grid-template-columns: minmax(0,1fr);
    gap: 32px;
    padding-block: 36px;
  }
  .contact-copy h2 {
    font-size: 3.75rem;
  }
  .contact-links {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .contact-link {
    padding: 12px;
    gap: 8px;
  }
  .contact-qr {
    display: grid;
    grid-template-columns: 120px minmax(0,1fr);
    align-items: center;
    text-align: left;
    gap: 20px;
  }
  .whatsapp-qr-frame {
    width: 120px;
    margin: 0;
  }
  .contact-qr p {
    margin: 0;
  }
  .footer-inner {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding-block: 22px;
  }
  .footer-inner p {
    font-size: .875rem;
  }
  .collection-dialog {
    padding: 20px;
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
  }
  .dialog-heading {
    top: -20px;
  }
  .dialog-heading h2 {
    font-size: 2.25rem;
  }
  .collection-link {
    padding: 14px;
    gap: 12px;
  }
}

@media(max-width:380px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 4px 14px;
  }
  .brand-name {
    font-size: 1.5rem;
  }
  .header-contact {
    font-size: .875rem;
  }
  .intro h1 span {
    display: block;
  }
  .contact-links {
    grid-template-columns: 1fr;
  }
  .brand-logo-panel {
    height: 84px;
    padding: 12px;
  }
  .section-password {
    align-items: flex-start;
  }
  .result-count {
    white-space: normal;
  }
  .view-button {
    gap: 4px;
  }
  .view-button>span {
    font-size: 1rem;
  }
}

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

/* Let enlarged text wrap without hiding labels or clipping the page. */

.header-inner {
  flex-wrap: wrap;
}

.category-button strong,.contact-link>span:first-child {
  overflow-wrap: anywhere;
}

.results-toolbar>div,.section-heading>div {
  min-width: 0;
}

.category-topline {
  gap: 8px;
  flex-wrap: wrap;
}

.brand-name {
  white-space: normal;
}

.contact-copy,.contact-link {
  min-width: 0;
}

/* Headlines reflow when customers enlarge their browser text. */

h1, h2, h3 {
  overflow-wrap: anywhere;
}

.dialog-heading > div {
  min-width: 0;
  flex: 1;
}
