/* ==========================================================================
   LSD — Letecká společnost dobrodruhů
   Design tokens
   ========================================================================== */

:root {
  --bg:        #0B0B0C;
  --panel:     #101012;
  --panel-2:   #16161A;
  --row-hover: #131315;
  --raise:     #1A1A1D;

  --text:      #F4F3F1;
  --text-2:    #DAD8D5;
  --muted:     #C9C7C4;
  --dim:       #9A9895;
  --faint:     #8B8987;
  --ghost:     #6E6C6A;

  --accent:      #FF3B12;
  --accent-dark: #E42E08;
  --accent-lite: #FF6A4B;

  --line:        rgba(255, 255, 255, 0.12);
  --line-soft:   rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.22);
  --line-input:  rgba(255, 255, 255, 0.18);

  --font-display: Oswald, "Arial Narrow", Helvetica, sans-serif;
  --font-body:    Archivo, Helvetica, Arial, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --gutter: 24px;
  --maxw: 1280px;
  --header-h: 71px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

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

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

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-lite); }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea, button { font-family: inherit; }

h1, h2, h3, h4 { margin: 0; font-weight: 600; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.skip-link:focus { left: 0; color: #fff; }

@keyframes lsdFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container--narrow { max-width: 900px; }

.page { display: block; animation: lsdFade 0.35s ease both; }

.section { padding-top: 84px; }
.section--first { padding-top: 56px; }

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

.section__link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  padding-bottom: 8px;
  white-space: nowrap;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 6.5vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 20px;
  text-wrap: balance;
}

.lead {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 68ch;
}

.mono-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--faint);
  letter-spacing: 0.08em;
  line-height: 1.6;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 28px;
  min-height: 48px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
  white-space: nowrap;
}

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); color: #fff; }

.btn--outline { border-color: rgba(255, 255, 255, 0.3); color: var(--text); }
.btn--outline:hover { border-color: #fff; color: var(--text); }

.btn--sm {
  padding: 11px 18px;
  min-height: 42px;
  font-size: 13px;
}

.btn--block { display: flex; width: 100%; }

.btn--wide { padding-left: 32px; padding-right: 32px; }

.btn[aria-disabled="true"],
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 11, 12, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: inherit;
}
.brand:hover { color: inherit; }

.brand__logo {
  height: 42px;
  width: auto;
  flex: 0 0 auto;
  transition: opacity 0.16s ease;
}
.brand:hover .brand__logo { opacity: 0.82; }

.brand__sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  line-height: 1.35;
}

.nav {
  flex: 1 1 auto;
  display: flex;
  gap: 2px;
  justify-content: flex-end;
  align-items: center;
}

.nav__item {
  position: relative;
  padding: 10px 12px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D8D6D3;
  white-space: nowrap;
  transition: color 0.16s ease;
}
.nav__item:hover { color: #fff; }
.nav__item--active { color: #fff; }

.nav__item--active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--accent);
}

.header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.burger {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: border-color 0.16s ease;
}
.burger:hover { border-color: var(--text); }

.burger__box {
  display: block;
  width: 18px;
  height: 12px;
  position: relative;
}

.burger__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.22s ease, opacity 0.16s ease;
}
.burger__bar:nth-child(1) { top: 0; }
.burger__bar:nth-child(2) { top: 5.25px; }
.burger__bar:nth-child(3) { top: 10.5px; }

.burger[aria-expanded="true"] .burger__bar:nth-child(1) { transform: translateY(5.25px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bar:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__bar:nth-child(3) { transform: translateY(-5.25px) rotate(-45deg); }

.mobile-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px var(--gutter) 20px;
  display: grid;
  gap: 2px;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-menu[hidden] { display: none; }

.mobile-menu__item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text);
  display: block;
}
.mobile-menu__item--active { color: var(--accent); }
.mobile-menu__item--accent { color: var(--accent); border-bottom: 0; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 86vh;
  min-height: 86svh;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.hero--sub {
  min-height: 62vh;
  min-height: 62svh;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 12, 0.55) 0%, rgba(11, 11, 12, 0.26) 34%, rgba(11, 11, 12, 0.66) 60%, rgba(11, 11, 12, 0.96) 100%);
}

