:root {
  --ink: #071f17;
  --ink-2: #0b2c20;
  --panel: rgba(255, 252, 239, 0.08);
  --panel-strong: rgba(255, 252, 239, 0.14);
  --paper: #fff8e7;
  --muted: #d8d0bd;
  --gold: #efc35b;
  --red: #d84b3e;
  --sky: #8fd0c9;
  --line: rgba(239, 195, 91, 0.32);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  color-scheme: dark;
}

/* Sezonní náhled Vánoce 2026 */
.xmas-nav{border:1px solid rgba(245,195,91,.5);border-radius:999px;padding:.55rem .85rem!important;color:#f5c35b!important;background:rgba(245,195,91,.08)}
.xmas-nav.active{background:#f5c35b;color:#071a14!important;font-weight:800}
.season-strip{display:flex;align-items:center;justify-content:center;gap:1rem;flex-wrap:wrap;padding:.72rem 1.2rem;background:linear-gradient(90deg,#5c1823,#8b2434 50%,#5c1823);color:#fff;text-decoration:none;border-bottom:1px solid rgba(245,195,91,.55)}
.season-strip span{font-size:.72rem;font-weight:900;letter-spacing:.16em;color:#f5c35b}.season-strip strong{font-size:.92rem}.season-strip em{font-size:.8rem;font-style:normal;color:#f7dfac}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(216, 75, 62, 0.12), transparent 34%),
    radial-gradient(circle at 82% 14%, rgba(143, 208, 201, 0.16), transparent 32%),
    linear-gradient(180deg, #062118 0%, #092a1f 52%, #0c2419 100%);
}

a { color: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(5, 23, 17, 0.86);
  border-bottom: 1px solid rgba(255, 248, 231, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  gap: 0;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0;
}

.brand span:first-child {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.brand span:last-child { font-size: 1.02rem; }

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(8px, 1vw, 16px);
  color: var(--muted);
  font-size: 0.88rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover { color: var(--paper); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.btn.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #11150f;
}

.hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: end;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 64px) 50px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center / cover no-repeat;
  filter: saturate(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 16, 12, 0.92), rgba(3, 16, 12, 0.72) 43%, rgba(3, 16, 12, 0.2)),
    linear-gradient(0deg, rgba(7, 31, 23, 1), transparent 36%);
}

.hero-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.6fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}

.eyebrow {
  color: var(--gold);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-top: 14px;
  font-size: clamp(3rem, 6.4vw, 5.8rem);
}

h2 {
  font-size: clamp(2.1rem, 4.6vw, 4.9rem);
}

h3 { font-size: clamp(1.1rem, 1.4vw, 1.34rem); }

.lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: #efe7d3;
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.proof {
  display: grid;
  gap: 12px;
}

.proof-card, .card, .program-card, .quote, .mini-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-card {
  padding: 18px;
}

.proof-card strong {
  display: block;
  color: var(--gold);
  font-size: 1.55rem;
  line-height: 1;
}

.proof-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: clamp(66px, 9vw, 116px) clamp(18px, 4vw, 64px);
}

.section.alt {
  background: rgba(255, 248, 231, 0.045);
}

.wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-head {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-head p, .card p, .program-card p, .mini-card p, .quote p {
  color: var(--muted);
}

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

.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card, .program-card, .mini-card {
  padding: 24px;
}

.card img, .program-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 6px;
  margin: -10px 0 20px;
}

.card a, .program-card a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.program-link {
  display: grid;
  color: inherit;
  text-decoration: none;
}

.program-link:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 195, 91, 0.55);
}

.program-link .eyebrow {
  margin-top: 16px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 900;
}

.theme-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 6px 0 12px;
  scroll-snap-type: x proximity;
}

.theme-chip {
  flex: 0 0 220px;
  scroll-snap-align: start;
  padding: 18px;
  border: 1px solid rgba(239, 195, 91, 0.26);
  border-radius: 8px;
  background: rgba(255, 248, 231, 0.07);
}

.theme-chip strong {
  display: block;
  color: var(--gold);
  margin-bottom: 6px;
}

.theme-chip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.catalog-filter {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(239, 195, 91, 0.32);
  border-radius: 999px;
  background: rgba(255, 248, 231, 0.055);
  color: var(--muted);
  font-weight: 850;
}

.catalog-filter:hover,
.catalog-filter.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: #11150f;
}

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

.catalog-tile {
  display: grid;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(239, 195, 91, 0.26);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 248, 231, 0.08), rgba(143, 208, 201, 0.05));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.catalog-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 195, 91, 0.62);
}

.catalog-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: rgba(255, 248, 231, 0.08);
}

.catalog-tile-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.catalog-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(255, 248, 231, 0.2);
  border-radius: 999px;
  color: rgba(255, 248, 231, 0.72);
  font-size: 0.72rem;
  font-weight: 850;
}

.catalog-tile h3 {
  margin-top: 4px;
}

.catalog-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.catalog-details {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.catalog-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 36px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(239, 195, 91, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 231, 0.1), rgba(255, 248, 231, 0.04)),
    rgba(5, 23, 17, 0.78);
  box-shadow: var(--shadow);
}

.catalog-detail img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  border: 1px solid rgba(239, 195, 91, 0.24);
  border-radius: 6px;
}

