/* Sekce 2 – O areálu */

.sec {
  position: relative;
  padding: clamp(56px, 8vh, 96px) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 80px;
  }
}

/* Text column */
.about-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
.about-text.is-in {
  opacity: 1;
  transform: translateY(0);
}
.about-h2 {
  margin-top: 16px;
  text-wrap: balance;
  max-width: 16ch;
}
.about-body {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 540px;
}
.about-body p {
  margin: 0;
  text-wrap: pretty;
}
.about-cta {
  margin-top: 32px;
}

/* Photo column */
.about-photo {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1);
  transition-delay: .15s;
}
.about-photo.is-in {
  opacity: 1;
  transform: translateX(0);
}
.about-photo-frame {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: hsl(var(--br-surface));
}
.about-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-photo-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    hsl(var(--br-bg-deep) / 0) 60%,
    hsl(var(--br-bg-deep) / 0.18) 100%);
}

/* Stats row – full width below the grid */
.about-stats-row {
  margin-top: clamp(48px, 7vh, 96px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 900px) {
  .about-stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .about-stats-row { grid-template-columns: 1fr; }
}

.about-stat {
  position: relative;
  padding: var(--s-6);
  min-height: 168px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1);
  transition-delay: calc(var(--i, 0) * 100ms + 120ms);
}
.about-stats-row.is-in .about-stat {
  opacity: 1;
  transform: translateY(0);
}
.about-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  color: hsl(var(--br-navy-pale));
  background: hsl(var(--br-navy-cta-hover) / 0.10);
}
.about-stat .stat-num {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.025em;
}
.about-stat .stat-label {
  font-size: 13.5px;
  color: hsl(var(--br-muted));
  max-width: 18ch;
  text-wrap: balance;
}

.about-rail-wrap {
  margin-top: clamp(32px, 5vh, 56px);
}

@media (prefers-reduced-motion: reduce) {
  .about-text, .about-photo, .about-stat {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ============================================================
   Sekce 3 – Prostory k pronájmu
   ============================================================ */
.sec-prostory {
  padding-top: clamp(40px, 6vh, 80px); /* tighter — rail above already separates */
}

.prostory-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vh, 56px);

  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1);
}
.prostory-header.is-in {
  opacity: 1;
  transform: translateY(0);
}
.prostory-h2 {
  margin-top: 16px;
  text-wrap: balance;
}
.prostory-sub {
  margin: 20px auto 0;
  max-width: 560px;
  text-wrap: pretty;
}

.prostory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) {
  .prostory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .prostory-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
}

/* Card */
.prostor-card {
  display: flex;
  flex-direction: column;
  background: hsl(var(--br-surface));
  border: 1px solid hsl(var(--br-border));
  border-radius: var(--r-card);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;

  opacity: 0;
  transform: translateY(20px);
  /* enter animation */
}
.prostor-card.is-in {
  animation: cardIn .8s cubic-bezier(.2,.6,.2,1) forwards;
  animation-delay: calc(var(--i, 0) * 120ms + 120ms);
}
@keyframes cardIn {
  to { opacity: 1; transform: translateY(0); }
}
.prostor-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-card-hover);
  border-color: hsl(var(--br-navy-pale) / 0.4);
}