.hero--sub .hero__scrim {
  background: linear-gradient(180deg, rgba(11, 11, 12, 0.5), rgba(11, 11, 12, 0.95));
}

.hero__content {
  position: relative;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 64px;
  /* fotky pod textem bývají místy světlé — jemný stín drží text čitelný */
  text-shadow: 0 2px 18px rgba(6, 6, 7, 0.75);
}

.hero--sub .hero__content { padding-bottom: 52px; }

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  /* akcentní barva na světlé fotce potřebuje pevnější podklad */
  text-shadow: 0 0 10px rgba(6, 6, 7, 0.95), 0 1px 3px rgba(6, 6, 7, 0.95);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 9vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 22px;
  max-width: 15ch;
  text-wrap: balance;
}

.hero--sub .hero__title {
  font-size: clamp(36px, 7vw, 96px);
  line-height: 0.95;
  max-width: 18ch;
  margin-bottom: 0;
}

.hero__text {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   Stats bar
   ========================================================================== */

.stats-wrap { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 30px 24px 30px 0;
  border-right: 1px solid var(--line-soft);
}
.stat:first-child { padding-left: 0; }
.stat:not(:first-child) { padding-left: 24px; }
.stat:last-child { border-right: 0; }

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--accent);
  line-height: 1;
}

.stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 6px;
  line-height: 1.4;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}

.cards--wide { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.cards--news { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  border: 1px solid var(--line);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  text-align: left;
  color: inherit;
  width: 100%;
  transition: border-color 0.16s ease;
}
.card:hover { color: inherit; }

.card--link { cursor: pointer; }
.card--link:hover { border-color: rgba(255, 59, 18, 0.7); }

.card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: var(--panel-2);
  background-size: cover;
  background-position: center;
  flex: 0 0 auto;
}

.card__media--3-2 { aspect-ratio: 3 / 2; }
.card__media--16-10 { aspect-ratio: 16 / 10; }

.card__tag {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--bg);
  color: var(--text);
  padding: 7px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 24px);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.15;
}

.card__text {
  margin: 0;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}

.card__meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}

.card__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 4px;
}

.card__foot--plain { border-top: 0; padding-top: 0; align-items: center; }

.card__price {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.2;
}
.card__price--lg { font-size: 24px; }

.card__cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

/* Feature tiles (image + overlay text) */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.feature {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  color: inherit;
}
.feature:hover { color: inherit; }

.feature__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feature:hover .feature__media { transform: scale(1.03); }

.feature__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 11, 12, 0.94), rgba(11, 11, 12, 0.1));
}

.feature__body { position: relative; padding: 30px; }

.feature__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.feature__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3.4vw, 34px);
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1.05;
}

.feature__text {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 42ch;
}

/* CTA banner */

.banner {
  border: 1px solid var(--accent);
  padding: clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.banner__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4.5vw, 54px);
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0 0 10px;
  max-width: 24ch;
  text-wrap: balance;
}

.banner__text {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 46ch;
  line-height: 1.55;
}

/* ==========================================================================
   Panels
   ========================================================================== */

.panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--panel);
  padding: 28px;
}

.panel--sticky {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.panel__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 16px;
}

.panel__title {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
  margin: 0 0 6px;
  line-height: 1.15;
}

.box {
  border: 1px solid var(--line);
  padding: 30px;
}

/* ==========================================================================
   Two-column layout (content + aside)
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.95fr);
  gap: 48px;
  align-items: start;
}

.split--tight { gap: 44px; }

.split > * { min-width: 0; }

/* ==========================================================================
   Steps (tandem "jak to proběhne")
   ========================================================================== */

.subhead {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 28px);
  text-transform: uppercase;
  margin: 0 0 18px;
  line-height: 1.15;
}