.catalog-detail-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.catalog-detail-copy h3 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.catalog-detail-copy p {
  margin: 0;
  color: var(--muted);
}

.catalog-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.catalog-points li {
  padding: 12px;
  border: 1px solid rgba(239, 195, 91, 0.22);
  border-radius: 6px;
  background: rgba(255, 248, 231, 0.055);
  color: rgba(255, 248, 231, 0.82);
  font-weight: 700;
}

.catalog-source-note {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(239, 195, 91, 0.24);
  border-radius: 8px;
  background: rgba(255, 248, 231, 0.055);
  color: var(--muted);
}

.people-service {
  position: relative;
  overflow: hidden;
  background: #071910;
}

.people-service::before,
.people-service::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.people-service::before {
  background: var(--people-image) center / cover no-repeat;
  opacity: 0.32;
  filter: saturate(0.88) contrast(1.08);
}

.people-service::after {
  background:
    linear-gradient(90deg, rgba(2, 24, 14, 0.94), rgba(2, 24, 14, 0.72) 54%, rgba(2, 24, 14, 0.94)),
    radial-gradient(circle at 18% 20%, rgba(239, 195, 91, 0.16), transparent 34%);
}

.people-service .wrap {
  position: relative;
  z-index: 1;
}

.people-service .section-head {
  max-width: 820px;
}

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

.people-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(239, 195, 91, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 248, 231, 0.1), rgba(13, 60, 42, 0.48));
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.28);
}

.people-card strong {
  display: block;
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.people-card p,
.people-note {
  color: rgba(255, 248, 231, 0.78);
}

.people-note {
  max-width: 820px;
  margin: 20px 0 0;
}

.catalog-source-note strong {
  color: var(--gold);
}

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

.section-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.case-card {
  position: relative;
  min-height: 360px;
  grid-column: span 6;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 8px;
  overflow: hidden;
  background: #061711;
  box-shadow: var(--shadow);
}

.case-card.featured {
  grid-column: span 8;
  min-height: 430px;
}

.case-card.compact {
  grid-column: span 4;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--case-image) center / cover no-repeat;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 23, 17, 0.1), rgba(5, 23, 17, 0.86) 74%),
    linear-gradient(90deg, rgba(5, 23, 17, 0.54), transparent 58%);
}

.case-card:hover::before {
  transform: scale(1.07);
}

.case-card:hover {
  border-color: rgba(239, 195, 91, 0.58);
}

.case-copy {
  position: relative;
  z-index: 2;
  width: min(540px, 100%);
}

.case-card .eyebrow {
  margin: 0 0 10px;
}

.case-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.case-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.case-card .card-cta {
  margin-top: 16px;
}

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

.case-anchor-grid a {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: var(--paper);
  text-decoration: none;
  font-weight: 850;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 248, 231, 0.08), rgba(143, 208, 201, 0.055));
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.case-anchor-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 195, 91, 0.62);
}

.case-study-detail {
  padding: clamp(72px, 9vw, 118px) clamp(18px, 4vw, 64px);
  scroll-margin-top: 96px;
}

.case-study-detail.alt {
  background: rgba(255, 248, 231, 0.045);
}

.case-study-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.case-study-layout figure {
  min-height: 440px;
  margin: 0;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(5, 23, 17, 0.08), rgba(5, 23, 17, 0.24)),
    var(--case-image) center / cover no-repeat;
  box-shadow: var(--shadow);
}

.case-study-layout article {
  max-width: 760px;
}

.case-study-layout h2 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
}

.case-study-layout h3 {
  margin: 28px 0 10px;
  color: var(--gold);
}

.case-study-layout p {
  color: var(--muted);
  font-size: 1.04rem;
}

.case-study-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 8px;
}

.case-study-facts span {
  padding: 8px 11px;
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 800;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 999px;
  background: rgba(255, 248, 231, 0.06);
}

.case-story-section {
  padding-top: clamp(54px, 7vw, 88px);
}

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

.case-story-panel {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 248, 231, 0.1), rgba(143, 208, 201, 0.045));
  box-shadow: var(--shadow);
}

.case-story-panel h3 {
  margin-bottom: 12px;
  color: var(--gold);
}

.case-story-panel p {
  margin: 0;
  color: var(--muted);
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.case-gallery figure {
  min-height: 250px;
  margin: 0;
  border: 1px solid rgba(239, 195, 91, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(5, 23, 17, 0.02), rgba(5, 23, 17, 0.18)),
    var(--case-image) center / cover no-repeat;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.case-gallery figure:first-child {
  grid-column: span 2;
  min-height: 350px;
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 16px;
  align-items: stretch;
}

.mosaic img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.mosaic-stack {
  display: grid;
  gap: 16px;
}

.photo-gallery-section .section-head {
  max-width: 780px;
}

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

.photo-gallery-grid figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(239, 195, 91, 0.24);
  border-radius: 8px;
  background: rgba(255, 248, 231, 0.04);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.photo-gallery-grid figure:nth-child(1),
.photo-gallery-grid figure:nth-child(8) {
  grid-column: span 2;
}

.photo-gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.4s ease;
}

.photo-gallery-grid figure:hover img {
  transform: scale(1.06);
}

.photo-gallery-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 44px 16px 14px;
  color: var(--paper);
  font-weight: 850;
  background: linear-gradient(180deg, rgba(5, 23, 17, 0), rgba(5, 23, 17, 0.86));
}