.prostor-img {
  margin: 0;
  border-radius: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.prostor-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.prostor-card:hover .prostor-img img { transform: scale(1.05); }

.prostor-body {
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.prostor-title {
  margin: 0 0 8px;
  color: hsl(var(--br-fg));
}
.prostor-area {
  font-size: 14px;
  color: hsl(var(--br-navy-pale));
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.prostor-desc {
  margin: 0 0 24px;
  flex: 1;
  text-wrap: pretty;
}
.prostor-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  color: hsl(var(--br-navy-pale));
  letter-spacing: 0.01em;
  transition: color .15s ease, gap .2s ease;
}
.prostor-card:hover .prostor-cta {
  color: hsl(var(--br-fg));
  gap: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .prostor-card { opacity: 1 !important; transform: none !important; animation: none !important; }
  .prostory-header { opacity: 1 !important; transform: none !important; transition: none !important; }
}


/* ============================================================
   Sekce 4 – Aktuální nabídka (Listing)
   ============================================================ */
.sec-nabidka {
  padding-top: clamp(40px, 6vh, 80px);
}

/* small button modifier used in listing cards */
.btn-sm {
  padding: 9px 14px;
  font-size: 13px;
  gap: 6px;
}

.nabidka-header {
  max-width: 1100px;
  margin-bottom: clamp(40px, 6vh, 64px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1);
}
.nabidka-header.is-in {
  opacity: 1;
  transform: translateY(0);
}
.nabidka-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 32px;
}
.nabidka-head-text {
  max-width: 720px;
}
.nabidka-h2 {
  margin-top: 16px;
  text-wrap: balance;
}
.nabidka-updated {
  font-size: 12px;
  color: hsl(var(--br-muted));
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding-bottom: 6px;
}
.nabidka-sub {
  margin-top: 20px;
  max-width: 640px;
  text-wrap: pretty;
}

.nabidka-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .nabidka-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .nabidka-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.listing-card {
  background: hsl(var(--br-surface));
  border: 1px solid hsl(var(--br-border));
  border-radius: var(--r-card);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;

  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s cubic-bezier(.2,.6,.2,1),
              transform .7s cubic-bezier(.2,.6,.2,1),
              border-color .2s ease;
  transition-delay: calc(var(--i, 0) * 100ms + 80ms);
}
.listing-card.is-in {
  opacity: 1;
  transform: translateY(0);
}
.listing-card:hover {
  border-color: hsl(var(--br-navy-pale) / 0.4);
}

.listing-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.listing-thumb {
  flex: 0 0 auto;
  width: 96px;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: hsl(var(--br-bg-deep));
}
.listing-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 480px) {
  .listing-thumb { width: 72px; }
}
.listing-head-info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.listing-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.listing-building {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.2;
  color: hsl(var(--br-fg));
}
.listing-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(var(--br-navy-pale));
  border: 1px solid hsl(var(--br-navy-pale) / 0.4);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex: 0 0 auto;
}
.listing-area {
  font-size: 16px;
  color: hsl(var(--br-navy-pale));
  font-weight: 500;
  letter-spacing: -0.01em;
}
.listing-type {
  font-size: 13px;
  color: hsl(var(--br-muted));
  text-wrap: balance;
}

.listing-divider {
  height: 1px;
  background: hsl(var(--br-border-soft));
  margin: 0 -2px;
}

