:root {
  --bg: #070d12;
  --bg-soft: #0d141c;
  --panel: rgba(16, 23, 33, 0.84);
  --panel-strong: rgba(10, 16, 24, 0.94);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.15);
  --text: #edf2f7;
  --muted: #b7c1cd;
  --gold: #dcbc84;
  --gold-strong: #f0d6a2;
  --accent: #97ceb7;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(220, 188, 132, 0.16), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(151, 206, 183, 0.14), transparent 20%),
    linear-gradient(180deg, #05090d, #0b1117 42%, #091018 100%);
}

a { color: var(--gold); text-decoration: none; transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease, opacity .25s ease; }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; display: block; }

.site-bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(78px);
  opacity: .24;
  pointer-events: none;
  z-index: 0;
}
.site-bg-orb--one { width: 320px; height: 320px; background: rgba(220, 188, 132, 0.26); left: -70px; top: 40px; }
.site-bg-orb--two { width: 280px; height: 280px; background: rgba(151, 206, 183, 0.2); right: -40px; top: 120px; }
.site-bg-orb--three { width: 220px; height: 220px; background: rgba(255, 255, 255, 0.08); left: 12%; bottom: 10%; }

#mainmain {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 32px));
  margin: 24px auto 40px;
}

.glass-card {
  background: linear-gradient(180deg, rgba(17, 24, 36, 0.9), rgba(9, 15, 22, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.site-header { display: grid; gap: 18px; margin-bottom: 22px; }
.topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  position: sticky;
  top: 12px;
  z-index: 20;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--text);
}
.brand strong { display: block; font-size: 1.05rem; }
.brand small { display: block; color: var(--muted); font-size: .84rem; }
.brand-badge {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(220, 188, 132, 0.34), rgba(151, 206, 183, 0.22));
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.desktop-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}
.desktop-nav a,
.lang-switch,
.hero-btn,
.admin-pill,
.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.desktop-nav a {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}
.desktop-nav a.selected,
.desktop-nav a:hover {
  color: #fff;
  background: rgba(220, 188, 132, 0.12);
  border-color: rgba(220, 188, 132, 0.16);
}
.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.lang-group { display: flex; gap: 10px; }
.lang-switch {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}
.lang-switch.is-active,
.lang-switch:hover {
  color: #fff;
  background: rgba(151, 206, 183, 0.14);
  border-color: rgba(151, 206, 183, 0.22);
}
.admin-pill {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}
.admin-pill:hover {
  background: rgba(220, 188, 132, 0.14);
  border-color: rgba(220, 188, 132, 0.18);
}

.secondary-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 20px;
}
.secondary-nav-label {
  font-size: .84rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-strong);
  white-space: nowrap;
}
.secondary-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.secondary-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.secondary-nav a.selected,
.secondary-nav a:hover {
  color: #fff;
  background: rgba(151, 206, 183, 0.12);
  border-color: rgba(151, 206, 183, 0.18);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  overflow: hidden;
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220, 188, 132, 0.08), transparent 42%, rgba(151, 206, 183, 0.08));
  pointer-events: none;
}
.page-hero-copy,
.page-hero-media {
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  margin-bottom: 18px;
}
.page-hero-copy h1,
.article-heading,
.article-title,
.section-heading-block h2,
.prose-content h1,
.prose-content h2,
.prose-content h3,
.footer-grid h2 {
  font-family: 'Playfair Display', serif;
}
.page-hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  line-height: 1.02;
}
.page-hero-copy p,
.article-copy p,
.prose-content p,
p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.8;
  text-align: left;
  text-indent: 0;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero-btn,
.read-more {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}
.hero-btn--primary,
.read-more {
  background: linear-gradient(135deg, rgba(220, 188, 132, 0.24), rgba(220, 188, 132, 0.12));
  border-color: rgba(220, 188, 132, 0.2);
}
.hero-btn:hover,
.read-more:hover {
  transform: translateY(-2px);
}
.page-hero-media {
  min-width: 0;
}
.hero-image-wrap {
  position: relative;
}
.page-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.hero-note {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 14, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}
.page-hero--compact .page-hero-copy h1 { font-size: clamp(2rem, 3.2vw, 3.6rem); }
.page-hero--compact .page-hero-media img { aspect-ratio: 5 / 3.6; }

#main { display: block; }
.content-column {
  min-width: 0;
  display: grid;
  gap: 20px;
}
.middlemain,
.middlemain2 {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  float: none;
}
.middletext,
.middlefooter {
  padding: 28px;
  text-align: left;
}
.section-heading-block {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  max-width: 820px;
}
.section-heading-block--tight { margin-bottom: 22px; }
.section-heading-block h2 { margin: 0; font-size: clamp(1.9rem, 2.6vw, 3rem); }

.home-story .middletext { display: grid; gap: 26px; }
.quick-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.quick-feature-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}
.quick-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 188, 132, 0.18);
  background: rgba(255, 255, 255, 0.045);
}
.quick-feature-card img {
  width: 100%;
  aspect-ratio: 4 / 2.8;
  object-fit: cover;
  border-radius: 18px;
}
.quick-feature-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.04rem;
}
.quick-feature-card span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