.case-source-action {
  display: flex;
  margin-top: 26px;
}

.case-source-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 14px 20px;
  border: 1px solid rgba(239, 195, 91, 0.65);
  border-radius: 999px;
  background: var(--gold);
  color: #11150f;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(239, 195, 91, 0.2);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.case-source-link:hover {
  transform: translateY(-2px);
  background: #ffe08a;
  box-shadow: 0 20px 42px rgba(239, 195, 91, 0.3);
}

.quote {
  padding: clamp(28px, 5vw, 54px);
  background: linear-gradient(135deg, rgba(239, 195, 91, 0.13), rgba(143, 208, 201, 0.09));
}

.quote p {
  margin: 0;
  max-width: 920px;
  font-size: clamp(1.4rem, 2.7vw, 2.6rem);
  line-height: 1.18;
  color: var(--paper);
  font-weight: 850;
}

.authority {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.authority .section-head {
  position: sticky;
  top: 96px;
  margin-bottom: 0;
}

.authority-grid {
  display: grid;
  gap: 14px;
}

.authority-grid article {
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 248, 231, 0.1), rgba(255, 248, 231, 0.04));
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 8px;
}

.authority-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.references {
  overflow: hidden;
}

.logo-carousel {
  position: relative;
  margin: 26px 0 34px;
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(239, 195, 91, 0.18);
  border-bottom: 1px solid rgba(239, 195, 91, 0.18);
  background: linear-gradient(90deg, rgba(255, 248, 231, 0.02), rgba(255, 248, 231, 0.07), rgba(255, 248, 231, 0.02));
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  width: 54px;
  height: 100%;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(14, 42, 31, 1), rgba(14, 42, 31, 0));
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(14, 42, 31, 1), rgba(14, 42, 31, 0));
}

.logo-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 4px 0;
  animation: logoMarquee 36s linear infinite;
}

.logo-carousel:hover .logo-track,
.logo-carousel:focus-within .logo-track {
  animation-play-state: paused;
}

.logo-pill {
  flex: 0 0 172px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 248, 231, 0.18);
  border-radius: 6px;
  overflow: hidden;
}

.logo-pill img {
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
  filter: saturate(0.86) contrast(1.02);
}

.logo-arrow {
  display: none;
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 6px));
  }
}

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

.reference-grid article {
  padding: 22px;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 248, 231, 0.08), rgba(143, 208, 201, 0.055));
}

.reference-grid strong {
  display: block;
  color: var(--gold);
  font-size: 1.02rem;
  margin-bottom: 10px;
}

.reference-grid p {
  margin: 0;
  color: var(--muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.breadcrumbs {
  width: min(1180px, calc(100% - clamp(36px, 8vw, 128px)));
  margin: 18px auto -12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 248, 231, 0.64);
  font-size: 0.86rem;
}

.breadcrumbs a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 800;
}

.breadcrumbs a:hover {
  color: var(--paper);
}

.breadcrumbs span[aria-hidden="true"] {
  color: rgba(255, 248, 231, 0.34);
}

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

.decision-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 248, 231, 0.1), rgba(143, 208, 201, 0.055));
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.decision-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 195, 91, 0.62);
}

.decision-card span {
  color: var(--gold);
  font-weight: 900;
}

.decision-card p {
  margin: 0;
  color: var(--muted);
}

.decision-card strong {
  color: var(--gold);
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.local-grid article {
  padding: 18px;
  border: 1px solid rgba(239, 195, 91, 0.24);
  border-radius: 8px;
  background: rgba(255, 248, 231, 0.055);
}

.local-grid strong {
  display: block;
  color: var(--gold);
  margin-bottom: 8px;
}

.local-grid span {
  color: var(--muted);
}

.local-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.local-proof a {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(239, 195, 91, 0.26);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 248, 231, 0.08), rgba(143, 208, 201, 0.055));
}

.local-proof strong {
  color: var(--gold);
}

.local-proof span {
  color: var(--muted);
}

.case-related {
  padding-top: clamp(42px, 6vw, 72px);
}