.listing-data {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.listing-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13.5px;
}
.listing-row dt {
  width: 56px;
  flex: 0 0 auto;
  color: hsl(var(--br-muted));
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.listing-row dd {
  margin: 0;
  color: hsl(var(--br-fg));
  font-weight: 500;
}

.listing-cta {
  margin-top: 4px;
  display: flex;
  gap: 8px;
}
.listing-cta .btn {
  flex: 1;
  justify-content: center;
}

/* Banner Na míru */
.nabidka-banner {
  margin-top: clamp(48px, 7vh, 72px);
  background:
    linear-gradient(120deg,
      hsl(var(--br-navy-cta) / 0.10) 0%,
      hsl(var(--br-surface) / 0) 60%),
    hsl(var(--br-surface));
  border: 1px solid hsl(var(--br-border));
  border-left: 3px solid hsl(var(--br-navy-cta-hover));
  border-radius: var(--r-card);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1);
}
.nabidka-banner.is-in {
  opacity: 1;
  transform: translateY(0);
}
.nabidka-banner-text {
  max-width: 540px;
  flex: 1 1 360px;
}
.nabidka-banner-h {
  margin: 0 0 10px;
  color: hsl(var(--br-fg));
}
.nabidka-banner-body {
  margin: 0;
  text-wrap: pretty;
}
.nabidka-banner-cta {
  flex: 0 0 auto;
}
@media (max-width: 640px) {
  .nabidka-banner { flex-direction: column; align-items: flex-start; }
  .nabidka-banner-cta { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .nabidka-header, .listing-card, .nabidka-banner {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ============================================================
   Sekce 5 – Proč BUS real (Asymetrické dlaždice)
   ============================================================ */
.sec-vyhody {
  padding-top: clamp(40px, 6vh, 80px);
}

.vyhody-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vh, 56px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1);
}
.vyhody-header.is-in {
  opacity: 1;
  transform: translateY(0);
}
.vyhody-h2 {
  margin-top: 16px;
  text-wrap: balance;
}
.vyhody-sub {
  margin: 18px auto 0;
  max-width: 580px;
  text-wrap: pretty;
}

/* 12-col asymmetric grid */
.vyhody-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: clamp(40px, 6vw, 80px);
  row-gap: 0;
  border-top: 1px solid hsl(var(--br-border) / 0.5);
}
@media (min-width: 768px) {
  .vyhody-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.vyhoda {
  position: relative;
  padding: clamp(24px, 3vw, 36px) 0 clamp(24px, 3vw, 36px);
  border-bottom: 1px solid hsl(var(--br-border) / 0.5);

  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s cubic-bezier(.2,.6,.2,1),
              transform .7s cubic-bezier(.2,.6,.2,1);
  transition-delay: var(--enter-delay, 0ms);
}
.vyhoda.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 768px) {
  .vyhoda:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .vyhoda:nth-child(odd)::after {
    content: '';
    position: absolute;
    top: 24px;
    bottom: 24px;
    right: calc(clamp(40px, 6vw, 80px) / -2);
    width: 1px;
    background: hsl(var(--br-border) / 0.5);
  }
}
@media (max-width: 767px) {
  .vyhoda:last-child { border-bottom: none; }
}

.vyhoda-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: hsl(var(--br-navy-pale));
  margin: 0;
}
.vyhoda-tick {
  display: block;
  width: 24px;
  height: 1px;
  background: hsl(var(--br-navy-cta-hover) / 0.5);
  margin: 10px 0 14px;
}
.vyhoda-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.2;
  color: hsl(var(--br-fg));
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.vyhoda-body {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: hsl(var(--br-fg-dim));
  text-wrap: pretty;
  max-width: 42ch;
}

.vyhody-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 6vh, 64px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1);
}
.vyhody-cta-wrap.is-in {
  opacity: 1;
  transform: translateY(0);
}
.vyhody-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: hsl(var(--br-navy-pale));
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color .15s ease, gap .2s ease;
}
.vyhody-cta:hover {
  color: hsl(var(--br-fg));
  gap: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .vyhody-header, .vyhoda, .vyhody-cta-wrap {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}



/* ============================================================
   Sekce 6 – Příběh + časová osa
   ============================================================ */
.sec-pribeh {
  padding: clamp(56px, 8vh, 96px) 0 clamp(56px, 8vh, 88px);
}

.pribeh-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vh, 64px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
.pribeh-header.is-in {
  opacity: 1;
  transform: translateY(0);
}
.pribeh-h2 {
  margin-top: 16px;
  text-wrap: balance;
}
.pribeh-intro {
  margin: 24px auto 0;
  max-width: 640px;
  text-wrap: pretty;
  line-height: 1.7;
  font-size: clamp(17px, 1.4vw, 19px);
}

/* Timeline carousel – horizontal scrubber */
.pr-stage {
  position: relative;
  margin: clamp(32px, 5vh, 56px) auto 0;
  max-width: 1080px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
  outline: none;
}
.pr-stage.is-in {
  opacity: 1;
  transform: translateY(0);
}
.pr-stage:focus-visible .pr-slides-wrap {
  box-shadow: 0 0 0 2px hsl(var(--br-navy-cta-hover));
}

/* Slides + arrows area — arrows live here as siblings of the wrap so they
   can sit outside the overflow:hidden viewport without being clipped. */
.pr-slides-area {
  position: relative;
}

/* Slides viewport */
.pr-slides-wrap {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  background: hsl(var(--br-surface));
  border: 1px solid hsl(var(--br-border));
}
.pr-slides-track {
  display: flex;
  width: 100%;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}

/* Single slide */
.pr-slide {
  flex: 0 0 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .pr-slide {
    grid-template-columns: 1.05fr 1fr;
  }
}

.pr-slide-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: hsl(var(--br-bg-deep));
  overflow: hidden;
}
@media (min-width: 540px) and (max-width: 767px) {
  .pr-slide-media { aspect-ratio: 16 / 10; }
}
@media (min-width: 768px) {
  .pr-slide-media { aspect-ratio: auto; min-height: 380px; }
}
.pr-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
}