.steps { display: grid; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.step__n {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--accent);
  line-height: 1.1;
}

.step__title {
  font-family: var(--font-display);
  font-size: 19px;
  text-transform: uppercase;
  margin-bottom: 4px;
  line-height: 1.2;
}

.step__text {
  color: var(--dim);
  font-size: 14px;
  line-height: 1.6;
}

.variant {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.variant__row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
}

.variant__title {
  font-family: var(--font-display);
  font-size: 19px;
  text-transform: uppercase;
  line-height: 1.2;
}

.variant__price {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--accent);
  white-space: nowrap;
}

.variant__note {
  color: var(--dim);
  font-size: 13px;
  line-height: 1.55;
  margin-top: 6px;
}

.prose-lg {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 20px;
}

.prose {
  font-size: 16px;
  line-height: 1.65;
  color: var(--dim);
  margin: 0 0 36px;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ==========================================================================
   Filters
   ========================================================================== */

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter {
  padding: 11px 18px;
  min-height: 44px;
  border: 1px solid var(--line-input);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  color: var(--text);
  transition: border-color 0.16s ease;
}
.filter:hover { border-color: #fff; }
.filter--active { border-color: var(--accent); color: #fff; }
.filter--active::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid var(--accent);
  pointer-events: none;
}

/* ==========================================================================
   Termíny — compact list (home) and full table (kalendář)
   ========================================================================== */

.termlist { border: 1px solid var(--line); }

.termrow {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto auto;
  gap: 20px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
  width: 100%;
  text-align: left;
  color: inherit;
  transition: background-color 0.14s ease;
}
.termrow:last-child { border-bottom: 0; }
.termrow:hover { background: var(--row-hover); color: inherit; }
.termrow--full { cursor: default; }
.termrow--full:hover { background: transparent; }

.termrow__date {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--text);
  line-height: 1.2;
}

.termrow__type {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.termrow__place {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--faint);
  letter-spacing: 0.1em;
  margin-top: 3px;
  line-height: 1.4;
}

.termrow__spots {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
}

.termrow__cta {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.termrow__cta--off { color: var(--ghost); }

/* Full table */

.table { border: 1px solid var(--line); }

.table__head,
.table__row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 150px 130px 120px;
  gap: 16px;
}

.table__head {
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

.table__row {
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
  width: 100%;
  text-align: left;
  color: inherit;
  transition: background-color 0.14s ease;
}
.table__row:last-child { border-bottom: 0; }
.table__row:hover { background: var(--row-hover); color: inherit; }
.table__row--full { cursor: default; }
.table__row--full:hover { background: transparent; }

.cell__label {
  display: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 5px;
}

.cell__date {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.2;
}

.cell__day {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.cell__type {
  font-family: var(--font-display);
  font-size: 19px;
  text-transform: uppercase;
  line-height: 1.2;
}

.cell__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--faint);
  letter-spacing: 0.08em;
  margin-top: 3px;
  line-height: 1.5;
}

.cell__price {
  font-family: var(--font-display);
  font-size: 18px;
  white-space: nowrap;
}

.cell__cta {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: right;
  white-space: nowrap;
}
.cell__cta--off { color: var(--ghost); }

.progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 8px;
}

.progress__bar { height: 4px; background: var(--accent); }

.progress__text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

.empty {
  padding: 40px 22px;
  text-align: center;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================================================
   Termín detail
   ========================================================================== */

.backlink {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  cursor: pointer;
  margin-bottom: 26px;
  padding: 6px 0;
}
.backlink:hover { color: #fff; }

.detail__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 68px);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 8px;
  text-wrap: balance;
}

.detail__when {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 24px);
  color: var(--accent);
  margin-bottom: 26px;
}

.detail__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 26px;
  background-color: var(--panel-2);
  background-size: cover;
  background-position: center;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 28px;
}

.meta { background: var(--bg); padding: 18px; }

.meta__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 6px;
}

.meta__value {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.25;
}

.detail__desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

/* Stepper */

