/* ============================================================
   MeetBatroun — stylesheet
   Colours, spacing and type all come from the tokens in :root.
   Change a token once and it updates everywhere.
   ============================================================ */

:root {
  /* Colour */
  --paper:      #faf7f2;
  --surface:    #ffffff;
  --surface-2:  #f4efe7;
  --ink:        #2e2a26;
  --ink-soft:   #6b625a;
  --ink-faint:  #9a9188;
  --clay:       #b4543a;
  --clay-dark:  #94422c;
  --olive:      #5a6650;
  --line:       #e5ddd2;
  --line-soft:  #efe8de;

  /* Type */
  --display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Space */
  --pad-page: clamp(1.25rem, 5vw, 4rem);
  --max: 1200px;
  --radius: 4px;

  --shadow: 0 1px 2px rgba(46, 42, 38, 0.05), 0 8px 24px rgba(46, 42, 38, 0.06);
  --shadow-lift: 0 2px 4px rgba(46, 42, 38, 0.06), 0 16px 40px rgba(46, 42, 38, 0.1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img { max-width: 100%; display: block; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.25rem); }
h3 { font-size: 1.15rem; }

/* Visible focus for keyboard users, invisible for mouse users */
:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--paper);
  padding: 0.75rem 1.25rem; text-decoration: none;
}
.skip-link:focus { left: 0; }

.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;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad-page); }
main { flex: 1 0 auto; }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }

.section-head {
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between; gap: 1rem;
  margin-bottom: 2.25rem;
}
.section-head p { color: var(--ink-soft); max-width: 46ch; margin-top: 0.4rem; }

.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--clay); font-weight: 600; margin-bottom: 0.75rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 72px;
}
.logo {
  font-family: var(--display); font-size: 1.3rem; font-weight: 600;
  text-decoration: none; letter-spacing: -0.02em; white-space: nowrap;
}
.logo span { color: var(--clay); }
/* When a logo image is used instead of the name in type, it is
   capped by height so any width of logo sits on the same baseline. */
.logo img { height: 36px; width: auto; max-width: 220px; object-fit: contain; }
@media (max-width: 720px) { .logo img { height: 30px; max-width: 150px; } }

.header-right { display: flex; align-items: center; gap: 0.5rem; }
.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a {
  text-decoration: none; padding: 0.5rem 0.85rem; border-radius: var(--radius);
  font-size: 0.94rem; color: var(--ink-soft); transition: color 0.15s, background 0.15s;
}
.nav a:hover { color: var(--ink); background: var(--surface-2); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 600; }

.cart-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--ink); color: var(--paper) !important;
  padding: 0.55rem 1rem !important; border-radius: 999px;
  font-size: 0.9rem; font-weight: 500; text-decoration: none;
  transition: background 0.15s;
}
.cart-link:hover { background: var(--clay) !important; }
.cart-count {
  display: inline-grid; place-items: center;
  min-width: 1.4rem; height: 1.4rem; padding-inline: 0.35rem;
  background: var(--clay); color: #fff;
  border-radius: 999px; font-size: 0.75rem; font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.cart-link:hover .cart-count { background: var(--paper); color: var(--ink); }
.cart-count[data-empty="true"] { display: none; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0.5rem 0.7rem; cursor: pointer;
  line-height: 1;
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; inset-inline: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--pad-page) 1.25rem;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a { padding: 0.85rem 0.25rem; border-bottom: 1px solid var(--line-soft); }
  .nav a:last-child { border-bottom: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.6rem; border: 1px solid transparent; border-radius: 999px;
  font-size: 0.94rem; font-weight: 500; text-decoration: none; cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--clay); color: #fff; }
.btn--primary:hover { background: var(--clay-dark); }
.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: var(--clay); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: var(--surface-2); }
.btn--block { width: 100%; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn:disabled:active { transform: none; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(3rem, 8vw, 6rem) clamp(2.5rem, 6vw, 4.5rem); }
.hero-grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.05fr 1fr; } }
.hero h1 { margin-bottom: 1.25rem; }
.hero .lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); max-width: 44ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.hero-art {
  aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  background: var(--surface-2); box-shadow: var(--shadow);
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Compact hero (home page) ---------- */
.hero-compact { padding-block: clamp(2rem, 4.5vw, 3.25rem) clamp(1.25rem, 2.5vw, 1.75rem); }
/* A pixel width, not ch — ch here would measure against the body
   font size and squeeze the much larger heading into a column. */
.hero-compact-inner { max-width: 620px; }
.hero-compact h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.hero-compact .lede {
  font-size: clamp(1.02rem, 1.5vw, 1.15rem); color: var(--ink-soft);
  max-width: 52ch; margin-top: 1rem;
}

/* ---------- Category cards ---------- */
.cats { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 760px) {
  .cats { grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.75rem); }
}

