/* ═══════════════════════════════════════════════════
   HORIZON LAYOUT — structural CSS
   Colours come from --hz-* tokens, never hardcoded.
   ═══════════════════════════════════════════════════ */

/* ── Reset scoped to horizon only ── */
.hz, .hz *, .hz *::before, .hz *::after {
  box-sizing: border-box;
}

/* ── Shell ── */
.hz {
  font-family: 'DM Sans', sans-serif;
  color: var(--hz-text);
  min-height: 100dvh;
  background: var(--hz-bg);
  position: relative;
}

/* ════════════════════════════════
   MOBILE — single column
   ════════════════════════════════ */

/* ── Hero ── */
.hz-hero {
  position: relative;
  overflow: hidden;
  padding: 16px 0;
  background:
    radial-gradient(ellipse 80% 55% at 15% 10%,
      color-mix(in srgb, var(--hz-accent) 18%, transparent) 0%,
      transparent 65%),
    radial-gradient(ellipse 60% 40% at 85% 85%,
      color-mix(in srgb, var(--hz-accent) 10%, transparent) 0%,
      transparent 60%),
    var(--hz-bg);
}

/* Frosted glass card — holds all hero content */
.hz-hero-card {
  position: relative;
  z-index: 2;
  margin: 0 16px;
  padding: 20px;
  background: var(--hz-surface);
  border: 1px solid var(--hz-border-strong);
  border-radius: var(--hz-r-xl);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 36px rgba(0,0,0,0.25);
}

/* ── Identity block ── */
.hz-identity {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

/* Tile stack — positioned container for overlap */
.hz-tile-stack {
  position: relative;
  flex-shrink: 0;
  width: 88px;
  height: 88px;
}

/* Large tile — logo, rounded square */
.hz-tile-large {
  width: 88px;
  height: 88px;
  border-radius: var(--hz-r-lg);
  overflow: hidden;
  background: var(--hz-surface-2);
  border: 1px solid var(--hz-border);
  cursor: pointer;
  display: block;
  transition: transform .18s, box-shadow .18s;
}
.hz-tile-large:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.hz-tile-large img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

/* Initials fallback */
.hz-tile-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--hz-accent);
  background: color-mix(in srgb, var(--hz-accent) 10%, transparent);
}

/* Small tile — photo circle, overlaps bottom-right of large tile */
.hz-tile-small {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--hz-surface-2);
  border: 2.5px solid var(--hz-bg);
  cursor: pointer;
  display: block;
  transition: transform .18s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 2;
}
.hz-tile-small:hover {
  transform: scale(1.12);
}
.hz-tile-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Photo in large tile — full cover, no padding, circle shape */
.hz-tile-large.hz-tile-photo-large {
  border-radius: 50%;
}
.hz-tile-large.hz-tile-photo-large img {
  object-fit: cover;
  padding: 0;
}

/* Logo in small tile — rounded square, white bg, contain */
.hz-tile-small.hz-tile-small-logo {
  border-radius: 8px;
}
.hz-tile-small.hz-tile-small-logo img {
  object-fit: contain;
  padding: 3px;
  background: #fff;
}

/* Text column beside tile stack */
.hz-identity-info {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ── Zoom overlay ── */
.hz-zoom-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.88);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hz-zoom-overlay.open { display: flex; }
.hz-zoom-img-wrap {
  position: relative;
  cursor: default;
  animation: hzZoomIn .2s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes hzZoomIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.hz-zoom-img-logo {
  width: min(80vw, 480px);
  height: min(80vw, 480px);
  border-radius: 24px;
  object-fit: contain;
  background: #fff;
  padding: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  display: block;
}
.hz-zoom-img-photo {
  width: min(70vw, 420px);
  height: min(70vw, 420px);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  border: 4px solid rgba(255,255,255,0.25);
  display: block;
}
.hz-zoom-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  transition: background .15s;
}
.hz-zoom-close:hover {
  background: rgba(255,255,255,0.28);
}

/* Person name — below tagline, smaller and muted */
.hz-person-name {
  font-size: 12px;
  color: var(--hz-text-subtle);
  font-weight: 400;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hz-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px; font-weight: 700;
  line-height: 1.15; margin-bottom: 2px;
  color: var(--hz-text);
}
.hz-tagline {
  font-size: 12.5px;
  color: var(--hz-text-muted);
  line-height: 1.45;
  margin-top: 2px;
}