.stepper {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 22px;
}

.stepper__btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  flex: 0 0 auto;
  transition: background-color 0.14s ease;
}
.stepper__btn:hover { background: var(--raise); }
.stepper__btn:first-child { border-right: 1px solid rgba(255, 255, 255, 0.2); }
.stepper__btn:last-child { border-left: 1px solid rgba(255, 255, 255, 0.2); }
.stepper__btn:disabled { opacity: 0.35; cursor: not-allowed; }
.stepper__btn:disabled:hover { background: none; }

.stepper__value {
  flex: 1;
  text-align: center;
  font-family: var(--font-display);
  font-size: 22px;
}

.sumline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 15px;
  color: var(--dim);
}

.sumline__total {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
}

.fineprint {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.7;
  color: var(--faint);
  letter-spacing: 0.06em;
}

/* ==========================================================================
   Formuláře
   ========================================================================== */

.field {
  background: var(--bg);
  border: 1px solid var(--line-input);
  color: var(--text);
  padding: 16px;
  font-size: 16px;
  line-height: 1.4;
  outline: none;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.16s ease;
}
.field:hover { border-color: rgba(255, 255, 255, 0.32); }
.field:focus { border-color: var(--accent); }
.field::placeholder { color: var(--ghost); }

.field--onpanel { background: var(--panel); }

textarea.field { min-height: 120px; resize: vertical; }

.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.field-grid--tri { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }

.field-stack { display: grid; gap: 12px; }

.field--full { grid-column: 1 / -1; }

.checkbox {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  text-align: left;
  width: 100%;
  color: inherit;
}

.checkbox__box {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 14px;
  color: var(--accent);
  margin-top: 1px;
}

.checkbox__text {
  color: var(--dim);
  font-size: 13px;
  line-height: 1.6;
}

.error-note {
  margin-top: 14px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

/* ==========================================================================
   Rezervační tok
   ========================================================================== */

.pax {
  border: 1px solid var(--line);
  padding: 22px;
  background: var(--panel);
}

.pax__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.progress-steps {
  display: flex;
  gap: 4px;
  margin-bottom: 36px;
}

.pstep { flex: 1; min-width: 0; }

.pstep__bar { height: 3px; background: rgba(255, 255, 255, 0.14); }
.pstep--on .pstep__bar { background: var(--accent); }

.pstep__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ghost);
  margin-top: 10px;
  line-height: 1.4;
}
.pstep--on .pstep__label { color: var(--text); }

.paylist { display: grid; gap: 10px; margin-bottom: 26px; }

.payopt {
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  background: var(--panel);
  position: relative;
  width: 100%;
  text-align: left;
  color: inherit;
  transition: border-color 0.16s ease;
}
.payopt:hover { border-color: rgba(255, 255, 255, 0.4); color: inherit; }
.payopt--active { border-color: var(--accent); }

.radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.radio__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.payopt__title {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1.2;
}

.payopt__note {
  color: var(--faint);
  font-size: 13px;
  margin-top: 2px;
  line-height: 1.5;
}

.cardbox {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--panel);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.bookingbar {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding: 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.bookingbar__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  line-height: 1.5;
}

.bookingbar__total {
  font-family: var(--font-display);
  font-size: 26px;
  margin-top: 4px;
}

.bookingbar__actions { display: flex; gap: 10px; }

/* Hotovo */

.done { text-align: center; padding: 30px 0 0; }

.done__check {
  width: 88px;
  height: 88px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: var(--accent);
}

.done__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 62px);
  text-transform: uppercase;
  margin: 0 0 12px;
  line-height: 1.02;
}

.done__text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 52ch;
  margin: 0 auto 34px;
}
.done__text strong { color: var(--text); }

.summary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--panel);
  padding: 28px;
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
}

.summary__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 16px;
}

.summary__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
}
.summary__row:last-child { border-bottom: 0; }
.summary__row span:first-child { color: var(--faint); flex: 0 0 auto; }
.summary__row span:last-child { text-align: right; }