.pr-slide-credit {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsl(var(--br-fg) / 0.85);
  background: hsl(var(--br-bg-deep) / 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 5px 9px;
  border-radius: 4px;
  pointer-events: none;
  margin: 0;
}
@media (min-width: 768px) {
  .pr-slide-credit { left: 16px; bottom: 16px; font-size: 11px; }
}

.pr-slide-ph {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background:
    linear-gradient(135deg,
      hsl(var(--br-bg-deep)) 0%,
      hsl(var(--br-surface)) 100%);
  border-right: 1px solid hsl(var(--br-border));
}
@media (max-width: 767px) {
  .pr-slide-ph { border-right: 0; border-bottom: 1px solid hsl(var(--br-border)); }
}
.pr-ph-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(var(--br-muted));
  padding: 4px 10px;
  border: 1px solid hsl(var(--br-border));
  border-radius: 3px;
}
.pr-ph-cap {
  font-size: 12px;
  color: hsl(var(--br-muted));
  text-align: center;
  max-width: 280px;
  line-height: 1.5;
}

/* No-photo slide → year as huge background */
.pr-slide-no-photo {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 40%, hsl(var(--br-navy-cta-hover) / 0.18) 0%, transparent 60%),
    hsl(var(--br-bg-deep));
  border-right: 1px solid hsl(var(--br-border));
}
@media (max-width: 767px) {
  .pr-slide-no-photo { border-right: 0; border-bottom: 1px solid hsl(var(--br-border)); }
}
.pr-no-photo-year {
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: hsl(var(--br-fg) / 0.12);
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}

.pr-slide-text {
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pr-slide-year {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(var(--br-navy-pale));
}
.pr-slide.is-key .pr-slide-year {
  color: hsl(var(--br-navy-cta-hover));
}
.pr-slide-h {
  margin: 14px 0 0;
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: hsl(var(--br-fg));
  text-wrap: balance;
}
.pr-slide-body {
  margin: 16px 0 0;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: hsl(var(--br-fg-dim));
  text-wrap: pretty;
}

/* Arrows */
.pr-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--br-bg-deep) / 0.85);
  border: 1px solid hsl(var(--br-border));
  border-radius: 50%;
  color: hsl(var(--br-fg));
  cursor: pointer;
  z-index: 3;
  transition: background .15s ease, border-color .15s ease, opacity .15s ease, transform .15s ease;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.pr-arrow:hover {
  background: hsl(var(--br-navy-cta));
  border-color: hsl(var(--br-navy-cta));
  color: hsl(var(--br-fg));
}
.pr-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
/* Default (mobile/tablet < 768px): arrows inside the card */
.pr-arrow-prev { left: 8px; }
.pr-arrow-next { right: 8px; }

/* Desktop: push arrows fully outside the slide card so they don't
   overlap the photo on the left or the description text on the right. */
@media (min-width: 768px) {
  .pr-arrow-prev { left: -22px; }
  .pr-arrow-next { right: -22px; }
}

/* Wide viewports — full gap outside the card (room exists in container) */
@media (min-width: 1180px) {
  .pr-arrow-prev { left: -56px; }
  .pr-arrow-next { right: -56px; }
}

@media (max-width: 480px) {
  .pr-arrow { width: 38px; height: 38px; }
  .pr-arrow-prev { left: 6px; }
  .pr-arrow-next { right: 6px; }
}