/* Primary contact actions */
.hz-actions-primary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}
.hz-action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--hz-r-md);
  background: var(--hz-surface-2);
  border: 1px solid var(--hz-border);
  color: var(--hz-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background .15s;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.hz-action-btn:hover { background: var(--hz-surface-hover); }
.hz-action-btn svg { width: 18px; height: 18px; flex-shrink: 0; opacity: .85; }
.hz-action-btn-value { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Address row — icon left, text right */
.hz-action-address {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--hz-r-md);
  background: var(--hz-surface);
  border: 1px solid var(--hz-border);
  color: var(--hz-text-muted);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 10px;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.hz-action-address svg { width: 18px; height: 18px; flex-shrink: 0; }
.hz-address-text { flex: 1; min-width: 0; line-height: 1.4; }

/* Social icon row */
.hz-social-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.hz-social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--hz-surface-2);
  border: 1px solid var(--hz-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--hz-text-muted);
  text-decoration: none;
  transition: background .15s;
  flex-shrink: 0;
}
.hz-social-btn:hover { background: var(--hz-surface-hover); color: var(--hz-text); }
.hz-social-btn svg { width: 17px; height: 17px; }

/* More / less toggle */
.hz-more-toggle {
  background: none; border: none; padding: 4px 0;
  color: var(--hz-text-subtle);
  font-size: 13px; cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  font-family: 'DM Sans', sans-serif;
  transition: color .15s;
}
.hz-more-toggle:hover { color: var(--hz-text); }
.hz-more-panel { display: none; margin-top: 10px; }
.hz-more-panel.open { display: block; }
.hz-more-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--hz-border);
  color: var(--hz-text-muted);
  text-decoration: none;
  font-size: 13.5px;
  cursor: pointer;
}
.hz-more-item svg { width: 17px; height: 17px; opacity: .7; }

/* ── Content area (below fold on mobile) ── */
.hz-content {
  background: var(--hz-bg);
  padding: 0 16px 48px;
}

/* Pill nav */
.hz-pill-wrap {
  position: sticky; top: 0; z-index: 90;
  background: var(--hz-bg);
  padding: 10px 0 8px;
  border-bottom: 1px solid var(--hz-border);
  margin-bottom: 20px;
}
.hz-pill-inner {
  display: flex; gap: 6px;
  overflow-x: auto; scrollbar-width: none;
}
.hz-pill-inner::-webkit-scrollbar { display: none; }
.hz-pill {
  flex-shrink: 0;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13.5px; font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--hz-border);
  background: transparent;
  color: var(--hz-text-muted);
  font-family: 'DM Sans', sans-serif;
  transition: all .18s;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hz-pill.active {
  background: color-mix(in srgb, var(--hz-accent) 13%, transparent);
  border-color: color-mix(in srgb, var(--hz-accent) 28%, transparent);
  color: var(--hz-accent);
}

/* Section */
.hz-section { margin-bottom: 32px; scroll-margin-top: 60px; }
.hz-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700;
  margin-bottom: 14px;
  color: var(--hz-text);
  display: flex; align-items: center; gap: 8px;
}