/* ==========================================================================
   Poukaz
   ========================================================================== */

.voucher-preview {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.voucher-preview__img { width: 100%; height: 100%; object-fit: cover; }

.voucher-preview__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 11, 12, 0.9), rgba(11, 11, 12, 0.25));
}

.voucher-preview__body {
  position: absolute;
  inset: 0;
  padding: clamp(16px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.voucher-preview__logo {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 22px);
  letter-spacing: 0.1em;
  color: var(--accent);
}

.voucher-preview__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 34px);
  text-transform: uppercase;
  line-height: 1.05;
}

.voucher-preview__for {
  font-family: var(--font-mono);
  font-size: clamp(9px, 1.2vw, 11px);
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 8px;
  word-break: break-word;
}

.voucher-opts { display: grid; gap: 8px; margin-bottom: 22px; }

.voucher-opt {
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  position: relative;
  width: 100%;
  text-align: left;
  color: inherit;
  transition: border-color 0.16s ease;
}
.voucher-opt:hover { border-color: rgba(255, 255, 255, 0.4); color: inherit; }
.voucher-opt--active { border-color: var(--accent); }

.voucher-opt__title {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1.2;
}

.voucher-opt__note {
  color: var(--faint);
  font-size: 12px;
  margin-top: 3px;
  line-height: 1.5;
}

.voucher-opt__price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent);
  white-space: nowrap;
}

/* ==========================================================================
   Galerie
   ========================================================================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 6px;
}

.gallery__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--row-hover);
  padding: 0;
  border: 0;
  width: 100%;
}

.gallery__img {
  width: 100%;
  height: 100%;
  background-color: var(--panel-2);
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.gallery__item:hover .gallery__img { transform: scale(1.04); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(6, 6, 7, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  cursor: zoom-out;
}
.lightbox[hidden] { display: none; }

.lightbox__img {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 48px;
  height: 48px;
  font-size: 34px;
  line-height: 1;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__close:hover { color: var(--accent); }

/* ==========================================================================
   O nás / tým
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  margin-bottom: 60px;
}

.about-grid p { font-size: 17px; line-height: 1.7; margin: 0; }
.about-grid p:first-child { color: var(--text-2); }
.about-grid p:last-child { color: var(--dim); }

.team {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

.member { border: 1px solid var(--line); }

.member__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  filter: grayscale(1);
  background-color: var(--panel-2);
  background-size: cover;
  background-position: center top;
  transition: filter 0.3s ease;
}
.member:hover .member__photo { filter: grayscale(0.35); }

.member__body { padding: 18px; }

.member__name {
  font-family: var(--font-display);
  font-size: 19px;
  text-transform: uppercase;
  line-height: 1.15;
}

.member__role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 6px 0 10px;
  line-height: 1.5;
}

.member__bio {
  color: var(--dim);
  font-size: 13px;
  line-height: 1.6;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { border-top: 1px solid var(--line); }

.faq__item { border-bottom: 1px solid var(--line); }

.faq__q {
  padding: 22px 0;
  display: flex;
  gap: 18px;
  align-items: baseline;
  cursor: pointer;
  width: 100%;
  text-align: left;
  color: var(--text);
  transition: color 0.16s ease;
}
.faq__q:hover { color: var(--accent); }

.faq__qtext {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.2vw, 23px);
  text-transform: uppercase;
  flex: 1;
  line-height: 1.3;
}

.faq__mark {
  font-size: 22px;
  color: var(--accent);
  flex: 0 0 auto;
  line-height: 1;
}

.faq__a {
  padding: 0 0 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 70ch;
}

/* ==========================================================================
   Kontakt
   ========================================================================== */

.contact-list { display: grid; gap: 24px; margin-bottom: 36px; }

.contact__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 6px;
}

.contact__value {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 30px);
  line-height: 1.2;
  word-break: break-word;
}
.contact__value a { color: var(--text); }
.contact__value a:hover { color: var(--accent); }