.split-info {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.split-info p {
  color: var(--muted);
}

.info-list,
.cost-factors {
  display: grid;
  gap: 12px;
}

.info-list article,
.cost-factors div {
  padding: 18px;
  border: 1px solid rgba(239, 195, 91, 0.24);
  border-radius: 8px;
  background: rgba(255, 248, 231, 0.06);
}

.info-list strong,
.cost-factors strong {
  display: block;
  color: var(--gold);
  margin-bottom: 6px;
}

.info-list span,
.cost-factors span {
  color: var(--muted);
}

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

.budget-card {
  padding: 24px;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 8px;
  background: rgba(255, 248, 231, 0.07);
  box-shadow: var(--shadow);
}

.budget-card.featured {
  background: linear-gradient(135deg, rgba(239, 195, 91, 0.18), rgba(143, 208, 201, 0.08));
  border-color: rgba(239, 195, 91, 0.52);
}

.budget-card span {
  color: var(--gold);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.budget-card strong {
  display: block;
  margin: 14px 0;
  color: var(--gold);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.budget-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.tag {
  border: 1px solid rgba(255, 248, 231, 0.24);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

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

.step {
  border-top: 2px solid var(--gold);
  padding-top: 16px;
}

.step strong {
  color: var(--gold);
}

.calculator {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.45fr);
  gap: 18px;
  align-items: start;
}

.calc-panel {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  color: var(--muted);
  font-weight: 700;
}

input[type="range"], select {
  width: 100%;
}

select, input {
  min-height: 42px;
  border-radius: 6px;
  border: 1px solid rgba(255, 248, 231, 0.22);
  background: rgba(0, 0, 0, 0.24);
  color: var(--paper);
  padding: 0 12px;
}

textarea {
  width: 100%;
  min-height: 132px;
  border-radius: 6px;
  border: 1px solid rgba(255, 248, 231, 0.22);
  background: rgba(0, 0, 0, 0.24);
  color: var(--paper);
  padding: 12px;
  resize: vertical;
  font: inherit;
}

button {
  font: inherit;
  cursor: pointer;
}

select option {
  color: #11150f;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(239, 195, 91, 0.68);
  box-shadow: 0 0 0 3px rgba(239, 195, 91, 0.1);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: start;
}

.inquiry .section-head {
  position: sticky;
  top: 96px;
  margin-bottom: 0;
}

.inquiry-note {
  display: grid;
  gap: 7px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(239, 195, 91, 0.13), rgba(143, 208, 201, 0.07));
}

.inquiry-note strong {
  color: var(--gold);
}

.inquiry-note span {
  color: var(--muted);
}

.inquiry-form {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(239, 195, 91, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 231, 0.1), rgba(255, 248, 231, 0.045)),
    rgba(5, 23, 17, 0.82);
  box-shadow: var(--shadow);
}

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

.inquiry-form label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select {
  width: 100%;
  margin-top: 8px;
  font: inherit;
}

.inquiry-form textarea {
  margin-top: 8px;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(255, 248, 231, 0.46);
}

.consent {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  color: var(--muted) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-size: 0.92rem !important;
}

.consent input {
  width: auto;
  min-height: auto;
  margin: 4px 0 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

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

.price {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  color: var(--gold);
  font-weight: 900;
}

.faq details {
  border-bottom: 1px solid rgba(255, 248, 231, 0.12);
  padding: 18px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
}

.site-footer {
  padding: 38px clamp(18px, 4vw, 64px);
  border-top: 1px solid rgba(255, 248, 231, 0.12);
  color: var(--muted);
  background: #061711;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px 42px;
  align-items: start;
  padding: 38px clamp(18px, 4vw, 64px);
  border-top: 1px solid rgba(255, 248, 231, 0.12);
  color: var(--muted);
  background: #061711;
}

.footer a { color: var(--paper); }

.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
}

.footer-grid a { color: var(--paper); }

.local-entity {
  background: linear-gradient(135deg, rgba(28, 75, 55, 0.12), rgba(194, 108, 58, 0.08));
}

.local-entity-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.local-entity h2 { margin: 8px 0 0; }
.local-entity p { margin-top: 0; }
.local-entity a, .entity-links a { color: var(--accent); font-weight: 800; }
.entity-links { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 24px; }
.compact-footer-grid { width: 100%; }

.footer-contact {
  text-align: right;
}

.footer-projects {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 248, 231, 0.1);
  font-size: 0.92rem;
}

.footer-projects span {
  color: rgba(255, 248, 231, 0.58);
}

.footer-projects a {
  color: var(--paper);
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid rgba(239, 195, 91, 0.24);
  border-radius: 999px;
  background: rgba(239, 195, 91, 0.06);
}

.footer-projects a:hover {
  color: var(--gold);
  border-color: rgba(239, 195, 91, 0.7);
  background: rgba(239, 195, 91, 0.12);
}

.footer > .footer-projects { grid-column: 1 / -1; }

.form-feedback {
  grid-column: 1 / -1;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 800;
}