/* ── Price list ── */
.hz-flat-list {
  background: var(--hz-surface);
  border: 1px solid var(--hz-border);
  border-radius: var(--hz-r-lg);
  overflow: hidden;
}
.hz-price-item {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-bottom: 1px solid var(--hz-border);
  gap: 10px;
  transition: background .12s;
}
.hz-price-item:last-child { border-bottom: none; }
.hz-price-item:hover { background: var(--hz-surface-hover); }
.hz-pi-name { font-size: 13.5px; font-weight: 500; margin-bottom: 2px; }
.hz-pi-desc { font-size: 12px; color: var(--hz-text-muted); }
.hz-pi-price {
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--hz-accent);
  white-space: nowrap;
}
.hz-cat-divider {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--hz-text-subtle);
  padding: 12px 14px 5px;
  border-top: 1px solid var(--hz-border);
}
.hz-cat-divider:first-child { border-top: none; }
.hz-accordion {
  background: var(--hz-surface);
  border: 1px solid var(--hz-border);
  border-radius: var(--hz-r-lg);
  margin-bottom: 7px; overflow: hidden;
}
.hz-accordion.open { border-color: color-mix(in srgb, var(--hz-accent) 20%, transparent); }
.hz-acc-header {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 12px 14px; cursor: pointer; user-select: none;
}
.hz-acc-title { font-weight: 600; font-size: 13.5px; display: flex; align-items: center; gap: 8px; }
.hz-acc-count {
  font-size: 10.5px; padding: 1px 7px;
  border-radius: 10px;
  background: var(--hz-surface-2);
  color: var(--hz-text-muted); font-weight: 400;
}
.hz-acc-chevron { font-size: 11px; color: var(--hz-text-subtle); transition: transform .22s; }
.hz-accordion.open .hz-acc-chevron { transform: rotate(180deg); }
.hz-acc-body { display: none; border-top: 1px solid var(--hz-border); }
.hz-accordion.open .hz-acc-body { display: block; }
.hz-prices-toolbar { display: flex; gap: 7px; align-items: center; margin-bottom: 10px; }
.hz-search-wrap { flex: 1; position: relative; }
.hz-search-input {
  width: 100%;
  background: var(--hz-surface);
  border: 1px solid var(--hz-border);
  border-radius: var(--hz-r-sm);
  padding: 9px 12px 9px 34px;
  color: var(--hz-text);
  font-family: 'DM Sans', sans-serif; font-size: 13px; outline: none;
  transition: border-color .2s;
}
.hz-search-input:focus { border-color: var(--hz-accent); }
.hz-search-input::placeholder { color: var(--hz-text-subtle); }
.hz-search-icon {
  position: absolute; left: 11px; top: 50%; transform: translateY(-50%);
  color: var(--hz-text-subtle); pointer-events: none;
}
.hz-search-icon svg { width: 14px; height: 14px; }
.hz-tool-btn {
  background: var(--hz-surface);
  border: 1px solid var(--hz-border);
  border-radius: var(--hz-r-sm);
  padding: 9px 11px; color: var(--hz-text-muted); font-size: 13px;
  cursor: pointer; display: flex; align-items: center; gap: 5px;
  font-family: 'DM Sans', sans-serif; white-space: nowrap;
}
.hz-cat-chips {
  display: flex; gap: 5px;
  overflow-x: auto; scrollbar-width: none;
  padding-bottom: 2px; margin-bottom: 10px;
}
.hz-cat-chips::-webkit-scrollbar { display: none; }
.hz-cat-chip {
  flex-shrink: 0; padding: 5px 12px;
  border-radius: 20px; font-size: 12px; font-weight: 500;
  cursor: pointer; border: 1px solid var(--hz-border);
  background: transparent; color: var(--hz-text-muted);
  font-family: 'DM Sans', sans-serif; transition: all .15s;
}
.hz-cat-chip.active {
  background: color-mix(in srgb, var(--hz-accent) 13%, transparent);
  border-color: color-mix(in srgb, var(--hz-accent) 28%, transparent);
  color: var(--hz-accent);
}
.hz-filter-badge {
  display: none; background: var(--hz-accent); color: #fff;
  border-radius: 10px; padding: 1px 6px; font-size: 10px;
}
.hz-active-filters-row {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 8px; flex-wrap: wrap;
}
.hz-active-chip {
  display: flex; align-items: center; gap: 4px;
  padding: 3px 8px 3px 10px; border-radius: 20px;
  font-size: 11.5px; font-weight: 500;
  background: color-mix(in srgb, var(--hz-accent) 13%, transparent);
  color: var(--hz-accent);
  border: 1px solid color-mix(in srgb, var(--hz-accent) 25%, transparent);
  cursor: pointer;
}
.hz-sort-wrap { position: relative; }
.hz-sort-select {
  cursor: pointer; outline: none;
  background: var(--hz-surface); color: var(--hz-text);
  border: 1px solid var(--hz-border); border-radius: var(--hz-r-sm);
  padding: 9px 10px; font-family: 'DM Sans', sans-serif; font-size: 13px;
  white-space: nowrap;
}
.hz-sort-menu {
  display: none; position: absolute; top: calc(100% + 4px); right: 0;
  background: var(--hz-bg); border: 1px solid var(--hz-border);
  border-radius: var(--hz-r-sm); overflow: hidden; z-index: 20;
  min-width: 120px; box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.hz-sort-menu.open { display: block; }
.hz-sort-menu button {
  display: block; width: 100%; text-align: left;
  padding: 9px 14px; font-size: 13px; font-family: 'DM Sans', sans-serif;
  color: var(--hz-text); background: none; border: none; cursor: pointer;
}
.hz-sort-menu button:hover {
  background: var(--hz-surface-hover);
}
.hz-empty-msg {
  padding: 28px; text-align: center;
  color: var(--hz-text-muted); font-size: 13px;
}
.hz-show-more {
  width: 100%; padding: 10px; background: transparent; border: none;
  color: var(--hz-accent); font-size: 12px;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  text-align: center; opacity: .8;
}

/* Filter sheet */
.hz-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 200;
  display: none; backdrop-filter: blur(4px);
}
.hz-overlay.open { display: block; }
.hz-sheet {
  position: fixed; bottom: 0; left: 0; right: 0;
  max-width: 500px; margin: 0 auto;
  background: var(--hz-bg);
  border-radius: 20px 20px 0 0;
  border-top: 1px solid var(--hz-border-strong);
  z-index: 201;
  transform: translateY(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  padding: 0 16px 32px;
}
.hz-sheet.open { transform: translateY(0); }
.hz-sheet-handle {
  width: 36px; height: 4px;
  background: var(--hz-border-strong);
  border-radius: 2px; margin: 12px auto 14px;
}
.hz-sheet-head {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 12px;
}
.hz-sheet-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; }
.hz-sheet-label {
  font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--hz-text-subtle); margin: 14px 0 8px;
}
.hz-ftags { display: flex; flex-wrap: wrap; gap: 6px; }
.hz-ftag {
  padding: 6px 13px; border-radius: 20px; font-size: 13px;
  border: 1px solid var(--hz-border); background: transparent;
  color: var(--hz-text-muted); cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all .14s;
}
.hz-ftag.active {
  background: color-mix(in srgb, var(--hz-accent) 13%, transparent);
  border-color: color-mix(in srgb, var(--hz-accent) 28%, transparent);
  color: var(--hz-accent);
}
.hz-sheet-footer { margin-top: 20px; }
.hz-btn-primary {
  background: var(--hz-accent); color: #fff; border: none;
  border-radius: var(--hz-r-sm); padding: 10px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 13.5px; font-weight: 500;
  cursor: pointer; display: inline-flex; align-items: center;
  justify-content: center; gap: 5px; width: 100%;
  transition: opacity .2s;
}
.hz-btn-primary:hover { opacity: .88; }
.hz-btn-ghost {
  background: var(--hz-surface); color: var(--hz-text-muted);
  border: 1px solid var(--hz-border); border-radius: var(--hz-r-sm);
  padding: 8px 11px; font-family: 'DM Sans', sans-serif; font-size: 12px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 5px;
  transition: all .15s;
}
.hz-btn-ghost:hover { background: var(--hz-surface-hover); color: var(--hz-text); }