.contact__text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  margin-top: 96px;
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 10px;
}

.footer__label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 14px;
}

.footer__text {
  color: var(--faint);
  font-size: 13px;
  line-height: 1.7;
}
.footer__text a { color: var(--faint); }
.footer__text a:hover { color: var(--accent); }

.footer__links { display: grid; gap: 9px; }
.footer__links a {
  font-size: 14px;
  color: #D8D6D3;
  display: inline-block;
  padding: 2px 0;
}
.footer__links a:hover { color: var(--accent); }

.footer__bottom {
  padding-bottom: 40px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ghost);
  line-height: 1.6;
}

/* ==========================================================================
   Blokové chování pro prvky renderované jako <span>
   (potomci grid/flex položek se neblokifikují automaticky)
   ========================================================================== */

.termrow__date,
.termrow__type,
.termrow__place,
.termrow__spots,
.termrow__cta,
.cell__date,
.cell__day,
.cell__type,
.cell__sub,
.cell__price,
.cell__cta,
.progress,
.progress__bar,
.progress__text,
.feature__kicker,
.feature__title,
.feature__text,
.payopt__title,
.payopt__note,
.voucher-opt__title,
.voucher-opt__note,
.gallery__img { display: block; }

.termrow > span,
.table__row > span,
.payopt > span,
.voucher-opt > span { display: block; min-width: 0; }

/* ==========================================================================
   Utility
   ========================================================================== */