.form-feedback.is-success { color: #dff7e8; background: rgba(54, 150, 92, 0.2); border: 1px solid rgba(111, 211, 148, 0.5); }
.form-feedback.is-error { color: #ffe3dd; background: rgba(184, 66, 50, 0.2); border: 1px solid rgba(232, 112, 92, 0.5); }

.company-line {
  display: block;
  margin-top: 8px;
  color: rgba(255, 248, 231, 0.7);
  font-size: 0.92rem;
}

.cookie-banner {
  position: fixed;
  left: clamp(14px, 3vw, 32px);
  right: clamp(14px, 3vw, 32px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(980px, calc(100% - 28px));
  margin: 0 auto;
  padding: 16px;
  color: var(--paper);
  background: rgba(5, 23, 17, 0.96);
  border: 1px solid rgba(239, 195, 91, 0.4);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.page-hero {
  --hero-image: url("/assets/img/hero-lights.jpg");
  min-height: 58vh;
}

.venue-hero .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.36fr);
}

.venue-note {
  align-self: end;
}

.venue-intro .grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.venue-filter-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
  padding: clamp(18px, 3vw, 26px);
  background:
    linear-gradient(135deg, rgba(239, 195, 91, 0.13), rgba(143, 208, 201, 0.07)),
    rgba(255, 248, 231, 0.055);
  border: 1px solid rgba(239, 195, 91, 0.3);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.venue-filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.venue-filter-panel select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 6px;
  background: #092a1f;
  color: var(--paper);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 750;
  text-transform: none;
  letter-spacing: 0;
}

.venue-check {
  min-height: 46px;
  grid-auto-flow: column;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 6px;
  background: rgba(9, 42, 31, 0.74);
}

.venue-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.venue-check span {
  color: var(--paper);
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
}

.venue-filter-result {
  margin: 16px 0 0;
  color: var(--gold);
  font-weight: 850;
}

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

.venue-card {
  position: relative;
  min-height: 100%;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 248, 231, 0.11), rgba(255, 248, 231, 0.045)),
    rgba(255, 248, 231, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.venue-card p {
  color: var(--muted);
}

.venue-number {
  color: rgba(239, 195, 91, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.venue-card h3 {
  margin-top: 8px;
  color: var(--paper);
  font-size: clamp(1.42rem, 2vw, 2rem);
}

.venue-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.venue-fields div {
  padding: 12px;
  background: rgba(7, 31, 23, 0.58);
  border: 1px solid rgba(239, 195, 91, 0.18);
  border-radius: 8px;
}

.venue-fields dt {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.venue-fields dd {
  margin: 4px 0 0;
  color: #efe7d3;
  font-size: 0.94rem;
}

.venue-verdict {
  padding: 14px;
  background: rgba(239, 195, 91, 0.12);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  color: #f6ecd7;
}

.venue-watch {
  margin-bottom: 0;
}

.venue-card[hidden] {
  display: none;
}

.venue-source-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.35;
  text-decoration: none;
  border-bottom: 1px solid rgba(239, 195, 91, 0.38);
}

.venue-source-link:hover {
  color: var(--paper);
  border-bottom-color: var(--paper);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

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

.photo-card {
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-card.featured {
  grid-column: span 2;
}

.photo-card a {
  display: block;
  color: var(--paper);
  text-decoration: none;
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 260ms ease;
}

.photo-card.featured img {
  aspect-ratio: 2 / 1;
}

.photo-card a:hover img {
  transform: scale(1.025);
}

.photo-card figcaption {
  padding: 14px 16px 16px;
  color: #efe7d3;
  font-size: 0.94rem;
  line-height: 1.45;
}

.photo-card[hidden] {
  display: none;
}

@media (max-width: 900px) {
  .photo-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .photo-gallery-grid { grid-template-columns: 1fr; }
  .photo-card.featured { grid-column: auto; }
  .photo-card.featured img { aspect-ratio: 4 / 3; }
}

.source-note {
  margin: 28px 0 0;
  color: rgba(255, 248, 231, 0.68);
  font-size: 0.95rem;
}

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

.match-list div {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.match-list strong {
  color: var(--gold);
}

.match-list span {
  color: var(--paper);
}

.cta-panel {
  max-width: 820px;
  padding: clamp(26px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(239, 195, 91, 0.18), rgba(216, 75, 62, 0.08)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-panel p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.12rem;
}

.quick-links {
  position: fixed;
  right: clamp(12px, 2vw, 28px);
  top: 50%;
  z-index: 30;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(239, 195, 91, 0.45);
  border-radius: 999px;
  background: rgba(5, 23, 17, 0.86);
  color: var(--cream);
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.quick-links a:first-child {
  background: var(--gold);
  border-color: var(--gold);
  color: #11150f;
}

.quick-links a:hover {
  transform: translateX(-4px);
  border-color: var(--gold);
}

/* Blog */
.blog-hero { min-height: 58vh; }
.blog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.blog-card { display: flex; flex-direction: column; gap: 12px; padding: 18px; color: var(--cream); text-decoration: none; border: 1px solid rgba(242, 194, 79, .25); border-radius: 18px; background: rgba(7, 25, 20, .68); transition: transform .2s ease, border-color .2s ease; }
.blog-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.blog-card-image { min-height: 230px; border-radius: 12px; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.38)), var(--blog-image) center/cover; }
.blog-card h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2.15rem); }
.blog-card p { margin: 0; color: var(--muted); }
.blog-card strong { margin-top: auto; color: var(--gold); }
.breadcrumbs { display: flex; gap: 9px; flex-wrap: wrap; max-width: 1180px; margin: 0 auto; padding: 28px 24px 0; color: var(--muted); font-size: .92rem; }
.breadcrumbs a { color: var(--cream); }
.blog-article { max-width: 1180px; margin: 0 auto; padding: 22px 24px 80px; }
.article-head { position: relative; display: grid; align-items: end; min-height: 520px; padding: clamp(28px, 6vw, 70px); overflow: hidden; border: 1px solid rgba(242, 194, 79, .3); border-radius: 22px; background: linear-gradient(90deg, rgba(3,22,16,.96) 0%, rgba(3,22,16,.74) 58%, rgba(3,22,16,.28) 100%), var(--article-image) center/cover; }
.article-head > div { max-width: 820px; }
.article-head h1 { margin: 10px 0 18px; font-size: clamp(2.6rem, 6vw, 5.5rem); line-height: .98; }
.article-meta { margin-top: 22px; color: var(--muted); font-size: .93rem; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) minmax(230px, 1fr); gap: 48px; margin-top: 46px; }
.article-body { font-size: 1.08rem; line-height: 1.75; }
.article-body h2 { margin: 2.4em 0 .55em; font-size: clamp(1.7rem, 3.6vw, 2.75rem); line-height: 1.1; }
.article-body h3 { margin: 1.8em 0 .45em; font-size: 1.35rem; }
.article-body a { color: var(--gold); }
.article-body li + li { margin-top: .5em; }
.article-answer, .article-note { padding: 22px 24px; border-left: 4px solid var(--gold); border-radius: 0 12px 12px 0; background: rgba(242, 194, 79, .09); }
.article-aside { align-self: start; position: sticky; top: 110px; display: grid; gap: 12px; padding: 22px; border: 1px solid rgba(242, 194, 79, .25); border-radius: 16px; background: rgba(7, 25, 20, .72); }
.article-aside a:not(.btn) { color: var(--cream); }

@media (max-width: 880px) {
  .local-entity-grid { grid-template-columns: 1fr; }
  .site-header { align-items: flex-start; }
  .nav { display: none; }
  .hero-grid, .venue-hero .hero-grid, .grid, .grid.two, .grid.four, .venue-intro .grid.four, .venue-filter-panel, .mosaic, .photo-gallery-grid, .steps, .calculator, .footer, .footer-grid, .authority, .reference-grid, .case-grid, .case-anchor-grid, .case-study-layout, .case-story-grid, .case-gallery, .inquiry-layout, .form-grid, .catalog-grid, .catalog-detail, .catalog-points, .venue-grid, .venue-fields, .match-list, .decision-grid, .local-grid, .split-info, .budget-grid, .people-grid, .blog-grid, .article-layout {
    grid-template-columns: 1fr;
  }
  .photo-gallery-grid figure:nth-child(1),
  .photo-gallery-grid figure:nth-child(8) {
    grid-column: auto;
  }
  .case-card, .case-card.featured, .case-card.compact {
    grid-column: auto;
    min-height: 330px;
  }
  .case-study-layout figure {
    min-height: 300px;
  }
  .case-gallery figure:first-child {
    grid-column: auto;
    min-height: 280px;
  }
  .case-gallery figure {
    min-height: 240px;
  }
  .footer-contact { text-align: left; }
  .article-head { min-height: 460px; padding: 28px 22px; background: linear-gradient(180deg, rgba(3,22,16,.48), rgba(3,22,16,.96)), var(--article-image) center/cover; }
  .article-aside { position: static; }
  .footer-projects { display: grid; }
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }
  .cookie-actions {
    flex-wrap: wrap;
  }
  .authority .section-head, .inquiry .section-head { position: static; }
  .logo-track {
    padding-left: 0;
    padding-right: 0;
  }
  .logo-arrow {
    display: none;
  }
  .logo-pill {
    flex-basis: 148px;
  }
  .quick-links {
    top: auto;
    right: 12px;
    bottom: 86px;
    transform: none;
  }
  .quick-links a {
    min-width: 44px;
    width: 44px;
    min-height: 44px;
    padding: 0;
  }
  .quick-links a span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .quick-links a::before {
    content: "↑";
    font-size: 1.2rem;
  }
  .quick-links a:last-child::before {
    content: "P";
    font-size: 0.95rem;
  }
  h1 { font-size: clamp(2.7rem, 15vw, 4.8rem); }
  .hero { min-height: 72vh; }
}

/* Teplá světlá varianta — 19. 9. 2026
   Mění pouze barevné podání. Obsah, rozvržení a funkce zůstávají beze změny. */
:root {
  --cream-bg: #f4eddf;
  --cream-bg-soft: #fbf7ee;
  --cream-card: rgba(255, 252, 245, 0.88);
  --cream-card-solid: #fffaf0;
  --forest: #123b30;
  --forest-deep: #08291f;
  --forest-muted: #54675f;
  --warm-line: rgba(148, 108, 35, 0.28);
  --warm-shadow: 0 18px 48px rgba(70, 52, 24, 0.12);
  color-scheme: light;
}

body {
  background: var(--cream-bg);
  color: var(--forest-deep);
}

body::before {
  background:
    radial-gradient(circle at 82% 12%, rgba(239, 195, 91, 0.20), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), transparent 38%),
    linear-gradient(180deg, #fbf7ee 0%, #f3eadb 55%, #eee2cf 100%);
}

.site-header {
  background: rgba(250, 245, 234, 0.94);
  border-bottom-color: rgba(18, 59, 48, 0.12);
  box-shadow: 0 8px 28px rgba(70, 52, 24, 0.08);
}

.brand span:last-child,
.nav,
.nav a,
.site-header .btn:not(.primary) {
  color: var(--forest-deep);
}

.nav a:hover { color: #9a6a12; }

.xmas-nav {
  color: #93640d !important;
  background: rgba(239, 195, 91, 0.16);
  border-color: rgba(154, 106, 18, 0.48);
}

.section.alt,
.local-entity,
.reference-strip,
.venue-filter-panel {
  background: rgba(255, 255, 255, 0.36);
}

.section-head p,
.card p,
.program-card p,
.mini-card p,
.quote p,
.proof-card span,
.breadcrumbs,
.article-meta,
.blog-card p,
.footer,
.footer-grid,
.footer-note,
.local-entity p,
.case-card p,
.venue-card p,
.person-card p,
.catalog-card p,
.decision-card p,
.budget-card p,
.article-body p,
.article-body li {
  color: var(--forest-muted);
}

.proof-card,
.card,
.program-card,
.quote,
.mini-card,
.case-card,
.case-anchor,
.case-story,
.case-result,
.venue-card,
.venue-filter-panel,
.catalog-card,
.catalog-detail,
.decision-card,
.budget-card,
.person-card,
.local-card,
.article-aside,
.blog-card,
.inquiry-layout,
.form-card,
.calculator,
.reference-card {
  background: var(--cream-card);
  border-color: var(--warm-line);
  box-shadow: var(--warm-shadow);
}

.section h2,
.section h3,
.card h3,
.program-card h3,
.mini-card h3,
.case-card h2,
.case-card h3,
.venue-card h2,
.venue-card h3,
.catalog-card h2,
.catalog-card h3,
.article-body h2,
.article-body h3,
.article-aside h2,
.article-aside h3,
.footer strong {
  color: var(--forest-deep);
}

.tag,
.chip,
.case-anchor,
.filter-chip,
.venue-tag,
.quick-fact {
  background: rgba(255, 252, 245, 0.72);
  border-color: var(--warm-line);
  color: var(--forest-deep);
}

input,
textarea,
select {
  background: #fffdf8;
  color: var(--forest-deep);
  border-color: rgba(18, 59, 48, 0.22);
}

input::placeholder,
textarea::placeholder { color: #7d8984; }

.footer,
.footer-grid {
  background: #e9ddc8;
  border-color: rgba(18, 59, 48, 0.14);
}

.footer a,
.footer-grid a,
.footer-projects a,
.article-aside a:not(.btn) {
  color: var(--forest-deep);
}

.cookie-banner {
  background: rgba(255, 250, 240, 0.98);
  color: var(--forest-deep);
  border-color: rgba(154, 106, 18, 0.38);
  box-shadow: 0 18px 44px rgba(70, 52, 24, 0.18);
}

.cookie-banner p,
.cookie-banner small { color: var(--forest-muted); }

/* Fotografie zůstávají výrazné; tmavý gradient drží čitelnost světlého hero textu. */
.hero,
.venue-hero,
.case-study-hero,
.article-head {
  color: #fff8e7;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(8, 41, 31, 0.88), rgba(8, 41, 31, 0.60) 45%, rgba(8, 41, 31, 0.10)),
    linear-gradient(0deg, rgba(244, 237, 223, 0.86), transparent 32%);
}

.hero .lead { color: rgba(255, 250, 239, 0.92); }

.hero .proof-card {
  background: rgba(255, 250, 240, 0.88);
  border-color: rgba(239, 195, 91, 0.72);
  box-shadow: 0 18px 45px rgba(8, 41, 31, 0.18);
}

.hero .proof-card span { color: #52665e; }

.article-head .article-meta,
.article-head p { color: rgba(255, 248, 231, 0.86); }

.article-answer,
.article-note {
  background: rgba(239, 195, 91, 0.16);
  color: var(--forest-deep);
}

.logo-track::before {
  background: linear-gradient(90deg, rgba(244, 237, 223, 1), rgba(244, 237, 223, 0));
}

.logo-track::after {
  background: linear-gradient(270deg, rgba(244, 237, 223, 1), rgba(244, 237, 223, 0));
}

/* Světlé povrchy napříč katalogy, referencemi a formuláři. */
.theme-chip,
.catalog-tile,
.catalog-detail,
.catalog-points li,
.catalog-source-note,
.case-anchor-grid a,
.case-story-panel,
.authority-grid article,
.reference-grid article,
.decision-card,
.local-grid article,
.local-proof a,
.info-list article,
.cost-factors div,
.budget-card,
.calc-panel,
.inquiry-note,
.inquiry-form,
.venue-filter-panel,
.venue-card,
.venue-fields div,
.photo-card,
.match-list div,
.cta-panel,
.blog-card {
  background: var(--cream-card);
  border-color: var(--warm-line);
  color: var(--forest-deep);
  box-shadow: var(--warm-shadow);
}

.theme-chip p,
.catalog-tile p,
.catalog-detail-copy p,
.catalog-points li,
.catalog-source-note,
.case-study-layout p,
.case-story-panel p,
.authority-grid p,
.reference-grid p,
.decision-card p,
.local-grid span,
.local-proof span,
.split-info p,
.info-list span,
.cost-factors span,
.budget-card p,
.inquiry-note span,
.venue-card p,
.source-note,
.cta-panel p,
.blog-card p {
  color: var(--forest-muted);
}

.catalog-pill,
.case-anchor-grid a,
.case-study-facts span,
.venue-filter-panel label,
.venue-check span,
.venue-card h3,
.venue-fields dd,
.venue-verdict,
.photo-card a,
.photo-card figcaption,
.match-list span {
  color: var(--forest-deep);
}

.catalog-pill,
.case-study-facts span,
.venue-fields div,
.venue-check {
  background: rgba(255, 252, 245, 0.76);
  border-color: var(--warm-line);
}

.quote {
  background: linear-gradient(135deg, rgba(239, 195, 91, 0.24), rgba(255, 252, 245, 0.82));
}

.quote p { color: var(--forest-deep); }

.site-footer,
.footer,
.footer-grid {
  background: #e9ddc8;
  color: var(--forest-muted);
  border-color: rgba(18, 59, 48, 0.14);
}

.footer-projects {
  border-color: rgba(18, 59, 48, 0.14);
}

.footer-projects span,
.company-line { color: var(--forest-muted); }

.footer-projects a {
  color: var(--forest-deep);
  background: rgba(255, 252, 245, 0.58);
}

.venue-filter-panel select,
select,
input,
textarea {
  background: #fffdf8;
  color: var(--forest-deep);
  border-color: rgba(18, 59, 48, 0.22);
}

.inquiry-form label,
.consent,
label { color: var(--forest-muted) !important; }

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder { color: #7d8984; }

.faq details { border-color: rgba(18, 59, 48, 0.14); }

/* Sekce postavené na fotografii zůstávají záměrně tmavé kvůli čitelnosti. */
.people-service,
.people-service h2,
.people-service h3,
.people-service .section-head p,
.people-service .people-card p,
.people-service .people-note,
.case-card,
.case-card h2,
.case-card h3,
.case-card p,
.case-card .card-cta,
.photo-gallery-grid figcaption {
  color: #fff8e7;
}

.people-card {
  background: linear-gradient(135deg, rgba(255, 248, 231, 0.10), rgba(13, 60, 42, 0.58));
  border-color: rgba(239, 195, 91, 0.42);
}

.case-card {
  background: #061711;
  box-shadow: 0 20px 58px rgba(8, 41, 31, 0.20);
}

.quick-links a:not(:first-child) {
  background: rgba(8, 41, 31, 0.92);
  color: #fff8e7;
}

.article-aside a:not(.btn) { color: #8a5c08; }

/* Úvodní obraz přesně podle schváleného světlého náhledu. */
.hero::before {
  filter: saturate(0.92) brightness(1.18) contrast(0.92);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.96) 0%, rgba(255, 250, 240, 0.84) 38%, rgba(255, 250, 240, 0.42) 66%, rgba(255, 250, 240, 0.10) 100%),
    linear-gradient(0deg, rgba(244, 237, 223, 0.72), rgba(244, 237, 223, 0.02) 48%);
}

.hero,
.hero h1,
.hero h2,
.hero h3 {
  color: var(--forest-deep);
}

.hero .lead {
  color: #183c33;
}

.hero .btn:not(.primary) {
  color: var(--forest-deep);
  border-color: rgba(18, 59, 48, 0.42);
  background: rgba(255, 252, 245, 0.56);
}

.hero .proof-card {
  background: rgba(255, 252, 245, 0.82);
  color: var(--forest-deep);
  backdrop-filter: blur(8px);
}

.hero .proof-card strong { color: #d79e24; }

/* Sezonní pruh zůstává výrazný i ve světlé variantě. */
.season-strip {
  position: relative;
  z-index: 19;
  display: flex !important;
  min-height: 54px;
  background: linear-gradient(90deg, #702330, #963749 50%, #702330);
  color: #fff;
  border-bottom-color: rgba(239, 195, 91, 0.62);
  box-shadow: 0 8px 24px rgba(82, 22, 33, 0.18);
}

/* Jemné doladění úvodu pro notebooky: více prostoru pro text a CTA. */
.hero h1 {
  font-size: clamp(2.8rem, 5.7vw, 5.15rem);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.95) 0%, rgba(255, 250, 240, 0.81) 38%, rgba(255, 250, 240, 0.34) 66%, rgba(255, 250, 240, 0.03) 100%),
    linear-gradient(0deg, rgba(244, 237, 223, 0.66), rgba(244, 237, 223, 0.01) 48%);
}

.cookie-banner {
  bottom: 10px;
  width: min(820px, calc(100% - 24px));
  padding: 10px 14px;
  gap: 14px;
  font-size: .88rem;
}

.cookie-banner .btn {
  min-height: 38px;
  padding-inline: 16px;
}

@media (min-width: 881px) and (max-width: 1450px) {
  .site-header { padding-inline: clamp(18px, 2.8vw, 42px); }
  .nav { gap: 7px; font-size: .82rem; }
  .nav .btn { min-height: 40px; padding-inline: 15px; }
}

@media (min-width: 881px) {
  .cookie-banner {
    left: auto;
    right: 12px;
    width: min(480px, calc(100% - 24px));
    margin: 0;
  }
}

@media (max-width: 880px) {
  .cookie-banner { gap: 8px; padding: 10px 12px; }
  .cookie-banner p { font-size: .82rem; line-height: 1.35; }
  .cookie-actions { justify-content: flex-end; }
}

/* Kompaktní zápatí: obě adresy jsou na desktopu vedle sebe. */
.footer-grid {
  grid-template-columns: minmax(250px, 1.35fr) minmax(145px, .7fr) minmax(145px, .7fr) auto;
  column-gap: clamp(22px, 3vw, 44px);
}

.footer-location {
  line-height: 1.55;
}

@media (min-width: 881px) and (max-width: 1100px) {
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

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