/* ============================================================
   Wellnesshotel-Portal — handgeschriebenes Stylesheet
   Mobile First, keine Abhaengigkeiten, kein Build-Schritt.
   ============================================================ */

:root {
  --sand-50:  #faf8f5;
  --sand-100: #f3eee6;
  --sand-200: #e7dccb;
  --sand-300: #d6c4a8;
  --spa-50:   #f0f8f6;
  --spa-100:  #daf0eb;
  --spa-200:  #b7e0d8;
  --spa-500:  #3b8f83;
  --spa-600:  #2d7269;
  --spa-700:  #275c56;
  --ink-100:  #e7e7e5;
  --ink-200:  #cfcfcb;
  --ink-400:  #84837c;
  --ink-500:  #6a6962;
  --ink-700:  #454440;
  --ink-900:  #232220;
  --danger:   #a33a3a;
  --warning:  #9a6b1f;
  --radius:   14px;
  --radius-lg: 22px;
  --shadow:   0 1px 2px rgba(20,25,24,.05), 0 10px 26px -12px rgba(20,25,24,.22);
  --maxw:     1240px;
  --font:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --serif:    'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--sand-50);
}

h1, h2, h3 { font-family: var(--serif); color: var(--ink-900); line-height: 1.15; margin: 0 0 .6em; font-weight: 600; }
h1 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem); }
h2 { font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2rem); }
h3 { font-size: 1.15rem; }
p  { margin: 0 0 1rem; }

a { color: var(--spa-700); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1rem; }
@media (min-width: 900px) { .container { padding-inline: 2rem; } }

.narrow { max-width: 780px; }
.section { padding-block: 2.5rem; }
@media (min-width: 900px) { .section { padding-block: 3.5rem; } }
.section-alt { background: var(--sand-100); }

.muted { color: var(--ink-500); }
.small { font-size: .875rem; }
.lead  { font-size: 1.1rem; color: var(--ink-500); }
.center { text-align: center; }
.inline { display: inline; }

.sr-only, .skip-link:not(:focus) {
  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:focus {
  position: fixed; top: .5rem; left: .5rem; z-index: 100;
  background: #fff; padding: .6rem 1rem; border-radius: var(--radius);
}

/* ---------------------------------------------------------------- Kopf */
.topbar { background: var(--ink-900); color: var(--sand-200); font-size: .8rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 38px; flex-wrap: wrap; }
.topbar a { color: var(--sand-200); }
.topbar-note { display: none; }
@media (min-width: 700px) { .topbar-note { display: inline; } }
.topbar-links { display: flex; gap: 1rem; align-items: center; margin-left: auto; }
.lang-switch { display: inline-flex; gap: .35rem; }
.lang-switch a { padding: .1rem .4rem; border-radius: 6px; opacity: .7; }
.lang-switch a.is-active { background: var(--spa-600); color: #fff; opacity: 1; }

.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--sand-200); }
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 66px; }

.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px; background: var(--spa-600); color: var(--sand-200);
  display: grid; place-items: center; font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
}
.brand-text strong { display: block; font-family: var(--serif); font-size: 1.3rem; color: var(--ink-900); line-height: 1.1; }
.brand-text small  { display: none; color: var(--ink-400); font-size: .75rem; }
@media (min-width: 900px) { .brand-text small { display: block; } }

.nav-toggle { margin-left: auto; width: 42px; height: 42px; border: 1px solid var(--ink-200); background: #fff; border-radius: 10px; display: grid; place-content: center; gap: 4px; cursor: pointer; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink-700); }
@media (min-width: 900px) { .nav-toggle { display: none; } }

.primary-nav { display: none; }
.primary-nav.is-open { display: block; position: absolute; inset-inline: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--sand-200); padding: .75rem 1rem 1.25rem; }
.primary-nav ul { list-style: none; margin: 0; padding: 0; }
.primary-nav a { display: block; padding: .6rem .2rem; color: var(--ink-700); font-weight: 500; }
.primary-nav a.is-active { color: var(--spa-700); }
@media (min-width: 900px) {
  .primary-nav, .primary-nav.is-open { display: flex; position: static; align-items: center; gap: .25rem; margin-left: auto; border: 0; padding: 0; background: none; }
  .primary-nav ul { display: flex; gap: .25rem; }
  .primary-nav a { padding: .5rem .85rem; border-radius: 999px; }
  .primary-nav a:hover { background: var(--sand-100); text-decoration: none; }
  .nav-cta { margin-left: .5rem; }
}