.hide { display: none !important; }
.nowrap { white-space: nowrap; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* --- Desktop nav breakpoint --- */
@media (max-width: 1079px) {
  .nav { display: none; }
  .hide-lt-1080 { display: none; }
  .burger { display: flex; }
  .header__inner { gap: 16px; }
}

@media (min-width: 1080px) {
  .mobile-menu { display: none !important; }
}

/* --- Large tablet --- */
@media (max-width: 1024px) {
  .split,
  .split--tight {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .panel--sticky { position: static; }
  .feature { min-height: 340px; }
  .section { padding-top: 68px; }
  .footer { margin-top: 72px; }
}

/* --- Calendar table → stacked cards --- */
@media (max-width: 900px) {
  .table__head { display: none; }

  .table__row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 18px;
    padding: 20px 18px;
    align-items: start;
  }
  .table__row > *:nth-child(1) { grid-column: 1 / -1; order: 2; }
  .table__row > *:nth-child(2) { grid-column: 1 / -1; order: 1; }
  .table__row > *:nth-child(3) { grid-column: 1 / -1; order: 3; }
  .table__row > *:nth-child(4) { grid-column: 1; order: 4; align-self: center; }
  .table__row > *:nth-child(5) { grid-column: 2; order: 5; align-self: center; }

  .cell__label { display: block; }
  .cell__cta { text-align: right; }

  /* datum a den vedle sebe pod názvem akce */
  .table__row > *:nth-child(1) { display: flex; align-items: baseline; gap: 10px; }
  .cell__date { font-size: 15px; color: var(--accent); }
  .cell__day { margin-top: 0; }

  .termrow {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 16px;
    padding: 18px;
  }
  .termrow > *:nth-child(1) { grid-column: 1 / -1; order: 2; }
  .termrow > *:nth-child(2) { grid-column: 1 / -1; order: 1; }
  .termrow > *:nth-child(3) { grid-column: 1; order: 3; align-self: center; }
  .termrow > *:nth-child(4) { grid-column: 2; order: 4; align-self: center; }
  .termrow__date { color: var(--accent); font-size: 15px; }
  .termrow__spots { text-align: left; }
}

/* --- Tablet / large phone --- */
@media (max-width: 780px) {
  :root { --gutter: 18px; }

  .section { padding-top: 56px; }
  .section--first { padding-top: 40px; }
  .section__head { margin-bottom: 24px; gap: 12px; }

  .hero { min-height: 78vh; min-height: 78svh; }
  .hero--sub { min-height: 48vh; min-height: 48svh; }
  .hero__content { padding-bottom: 44px; padding-top: 64px; }
  .hero__title { max-width: 100%; }
  .hero__text { margin-bottom: 26px; }
  .hero__actions .btn { flex: 1 1 100%; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat {
    padding: 22px 16px 22px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .stat:nth-child(odd) { padding-left: 0; }
  .stat:nth-child(even) { padding-left: 16px; border-right: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }

  /* auto-fit si počet sloupců určí sám — stačí zúžit mezery */
  .cards,
  .cards--wide,
  .cards--news { gap: 16px; }

  .feature-grid { gap: 16px; }
  .feature { min-height: 300px; }
  .feature__body { padding: 22px; }

  .banner { padding: 26px 20px; gap: 20px; }
  .banner .btn { width: 100%; }

  .panel { padding: 22px; }
  .box { padding: 22px; }
  .pax { padding: 18px; }
  .summary { padding: 22px; }
  .cardbox { padding: 18px; }

  .card__body { padding: 20px; }

  .about-grid { gap: 22px; margin-bottom: 44px; }
  .team { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 12px; }
  .member__body { padding: 14px; }
  .member__name { font-size: 16px; }
  .member__bio { font-size: 12px; }

  .gallery { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 4px; }

  .footer { margin-top: 60px; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; padding-top: 36px; padding-bottom: 36px; }

  .progress-steps { gap: 3px; margin-bottom: 28px; }
  .pstep__label { font-size: 9px; letter-spacing: 0.08em; }

  .bookingbar { gap: 16px; }
  .bookingbar__actions { width: 100%; }
  .bookingbar__actions .btn { flex: 1; }

  .step { grid-template-columns: 44px 1fr; gap: 12px; }
  .step__n { font-size: 22px; }

  .meta-grid { grid-template-columns: repeat(2, 1fr); }
  /* liché třetí pole roztáhnout, ať v mřížce nezůstane prázdná buňka */
  .meta:nth-child(3):last-child { grid-column: 1 / -1; }
  .meta { padding: 14px; }
}

/* --- Phone --- */
@media (max-width: 560px) {
  .brand__sub { display: none; }
  .brand__logo { height: 38px; }
  .header__inner { padding-top: 12px; padding-bottom: 12px; }

  .hero__eyebrow { font-size: 10px; letter-spacing: 0.18em; margin-bottom: 14px; }

  .stats { grid-template-columns: 1fr 1fr; }

  .table__row > *:nth-child(4) { align-self: end; }
  .table__row > *:nth-child(5) { align-self: end; }

  .filters { gap: 6px; }
  .filter { padding: 10px 14px; font-size: 12px; flex: 1 1 auto; text-align: center; }

  .team { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }

  .field-grid,
  .field-grid--tri,
  .cardbox { grid-template-columns: 1fr; }
  .cardbox .field--full { grid-column: 1; }

  .stepper__btn { width: 52px; height: 52px; }

  .done__check { width: 72px; height: 72px; font-size: 32px; margin-bottom: 22px; }
  .done__text { font-size: 16px; }

  .summary__row { flex-direction: column; gap: 4px; }
  .summary__row span:last-child { text-align: left; }

  .footer__grid { grid-template-columns: 1fr; gap: 26px; }

  .progress-steps .pstep__label { font-size: 8px; }
}

/* --- Small phone --- */
@media (max-width: 380px) {
  :root { --gutter: 14px; }
  .btn { padding: 15px 18px; font-size: 14px; }
  .btn--sm { padding: 10px 12px; font-size: 12px; }
  .stat { padding-right: 12px; }
  .stat:nth-child(even) { padding-left: 12px; }
  .gallery { grid-template-columns: 1fr 1fr; }
}

/* --- Landscape phone: shorter heroes --- */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: 100svh; }
  .hero--sub { min-height: 70svh; }
  .hero__content { padding-top: 56px; padding-bottom: 32px; }
}

/* --- Large screens --- */
@media (min-width: 1600px) {
  :root { --gutter: 32px; }
}