/* ── Gallery ── */
.hz-featured-album {
  border-radius: var(--hz-r-lg); overflow: hidden;
  margin-bottom: 9px; aspect-ratio: 16/6;
  cursor: pointer; position: relative; display: block;
}
.hz-featured-album img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .4s;
}
.hz-featured-album:hover img { transform: scale(1.03); }
.hz-feat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 14px;
}
.hz-feat-label { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: #fff; }
.hz-feat-sub { font-size: 11.5px; color: rgba(255,255,255,.6); margin-top: 2px; }
.hz-album-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7px; margin-bottom: 12px;
}
.hz-album-card {
  border-radius: var(--hz-r-lg); overflow: hidden;
  aspect-ratio: 1; cursor: pointer; position: relative;
  border: 1px solid var(--hz-border); display: block;
}
.hz-album-card img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .3s;
}
.hz-album-card:hover img { transform: scale(1.06); }
.hz-alb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 9px;
}
.hz-alb-name { font-family: 'Syne', sans-serif; font-size: 12.5px; font-weight: 600; color: #fff; }
.hz-alb-count { font-size: 11px; color: rgba(255,255,255,.58); margin-top: 1px; }
.hz-photo-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
}
.hz-photo-thumb {
  aspect-ratio: 1; border-radius: var(--hz-r-md);
  overflow: hidden; display: block;
}
.hz-photo-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: filter .25s;
}
.hz-photo-thumb:hover img { filter: brightness(1.15); }
.hz-recent-label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--hz-text-subtle); margin: 4px 0 8px;
}