/* Timeline rail with ticks */
.pr-rail-wrap {
  position: relative;
  margin: 36px 8px 0;
  padding-top: 8px;
}
.pr-rail {
  position: relative;
  height: 2px;
  background: hsl(var(--br-border));
  border-radius: 2px;
  overflow: hidden;
}
.pr-rail-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg,
    hsl(var(--br-navy-cta)) 0%,
    hsl(var(--br-navy-cta-hover)) 100%);
  border-radius: 2px;
  transition: width .55s cubic-bezier(.2,.7,.2,1);
}
.pr-ticks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  z-index: 2;
  margin-top: -10px;
}
.pr-tick {
  display: flex;
  justify-content: center;
}
.pr-tick-btn {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: hsl(var(--br-muted));
  font: inherit;
  transition: color .2s ease;
}
.pr-tick-btn:hover { color: hsl(var(--br-fg)); }
.pr-tick-btn:focus-visible {
  outline: 2px solid hsl(var(--br-navy-cta-hover));
  outline-offset: 4px;
  border-radius: 4px;
}
.pr-tick-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: hsl(var(--br-bg));
  border: 2px solid hsl(var(--br-border));
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.pr-tick.is-past .pr-tick-dot {
  background: hsl(var(--br-navy-cta-hover));
  border-color: hsl(var(--br-navy-cta-hover));
}
.pr-tick.is-active .pr-tick-dot {
  background: hsl(var(--br-navy-cta-hover));
  border-color: hsl(var(--br-navy-cta-hover));
  transform: scale(1.2);
  box-shadow: 0 0 0 5px hsl(var(--br-navy-cta-hover) / 0.18);
}
.pr-tick.is-key .pr-tick-dot {
  border-width: 3px;
}
.pr-tick-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  display: none;
}
.pr-tick-year {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: inherit;
  display: none;
}
.pr-tick.is-active .pr-tick-year,
.pr-tick.is-active .pr-tick-label {
  color: hsl(var(--br-fg));
}
@media (min-width: 640px) {
  .pr-tick-year { display: inline; }
}
@media (min-width: 900px) {
  .pr-tick-label { display: inline; }
  .pr-tick-year { display: none; }
  /* On wide screens prefer short label; show year on hover/active via title */
}
@media (min-width: 1100px) {
  .pr-tick-year { display: inline; }
  .pr-tick-label { display: inline; opacity: 0.5; }
  .pr-tick.is-active .pr-tick-label { opacity: 1; }
}

/* Counter */
.pr-counter {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: hsl(var(--br-fg) / 0.6);
  background: hsl(var(--br-bg-deep) / 0.7);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid hsl(var(--br-border));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 3;
  pointer-events: none;
}
.pr-counter-cur { color: hsl(var(--br-fg)); font-weight: 600; }
.pr-counter-sep { margin: 0 4px; color: hsl(var(--br-muted)); }

@media (prefers-reduced-motion: reduce) {
  .pr-stage { opacity: 1 !important; transform: none !important; transition: none !important; }
  .pr-slides-track { transition: none !important; }
  .pr-rail-fill { transition: none !important; }
}