.article-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.article-card {
  overflow: hidden;
  border-radius: 26px;
  padding: 0;
}
.article-card.glass-card {
  background: linear-gradient(180deg, rgba(15, 22, 32, 0.92), rgba(8, 14, 21, 0.96));
}
.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}
.article-card--featured {
  grid-column: 1 / -1;
}
.article-card--featured .article-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: center;
}
.article-media {
  display: block;
  overflow: hidden;
  border-radius: 24px;
}
.article-thumb {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 24px;
  transition: transform .45s ease;
}
.article-card--featured .article-thumb { height: 360px; }
.article-card:hover .article-thumb { transform: scale(1.03); }
.article-copy { padding: 0 4px; }
.article-heading {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2vw, 2.35rem);
}
.article-heading a { color: #fff; }
.article-title { margin: 0 0 18px; font-size: clamp(2rem, 3vw, 3.4rem); }
.article-meta,
.middledatum {
  color: var(--gold-strong);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.article-detail .middletext,
.page-content .middletext {
  display: grid;
  gap: 16px;
}
.article-thumb-large {
  height: min(560px, 52vw);
  margin-bottom: 0;
}
.article-thumb-wrap { margin: 0; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--gold-strong);
}

.section-heading-row,
.gallery-hero-block {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, .9fr);
  gap: 24px;
  align-items: start;
}
.gallery-cover-large img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.gallery-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.gallery-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
}
.gallery-card-media img,
.gallery-shot img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.gallery-card-media img { aspect-ratio: 4 / 3; }
.gallery-card-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: var(--gold-strong);
  background: rgba(255, 255, 255, 0.04);
}
.gallery-card-copy { padding: 18px; }
.gallery-card-copy h3 { margin: 0 0 10px; font-size: 1.3rem; }
.gallery-card-copy h3 a { color: #fff; }
.gallery-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.gallery-masonry {
  columns: 3 240px;
  column-gap: 16px;
}
.gallery-shot {
  display: block;
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.gallery-shot span {
  display: block;
  padding: 12px 14px 14px;
  color: var(--muted);
}

.table,
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.prose-content {
  color: var(--text);
}
.prose-content h1,
.prose-content h2,
.prose-content h3 { margin: 0 0 10px; }
.prose-content ul,
.prose-content ol {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--muted);
}
.prose-content li { margin-bottom: 8px; }
.prose-content blockquote {
  margin: 0 0 18px;
  padding: 18px 20px;
  border-left: 3px solid rgba(220, 188, 132, 0.5);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 18px 18px 0;
  color: #dfe6ee;
}
.prose-content table,
.middletext table {
  max-width: 100%;
  overflow: hidden;
  border-radius: 18px;
}
.prose-content td,
.prose-content th,
.middletext td,
.middletext th {
  padding: 10px 12px;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.prose-content th,
.middletext th {
  color: var(--gold-strong);
  background: rgba(255, 255, 255, 0.03);
}
.prose-content img,
.middletext img,
.obr1,
.obr2,
.obr3,
.foto img,
.fotogalery img,
.video {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.obr1,
.obr2,
.obr3,
.foto img,
.fotogalery img,
.video { padding: 6px; }
.obr1 { margin: 0 0 16px 20px; float: right; max-width: min(360px, 46%); }
.obr2 { margin: 0 20px 16px 0; float: left; max-width: min(360px, 46%); }
.obr3 { margin: 6px; display: inline-block; }
.prose-content .obrmiddletext,
.prose-content .foto,
.prose-content td.obrmiddletext,
.prose-content td.foto {
  text-align: center;
}
.prose-content .obrmiddletext > a,
.prose-content .foto > a,
.prose-content td.obrmiddletext > a,
.prose-content td.foto > a,
.prose-content .obrmiddletext > img,
.prose-content .foto > img,
.prose-content td.obrmiddletext > img,
.prose-content td.foto > img {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  vertical-align: top;
  margin: 8px;
}
.prose-content .obrmiddletext br,
.prose-content .foto br,
.prose-content td.obrmiddletext br,
.prose-content td.foto br {
  display: none;
}
.foto img,
.fotogalery img {
  opacity: .9;
  transition: transform .25s ease, opacity .25s ease, box-shadow .25s ease;
}
.foto img:hover,
.fotogalery img:hover {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.obrhlava img,
.obrkontakt img { border-radius: 24px; }
.lang-label { color: var(--muted); padding-top: 8px; }
.admin-link { display: inline-block; margin-top: 10px; }
.content-column::after,
.middletext::after {
  content: "";
  display: block;
  clear: both;
}

.footer-box { margin-top: 4px; }
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.footer-grid h2 { margin: 0 0 8px; font-size: 1.15rem; }
.footer-grid p { margin: 0; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links a {
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-links a:hover {
  background: rgba(220, 188, 132, 0.14);
  border-color: rgba(220, 188, 132, 0.18);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .page-hero,
  .article-card--featured .article-grid,
  .quick-feature-grid,
  .gallery-card-grid,
  .section-heading-row,
  .gallery-hero-block,
  .admin-overview-grid,
  .gallery-admin-grid {
    grid-template-columns: 1fr;
  }
  .article-list-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2 220px; }
}

@media (max-width: 860px) {
  #mainmain { width: min(100% - 18px, 1240px); margin-top: 12px; }
  .topbar {
    padding: 14px;
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .secondary-nav {
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .secondary-nav-links { justify-content: flex-start; }
  .desktop-nav {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
  .topbar-actions {
    justify-content: space-between;
  }
  .page-hero { padding: 20px; }
  .page-hero-copy h1 { font-size: clamp(2rem, 7vw, 3.2rem); }
  .middletext,
  .middlefooter { padding: 20px; }
}

@media (max-width: 720px) {
  .gallery-masonry { columns: 1 220px; }
  .shows-split { grid-template-columns: 1fr; }
  .article-thumb,
  .article-card--featured .article-thumb,
  .article-thumb-large { height: auto; }
  .obr1,
  .obr2 {
    float: none;
    margin: 0 0 16px;
  }
  .admin-shell { width: min(100% - 18px, 1240px); }
  .admin-topbar,
  .section-header-admin,
  .gallery-card-footer { flex-direction: column; }
  .form-grid,
  .gallery-admin-inline { grid-template-columns: 1fr; }
}

.admin-body {
  background: linear-gradient(180deg, rgba(5,8,12,0.98), rgba(11,17,23,0.98));
  color: var(--text);
}
.admin-shell {
  width: min(1240px, calc(100% - 28px));
  margin: 24px auto 40px;
}
.admin-login-card {
  width: min(520px, calc(100% - 24px));
  margin: 7vh auto;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(21,31,46,.9), rgba(10,17,25,.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.admin-topbar {
  display:flex;
  justify-content:space-between;
  gap: 16px;
  align-items:flex-start;
  margin-bottom: 20px;
}
.admin-topbar h1, .admin-section-card h2, .gallery-admin-block h2 { margin: 0 0 8px; font-family: 'Playfair Display', serif; }
.admin-topbar p, .section-header-admin p, .form-help, .admin-helper { color: var(--muted); }
.admin-actions { display:flex; flex-wrap:wrap; gap: 10px; }
.button-link, .admin-form button, .compact-form button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(224,194,139,.22), rgba(224,194,139,.14));
  border: 1px solid rgba(224,194,139,.28);
  color: #fff;
  text-decoration:none;
  cursor:pointer;
}
.button-link-light {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
}
.flash {
  padding: 14px 18px;
  border-radius: 18px;
  margin-bottom: 16px;
  border:1px solid rgba(255,255,255,.08);
}
.flash-success { background: rgba(86, 165, 130, 0.18); }
.flash-error { background: rgba(196, 91, 91, 0.18); }
.admin-card {
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(21,31,46,.9), rgba(10,17,25,.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.admin-section-card + .admin-section-card { margin-top: 20px; }
.admin-overview-grid { display:grid; gap: 16px; margin-bottom: 20px; }
.admin-overview-card {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(21,31,46,.84), rgba(10,17,25,.94));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color:#fff;
}
.admin-overview-card strong { display:block; font-size: 2rem; margin-bottom: 6px; }
.admin-overview-card span { color: var(--muted); }
.section-header-admin { display:flex; justify-content:space-between; gap:16px; align-items:flex-start; margin-bottom: 16px; }
.admin-table { width:100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.08); text-align:left; vertical-align:top; }
.admin-table th { color: var(--gold-strong); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
.admin-table small, .muted { color: var(--muted); }
.actions-cell { display:flex; flex-wrap:wrap; gap: 10px; }
.actions-cell a { white-space: nowrap; }
.admin-form { display:grid; gap: 16px; }
.admin-form label { display:grid; gap: 8px; color:#fff; font-weight: 600; }
.admin-form-grid { display:grid; gap: 16px; }
.admin-form-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.admin-form-grid--align-end { align-items: end; }
.field-hint-inline { margin: -4px 0 0; }
.admin-inline-notice { margin: 0 0 18px; padding: 14px 16px; border-radius: 18px; background: rgba(232, 200, 140, 0.12); border: 1px solid rgba(232, 200, 140, 0.18); color: var(--gold-strong); }
.admin-kv-card { display:flex; flex-direction:column; gap: 8px; min-height: 118px; justify-content: center; }
.admin-kv-label { display:block; color: var(--gold-soft); font-size: .96rem; }
.admin-kv-value { display:block; color:#fff; font-size: 1.05rem; line-height: 1.45; }
.admin-kv-value-break { overflow-wrap:anywhere; word-break:break-word; }
.admin-stack-list-card { display:grid; gap: 14px; }
.admin-stack-list { display:grid; gap: 12px; }
.admin-stack-list > div { display:grid; gap: 4px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
.admin-stack-list > div:last-child { padding-bottom: 0; border-bottom: 0; }
.admin-stack-list span { color: var(--gold-soft); }
.admin-stack-list strong { color:#fff; }
.admin-uri-box { padding: 14px 16px; border-radius: 18px; background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); color:#fff; overflow-wrap:anywhere; word-break:break-word; }
.admin-uri-box code { font-family: inherit; color:#fff; }
.admin-form input[type="text"],
.admin-form input[type="password"],
.admin-form input[type="datetime-local"],
.admin-form input[type="number"],
.admin-form input[type="file"],
.admin-form select,
.admin-form textarea {
  width:100%;
  padding: 14px 16px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #fff;
  font: inherit;
}
.admin-form textarea { resize: vertical; min-height: 120px; }
.wysiwyg-field { display:grid; gap: 10px; }
.wysiwyg-field > label { color:#fff; font-weight: 600; }
.wysiwyg {
  border-radius: 24px;
  border:1px solid rgba(255,255,255,.1);
  background: rgba(5, 11, 20, 0.78);
  overflow: hidden;
}
.wysiwyg-toolbar {
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.wysiwyg-button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(41,56,78,.84), rgba(18,27,39,.92));
  color:#fff;
  cursor:pointer;
  font: inherit;
}
.wysiwyg-button:hover { border-color: rgba(224,194,139,.26); color: var(--gold-strong); }
.wysiwyg-editor {
  min-height: 340px;
  padding: 22px;
  color:#eef3f8;
  outline: none;
}
.wysiwyg-editor:empty::before {
  content: 'Začni psát článek…';
  color: rgba(184,194,208,.72);
}
.wysiwyg-editor p:last-child { margin-bottom: 0; }
.wysiwyg.is-uploading .wysiwyg-toolbar { opacity: .65; pointer-events: none; }
.form-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.admin-form-wide { gap: 20px; }
.current-image-preview img { max-width: 320px; border-radius: 22px; margin-top: 10px; }
.gallery-admin-block { margin-top: 8px; }
.gallery-admin-grid { display:grid; gap: 16px; }
.gallery-admin-item {
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  display:grid;
  gap: 12px;
}
.gallery-admin-item img { width:100%; aspect-ratio: 4 / 3; object-fit:cover; border-radius: 18px; }
.gallery-admin-inline { display:grid; grid-template-columns: 1fr auto; gap: 12px; align-items:end; }
.checkbox-label { display:flex; align-items:center; gap: 8px; font-weight:600; }
.checkbox-label input { width:auto; }
.checkbox-label-danger { color: #ffb3b3; }
.compact-form { margin-top: 18px; max-width: 280px; }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  display:none;
  align-items:center;
  justify-content:center;
  background: rgba(3, 6, 10, 0.9);
  z-index: 60;
  padding: 22px;
}
.lightbox-overlay.is-open { display:flex; }
.lightbox-figure { margin: 0; max-width: min(92vw, 1200px); max-height: 86vh; display:grid; gap: 12px; }
.lightbox-image { max-width: 100%; max-height: 76vh; object-fit: contain; border-radius: 24px; }
.lightbox-caption { text-align:center; color: #fff; }
.lightbox-close, .lightbox-nav {
  position:absolute;
  border:0;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.14);
  color:#fff;
  font-size: 1.8rem;
  cursor:pointer;
}
.lightbox-close { top: 18px; right: 18px; }
.lightbox-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 18px; top: 50%; transform: translateY(-50%); }

@media (max-width: 720px) {
  .lightbox-prev, .lightbox-next { display:none; }
}

.page-kontakt .tabmiddle.tdkontakt td {
  width: 50%;
}
.page-kontakt .tabmiddle.tdkontakt b {
  font-size: 1.05rem;
}
.page-kontakt .tabmiddle a {
  color: #fff;
}
.shows-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.show-dog-panel {
  padding: 22px;
  border-radius: 28px;
}
.show-dog-panel h2,
.show-detail-stack > h2 {
  margin: 0 0 18px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
}
.show-dog-panel .middlemainleft,
.show-dog-panel .middlemainright,
.show-detail-stack .middlemainleft2 {
  margin: 0 0 16px;
}
.show-dog-panel table,
.show-detail-stack table {
  width: 100%;
}
.show-dog-panel td,
.show-detail-stack td {
  padding: 10px 8px;
}
.show-dog-note {
  margin: 10px 0 0;
  color: var(--muted);
}
.show-detail-stack {
  display: grid;
  gap: 18px;
}
.show-detail-stack .middlemainleft2 {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}
.admin-form select {
  color-scheme: dark;
}
.admin-form select,
.admin-form select option {
  background: #121c28;
  color: #eef3f8;
}

:root {
  --gold-soft: #f3dfb7;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
}

.brand strong,
.page-hero-copy h1,
.article-heading,
.article-title,
.section-heading-block h2,
.prose-content h1,
.prose-content h2,
.prose-content h3,
.footer-grid h2,
.photo-dog-panel h2,
.show-dog-panel h2,
.show-detail-stack > h2,
.contact-side-card h3,
.gallery-card-copy h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-soft);
}

.eyebrow,
.desktop-nav a,
.secondary-nav-label,
.secondary-nav a,
.hero-btn,
.read-more,
.lang-switch,
.admin-pill,
.footer-links a,
.button-link,
.admin-form button,
.compact-form button {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.03em;
}

.page-hero-copy h1,
.section-heading-block h2,
.prose-content h1,
.prose-content h2,
.prose-content h3,
.article-heading a,
.article-title {
  color: var(--gold-soft);
}

.topbar {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.topbar-nav-shell {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.desktop-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(220, 188, 132, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.desktop-nav a,
.secondary-nav a,
.hero-btn,
.read-more,
.footer-links a,
.button-link,
.admin-form button,
.compact-form button {
  color: var(--gold-soft);
}

.desktop-nav a {
  min-width: 150px;
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(220, 188, 132, 0.08);
}

.desktop-nav a.selected,
.desktop-nav a:hover,
.secondary-nav a.selected,
.secondary-nav a:hover,
.hero-btn:hover,
.read-more:hover,
.footer-links a:hover,
.button-link:hover,
.admin-form button:hover,
.compact-form button:hover,
.admin-pill:hover,
.lang-switch:hover,
.lang-switch.is-active {
  color: #fff;
}

.desktop-nav a.selected,
.desktop-nav a:hover {
  background: linear-gradient(135deg, rgba(220, 188, 132, 0.22), rgba(220, 188, 132, 0.1));
  border-color: rgba(220, 188, 132, 0.2);
}

.secondary-nav-label,
.eyebrow,
.article-meta,
.middledatum {
  color: var(--gold-strong);
}

.secondary-nav a {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(220, 188, 132, 0.08);
}

.hero-btn,
.read-more,
.footer-links a {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(220, 188, 132, 0.12);
}

.hero-btn--primary,
.read-more,
.button-link,
.admin-form button,
.compact-form button {
  background: linear-gradient(135deg, rgba(220, 188, 132, 0.22), rgba(220, 188, 132, 0.1));
  border-color: rgba(220, 188, 132, 0.2);
}

.lang-switch,
.admin-pill {
  color: var(--gold-soft);
}

.page-hero {
  gap: 34px;
}

.page-hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 0.98;
}

.page-hero-copy p,
.article-copy p,
.prose-content p,
.gallery-card-copy p,
.contact-side-card p {
  color: #c8d0da;
}

.hero-note {
  color: var(--gold-soft);
}

.page-onas .page-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.56fr);
}

.page-onas .page-hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-image-wrap--portrait {
  max-width: 360px;
  margin-left: auto;
}

.hero-image-wrap--portrait img {
  aspect-ratio: auto;
}

.hero-image-wrap--holly img,
.page-holly .page-hero-media img {
  object-position: center 38%;
}

.about-story-photo,
.holly-story-photo {
  max-width: min(280px, 42%);
}

.dog-food-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.dog-food-grid .obr3 {
  width: min(168px, 100%);
  margin: 0;
  padding: 4px;
}

.photo-dog-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.photo-dog-panel {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.photo-dog-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
}

.photo-dog-panel .tabmiddlefotoleft,
.photo-dog-panel .tabmiddlefotoright,
.photo-dog-panel table {
  width: 100%;
}

.photo-dog-panel td {
  text-align: center;
}

.photo-dog-panel img {
  margin-inline: auto;
}

.contact-form-section {
  overflow: visible;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 20px;
  align-items: start;
}

.contact-form {
  gap: 18px;
}

.contact-form textarea {
  min-height: 180px;
}

.contact-side-card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(220, 188, 132, 0.1);
  display: grid;
  gap: 14px;
  position: sticky;
  top: 88px;
}

.contact-side-card h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.1vw, 2.2rem);
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.page-kontakt .tabmiddle.tdkontakt td {
  width: 50%;
}

.page-kontakt .tabmiddle a {
  color: var(--gold-soft);
}

.page-kontakt .tabmiddle img {
  max-width: 220px;
}

@media (max-width: 1100px) {
  .photo-dog-sections,
  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .contact-side-card {
    position: static;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

  .desktop-nav a {
    min-width: 0;
  }
}

@media (max-width: 860px) {
  .topbar {
    grid-template-columns: 1fr;
  }

  .topbar-nav-shell {
    justify-content: flex-start;
  }

  .desktop-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    width: 100%;
  }

  .page-onas .page-hero {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap--portrait {
    max-width: 280px;
  }
}

@media (max-width: 720px) {
  .page-kontakt .tabmiddle.tdkontakt,
  .page-kontakt .tabmiddle.tdkontakt tbody,
  .page-kontakt .tabmiddle.tdkontakt tr,
  .page-kontakt .tabmiddle.tdkontakt td {
    display: block;
    width: 100%;
  }

  .page-kontakt .tabmiddle.tdkontakt td {
    padding-left: 0;
    padding-right: 0;
  }

  .about-story-photo,
  .holly-story-photo {
    float: none;
    max-width: min(320px, 100%);
  }
}


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

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

.admin-subcard {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.admin-subcard h3 {
  margin: 0 0 8px;
  color: var(--gold-soft);
  font-family: 'Cormorant Garamond', serif;
}

.admin-subcard p,
.admin-note,
.admin-list {
  color: var(--muted);
}

.admin-note {
  margin-top: 10px;
  font-size: .94rem;
}

.admin-list {
  margin: 10px 0 0;
  padding-left: 18px;
}

.admin-list li + li {
  margin-top: 6px;
}

.field-hint {
  display:block;
  margin-top: 6px;
  font-size: .9rem;
  color: var(--muted);
  font-weight: 400;
}

.form-actions-inline {
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.button-link-secondary {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
}

.admin-form input[type="email"] {
  width:100%;
  padding: 14px 16px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #fff;
  font: inherit;
}

@media (max-width: 900px) {
  .admin-grid-2,
  .admin-grid-3,
  .admin-form-grid-2 {
    grid-template-columns: 1fr;
  }
}


/* --- 2026-03 final polish: full font unification, centered media, admin password, public-only index --- */

:root {
  --font-heading: 'CaviarDreams', Georgia, serif;
  --font-body: 'CaviarDreams', Georgia, serif;
  --gold-soft: #e8c88c;
  --gold-strong: #f4dab0;
}

body,
input,
textarea,
select,
button,
.page-hero-copy p,
.article-copy p,
.prose-content p,
p,
.brand,
.brand strong,
.brand small,
.desktop-nav a,
.secondary-nav a,
.secondary-nav-label,
.hero-note,
.hero-btn,
.read-more,
.footer-links a,
.admin-pill,
.lang-switch,
.admin-topbar p,
.section-header-admin p,
.form-help,
.admin-helper,
.public-contact-form label,
.admin-form label,
.admin-subcard p,
.admin-subcard span,
.admin-table,
.flash,
.field-hint,
.admin-note {
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6,
.page-hero-copy h1,
.section-heading-block h2,
.article-title,
.article-heading,
.article-heading a,
.prose-content h1,
.prose-content h2,
.prose-content h3,
.footer-grid h2,
.admin-topbar h1,
.admin-section-card h2,
.gallery-admin-block h2,
.gallery-card-copy h3,
.contact-side-card h3,
.show-dog-panel h2,
.show-detail-stack > h2,
.legacy-gallery-panel h2,
.legacy-gallery-video h2,
.admin-login-card h1,
.admin-subcard h3,
.admin-subcard strong {
  color: var(--gold-soft);
  font-family: var(--font-heading);
  font-weight: 400;
}

.topbar {
  position: relative;
  top: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 18px 24px;
}

.topbar-nav-shell {
  min-width: 0;
  display: flex;
  justify-content: center;
}

.desktop-nav {
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.desktop-nav a,
.secondary-nav a,
.lang-switch,
.admin-pill,
.hero-btn,
.read-more,
.button-link,
.admin-form button,
.compact-form button,
.footer-links a,
.hero-note {
  letter-spacing: .025em;
  color: var(--gold-soft);
}

.desktop-nav a {
  padding: 10px 0 12px;
  border-bottom: 2px solid transparent;
}

.desktop-nav a.selected,
.desktop-nav a:hover {
  border-color: rgba(232, 200, 140, 0.78);
}

.secondary-nav {
  align-items: center;
  justify-content: space-between;
}

.secondary-nav-links {
  flex: 1 1 auto;
  justify-content: center;
}

.secondary-nav a.selected,
.secondary-nav a:hover,
.lang-switch.is-active,
.lang-switch:hover,
.admin-pill:hover,
.hero-btn:hover,
.read-more:hover,
.button-link:hover,
.admin-form button:hover,
.compact-form button:hover,
.footer-links a:hover {
  color: #fff;
}

.page-hero-copy h1 {
  font-size: clamp(2.45rem, 4.1vw, 4.65rem);
  line-height: .98;
  margin-bottom: 18px;
}

.page-hero-copy p {
  font-size: 1.2rem;
  line-height: 1.65;
}

.hero-note {
  background: rgba(14, 21, 31, 0.82);
  border-color: rgba(232, 200, 140, 0.2);
}

.page-onas .page-hero {
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, .62fr);
}

.page-onas .page-hero-media {
  justify-content: center;
  align-items: center;
}

.page-onas .hero-image-wrap,
.page-onas .page-hero-media img {
  width: min(100%, 390px);
}

.page-onas .page-hero-media img {
  aspect-ratio: auto;
  object-fit: contain;
}

.page-plemeno .page-hero-media img {
  aspect-ratio: 16 / 10;
  object-position: center center;
}

.page-cir .page-hero-media img,
.page-holly .page-hero-media img,
.page-kontakt .page-hero-media img {
  object-position: center center;
}

.quick-feature-grid,
.home-story {
  display: none !important;
}

.obrmiddletext,
.foto,
td.obrmiddletext,
td.foto,
.page-holly .obrmiddletext,
.page-holly td.obrmiddletext {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}

.obrmiddletext > a,
.foto > a,
td.obrmiddletext > a,
td.foto > a,
.obrmiddletext > img,
.foto > img,
td.obrmiddletext > img,
td.foto > img {
  margin: 0;
}

.food-grid {
  justify-content: center;
  gap: 14px;
}

.food-grid .obr3 {
  width: 118px;
  height: 118px;
  object-fit: contain;
  margin: 0;
  padding: 4px;
  background: rgba(255,255,255,.045);
}

.page-holly .food-grid .obr3,
.page-cir .food-grid .obr3 {
  width: 118px;
  height: 118px;
}

.obr3 {
  margin: 8px;
}

.admin-form input[type="text"],
.admin-form input[type="email"],
.admin-form input[type="password"],
.admin-form input[type="datetime-local"],
.admin-form input[type="number"],
.admin-form input[type="file"],
.admin-form select,
.admin-form textarea,
.public-contact-form input[type="text"],
.public-contact-form input[type="email"],
.public-contact-form input[type="tel"],
.public-contact-form textarea {
  background: rgba(255,255,255,.045) !important;
  color: #f3f5f8 !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  box-shadow: none;
}

.admin-form input:-webkit-autofill,
.admin-form input:-webkit-autofill:hover,
.admin-form input:-webkit-autofill:focus,
.public-contact-form input:-webkit-autofill,
.public-contact-form input:-webkit-autofill:hover,
.public-contact-form input:-webkit-autofill:focus,
.admin-form textarea:-webkit-autofill,
.public-contact-form textarea:-webkit-autofill {
  -webkit-text-fill-color: #f3f5f8;
  -webkit-box-shadow: 0 0 0 1000px rgba(18, 28, 40, 1) inset;
  transition: background-color 9999s ease-in-out 0s;
}

.env-preview,
code {
  font-family: Consolas, Monaco, monospace;
}

.password-form-grid .admin-grid-3 {
  align-items: end;
}

.form-actions-inline--single {
  grid-template-columns: max-content;
}

.admin-login-card {
  background: linear-gradient(180deg, rgba(18, 27, 40, 0.94), rgba(8, 13, 20, 0.97));
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr;
  }

  .topbar-nav-shell,
  .topbar-actions,
  .desktop-nav,
  .secondary-nav-links {
    justify-content: center;
  }

  .page-onas .page-hero {
    grid-template-columns: 1fr;
  }
}

/* --- 2026-03-20 patch: cleaner menu, immediate content visibility, gold emphasis, centered legacy media --- */
:root {
  --font-ui-clean: 'CaviarDreams', 'RobotoLocal', serif;
  --font-text-clean: 'RobotoLocal', 'CaviarDreams', sans-serif;
  --gold-emphasis: #e6c787;
  --gold-underline: rgba(230, 199, 135, 0.85);
}

body,
input,
textarea,
select,
button,
.brand,
.brand strong,
.brand small,
.page-hero-copy p,
.article-copy p,
.prose-content p,
.prose-content li,
.prose-content td,
.prose-content th,
.footer-grid p,
.footer-links a,
.admin-pill,
.lang-switch,
.desktop-nav a,
.secondary-nav a,
.secondary-nav-label,
.hero-btn,
.read-more,
.flash,
.admin-form label,
.admin-form input,
.admin-form textarea,
.admin-form select,
.button-link,
.admin-table,
.video-caption {
  font-family: var(--font-text-clean) !important;
}

h1, h2, h3, h4, h5, h6,
.page-hero-copy h1,
.section-heading-block h2,
.article-title,
.article-heading,
.article-heading a,
.prose-content h1,
.prose-content h2,
.prose-content h3,
.footer-grid h2,
.admin-topbar h1,
.admin-section-card h2,
.gallery-admin-block h2,
.gallery-card-copy h3,
.contact-side-card h3,
.show-dog-panel h2,
.show-detail-stack > h2,
.legacy-gallery-panel h2,
.legacy-gallery-video h2,
.admin-login-card h1,
.admin-subcard h3 {
  font-family: var(--font-ui-clean) !important;
  font-weight: 400 !important;
  color: var(--gold-emphasis) !important;
}

.prose-content b,
.prose-content strong,
.middletext b,
.middletext strong,
.show-detail-stack b,
.show-detail-stack strong,
.legacy-gallery-panel b,
.legacy-gallery-panel strong,
.legacy-gallery-video b,
.legacy-gallery-video strong,
.gold-strong {
  color: var(--gold-emphasis) !important;
  font-weight: 700 !important;
}

#mainmain {
  width: min(1300px, calc(100% - 24px));
  margin: 12px auto 28px;
}

.site-header {
  gap: 12px;
  margin-bottom: 12px;
}

.topbar {
  position: relative !important;
  top: auto !important;
  gap: 20px;
  padding: 16px 24px;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.brand {
  gap: 12px;
}

.brand strong {
  font-size: 1.15rem;
  line-height: 1.1;
}

.brand small {
  font-size: 0.88rem;
  line-height: 1.2;
}

.topbar-nav-shell {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.desktop-nav {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.desktop-nav a {
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 8px 0 11px !important;
  border: 0 !important;
  border-radius: 0 !important;
  border-bottom: 2px solid transparent !important;
  background: transparent !important;
  color: var(--muted) !important;
  white-space: nowrap;
  font-size: 1.05rem;
  line-height: 1.15;
}

.desktop-nav a.selected,
.desktop-nav a:hover {
  color: var(--gold-emphasis) !important;
  background: transparent !important;
  border-bottom-color: var(--gold-underline) !important;
}

.topbar-actions {
  gap: 12px;
  align-items: center;
}

.lang-group {
  gap: 8px;
}

.lang-switch,
.admin-pill {
  min-height: 42px;
  color: var(--gold-emphasis) !important;
}

.admin-pill {
  max-width: 220px;
  padding: 0 16px;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
}

.secondary-nav {
  padding: 12px 18px;
  gap: 12px;
}

.secondary-nav-label {
  font-size: 0.78rem;
  line-height: 1;
}

.secondary-nav-links {
  gap: 10px;
}

.secondary-nav a {
  min-height: 38px;
  padding: 0 14px;
  color: var(--gold-emphasis) !important;
}

.eyebrow {
  padding: 7px 14px;
  margin-bottom: 14px;
  line-height: 1.1;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-strong);
}

.page-hero {
  gap: 22px;
  padding: 22px 26px;
  align-items: center;
}

.page-hero-copy h1 {
  margin-bottom: 14px;
  font-size: clamp(2.15rem, 3.75vw, 4rem) !important;
  line-height: 1.02 !important;
}

.page-home .page-hero-copy h1 {
  font-size: clamp(2.3rem, 3.9vw, 4.25rem) !important;
}

.page-hero-copy p {
  margin-bottom: 12px;
  font-size: 1.06rem;
  line-height: 1.62;
}

.hero-cta-row {
  margin-top: 18px;
}

.page-hero-media img {
  width: 100%;
  max-height: 390px;
  aspect-ratio: 16 / 10 !important;
  object-fit: cover;
  object-position: center center;
}

.page-hero--compact .page-hero-media img,
.page-cir .page-hero-media img,
.page-holly .page-hero-media img,
.page-plemeno .page-hero-media img,
.page-vystavy .page-hero-media img,
.page-foto .page-hero-media img,
.page-kontakt .page-hero-media img {
  max-height: 350px;
  aspect-ratio: 16 / 9 !important;
}

.page-onas .page-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.58fr);
}

.page-onas .page-hero-media img {
  max-height: 320px;
  aspect-ratio: 4 / 4.6 !important;
}

.page-home .page-hero,
.page-cir .page-hero,
.page-holly .page-hero,
.page-plemeno .page-hero,
.page-vystavy .page-hero,
.page-foto .page-hero,
.page-kontakt .page-hero {
  padding-top: 20px;
  padding-bottom: 20px;
}

#main,
.content-column {
  gap: 14px;
}

.middletext,
.middlefooter {
  padding: 24px;
}

.section-heading-block {
  margin-bottom: 18px;
}

.section-heading-block h2 {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
}

.article-list-grid {
  gap: 16px;
}

.article-card--featured .article-thumb {
  height: 310px;
}

.hero-note {
  color: var(--gold-emphasis) !important;
}

.quick-feature-card strong,
.gallery-card-copy h3 a,
.article-heading a,
.article-title,
.back-link,
.page-kontakt .tabmiddle a,
.admin-overview-card strong,
.admin-table th,
.field-hint,
.admin-subcard h3,
.contact-side-card h3 {
  color: var(--gold-emphasis) !important;
}

.centered-food-grid,
.food-grid,
.dog-food-grid {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}

.food-grid .obr3,
.centered-food-grid .obr3,
.dog-food-grid .obr3,
.food-grid img,
.centered-food-grid img,
.dog-food-grid img {
  width: auto !important;
  max-width: 112px !important;
  max-height: 112px !important;
  object-fit: contain;
  padding: 4px !important;
  margin: 0 !important;
}

.obr1,
.obr2 {
  max-width: min(320px, 42%);
}

.prose-content .obrmiddletext,
.prose-content .foto,
.prose-content td.obrmiddletext,
.prose-content td.foto,
.show-photo-row-grid,
.legacy-gallery-panel td,
.legacy-gallery-video td {
  text-align: center;
}

.legacy-gallery-sections {
  display: grid;
  gap: 18px;
}

.legacy-gallery-panel,
.legacy-gallery-video {
  padding: 24px;
  overflow: hidden;
}

.legacy-gallery-panel .middlemain,
.legacy-gallery-panel .middlemainleft,
.legacy-gallery-panel .middlemainright,
.legacy-gallery-video .middlemain,
.legacy-gallery-video .middlefooter {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.legacy-gallery-panel .middletext,
.legacy-gallery-video .middletext,
.legacy-gallery-video .middlefooter {
  padding: 0;
}

.legacy-gallery-panel .section-heading-block,
.legacy-gallery-video .section-heading-block {
  margin-bottom: 18px;
  max-width: none;
}

.legacy-gallery-note {
  margin: 0 0 14px;
  color: var(--muted);
}

.legacy-gallery-panel table,
.legacy-gallery-video table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.legacy-gallery-panel table tbody,
.legacy-gallery-video table tbody {
  display: grid;
  gap: 16px;
}

.legacy-gallery-panel .album-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.legacy-gallery-panel .album-row td {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 0 !important;
}

.legacy-gallery-panel .album-row img {
  width: auto !important;
  max-width: 136px !important;
  max-height: 136px !important;
  object-fit: contain;
  margin-inline: auto;
}

.show-detail-stack {
  gap: 16px;
}

.show-detail-stack .middlemainleft2 {
  padding: 18px 20px;
}

.show-detail-stack table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.show-detail-stack td {
  padding: 8px 10px;
}

.show-photo-row {
  display: block;
}

.show-photo-row-cell {
  display: block;
  padding: 0 !important;
  border-bottom: 0 !important;
}

.show-photo-row-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding-top: 10px;
}

.show-photo-row-grid a,
.show-photo-row-grid img {
  display: block;
}

.show-photo-row-grid img {
  width: auto !important;
  max-width: 220px !important;
  max-height: 220px !important;
  object-fit: cover;
  margin-inline: auto;
}

.video-entry {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.video-entry .video {
  width: min(100%, 760px);
  height: auto;
  aspect-ratio: 16 / 9;
  margin-inline: auto;
}

.video-caption {
  width: 100%;
  text-align: center;
  color: var(--gold-emphasis);
  font-size: 1.08rem;
  line-height: 1.4;
}

.page-foto .gallery-hero-block,
.page-foto .content-column,
.page-vystavy .content-column {
  gap: 16px;
}

.page-foto .middlemain,
.page-vystavy .middlemain,
.page-cir .middlemain,
.page-holly .middlemain,
.page-plemeno .middlemain,
.page-onas .middlemain {
  margin: 0;
}

.public-contact-form input,
.public-contact-form textarea,
.admin-form input,
.admin-form textarea,
.admin-form select {
  background: rgba(255, 255, 255, 0.04) !important;
  color: #eef3f8 !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #eef3f8;
  transition: background-color 9999s ease-in-out 0s;
  box-shadow: 0 0 0px 1000px #101824 inset;
}

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .topbar-nav-shell {
    justify-content: flex-start;
  }

  .desktop-nav {
    justify-content: flex-start;
    gap: 16px;
  }

  .topbar-actions {
    justify-content: space-between;
  }

  .page-hero,
  .page-home .page-hero,
  .page-onas .page-hero {
    grid-template-columns: 1fr;
  }

  .page-hero-media img,
  .page-onas .page-hero-media img {
    max-height: 330px;
  }
}

@media (max-width: 780px) {
  #mainmain {
    width: min(100% - 14px, 1300px);
    margin-top: 8px;
  }

  .topbar,
  .secondary-nav,
  .page-hero,
  .middletext,
  .middlefooter,
  .legacy-gallery-panel,
  .legacy-gallery-video {
    padding-left: 18px;
    padding-right: 18px;
  }

  .desktop-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px !important;
  }

  .desktop-nav a {
    white-space: nowrap;
    font-size: 1rem;
  }

  .secondary-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .secondary-nav-links {
    justify-content: flex-start;
  }

  .legacy-gallery-panel .album-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .show-photo-row-grid img {
    max-width: 160px !important;
    max-height: 160px !important;
  }
}

@media (max-width: 560px) {
  .article-card--featured .article-thumb,
  .page-hero-media img,
  .page-hero--compact .page-hero-media img {
    max-height: none;
  }

  .legacy-gallery-panel .album-row {
    grid-template-columns: 1fr;
  }

  .food-grid .obr3,
  .centered-food-grid .obr3,
  .dog-food-grid .obr3,
  .food-grid img,
  .centered-food-grid img,
  .dog-food-grid img {
    max-width: 92px !important;
    max-height: 92px !important;
  }
}


/* --- 2026-03-20 font + contact form refinement --- */
:root {
  --font-ui-clean: 'CaviarDreams', Georgia, serif;
  --font-text-clean: 'CaviarDreams', Georgia, serif;
}

body,
input,
textarea,
select,
button,
label,
.brand,
.brand strong,
.brand small,
.desktop-nav a,
.secondary-nav a,
.secondary-nav-label,
.hero-btn,
.lang-switch,
.admin-pill,
.prose-content,
.prose-content p,
.prose-content li,
.prose-content td,
.prose-content th,
.footer-grid,
.footer-links a,
.public-contact-form,
.public-contact-form * {
  font-family: 'CaviarDreams', Georgia, serif !important;
}

.public-contact-form {
  display: grid;
  gap: 18px;
  width: 100%;
}

.public-contact-form label {
  display: grid;
  gap: 8px;
  width: 100%;
  color: #eef3f8;
}

.public-contact-form .contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.public-contact-form .contact-grid > * {
  min-width: 0;
}

.public-contact-form textarea {
  width: 100%;
  min-height: 240px;
  resize: vertical;
}

.public-contact-form input[type="text"],
.public-contact-form input[type="email"],
.public-contact-form input[type="tel"],
.public-contact-form textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-form-actions {
  display: flex;
  justify-content: flex-start;
}

.page-kontakt .middletext {
  max-width: none;
}

.page-kontakt .section-heading-block--tight {
  max-width: 100%;
}

@media (max-width: 760px) {
  .public-contact-form .contact-grid {
    grid-template-columns: 1fr;
  }

  .public-contact-form textarea {
    min-height: 200px;
  }
}

/* --- 2026-03-20 contact form polish --- */
.public-contact-form .contact-grid:first-of-type {
  grid-template-columns: minmax(240px, 0.9fr) minmax(320px, 1.1fr);
}

.public-contact-form input[type="text"],
.public-contact-form input[type="email"],
.public-contact-form input[type="tel"],
.public-contact-form textarea {
  border-radius: 18px;
  padding: 14px 16px;
}

.public-contact-form input[type="text"],
.public-contact-form input[type="email"],
.public-contact-form input[type="tel"] {
  min-height: 52px;
}

.public-contact-form .contact-grid:last-of-type {
  grid-template-columns: minmax(280px, 1fr);
}

.public-contact-form .contact-grid:last-of-type label:not(.contact-honeypot) {
  max-width: 580px;
}

@media (max-width: 900px) {
  .public-contact-form .contact-grid:first-of-type,
  .public-contact-form .contact-grid:last-of-type {
    grid-template-columns: 1fr;
  }

  .public-contact-form .contact-grid:last-of-type label:not(.contact-honeypot) {
    max-width: none;
  }
}

.admin-login-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.admin-login-links a,
.form-note {
  color: var(--gold-soft, #f3dfb7);
}

.admin-login-links a {
  text-decoration: none;
}

.admin-login-links a:hover {
  text-decoration: underline;
}

.form-note {
  margin: -4px 0 0;
  font-size: 0.95rem;
}


.admin-users-table {
  table-layout: auto;
}

.admin-users-table tbody tr {
  height: auto;
}

.admin-users-table th,
.admin-users-table td {
  vertical-align: middle;
  white-space: nowrap;
}

.admin-users-table td {
  padding-top: 18px;
  padding-bottom: 18px;
}

.admin-users-table td strong {
  display: inline;
}

.admin-user-cell {
  white-space: nowrap;
}

.admin-inline-note {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.2;
  white-space: nowrap;
}

.admin-inline-note--action {
  margin-left: 0;
}

.admin-users-table td .muted {
  display: inline;
  margin-top: 0;
  line-height: 1.2;
}

/* --- 2026-03-20 admin users management patch --- */
.admin-management-grid {
  align-items: start;
}

.admin-inline-form {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
}

.admin-inline-form--stacked {
  display: grid;
  gap: 14px;
}

.admin-users-table td form {
  margin: 0;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(232, 200, 140, 0.16);
  border: 1px solid rgba(232, 200, 140, 0.24);
  color: var(--gold-soft);
  white-space: nowrap;
}

.admin-badge-light {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  color: #f2f4f7;
}

.button-link-danger {
  background: rgba(196, 91, 91, 0.16) !important;
  border-color: rgba(196, 91, 91, 0.35) !important;
  color: #ffd0d0 !important;
}

.button-link-danger:hover {
  color: #fff !important;
}


/* --- 2026-03-20 admin settings alignment + create admin retry patch --- */
.admin-grid-2-balanced {
  align-items: start;
}

.admin-field-stack {
  display: grid;
  gap: 8px;
  align-content: start;
}

.admin-field-stack > label {
  margin: 0;
  min-height: 1.5em;
  display: block;
}

.admin-grid-2-balanced input[type="text"],
.admin-grid-2-balanced input[type="password"] {
  width: 100%;
  min-height: 56px;
  margin: 0;
}

.admin-form-note {
  margin: -4px 0 0;
}

.admin-section-flash {
  margin-bottom: 16px;
}

.admin-grid-2-balanced--account .admin-field-stack {
  min-width: 0;
}

/* --- 2026-03-21 admin create + reveal + natural image size patch --- */
.admin-grid-2-balanced--account {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start !important;
}

.admin-grid-2-balanced--account .admin-field-stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-width: 0;
  margin: 0;
}

.admin-grid-2-balanced--account .admin-field-stack > label {
  display: block;
  min-height: 0;
  margin: 0 0 8px;
  line-height: 1.25;
}

.admin-grid-2-balanced--account .admin-field-stack input[type="text"],
.admin-grid-2-balanced--account .admin-field-stack input[type="password"] {
  width: 100%;
  min-height: 56px;
  height: 56px;
  margin: 0;
  box-sizing: border-box;
  align-self: stretch;
}

.admin-form-note {
  margin-top: 8px;
}

.page-onas .page-hero,
.page-cir .page-hero,
.page-holly .page-hero,
.page-plemeno .page-hero,
.page-vystavy .page-hero,
.page-foto .page-hero,
.page-kontakt .page-hero {
  padding-top: 16px;
  padding-bottom: 16px;
}

.page-onas .page-hero-copy h1,
.page-cir .page-hero-copy h1,
.page-holly .page-hero-copy h1,
.page-plemeno .page-hero-copy h1,
.page-vystavy .page-hero-copy h1,
.page-foto .page-hero-copy h1,
.page-kontakt .page-hero-copy h1 {
  font-size: clamp(1.9rem, 3vw, 3.3rem);
  margin-bottom: 12px;
}

.page-onas .page-hero-copy p,
.page-cir .page-hero-copy p,
.page-holly .page-hero-copy p,
.page-plemeno .page-hero-copy p,
.page-vystavy .page-hero-copy p,
.page-foto .page-hero-copy p,
.page-kontakt .page-hero-copy p {
  margin-bottom: 12px;
}

.page-onas .page-hero-media img,
.page-cir .page-hero-media img,
.page-holly .page-hero-media img,
.page-plemeno .page-hero-media img,
.page-vystavy .page-hero-media img,
.page-foto .page-hero-media img,
.page-kontakt .page-hero-media img {
  max-height: 340px;
}

.page-onas .content-column,
.page-cir .content-column,
.page-holly .content-column,
.page-plemeno .content-column,
.page-vystavy .content-column,
.page-foto .content-column,
.page-kontakt .content-column {
  gap: 10px;
}

.page-onas .content-column > .middlemain:first-child,
.page-cir .content-column > .middlemain:first-child,
.page-holly .content-column > .middlemain:first-child,
.page-plemeno .content-column > .middlemain:first-child,
.page-vystavy .content-column > .middlemain:first-child,
.page-foto .content-column > .middlemain:first-child,
.page-kontakt .content-column > .middlemain:first-child {
  margin-top: 0;
}

.food-grid .obr3,
.centered-food-grid .obr3,
.dog-food-grid .obr3,
.food-grid img,
.centered-food-grid img,
.dog-food-grid img,
.page-cir .food-grid .obr3,
.page-holly .food-grid .obr3,
.page-cir .dog-food-grid .obr3,
.page-holly .dog-food-grid .obr3 {
  width: auto !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: contain !important;
}

.food-grid > a,
.food-grid > img,
.centered-food-grid > a,
.centered-food-grid > img,
.dog-food-grid > a,
.dog-food-grid > img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .admin-grid-2-balanced--account {
    grid-template-columns: 1fr;
  }

  .page-onas .page-hero-media img,
  .page-cir .page-hero-media img,
  .page-holly .page-hero-media img,
  .page-plemeno .page-hero-media img,
  .page-vystavy .page-hero-media img,
  .page-foto .page-hero-media img,
  .page-kontakt .page-hero-media img {
    max-height: 300px;
  }
}

.admin-users-table td:first-child {
  width: 46%;
}

.admin-users-table td:nth-child(2) {
  width: 28%;
}

.admin-users-table td:nth-child(3) {
  width: 26%;
}

.actions-cell--compact {
  white-space: nowrap;
}

.actions-cell--compact .admin-inline-form {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.button-link-danger {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 980px) {
  .admin-users-table th,
  .admin-users-table td,
  .admin-user-cell,
  .actions-cell--compact {
    white-space: normal;
  }

  .admin-inline-note {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }
}


/* --- 2026-03-21 admin users row alignment v3 --- */
.admin-users-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.admin-users-table th,
.admin-users-table td {
  padding: 18px 14px;
  vertical-align: middle;
}

.admin-users-table th:first-child,
.admin-users-table td:first-child {
  width: 46%;
}

.admin-users-table th:nth-child(2),
.admin-users-table td:nth-child(2) {
  width: 28%;
  text-align: center;
}

.admin-users-table th:nth-child(3),
.admin-users-table td:nth-child(3) {
  width: 26%;
  text-align: center;
}

.admin-user-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  white-space: nowrap;
}

.admin-user-cell strong,
.admin-inline-note {
  white-space: nowrap;
}

.admin-inline-note {
  margin-left: 0;
  font-size: 0.9rem;
}

.admin-badge,
.admin-action-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  min-width: 168px;
  max-width: 168px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  text-align: center;
  white-space: nowrap;
}

.admin-action-pill {
  background: rgba(196, 91, 91, 0.16);
  border: 1px solid rgba(196, 91, 91, 0.35);
  color: #ffd0d0;
}

.admin-action-pill--disabled {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.10);
  color: var(--muted);
}

.actions-cell--compact {
  display: table-cell;
  text-align: center;
}

.actions-cell--compact .admin-inline-form--action {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
}

.actions-cell--compact .button-link-danger.admin-action-pill {
  width: 168px;
  min-width: 168px;
  padding: 0 16px;
}

@media (max-width: 980px) {
  .admin-users-table th,
  .admin-users-table td {
    white-space: normal;
  }

  .admin-user-cell {
    display: block;
    white-space: normal;
  }

  .admin-inline-note {
    display: block;
    margin-top: 4px;
  }

  .admin-badge,
  .admin-action-pill,
  .actions-cell--compact .button-link-danger.admin-action-pill {
    width: auto;
    min-width: 0;
    max-width: none;
  }
}

/* --- 2026-03-24 layout polish patch --- */
.article-card .article-copy {
  padding: 20px 24px 24px;
}

.article-card--featured .article-copy {
  padding: 26px 28px 28px 6px;
}

.article-meta,
.middledatum {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}

.content-column > .middlemain[data-reveal]:first-of-type,
.content-column > .middlemain[data-reveal]:nth-of-type(2),
.legacy-gallery-sections > .legacy-gallery-panel[data-reveal]:first-of-type,
.legacy-gallery-sections > .legacy-gallery-video[data-reveal]:first-of-type,
.page-content > .middlemain[data-reveal]:first-of-type,
.page-content > .middlemain[data-reveal]:nth-of-type(2) {
  opacity: 1 !important;
  transform: none !important;
}

.food-grid,
.centered-food-grid,
.dog-food-grid {
  gap: 18px !important;
}

.food-grid .obr3,
.centered-food-grid .obr3,
.dog-food-grid .obr3,
.food-grid img,
.centered-food-grid img,
.dog-food-grid img,
.page-cir .food-grid .obr3,
.page-holly .food-grid .obr3,
.page-cir .dog-food-grid .obr3,
.page-holly .dog-food-grid .obr3 {
  width: auto !important;
  height: auto !important;
  max-width: none !important;
  max-height: 125px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  object-fit: contain !important;
}

.show-detail-stack td.obrmiddletext[colspan],
.show-detail-stack td[colspan].obrmiddletext {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center !important;
}

.show-detail-stack td.obrmiddletext[colspan] img,
.show-detail-stack td[colspan].obrmiddletext img,
.show-detail-stack td.obrmiddletext[colspan] a,
.show-detail-stack td[colspan].obrmiddletext a {
  margin-inline: auto !important;
}

.show-detail-stack td.obrmiddletext[colspan] br,
.show-detail-stack td[colspan].obrmiddletext br {
  display: none;
}

@media (max-width: 640px) {
  .topbar {
    grid-template-columns: 1fr !important;
    padding: 14px 14px 16px !important;
    gap: 14px !important;
  }

  .topbar-nav-shell {
    width: 100%;
    justify-content: stretch !important;
  }

  .desktop-nav {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px !important;
    width: 100%;
    overflow: visible !important;
    padding-bottom: 0 !important;
  }

  .desktop-nav a {
    min-height: 46px !important;
    padding: 10px 10px 12px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(220, 188, 132, 0.12) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    white-space: normal !important;
    text-align: center;
    line-height: 1.25;
    border-bottom: 1px solid rgba(220, 188, 132, 0.12) !important;
  }

  .desktop-nav a.selected,
  .desktop-nav a:hover {
    background: rgba(220, 188, 132, 0.12) !important;
    border-color: rgba(220, 188, 132, 0.2) !important;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between !important;
    gap: 10px !important;
  }

  .admin-pill {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
    line-height: 1.25;
    padding: 0 14px;
  }

  .article-card .article-copy,
  .article-card--featured .article-copy {
    padding: 18px 18px 22px !important;
  }
}


/* --- 2026-03-24 targeted food image sizing for Cir/Holly only --- */
.page-cir .food-grid,
.page-cir .centered-food-grid,
.page-holly .food-grid,
.page-holly .centered-food-grid {
  gap: 10px !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
}

.page-cir .food-grid .obr3,
.page-cir .centered-food-grid .obr3,
.page-cir .food-grid img,
.page-cir .centered-food-grid img,
.page-holly .food-grid .obr3,
.page-holly .centered-food-grid .obr3,
.page-holly .food-grid img,
.page-holly .centered-food-grid img {
  width: auto !important;
  height: auto !important;
  max-width: 88px !important;
  max-height: 88px !important;
  object-fit: contain !important;
}

@media (max-width: 980px) {
  .page-cir .food-grid,
  .page-cir .centered-food-grid,
  .page-holly .food-grid,
  .page-holly .centered-food-grid {
    flex-wrap: wrap !important;
  }
}