/* ── Day/night toggle ── */
.hz-mode-toggle {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 310;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background .2s, transform .15s, top .25s ease;
  touch-action: manipulation;
}
.hz-mode-toggle:hover {
  transform: scale(1.08);
}
[data-mode="light"] .hz-mode-toggle {
  background: rgba(255,255,255,0.55);
  border-color: rgba(0,0,0,0.12);
  color: #0f172a;
}
.hz-mode-toggle.scrolled {
  top: calc(var(--hz-pill-top, 60px) - 46px);
}
.hz-mode-toggle svg { width: 18px; height: 18px; }
.hz-icon-moon { display: block; }
.hz-icon-sun  { display: none; }
[data-mode="light"] .hz-icon-moon  { display: none; }
[data-mode="light"] .hz-icon-sun   { display: block; }

/* ── Toast ── */
.hz-toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: var(--hz-surface-2);
  border: 1px solid var(--hz-border-strong);
  border-radius: 30px; padding: 9px 18px;
  font-size: 13px; color: var(--hz-text);
  backdrop-filter: blur(16px); z-index: 9999;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .3s;
  opacity: 0; white-space: nowrap; pointer-events: none;
}
.hz-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ── Accessibility ── */
.hz *:focus-visible {
  outline: 2px solid var(--hz-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── Footer ── */
.hz-footer {
  text-align: center; padding: 20px;
  font-size: 11px; color: var(--hz-text-subtle);
}
.hz-footer a { color: var(--hz-accent); text-decoration: none; opacity: .6; }

/* ════════════════════════════════
   DESKTOP — two column (≥860px)
   ════════════════════════════════ */
@media (min-width: 860px) {
  /* Hero becomes a sticky sidebar card, not full screen */
  .hz-hero {
    height: auto;
    min-height: unset;
    background: transparent;
  }

  .hz-hero-card {
    margin: 0;
    border-radius: var(--hz-r-xl);
    border: 1px solid var(--hz-border-strong);
    background: var(--hz-surface);
    backdrop-filter: none;
    padding: 24px;
  }

  /* Desktop shell: two-column grid */
  .hz-desktop-wrap {
    max-width: 1080px; margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0 28px;
    padding: 32px 28px 48px;
    align-items: start;
  }
  .hz-left {
    position: sticky; top: 28px;
  }
  .hz-right {
    border-left: 1px solid var(--hz-border);
    padding-left: 28px;
  }

  /* Content area — no padding on desktop (desktop-wrap handles it) */
  .hz-content { padding: 0; background: transparent; }

  /* Pill nav hidden on desktop — both sections visible */
  .hz-pill-wrap { display: none; }

  /* Album grid 3-col on desktop */
  .hz-album-grid { grid-template-columns: repeat(3, 1fr); }

  /* Section dividers */
  .hz-section + .hz-section {
    border-top: 1px solid var(--hz-border);
    padding-top: 28px;
    margin-top: 0;
  }

  /* Always show more content on desktop — no toggle needed */
  .hz-more-panel {
    display: block !important;
  }
  .hz-more-toggle {
    display: none !important;
  }
}

/* Mobile-only: shell is just a single column */
@media (max-width: 859px) {
  .hz-desktop-wrap { display: contents; }
  .hz-left { display: contents; }
  .hz-right { display: contents; }
}

/* ── Animations ── */
@keyframes hzFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ── Custom sections ── */
.hz-custom-section {
  margin-bottom: 24px;
  background: var(--hz-surface);
  border: 1px solid var(--hz-border);
  border-radius: var(--hz-r-lg);
  padding: 20px;
}
.hz-custom-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--hz-text-muted);
}
.hz-custom-body p      { margin-bottom: 8px; }
.hz-custom-body ul     { padding-left: 18px; margin-bottom: 8px; list-style: disc; }
.hz-custom-body ol     { padding-left: 18px; margin-bottom: 8px; list-style: decimal; }
.hz-custom-body li     { margin-bottom: 4px; }
.hz-custom-body b,
.hz-custom-body strong { color: var(--hz-text); font-weight: 600; }
.hz-custom-body i,
.hz-custom-body em     { font-style: italic; }
.hz-section-divider {
  border: none;
  border-top: 1px solid var(--hz-border);
  margin: 20px 0;
}

.hz-hero-card { animation: hzFadeUp .4s ease both; }
.hz-content   { animation: hzFadeUp .5s .1s ease both; }