.cat {
  display: grid; grid-template-columns: 116px 1fr; align-items: stretch;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.cat:hover { border-color: var(--ink-faint); box-shadow: var(--shadow-lift); transform: translateY(-3px); }

.cat-media { display: block; min-height: 116px; background: var(--surface-2); overflow: hidden; }
.cat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.cat:hover .cat-media img { transform: scale(1.05); }

.cat-body { display: flex; flex-direction: column; gap: 0.3rem; padding: 0.9rem 1.1rem; }
.cat-name { font-family: var(--display); font-size: 1.2rem; font-weight: 600; }
/* Held to two lines on a phone so all three cards stay on the first
   screen no matter how long a blurb you write. */
.cat-blurb {
  font-size: 0.9rem; color: var(--ink-soft);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-more {
  display: flex; align-items: center; gap: 0.5rem; margin-top: 0.4rem;
  font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--clay); font-weight: 600;
}
.cat-arrow { transition: transform 0.18s; }
.cat:hover .cat-arrow { transform: translateX(4px); }

/* On a wider screen the cards stand up: picture on top, text below. */
@media (min-width: 760px) {
  .cat { grid-template-columns: 1fr; }
  .cat-media { aspect-ratio: 4 / 3; min-height: 0; }
  .cat-body { padding: 1.25rem 1.35rem 1.5rem; flex: 1; }
  .cat-name { font-size: 1.35rem; }
  .cat-blurb { -webkit-line-clamp: 3; }
}

.cats-more {
  margin-top: 1.5rem; font-size: 0.92rem;
  color: var(--ink-soft); text-underline-offset: 3px;
}
.cats-more a { color: var(--ink); }

/* Trust strip under the hero */
.marks {
  display: grid; gap: 1.5rem; border-top: 1px solid var(--line);
  padding-top: 2rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.mark strong { display: block; font-family: var(--display); font-size: 1.05rem; margin-bottom: 0.2rem; }
.mark p { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Product grid ---------- */
.grid {
  display: grid; gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.card:hover { border-color: var(--ink-faint); box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.card-media {
  position: relative; aspect-ratio: 1; overflow: hidden;
  background: var(--surface-2); display: block;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-media img { transform: scale(1.04); }

.card-body { padding: 1.1rem 1.15rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.card-cat { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.card-name { margin: 0.35rem 0 0.3rem; font-size: 1.05rem; }
.card-name a { text-decoration: none; }
.card-name a:hover { color: var(--clay); }
.card-blurb { font-size: 0.9rem; color: var(--ink-soft); flex: 1; }
.card-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem; margin-top: 1rem;
}
.price { font-family: var(--display); font-size: 1.1rem; font-weight: 600; font-variant-numeric: tabular-nums; }

.badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--ink); color: var(--paper);
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.6rem; border-radius: 999px; font-weight: 600;
}
.badge--low { background: var(--clay); }
.badge--out { background: var(--ink-faint); }

.btn-add {
  border: 1px solid var(--line); background: var(--surface); color: var(--ink);
  border-radius: 999px; padding: 0.5rem 1rem; font-size: 0.87rem;
  cursor: pointer; white-space: nowrap; transition: all 0.15s;
}
.btn-add:hover:not(:disabled) { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-add:disabled { opacity: 0.4; cursor: not-allowed; }

/* ---------- Filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.chip {
  background: transparent; border: 1px solid var(--line); color: var(--ink-soft);
  border-radius: 999px; padding: 0.45rem 1.05rem; font-size: 0.88rem; cursor: pointer;
  transition: all 0.15s;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }

/* ---------- Product detail ---------- */
.crumbs { font-size: 0.86rem; color: var(--ink-soft); padding-block: 1.5rem 0; }
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--clay); }

.product { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; }
@media (min-width: 880px) { .product { grid-template-columns: 1fr 1fr; align-items: start; } }
.product-media {
  aspect-ratio: 1; background: var(--surface-2);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 880px) { .product-info { position: sticky; top: 100px; } }
.product-info h1 { margin: 0.5rem 0 1rem; }
.product-price { font-family: var(--display); font-size: 1.75rem; font-weight: 600; margin-bottom: 1.5rem; }
.product-story { color: var(--ink-soft); margin-bottom: 1.75rem; }
.product-details {
  list-style: none; padding: 0; margin: 0 0 2rem;
  border-top: 1px solid var(--line);
}
.product-details li {
  padding: 0.75rem 0; border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem; color: var(--ink-soft);
  display: flex; gap: 0.65rem; align-items: baseline;
}
.product-details li::before { content: "—"; color: var(--ink-faint); flex: none; }

.buy-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.stock-note { font-size: 0.88rem; color: var(--ink-soft); margin-top: 1rem; }
.stock-note--low { color: var(--clay); font-weight: 500; }

/* ---------- Quantity stepper ---------- */
.qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: 999px; background: var(--surface);
  overflow: hidden;
}
.qty button {
  background: none; border: none; cursor: pointer;
  width: 2.5rem; height: 2.75rem; font-size: 1.1rem; color: var(--ink-soft);
  transition: background 0.15s, color 0.15s;
}
.qty button:hover:not(:disabled) { background: var(--surface-2); color: var(--ink); }
.qty button:disabled { opacity: 0.3; cursor: not-allowed; }
.qty input {
  width: 2.75rem; text-align: center; border: none; background: none;
  font-variant-numeric: tabular-nums; font-weight: 600;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ---------- Cart ---------- */
.cart-layout { display: grid; gap: clamp(2rem, 4vw, 3rem); grid-template-columns: 1fr; }
@media (min-width: 940px) { .cart-layout { grid-template-columns: 1.6fr 1fr; align-items: start; } }

.cart-items { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.cart-item {
  display: grid; gap: 1rem; padding: 1.5rem 0;
  border-bottom: 1px solid var(--line-soft);
  grid-template-columns: 88px 1fr;
  align-items: start;
}
@media (min-width: 620px) { .cart-item { grid-template-columns: 104px 1fr auto; align-items: center; } }
.cart-thumb {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius);
  overflow: hidden; background: var(--surface-2); border: 1px solid var(--line);
}
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-family: var(--display); font-size: 1.05rem; font-weight: 600; }
.cart-item-name a { text-decoration: none; }
.cart-item-name a:hover { color: var(--clay); }
.cart-item-meta { font-size: 0.86rem; color: var(--ink-soft); margin-top: 0.15rem; }
.cart-item-controls { display: flex; align-items: center; gap: 1rem; margin-top: 0.75rem; }
@media (min-width: 620px) { .cart-item-controls { margin-top: 0; } }
.cart-item-line { font-family: var(--display); font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
/* On a narrow screen the total wraps to its own row, so pull it
   under the item text and right-align it rather than leaving it
   stranded in the thumbnail column. */
@media (max-width: 619px) {
  .cart-item-line { grid-column: 2; text-align: right; margin-top: -0.5rem; }
}
.link-remove {
  background: none; border: none; padding: 0; cursor: pointer;
  font-size: 0.85rem; color: var(--ink-faint); text-decoration: underline;
  text-underline-offset: 3px;
}
.link-remove:hover { color: var(--clay); }

.summary {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.75rem;
}
@media (min-width: 940px) { .summary { position: sticky; top: 100px; } }
.summary h2 { font-size: 1.25rem; margin-bottom: 1.25rem; }
.summary-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.6rem 0; font-size: 0.94rem; color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}
.summary-row--total {
  border-top: 1px solid var(--line); margin-top: 0.6rem; padding-top: 1.1rem;
  font-family: var(--display); font-size: 1.3rem; font-weight: 600; color: var(--ink);
}
.summary-note {
  font-size: 0.85rem; color: var(--ink-soft);
  background: var(--surface-2); border-radius: var(--radius);
  padding: 0.8rem 1rem; margin-top: 1.25rem;
}

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.15rem; }
.form-row { display: grid; gap: 1.15rem; }
@media (min-width: 640px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.88rem; font-weight: 600; }
.field .hint { font-size: 0.82rem; color: var(--ink-faint); font-weight: 400; }
.field input, .field textarea, .field select {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0.75rem 0.9rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(180, 84, 58, 0.12);
}
.field textarea { resize: vertical; min-height: 90px; }
.field[data-invalid="true"] input,
.field[data-invalid="true"] textarea { border-color: #c0392b; }
.error { font-size: 0.82rem; color: #c0392b; }
.required { color: var(--clay); }

/* ---------- Notices ---------- */
.empty {
  text-align: center; padding: clamp(3rem, 8vw, 5rem) 1rem;
  border: 1px dashed var(--line); border-radius: var(--radius);
  background: var(--surface);
}
.empty h2 { margin-bottom: 0.6rem; }
.empty p { color: var(--ink-soft); margin-bottom: 1.75rem; }

.notice {
  border-radius: var(--radius); padding: 1rem 1.25rem;
  font-size: 0.92rem; border: 1px solid;
}
.notice--warn { background: #fdf6e8; border-color: #e8d5a8; color: #6b5420; }

.toast {
  position: fixed; left: 50%; bottom: 1.75rem; transform: translate(-50%, 150%);
  background: var(--ink); color: var(--paper);
  padding: 0.85rem 1.4rem; border-radius: 999px; font-size: 0.92rem;
  box-shadow: var(--shadow-lift); z-index: 100;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.3, 1);
  max-width: calc(100vw - 2rem);
}
.toast[data-show="true"] { transform: translate(-50%, 0); }

/* ---------- Prose (about page) ---------- */
.prose { max-width: 62ch; }
.prose p { margin-bottom: 1.25rem; color: var(--ink-soft); font-size: 1.03rem; }
.prose h2 { margin: 2.5rem 0 1rem; }
.prose h2:first-child { margin-top: 0; }
.prose strong { color: var(--ink); }

.split { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; } }
.split-art {
  aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden;
  background: var(--surface-2); border: 1px solid var(--line);
}
.split-art img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: var(--paper);
  margin-top: clamp(3rem, 7vw, 5rem); padding-block: clamp(2.5rem, 5vw, 4rem) 2rem;
}
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(250, 247, 242, 0.15);
}
.site-footer h3 {
  font-family: var(--body); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250, 247, 242, 0.55); margin-bottom: 1rem;
}
.site-footer p, .site-footer li { color: rgba(250, 247, 242, 0.8); font-size: 0.92rem; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.site-footer a { color: rgba(250, 247, 242, 0.8); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-logo { font-family: var(--display); font-size: 1.3rem; color: var(--paper); margin-bottom: 0.6rem; }
.footer-logo img { height: 34px; width: auto; max-width: 200px; object-fit: contain; }
.footer-bottom {
  padding-top: 1.75rem; display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 1rem;
  font-size: 0.85rem; color: rgba(250, 247, 242, 0.5);
}
.site-footer :focus-visible { outline-color: var(--paper); }

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .btn, .filters, .toast { display: none !important; }
  body { background: #fff; }
}