/* ---------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .7rem 1.4rem; border-radius: 999px; border: 1px solid transparent;
  font: inherit; font-weight: 500; font-size: .95rem; cursor: pointer; text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--spa-600); color: #fff; }
.btn-primary:hover { background: var(--spa-700); color: #fff; }
.btn-secondary { background: #fff; color: var(--ink-900); border-color: var(--ink-200); }
.btn-secondary:hover { background: var(--sand-100); }
.btn-light { background: rgba(255,255,255,.92); color: var(--ink-900); }
.btn-ghost { background: transparent; color: var(--ink-700); }
.btn-ghost:hover { background: var(--sand-100); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-sm { padding: .45rem 1rem; font-size: .85rem; }
.btn.full { width: 100%; }

/* ---------------------------------------------------------------- Hero */
.hero { background: linear-gradient(160deg, var(--spa-700), var(--spa-500)); color: #fff; }
.hero-inner { padding-block: 3rem 3.5rem; text-align: center; }
@media (min-width: 900px) { .hero-inner { padding-block: 4.5rem 5rem; } }
.hero h1 { color: #fff; max-width: 20ch; margin-inline: auto; }
.hero-text { color: var(--spa-100); max-width: 60ch; margin-inline: auto; }
.hero-search {
  display: grid; gap: .6rem; background: #fff; padding: .6rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); max-width: 720px; margin: 2rem auto 0;
}
@media (min-width: 700px) { .hero-search { grid-template-columns: 1fr auto auto; align-items: center; } }
.hero-search input, .hero-search select { border: 0; background: transparent; padding: .7rem .8rem; font: inherit; min-width: 0; }
.hero-search input:focus, .hero-search select:focus { outline: 2px solid var(--spa-200); border-radius: 10px; }

/* ---------------------------------------------------------------- Kategorien */
.category-strip { display: grid; gap: .75rem; grid-template-columns: repeat(2, 1fr); margin-top: -2rem; position: relative; z-index: 5; }
@media (min-width: 700px) { .category-strip { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .category-strip { grid-template-columns: repeat(5, 1fr); } }
.category-tile {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1rem .9rem; text-align: center; color: var(--ink-900); transition: transform .15s ease;
}
.category-tile:hover { transform: translateY(-3px); text-decoration: none; }
.category-tile strong { display: block; font-size: .95rem; }
.category-tile small { color: var(--ink-400); font-size: .78rem; display: block; margin-top: .2rem; }
.tile-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; margin-bottom: .5rem; }

/* ---------------------------------------------------------------- Raster & Karten */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; }
.card.pad { padding: 1.5rem; }
.card-media { position: relative; display: block; aspect-ratio: 4 / 3; background: var(--sand-200); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.media-placeholder {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-family: var(--serif); font-size: 2rem; font-weight: 700; background: var(--spa-600);
}
.media-placeholder.soft { background: var(--sand-200); color: var(--ink-500); font-size: 1rem; font-family: var(--font); }
.badge-stars, .badge-featured {
  position: absolute; top: .7rem; padding: .25rem .6rem; border-radius: 999px;
  font-size: .75rem; font-weight: 600; background: rgba(255,255,255,.92); color: var(--ink-900);
}
.badge-stars { left: .7rem; }
.badge-featured { right: .7rem; background: var(--spa-600); color: #fff; }

.card-body { padding: 1.15rem 1.25rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.card-eyebrow { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-400); margin-bottom: .2rem; }
.card-title { font-size: 1.15rem; margin-bottom: .25rem; }
.card-title a { color: var(--ink-900); }
.card-meta { font-size: .875rem; color: var(--ink-500); margin-bottom: .5rem; }
.card-text { font-size: .9rem; color: var(--ink-500); }
.card-foot { margin-top: auto; padding-top: 1rem; display: flex; align-items: flex-end; justify-content: space-between; gap: .75rem; }
.price { font-weight: 600; color: var(--ink-900); margin: 0; }

.chips { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .5rem; }
.chip { background: var(--sand-100); color: var(--ink-700); border-radius: 999px; padding: .2rem .65rem; font-size: .75rem; font-weight: 500; }
.chip.light { background: rgba(255,255,255,.9); color: var(--ink-900); }
.chip.small { font-size: .7rem; }

.ticks { list-style: none; margin: 0 0 .5rem; padding: 0; font-size: .9rem; }
.ticks li { position: relative; padding-left: 1.2rem; margin-bottom: .2rem; }
.ticks li::before { content: '✓'; position: absolute; left: 0; color: var(--spa-500); }

.plain { list-style: none; margin: 0; padding: 0; }
.plain li { margin-bottom: .35rem; }

/* ---------------------------------------------------------------- Layouts */
.page-head { padding-top: 2rem; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }

.layout-sidebar { display: grid; gap: 1.75rem; align-items: start; }
@media (min-width: 1000px) { .layout-sidebar { grid-template-columns: 300px 1fr; } }

.layout-aside { display: grid; gap: 1.75rem; align-items: start; }
@media (min-width: 1000px) { .layout-aside { grid-template-columns: 1fr 320px; } }
@media (min-width: 1000px) { .aside { position: sticky; top: 90px; } }

.sidebar { position: relative; }
@media (min-width: 1000px) { .sidebar { position: sticky; top: 90px; } }

/* ---------------------------------------------------------------- Filter */
.filters { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 1.25rem; }
.filters-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1rem; }
.filters-head h2 { font-size: 1.05rem; margin: 0; }
.filters-actions { display: flex; gap: .5rem; margin-top: 1rem; }
.filters-actions .btn { flex: 1; }

.field { margin-bottom: 1rem; }
.field > label, .field > legend, .field > .label, .field > summary {
  display: block; font-size: .85rem; font-weight: 500; color: var(--ink-700); margin-bottom: .35rem;
}
.field.third { max-width: 220px; }
input[type=text], input[type=email], input[type=tel], input[type=password], input[type=search],
input[type=number], input[type=date], input[type=url], select, textarea {
  width: 100%; padding: .6rem .75rem; border: 1px solid var(--ink-200); border-radius: 10px;
  font: inherit; background: #fff; color: var(--ink-900);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--spa-200); border-color: var(--spa-500); }
textarea { resize: vertical; }
input[type=range] { width: 100%; accent-color: var(--spa-600); }

fieldset { border: 0; margin: 0 0 1rem; padding: 0; }
.check { display: flex; align-items: flex-start; gap: .55rem; font-size: .9rem; margin-bottom: .4rem; cursor: pointer; }
.check input { margin-top: .25rem; accent-color: var(--spa-600); }

.star-options { display: flex; gap: .4rem; }
.star-option input { position: absolute; opacity: 0; }
.star-option span { display: inline-block; padding: .3rem .7rem; border-radius: 999px; background: var(--sand-100); font-size: .85rem; }
.star-option input:checked + span { background: var(--spa-600); color: #fff; }
.star-option input:focus-visible + span { outline: 2px solid var(--spa-500); }

.amenity-groups { max-height: 320px; overflow-y: auto; padding-right: .25rem; }
.group-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-400); margin: .8rem 0 .3rem; }
details > summary { cursor: pointer; }

.list-toolbar { display: flex; justify-content: flex-end; margin-bottom: 1rem; }
.sort-form { display: flex; align-items: center; gap: .5rem; font-size: .875rem; }
.sort-form select { width: auto; padding: .4rem .6rem; }

/* ---------------------------------------------------------------- Hoteldetail */
.hotel-hero { background: var(--ink-900); color: #fff; background-size: cover; background-position: center; }
.hotel-hero-inner { padding-block: 2.5rem 2rem; min-height: 240px; display: flex; flex-direction: column; justify-content: flex-end; }
@media (min-width: 900px) { .hotel-hero-inner { min-height: 380px; padding-block: 4rem 2.5rem; } }
.hotel-hero h1 { color: #fff; margin-bottom: .3rem; }
.hotel-hero .stars { font-size: .7em; color: var(--sand-300); }
.hotel-hero-meta { color: rgba(255,255,255,.85); font-size: .9rem; }
.hotel-hero-actions { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; margin-top: 1rem; }
.price-pill { background: rgba(255,255,255,.92); color: var(--ink-900); border-radius: 999px; padding: .5rem 1rem; font-weight: 600; font-size: .9rem; }

.subnav { background: #fff; border-bottom: 1px solid var(--sand-200); position: sticky; top: 66px; z-index: 30; }
.subnav .container { display: flex; gap: .25rem; overflow-x: auto; }
.subnav a { padding: .9rem 1rem; font-size: .9rem; font-weight: 500; color: var(--ink-500); border-bottom: 2px solid transparent; white-space: nowrap; }
.subnav a.is-active { color: var(--spa-700); border-bottom-color: var(--spa-600); }

.prose { font-size: 1rem; }
.prose h2 { margin-top: 2rem; }
.prose ul { padding-left: 1.2rem; }

.amenity-columns { display: grid; gap: 1.25rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .amenity-columns { grid-template-columns: repeat(2, 1fr); } }

.facts { margin: 1.25rem 0 0; display: grid; grid-template-columns: auto 1fr; gap: .4rem 1rem; font-size: .9rem; border-top: 1px solid var(--sand-200); padding-top: 1rem; }
.facts.left { text-align: left; }
.facts dt { color: var(--ink-500); }
.facts dd { margin: 0; text-align: right; }
.facts.left dd { text-align: left; }

.gallery { columns: 1; column-gap: 1rem; }
@media (min-width: 640px) { .gallery { columns: 2; } }
@media (min-width: 1000px) { .gallery { columns: 3; } }
.gallery a { display: block; margin-bottom: 1rem; border-radius: var(--radius); overflow: hidden; break-inside: avoid; }

.region-pills, .tabs { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill, .tab { background: #fff; border-radius: 999px; padding: .5rem 1rem; font-size: .9rem; box-shadow: var(--shadow); color: var(--ink-700); }
.pill:hover, .tab:hover { background: var(--spa-600); color: #fff; text-decoration: none; }
.tab.is-active { background: var(--spa-600); color: #fff; }

.steps .step { background: #fff; border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); }
.step-number { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--spa-100); color: var(--spa-700); font-weight: 600; margin-bottom: .6rem; }

/* ---------------------------------------------------------------- Formulare */
.form h2 { font-size: 1.1rem; margin-top: 1.75rem; }
.form h2:first-of-type { margin-top: 0; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } .form-row.three { grid-template-columns: repeat(3, 1fr); } }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.age-inputs { display: flex; flex-wrap: wrap; gap: .5rem; }
.age-inputs input { width: 80px; }
.note { background: var(--sand-100); border-radius: 10px; padding: .7rem .9rem; font-size: .9rem; }

.alert { border-radius: var(--radius); padding: .85rem 1.1rem; margin-bottom: 1rem; font-size: .92rem; }
.alert-success { background: var(--spa-50); color: var(--spa-700); border: 1px solid var(--spa-200); }
.alert-info    { background: #eef3f8; color: #2d4f6b; border: 1px solid #cfe0ee; }
.alert-warning { background: #fdf6e7; color: var(--warning); border: 1px solid #f0e0bb; }
.alert-error   { background: #fdeeee; color: var(--danger); border: 1px solid #f2cfcf; }

.empty-state { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 3rem 1.5rem; text-align: center; color: var(--ink-500); }

.status { display: inline-block; padding: .3rem .8rem; border-radius: 999px; font-size: .82rem; font-weight: 500; background: var(--sand-100); color: var(--ink-700); }
.status-new { background: #e6f0f7; color: #2d5f80; }
.status-offered { background: #fdf6e7; color: var(--warning); }
.status-accepted, .status-published { background: var(--spa-100); color: var(--spa-700); }
.status-declined, .status-spam { background: #fdeeee; color: var(--danger); }

.status-icon { width: 52px; height: 52px; margin: 0 auto 1rem; border-radius: 50%; background: var(--spa-100); color: var(--spa-700); display: grid; place-items: center; font-size: 1.5rem; }

.thread { text-align: left; display: grid; gap: .75rem; margin-bottom: 1.5rem; }
.thread-item { background: var(--sand-50); border-radius: var(--radius); padding: .9rem 1rem; font-size: .92rem; }
.thread-hotel { border-left: 3px solid var(--spa-500); }
.thread-guest { border-left: 3px solid var(--sand-300); }

/* ---------------------------------------------------------------- Tabellen */
.table-wrap { overflow-x: auto; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
table.data { width: 100%; border-collapse: collapse; font-size: .9rem; }
table.data th, table.data td { padding: .75rem 1rem; text-align: left; border-bottom: 1px solid var(--sand-200); vertical-align: middle; }
table.data th { background: var(--sand-100); font-weight: 600; color: var(--ink-700); white-space: nowrap; }
table.data tr:last-child td { border-bottom: 0; }
table.data td.actions { text-align: right; white-space: nowrap; }

.pagination { display: flex; gap: .3rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.page { min-width: 38px; height: 38px; display: inline-grid; place-items: center; padding-inline: .5rem; border-radius: 10px; background: #fff; box-shadow: var(--shadow); color: var(--ink-700); font-size: .9rem; }
.page.is-active { background: var(--spa-600); color: #fff; }
.page.disabled { opacity: .4; }
.page.dots { box-shadow: none; background: none; }

/* ---------------------------------------------------------------- Verwaltung */
.dash { display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 900px) { .dash { grid-template-columns: 230px 1fr; } }
.dash-nav { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 1rem; }
.dash-nav p.dash-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-400); margin: .75rem .5rem .35rem; }
.dash-nav a { display: block; padding: .55rem .75rem; border-radius: 10px; color: var(--ink-700); font-size: .92rem; }
.dash-nav a:hover { background: var(--sand-100); text-decoration: none; }
.dash-nav a.is-active { background: var(--spa-600); color: #fff; }

.stat-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); margin-bottom: 1.5rem; }
@media (min-width: 900px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.1rem; }
.stat strong { display: block; font-size: 1.6rem; font-family: var(--serif); color: var(--ink-900); }
.stat span { font-size: .82rem; color: var(--ink-500); }

.lang-tabs { display: flex; gap: .35rem; margin-bottom: 1rem; border-bottom: 1px solid var(--sand-200); }
.lang-tabs button {
  border: 0; background: none; font: inherit; font-size: .9rem; padding: .55rem .95rem;
  border-bottom: 2px solid transparent; cursor: pointer; color: var(--ink-500);
}
.lang-tabs button.is-active { color: var(--spa-700); border-bottom-color: var(--spa-600); font-weight: 500; }
.lang-panel[hidden] { display: none; }

.thumb-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.thumb { position: relative; width: 130px; }
.thumb img { border-radius: 10px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.thumb form { position: absolute; top: .3rem; right: .3rem; }
.thumb button { border: 0; border-radius: 50%; width: 26px; height: 26px; background: rgba(255,255,255,.9); cursor: pointer; font-size: .9rem; line-height: 1; }

/* ---------------------------------------------------------------- Fuss */
.site-footer { margin-top: 3rem; background: #fff; border-top: 1px solid var(--sand-200); }
.footer-grid { display: grid; gap: 2rem; padding-block: 2.5rem; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.site-footer h3 { font-family: var(--font); font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-900); }
.site-footer a { color: var(--ink-500); font-size: .9rem; }
.site-footer a:hover, .site-footer a.is-active { color: var(--spa-700); }
.footer-brand strong { font-size: 1.2rem; }
.footer-bottom { border-top: 1px solid var(--sand-200); padding-block: 1rem; }
.footer-bottom p { margin: 0; }

/* ---------------------------------------------------------------- Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(15,18,17,.86); display: grid; place-items: center; padding: 1.5rem; z-index: 90; cursor: zoom-out; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: var(--radius); }

@media print {
  .topbar, .site-header, .site-footer, .subnav, .filters, .btn { display: none !important; }
}