/* Pull quote */
.pribeh-quote {
  position: relative;
  max-width: 720px;
  margin: clamp(32px, 5vh, 56px) auto 0;
  text-align: center;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
.pribeh-quote.is-in {
  opacity: 1;
  transform: translateY(0);
}
.pribeh-quote-mark {
  position: absolute;
  left: -8px;
  top: -32px;
  font-family: var(--f-display);
  font-size: 96px;
  line-height: 1;
  color: hsl(var(--br-navy-pale));
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
}
.pribeh-quote blockquote {
  margin: 0;
  padding: 0;
}
.pribeh-quote blockquote p {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: hsl(var(--br-fg));
  text-wrap: balance;
  letter-spacing: -0.01em;
}

@media (prefers-reduced-motion: reduce) {
  .pribeh-header,
  .mile-year,
  .mile-h,
  .mile-body,
  .mile-photo,
  .pribeh-quote {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .mile-photo { opacity: 0.92 !important; }
  .mile-photo-ph { opacity: 0.85 !important; }
}



/* ============================================================
   Sekce 7 – Sedlčany teaser
   ============================================================ */
.sec-sedlcany {
  position: relative;
  padding: clamp(64px, 9vh, 104px) 0;
  overflow: hidden;
  isolation: isolate;
}
.sedl-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.sedl-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: sedlKenBurns 30s ease-in-out infinite alternate;
  transition: transform .6s ease;
}
@keyframes sedlKenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.04); }
}
.sec-sedlcany:hover .sedl-bg img {
  transform: scale(1.02);
  animation-play-state: paused;
}
.sedl-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(110deg,
    hsl(var(--br-bg-deep) / 0.92) 0%,
    hsl(var(--br-bg-deep) / 0.7) 60%,
    hsl(var(--br-bg-deep) / 0.5) 100%);
}
.sedl-ph-tag {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  padding: 8px 12px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--br-fg-dim) / 0.5);
  background: transparent;
  pointer-events: none;
}
.sedl-content {
  position: relative;
  z-index: 2;
}
.sedl-text {
  max-width: 600px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
.sec-sedlcany.is-in .sedl-text {
  opacity: 1;
  transform: translateY(0);
}
.sedl-h2 {
  margin-top: 16px;
  text-wrap: balance;
}
.sedl-body-1 {
  margin-top: 24px;
  color: hsl(var(--br-fg));
  text-wrap: pretty;
}
.sedl-body-2 {
  margin-top: 14px;
  text-wrap: pretty;
}
.sedl-link {
  color: hsl(var(--br-navy-pale));
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .15s ease;
}
.sedl-link:hover {
  color: hsl(var(--br-fg));
}
.sedl-status {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.sedl-status-note {
  font-size: 12px;
  color: hsl(var(--br-muted));
  letter-spacing: 0.04em;
}
.sedl-cta {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.sec-sedlcany .about-rail-wrap {
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .sedl-bg img { animation: none; }
  .sedl-text { opacity: 1 !important; transform: none !important; transition: none !important; }
}


/* ============================================================
   Sekce 8 – Reference / důvěra (editorial statement)
   ============================================================ */
.sec-reference {
  padding: clamp(56px, 8vh, 88px) 0;
}
.ref-header {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
.ref-header.is-in {
  opacity: 1;
  transform: translateY(0);
}
.ref-h2 {
  margin: 16px auto 0;
  max-width: 880px;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: hsl(var(--br-fg));
  text-wrap: balance;
}

.ref-grid {
  margin: clamp(32px, 5vh, 56px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(40px, 8vw, 120px);
  row-gap: 64px;
  max-width: 1080px;
}
@media (max-width: 767px) {
  .ref-grid {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }
}

.ref-stat {
  padding-left: var(--offset, 0%);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1);
  transition-delay: calc(var(--i, 0) * 120ms + 100ms);
}
.ref-grid.is-in .ref-stat {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .ref-stat { padding-left: 0; }
}
.ref-stat-value {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: hsl(var(--br-fg));
}
.ref-stat-label {
  margin-top: 12px;
  max-width: 220px;
  color: hsl(var(--br-muted));
  font-size: 17px;
  text-wrap: pretty;
}

.ref-cta-wrap {
  margin-top: clamp(40px, 6vh, 64px);
  text-align: center;
}
.ref-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: hsl(var(--br-navy-pale));
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color .15s ease, gap .2s ease;
}
.ref-cta:hover {
  color: hsl(var(--br-fg));
  gap: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .ref-header, .ref-stat {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ============================================================
   Sekce 9 – Kontakt
   ============================================================ */
.sec-kontakt {
  padding: clamp(64px, 9vh, 104px) 0;
}
.kontakt-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vh, 48px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
.kontakt-header.is-in {
  opacity: 1;
  transform: translateY(0);
}
.kontakt-h2 {
  margin-top: 16px;
  text-wrap: balance;
}
.kontakt-sub {
  margin: 18px auto 0;
  max-width: 580px;
  text-wrap: pretty;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .kontakt-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.kontakt-col-left, .kontakt-col-right {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1);
}
.kontakt-col-left.is-in { opacity: 1; transform: translateY(0); }
.kontakt-col-right.is-in {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .15s;
}

/* Left – contact info */
.kontakt-info { display: flex; flex-direction: column; gap: 32px; }

/* Person card — circular photo + name/role */
.kontakt-person {
  display: flex;
  align-items: center;
  gap: 18px;
}
.kontakt-person-photo {
  width: 112px;
  height: 112px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  background: hsl(var(--br-bg-deep));
  border: 2px solid hsl(var(--br-border));
  box-shadow: 0 6px 20px -8px rgba(0, 0, 0, 0.45);
}
.kontakt-person-text {
  min-width: 0;
}
.kontakt-person-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.kontakt-person-name {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: hsl(var(--br-fg));
  letter-spacing: -0.01em;
}
.kontakt-person-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  color: hsl(var(--br-muted));
  background: hsl(var(--br-bg-deep) / 0.5);
  border: 1px solid hsl(var(--br-border));
  transition: color .15s ease, background .15s ease, border-color .15s ease, transform .15s ease;
}
.kontakt-person-linkedin:hover {
  color: #ffffff;
  background: #0a66c2;  /* LinkedIn brand blue */
  border-color: #0a66c2;
  transform: translateY(-1px);
}
.kontakt-person-linkedin:focus-visible {
  outline: 2px solid hsl(var(--br-navy-cta-hover));
  outline-offset: 2px;
}
.kontakt-person-role {
  margin-top: 4px;
  font-size: 13px;
  color: hsl(var(--br-muted));
  letter-spacing: 0.02em;
}
@media (max-width: 480px) {
  .kontakt-person { gap: 14px; }
  .kontakt-person-photo { width: 88px; height: 88px; }
  .kontakt-person-name { font-size: 22px; }
}

.kontakt-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.kontakt-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: hsl(var(--br-fg));
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color .15s ease;
}
.kontakt-link svg { color: hsl(var(--br-navy-cta-hover)); flex: 0 0 auto; }
.kontakt-link:hover { color: hsl(var(--br-navy-pale)); }
@media (max-width: 480px) {
  .kontakt-link { font-size: 18px; }
}

.kontakt-addr-label {
  font-size: 13px;
  color: hsl(var(--br-muted));
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.kontakt-addr address {
  font-style: normal;
  color: hsl(var(--br-fg));
  font-size: 15.5px;
  line-height: 1.6;
}

.kontakt-map {
  position: relative;
  width: 100%;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid hsl(var(--br-border));
  background: hsl(var(--br-surface));
}
.kontakt-map iframe { display: block; }
.kontakt-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 6px 10px;
  background: hsl(var(--br-bg-deep) / 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid hsl(var(--br-border));
  border-radius: 6px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: hsl(var(--br-fg));
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease;
}
.kontakt-map-link:hover {
  background: hsl(var(--br-bg-deep) / 0.95);
  border-color: hsl(var(--br-navy-pale) / 0.5);
}

/* Right – form */
.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: hsl(var(--br-surface));
  border: 1px solid hsl(var(--br-border));
  border-radius: var(--r-card);
  padding: clamp(24px, 3vw, 36px);
}
.kontakt-form-h {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: hsl(var(--br-fg));
  letter-spacing: -0.01em;
}
.kontakt-form-sub {
  margin: 0 0 8px;
  color: hsl(var(--br-fg-dim));
  text-wrap: pretty;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 540px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

/* Radio buttons in a horizontal row */
.field-label-aria {
  font-size: 13px;
  font-weight: 500;
  color: hsl(var(--br-fg-dim));
  display: block;
  margin-bottom: 6px;
}
.field-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.field-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid hsl(var(--br-border));
  border-radius: var(--r-btn);
  background: hsl(var(--br-bg));
  font-size: 14.5px;
  color: hsl(var(--br-fg-dim));
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
  user-select: none;
}
.field-radio:hover {
  border-color: hsl(var(--br-navy-cta-hover) / 0.5);
  color: hsl(var(--br-fg));
}
.field-radio input[type="radio"] {
  accent-color: hsl(var(--br-navy-cta-hover));
  margin: 0;
}
.field-radio:has(input:checked) {
  border-color: hsl(var(--br-navy-cta-hover));
  background: hsl(var(--br-navy-cta-hover) / 0.08);
  color: hsl(var(--br-fg));
}

.field.has-error .input,
.field.has-error .select,
.field.has-error .textarea {
  border-color: #d97757;
}
.field-error {
  margin-top: 6px;
  font-size: 12.5px;
  color: #d97757;
  letter-spacing: 0.01em;
}
.checkbox-row.has-error span > a { color: hsl(var(--br-fg-dim)); }
.checkbox-row.has-error .field-error { margin-top: 4px; }

.input-suffix {
  position: relative;
}
.input-suffix .input { padding-right: 40px; }
.input-suffix .suffix {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-mono);
  font-size: 13px;
  color: hsl(var(--br-muted));
  pointer-events: none;
}

.kontakt-submit {
  align-self: flex-start;
  margin-top: 8px;
}
@media (max-width: 539px) {
  .kontakt-submit { align-self: stretch; justify-content: center; }
}

.kontakt-success {
  background: hsl(var(--br-surface));
  border: 1px solid hsl(var(--br-border));
  border-radius: var(--r-card);
  padding: clamp(32px, 4vw, 48px);
  text-align: center;
}
.kontakt-success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: hsl(140 50% 35% / 0.15);
  color: hsl(140 50% 55%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.kontakt-success-h {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 12px;
  color: hsl(var(--br-fg));
}
.kontakt-success-body {
  margin: 0 auto 24px;
  max-width: 460px;
  text-wrap: pretty;
}
.kontakt-success-body a { color: hsl(var(--br-navy-pale)); text-decoration: none; }
.kontakt-success-body a:hover { text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  .kontakt-header, .kontakt-col-left, .kontakt-col-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: hsl(var(--br-bg-deep));
  color: hsl(var(--br-fg-dim));
}
.footer-inner {
  padding: 72px 32px 48px;
}
@media (max-width: 720px) {
  .footer-inner { padding: 56px 20px 32px; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 64px;
  }
}
@media (min-width: 720px) and (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col-brand { grid-column: 1 / -1; }
}

.footer-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.footer-blurb {
  margin: 20px 0 0;
  max-width: 320px;
  font-size: 14.5px;
  line-height: 1.6;
  color: hsl(var(--br-fg-dim));
  text-wrap: pretty;
}

.footer-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(var(--br-navy-pale));
  margin-bottom: 16px;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-list a {
  color: hsl(var(--br-fg-dim));
  text-decoration: none;
  font-size: 14.5px;
  transition: color .15s ease;
}
.footer-list a:hover { color: hsl(var(--br-fg)); }
.footer-contact-list { gap: 8px; }
.footer-contact-name { color: hsl(var(--br-fg)); font-weight: 500; font-size: 14.5px; }
.footer-contact-role { color: hsl(var(--br-muted)); font-size: 13px; letter-spacing: 0.02em; margin-top: -2px; margin-bottom: 4px; }
.footer-addr {
  font-size: 14.5px;
  line-height: 1.55;
  color: hsl(var(--br-fg-dim));
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid hsl(var(--br-border-soft));
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-copy {
  font-size: 13px;
  color: hsl(var(--br-fg-dim));
}
.footer-meta {
  font-size: 11.5px;
  color: hsl(var(--br-fg-dim) / 0.7);
  letter-spacing: 0.04em;
}
.footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 13px;
  color: hsl(var(--br-fg-dim));
  text-decoration: none;
  transition: color .15s ease;
}
.footer-legal a:hover { color: hsl(var(--br-fg)); }

@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; }
}
