:root {
  --green: #1e3f3c;
  --cream: #f0ede2;
  --gold: #b9a268;
  --dark: #2c2c2c;
  --off: #faf9f6;

  --bg: #f8f5ee;
  --bg-soft: #f2ede1;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(250, 249, 246, 0.92);
  --surface-dark: rgba(30, 63, 60, 0.74);
  --line: rgba(44, 44, 44, 0.12);
  --line-strong: rgba(185, 162, 104, 0.38);
  --text: var(--dark);
  --text-soft: rgba(44, 44, 44, 0.74);
  --shadow-lg: 0 28px 72px rgba(26, 34, 33, 0.12);
  --shadow-md: 0 18px 42px rgba(26, 34, 33, 0.10);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shell: minmax(24px, 1fr) minmax(0, 1440px) minmax(24px, 1fr);
  --shell-wide: minmax(20px, 1fr) minmax(0, 1640px) minmax(20px, 1fr);
  --header-offset: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + 34px);
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 10% 0%, rgba(185, 162, 104, 0.14), transparent 60%),
    radial-gradient(900px 560px at 100% 10%, rgba(30, 63, 60, 0.10), transparent 60%),
    linear-gradient(180deg, #fbfaf7 0%, #f5f0e6 100%);
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

[id] {
  scroll-margin-top: calc(var(--header-offset) + 34px);
}

.shell,
.shell--wide {
  width: min(1260px, calc(100% - 88px));
  margin: 0 auto;
}

.shell--wide {
  width: min(1380px, calc(100% - 88px));
}

.band {
  padding: 54px 0;
}

.band--light {
  position: relative;
}

.band--accent {
  background: linear-gradient(180deg, rgba(185, 162, 104, 0.10), rgba(240, 237, 226, 0.58));
  border-top: 1px solid rgba(185, 162, 104, 0.12);
  border-bottom: 1px solid rgba(185, 162, 104, 0.12);
}

.location-band {
  padding: 58px 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(185, 162, 104, 0.08), rgba(240, 237, 226, 0.52)),
    radial-gradient(1000px 500px at 75% 0%, rgba(30, 63, 60, 0.06), transparent 60%);
  border-top: 1px solid rgba(185, 162, 104, 0.12);
  border-bottom: 1px solid rgba(185, 162, 104, 0.12);
}

.contact-band {
  padding-top: 58px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
  background: rgba(250, 249, 246, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(250, 249, 246, 0.92);
  border-bottom-color: rgba(185, 162, 104, 0.22);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.header-bar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  text-decoration: none;
}

.brand__logo {
  width: auto;
  height: 74px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 10px 11px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.site-nav a:hover {
  background: rgba(185, 162, 104, 0.14);
  color: var(--green);
}

.nav-cta {
  margin-left: 6px;
  padding-inline: 16px !important;
  white-space: nowrap;
  flex-shrink: 0;
  
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(250, 249, 246, 0.92);
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--gold);
  color: var(--off);
  box-shadow: 0 18px 34px rgba(185, 162, 104, 0.28);
}

.btn--secondary {
  background: var(--green);
  color: var(--off);
  box-shadow: 0 18px 34px rgba(30, 63, 60, 0.22);
}

.btn--ghost {
  background: rgba(240, 237, 226, 0.96);
  color: var(--green);
  border-color: rgba(185, 162, 104, 0.72);
  box-shadow: 0 14px 30px rgba(44, 44, 44, 0.08);
}

.location-band .btn--ghost {
  background: rgba(240, 237, 226, 0.96);
  color: var(--green);
  border-color: rgba(185, 162, 104, 0.72);
  box-shadow: 0 14px 30px rgba(44, 44, 44, 0.08);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: .7;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: .98;
  letter-spacing: -.03em;
}

h2 {
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.02;
  letter-spacing: -.03em;
  color: var(--green);
  margin-top: 12px;
}

.location-band h2,
.location-band h3 {
  color: var(--green);
}

h3 {
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--green);
}

p {
  color: var(--text-soft);
  line-height: 1.82;
}

.location-band p,
.location-band .section-side-note,
.location-band .map-link {
  color: var(--text-soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-head--wide {
  margin-bottom: 26px;
}

.section-head--inverted .eyebrow {
  color: var(--gold);
}

.section-side-note {
  max-width: 360px;
  font-size: 14px;
  color: rgba(44, 44, 44, 0.64);
}

.panel {
  background: var(--surface-strong);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.panel--soft {
  background: linear-gradient(180deg, rgba(250, 249, 246, 0.94), rgba(240, 237, 226, 0.84));
}

.panel--outline {
  background: transparent;
  border-style: dashed;
}

.location-band .panel {
  background: var(--surface-strong);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.location-band .panel--glass {
  background: linear-gradient(180deg, rgba(250, 249, 246, 0.94), rgba(240, 237, 226, 0.84));
  backdrop-filter: none;
}

.panel--media {
  background: rgba(250, 249, 246, 0.65);
}

.hero {
  position: relative;
  min-height: clamp(1020px, 100vh, 640px);
  color: var(--off);
  display: flex;
  align-items: flex-start;
  overflow: clip;
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__image {
  transform: scale(1.02);
 
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(15, 27, 26, 0.55) 0%, rgba(15, 27, 26, 0.35) 38%, rgba(15, 27, 26, 0.12) 66%, rgba(15, 27, 26, 0.30) 100%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.18));
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0 36px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .48fr);
  gap: 24px;
  align-items: start;
}

.hero__copy {
  max-width: 760px;
  padding-left: 34px;
  padding-top: 34px;
}

.hero__copy .eyebrow {
  color: rgba(255,255,255,.78);
}

.hero__lead {
  margin-top: 22px;
  max-width: 24ch;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.55;
  color: rgba(255,255,255,.92);
}

.hero__actions {
  margin-top: 28px;
  gap: 14px;
}

.hero__panel {
  max-width: 330px;
  margin-top: 54px;
  margin-right: 28px;
  margin-left: 100px;
  padding: 20px 22px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.hero-stat:last-of-type {
  border-bottom: 0;
}

.hero-stat span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.68);
}

.hero-stat strong {
  font-size: 24px;
  line-height: 1.08;
}

.hero-note {
  font-size: 15px;
  line-height: 1.55;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: stretch;
}

.about-card,
.stage-card__body,
.standard-copy,
.finance-copy,
.construction-copy,
.contact-grid,
.location-intro,
.location-summary {
  padding: 24px;
}

.lead-text {
  font-size: 17px;
  line-height: 1.95;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.feature-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(185, 162, 104, 0.34);
  background: rgba(250, 249, 246, 0.84);
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}

.quote-block {
  margin-top: 28px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(185, 162, 104, 0.14), rgba(250, 249, 246, 0.78));
  border: 1px solid rgba(185, 162, 104, 0.28);
}

.quote-block--small {
  margin-top: 24px;
}

.about-visual {
  position: relative;
  min-height: 620px;
}

.media-topline {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(250, 249, 246, 0.90);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.masterplan {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 620px;
}

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

.masterplan__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(30, 63, 60, 0.88);
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.masterplan__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.house-link polygon {
  fill: rgba(255,255,255,.08);
  transition: fill .22s ease, transform .22s ease;
}

.house-link text {
  fill: white;
  font-size: 28px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  text-anchor: middle;
}

.house-link:hover polygon {
  fill: rgba(30, 63, 60, 0.56);
}

.house-link:hover text {
  opacity: 1;
}

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

.stage-card {
  display: grid;
  grid-template-rows: 320px 1fr;
}

.stage-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-card__meta {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.stage-card__body p {
  margin-top: 14px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.mini-grid--stack {
  grid-template-columns: 1fr;
}

.mini-box {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(185, 162, 104, 0.22);
  background: rgba(250, 249, 246, 0.74);
}

.mini-box strong {
  display: block;
  font-size: 15px;
  color: var(--green);
  margin-bottom: 8px;
}

.mini-box span {
  display: block;
  color: var(--text-soft);
  line-height: 1.7;
}

.row-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.future-stage {
  margin-top: 18px;
  padding: 26px 32px;
}

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

.gallery-item {
  grid-column: span 4;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.6);
  box-shadow: var(--shadow-md);
  position: relative;
}

.gallery-item::after {
  content: "Zvětšit";
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(30, 63, 60, 0.82);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .24s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.location-intro p,
.location-summary p {
  font-size: 16px;
  color: var(--text-soft);
}

.location-intro strong {
  color: var(--green);
}

.location-hero {
  margin-top: 24px;
  padding: 18px;
}

.location-hero__head,
.context-card__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.location-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}



.location-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 22px;
  align-items: start;
  margin-top: 22px;
}

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

.info-card,
.future-map,
.context-card {
  padding: 22px;
}

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

.context-card__media {
  display: block;
  margin-top: 14px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(185, 162, 104, 0.20);
  background: rgba(250, 249, 246, 0.70);
}

.context-card__media img {
  width: 100%;
  min-height: 320px;
  object-fit: contain;
  background: rgba(240, 237, 226, 0.45);
}

.context-card__placeholder {
  margin-top: 14px;
  min-height: 320px;
  border-radius: 22px;
  border: 1px dashed rgba(185, 162, 104, 0.32);
  background:
    linear-gradient(180deg, rgba(250,249,246,.72), rgba(240,237,226,.58)),
    repeating-linear-gradient(135deg, rgba(185,162,104,.04), rgba(185,162,104,.04) 16px, rgba(250,249,246,.01) 16px, rgba(250,249,246,.01) 32px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
}

.context-card__placeholder strong {
  font-size: 18px;
  color: var(--green);
}

.context-tag {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(185, 162, 104, 0.28);
  background: rgba(250,249,246,.80);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}


.standard-grid,
.finance-grid,
.construction-grid,
.contact-grid {
  display: grid;
  gap: 26px;
}

.standard-grid {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.standard-media img,
.finance-media img,
.construction-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.finance-grid {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}

.construction-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
}

.finance-panel {
  overflow: hidden;
}

.finance-panel .finance-copy {
  padding: 24px;
}

.finance-panel .finance-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.finance-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
}

/* ⬅️ Tohle otočí pořadí */
.finance-panel .finance-media {
  order: -1;
}

.construction-gallery-placeholder {
  margin-top: 22px;
  padding: 24px;
  border-radius: 22px;
  border: 1px dashed rgba(185, 162, 104, 0.32);
  background: rgba(250, 249, 246, 0.72);
}

.contact-grid {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}

.contact-stack {
  display: grid;
  gap: 20px;
  margin-top: 10px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(185, 162, 104, 0.34);
  background: rgba(250, 249, 246, 0.94);
  color: var(--dark);
  border-radius: 18px;
  padding: 16px 18px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(185, 162, 104, 0.74);
  box-shadow: 0 0 0 4px rgba(185, 162, 104, 0.14);
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 10px 0 16px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.consent span {
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  line-height: 1.7;
}

.consent a {
  color: var(--green);
}

.site-footer {
  padding: 28px 0 34px;
  border-top: 1px solid rgba(185, 162, 104, 0.18);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-row > :first-child {
  color: rgba(44,44,44,.72);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
  color: var(--green);
  font-weight: 700;
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 950;
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .22s ease, transform .22s ease;
}

.cookie-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  background: rgba(30, 63, 60, 0.96);
  color: white;
  border-radius: 26px;
  padding: 18px 22px;
  box-shadow: 0 28px 60px rgba(0,0,0,.22);
}

.cookie-bar__inner > p {
  color: rgba(255,255,255,.86);
}

.cookie-bar__actions {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
}

.cookie-bar a {
  color: var(--gold);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.gallery-modal.is-open {
  display: block;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 14, 14, 0.78);
  backdrop-filter: blur(8px);
}

.gallery-modal__dialog {
  position: absolute;
  inset: 24px;
  display: grid;
  place-items: center;
}

.gallery-modal__dialog img {
  max-width: min(1500px, calc(100vw - 96px));
  max-height: calc(100vh - 96px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 34px 80px rgba(0,0,0,.34);
  background: rgba(255,255,255,.04);
}

.gallery-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: white;
  font-size: 32px;
  line-height: 1;
}

@media (max-width: 1200px) {
  .hero__grid,
  .about-layout,
  .location-grid,
  .standard-grid,
  .finance-grid,
  .construction-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    max-width: 520px;
  }

  .location-map__anchor img {
    min-height: 560px;
  }
}

@media (max-width: 980px) {
  .band,
  .location-band,
  .contact-band {
    padding: 56px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-offset) + 12px) 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(250, 249, 246, 0.98);
    border: 1px solid rgba(185, 162, 104, 0.28);
    box-shadow: 0 30px 70px rgba(0,0,0,.16);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
    
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding-top: 126px;
    padding-bottom: 36px;
  }

  .hero__grid {
    gap: 20px;
  }

  .hero__panel,
  .about-card,
  .stage-card__body,
  .standard-copy,
  .finance-copy,
  .construction-copy,
  .contact-grid,
  .location-intro,
  .location-summary,
  .location-map,
  .info-card,
  .future-map {
    padding: 24px;
  }

  .stage-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    grid-column: span 6;
  }

  .section-head,
  .location-map__header,
  .footer-row,
  .cookie-bar__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: minmax(14px, 1fr) minmax(0, 1fr) minmax(14px, 1fr);
    --shell-wide: minmax(14px, 1fr) minmax(0, 1fr) minmax(14px, 1fr);
  }

  .brand__logo {
    height: 60px;
  }

  .header-bar {
    min-height: 82px;
  }

  .btn {
    width: 100%;
  }

  .hero__actions,
  .row-actions,
  .cookie-bar__actions {
    flex-direction: column;
  }

  .gallery-item {
    grid-column: span 12;
  }

  .gallery-modal__dialog {
    inset: 12px;
  }

  .gallery-modal__dialog img {
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    border-radius: 18px;
  }

  .location-map__anchor img {
    min-height: 340px;
  }
}


@media (max-width: 1180px) {
  .site-nav {
    gap: 4px;
  }

  .site-nav a {
    font-size: 11px;
    padding: 10px 9px;
  }

  .hero__copy {
    padding-left: 12px;
  }

  .location-hero__frame,
  .location-hero__frame iframe {
    min-height: 560px;
    height: 560px;
  }

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

@media (max-width: 980px) {
  html {
    scroll-padding-top: calc(var(--header-offset) + 20px);
  }

  [id] {
    scroll-margin-top: calc(var(--header-offset) + 20px);
  }

  .shell,
  .shell--wide {
    width: min(100%, calc(100% - 32px));
  }

  .band {
    padding: 42px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 112px 0 28px;
  }

  .hero__copy {
    padding-left: 0;
    max-width: none;
  }

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

  .hero__panel {
    max-width: 560px;
  }

  .location-info-grid,
  .location-cards {
    grid-template-columns: 1fr;
  }

  .location-hero__frame,
  .location-hero__frame iframe {
    min-height: 460px;
    height: 460px;
  }

  .context-card__media img,
  .context-card__placeholder {
    min-height: 240px;
  }
}


/* --- Lokalita: statická mapa + decentnější info bloky --- */
.location-hero__trigger,
.context-card__trigger,
.map-link--button {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  cursor: pointer;
}

.location-hero__trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin-top: 16px;
  border: 1px solid rgba(185, 162, 104, 0.20);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(250,249,246,.78);
  min-height: 620px;
}

.location-hero__trigger img {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: transform .28s ease, filter .28s ease;
}

.location-hero__trigger:hover img,
.context-card__trigger:hover img {
  transform: scale(1.015);
  filter: brightness(1.03);
}

.location-hero__zoom {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(30, 63, 60, .82);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.location-info-grid {
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}

.location-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.info-card--compact,
.location-summary.panel--glass {
  padding: 18px 18px 17px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(250,249,246,.94), rgba(240,237,226,.82));
  border-color: rgba(185, 162, 104, 0.24);
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}

.info-card--compact .eyebrow,
.location-summary .eyebrow {
  font-size: 11px;
  letter-spacing: .12em;
}

.info-card--compact p,
.location-summary p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-soft);
}

.context-card__trigger {
  width: 100%;
  padding: 0;
  text-align: left;
  cursor: zoom-in;
}

.map-link--button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1200px) {
  .location-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .location-hero__trigger,
  .location-hero__frame {
    min-height: 420px;
  }

  .location-hero__trigger img,
  .location-hero__frame iframe {
    height: 420px;
  }
}

@media (max-width: 700px) {
  .location-cards {
    grid-template-columns: 1fr;
  }

  .location-hero__zoom {
    right: 14px;
    bottom: 14px;
    padding: 10px 14px;
  }
}

/* =========================
   RESPONSIVE DOLADĚNÍ NAVÍC
   ========================= */

/* větší notebooky / nižší obrazovky */
@media (max-width: 1360px), (max-height: 820px) {
  .hero {
    min-height: clamp(460px, 78vh, 600px);
  }

  .hero__content {
    padding: 72px 0 30px;
  }

  .hero__panel {
    padding: 20px;
  }

  .hero-stat strong {
    font-size: 24px;
  }
}

/* tablet landscape / menší notebook */
@media (max-width: 1100px) {
  h1 {
    font-size: clamp(30px, 4.8vw, 54px);
  }

  h2 {
    font-size: clamp(24px, 3vw, 36px);
  }

  h3 {
    font-size: clamp(18px, 2vw, 26px);
  }

  .header-bar {
    gap: 14px;
  }

  .site-nav a {
    padding: 10px 8px;
    font-size: 11px;
  }

  .nav-cta {
    padding-inline: 14px !important;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, .44fr);
    gap: 18px;
  }

  .about-visual,
  .masterplan {
    min-height: 520px;
  }

  .stage-card {
    grid-template-rows: 260px 1fr;
  }
}

/* tablet */
@media (max-width: 860px) {
  :root {
    --header-offset: 84px;
  }

  .site-nav {
    inset: calc(var(--header-offset) + 10px) 16px auto 16px;
    max-height: calc(100vh - var(--header-offset) - 28px);
    overflow: auto;
  }

  .site-nav a {
    width: 100%;
  }

  .hero__content {
    padding: 104px 0 24px;
  }

  .hero__lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero__panel {
    max-width: none;
  }

  .hero-stat strong {
    font-size: 22px;
  }

  .about-card,
  .stage-card__body,
  .standard-copy,
  .finance-copy,
  .construction-copy,
  .contact-grid,
  .location-intro,
  .location-summary,
  .info-card,
  .future-map {
    padding: 20px;
  }

  .future-stage {
    padding: 22px 22px;
  }

  .media-topline,
  .masterplan__badge {
    left: 16px;
  }

  .media-topline {
    top: 16px;
  }

  .masterplan__badge {
    bottom: 16px;
  }
}

/* mobil */
@media (max-width: 640px) {
  :root {
    --header-offset: 78px;
  }

  html {
    scroll-padding-top: calc(var(--header-offset) + 14px);
  }

  [id] {
    scroll-margin-top: calc(var(--header-offset) + 14px);
  }

  .shell,
  .shell--wide {
    width: calc(100% - 24px);
  }

  .band,
  .location-band,
  .contact-band {
    padding: 36px 0;
  }

  .section-head,
  .section-head--wide,
  .location-hero__head,
  .context-card__head {
    gap: 12px;
    margin-bottom: 16px;
  }

  h1 {
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(22px, 7vw, 30px);
    line-height: 1.06;
  }

  h3 {
    font-size: clamp(18px, 5.6vw, 24px);
  }

  p,
  .location-intro p,
  .location-summary p {
    font-size: 14px;
    line-height: 1.72;
  }

  .hero__content {
    padding: 52px 0 18px;
  }

  .hero__actions {
    gap: 10px;
  }

  .btn {
    min-height: 48px;
    padding: 0 16px;
    font-size: 12px;
  }

  .hero__panel {
    padding: 18px;
    border-radius: 22px;
  }

  .hero-stat {
    padding: 12px 0;
  }

  .hero-stat span {
    font-size: 11px;
    letter-spacing: .1em;
  }

  .hero-stat strong {
    font-size: 20px;
  }

  .hero-note {
    margin-top: 12px;
    padding-top: 12px;
    font-size: 14px;
    line-height: 1.6;
  }

  .feature-chips {
    gap: 10px;
    margin-top: 20px;
  }

  .feature-chips span {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .quote-block,
  .quote-block--small {
    margin-top: 20px;
    padding: 18px;
    border-radius: 18px;
  }

  .about-visual,
  .masterplan {
    min-height: 360px;
  }

  .stage-card {
    grid-template-rows: 220px 1fr;
  }

  .gallery-grid {
    gap: 10px;
  }

  .gallery-item {
    border-radius: 18px;
  }

  .gallery-item::after {
    left: 12px;
    bottom: 12px;
    padding: 8px 12px;
    font-size: 10px;
  }

  .location-hero {
    margin-top: 18px;
    padding: 12px;
  }

  .location-hero__trigger {
    min-height: 300px;
    border-radius: 18px;
    margin-top: 12px;
  }

  .location-hero__trigger img {
    height: 300px;
  }

  .location-hero__zoom {
    font-size: 10px;
    letter-spacing: .1em;
  }

  .context-grid {
    gap: 14px;
    margin-top: 16px;
  }

  .context-card__media,
  .context-card__placeholder {
    border-radius: 18px;
  }

  .context-card__media img,
  .context-card__placeholder {
    min-height: 200px;
  }

  .info-card--compact,
  .location-summary.panel--glass {
    padding: 16px;
    border-radius: 18px;
  }

  .mini-box {
    padding: 16px;
    border-radius: 16px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .cookie-bar {
    bottom: 12px;
  }

  .cookie-bar__inner {
    padding: 16px;
    border-radius: 20px;
  }

  .to-top {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }
}

/* malé mobily */
@media (max-width: 420px) {
  .brand__logo {
    height: 54px;
  }

  .header-bar {
    min-height: 74px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .hero__content {
    padding-top: 64px;
  }

  .hero__lead {
    font-size: 14px;
  }

  .btn {
    min-height: 46px;
    font-size: 11px;
    letter-spacing: .05em;
  }

  .hero__panel {
    padding: 16px;
  }

  .about-card,
  .stage-card__body,
  .standard-copy,
  .finance-copy,
  .construction-copy,
  .contact-grid,
  .location-intro,
  .location-summary,
  .info-card,
  .future-map {
    padding: 16px;
  }

  .stage-card {
    grid-template-rows: 200px 1fr;
  }

  .location-hero__trigger {
    min-height: 260px;
  }

  .location-hero__trigger img {
    height: 260px;
  }

  .gallery-modal__close {
    top: 12px;
    right: 12px;
    width: 46px;
    height: 46px;
    font-size: 28px;
  }
}

/* touch zařízení – vypnout hover-only efekty */
@media (hover: none) {
  .gallery-item::after {
    opacity: 1;
    transform: none;
  }

  .gallery-item:hover img,
  .location-hero__trigger:hover img,
  .context-card__trigger:hover img {
    transform: none;
    filter: none;
  }

  .house-link text {
    opacity: 1;
  }

  .site-nav a:hover,
  .btn:hover {
    transform: none;
  }
}

/* přístupnost + menší motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}


/* =========================
   LOKALITA / MAPA – finální doladění
   ========================= */
.location-hero {
  margin-top: 24px;
  padding: 24px;
}

.location-hero__head {
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 14px;
}

.location-hero__head > div:first-child {
  flex: 1 1 auto;
}

.location-hero__head .eyebrow {
  margin-bottom: 6px;
}

.location-hero__head h3 {
  margin: 0;
}

.location-hero__actions {
  margin-left: auto;
}

.location-hero__actions .map-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.location-hero__trigger {
  margin-top: 0;
  min-height: 0;
  aspect-ratio: 16 / 7.2;
  height: auto;
  border-radius: 24px;
  background: #e9e3d4;
}

.location-hero__trigger img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 980px) {
  .location-hero {
    padding: 20px;
  }

  .location-hero__head {
    align-items: flex-start;
    margin-bottom: 12px;
  }

  .location-hero__actions {
    margin-left: 0;
  }

  .location-hero__trigger,
  .location-hero__frame {
    aspect-ratio: 16 / 9;
    min-height: 0;
    height: auto;
  }

  .location-hero__trigger img,
  .location-hero__frame iframe {
    height: 100%;
  }
}

@media (max-width: 640px) {
  .location-hero {
    margin-top: 18px;
    padding: 16px;
  }

  .location-hero__head {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
  }

  .location-hero__head .eyebrow {
    margin-bottom: 4px;
  }

  .location-hero__head h3 {
    font-size: clamp(20px, 7vw, 30px);
    line-height: 1.04;
  }

  .location-hero__actions .map-link {
    min-height: auto;
    white-space: normal;
    line-height: 1.45;
  }

  .location-hero__trigger,
  .location-hero__frame {
    aspect-ratio: 4 / 3.15;
    border-radius: 20px;
  }

  .location-hero__trigger img {
    object-fit: contain;
    object-position: center top;
    background: #ece7dd;
  }
}

@media (max-width: 420px) {
  .location-hero {
    padding: 14px;
  }

  .location-hero__trigger,
  .location-hero__frame {
    aspect-ratio: 4 / 3.35;
    border-radius: 18px;
  }
}

/* =========================================
   FINAL FIX — HERO MOBILE + MAPA LOKALITY
   vložit úplně na konec styles.css
   ========================================= */

/* HERO — desktop/tablet */
.hero {
  min-height: clamp(560px, 82vh, 860px);
}

.hero__content {
  padding: 92px 0 28px;
}

.hero__grid {
  align-items: start;
}

.hero__panel {
  margin-top: 12px;
}

/* MAPA — desktop */
.location-hero {
  padding: 14px;
}

.location-hero__head {
  margin-bottom: 10px;
}

.location-hero__trigger {
  margin-top: 0;
  min-height: 0;
  height: clamp(420px, 50vw, 600px);
  border-radius: 24px;
  overflow: hidden;
}

.location-hero__trigger img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* TABLET */
@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 104px 0 24px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero__copy {
    padding-left: 0;
    padding-top: 0;
    max-width: 100%;
  }

  .hero__copy h1 {
    max-width: 11ch;
    font-size: clamp(38px, 8vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.03em;
  }

  .hero__lead {
    max-width: 32ch;
    font-size: 16px;
    line-height: 1.6;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero__actions .btn {
    width: auto;
    flex: 0 0 auto;
    min-width: 180px;
  }

  .hero__panel {
    max-width: 560px;
    margin-top: 0;
  }

  .location-hero {
    padding: 12px;
  }

  .location-hero__trigger {
    height: 360px;
    border-radius: 20px;
  }

  .location-hero__trigger img {
    object-position: center center;
  }
}

/* MOBIL */
@media (max-width: 640px) {
  .hero {
    min-height: auto;
    
    align-items: flex-start;
  }

  .hero__content {
    padding: 70px 0 18px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero__copy {
    padding-left: 0;
    padding-top: 0;
    max-width: 100%;
  }

  .hero__copy .eyebrow {
    margin-bottom: 10px;
  }


  .hero__copy h1 {
    max-width: 15ch;
    font-size: clamp(26px, 8vw, 36px);
    line-height: 1.02;
    letter-spacing: -0.02em;
  }


  .hero__lead {
    margin-top: 12px;
    max-width: 28ch;
    font-size: 14px;
    line-height: 1.6;
  }

  .hero__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
  }

  .hero__actions .btn {
    width: auto;
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    min-height: 46px;
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: 0.05em;
  }

  .hero__panel {
    width: 100%;
    max-width: none;
    padding: 16px;
    margin-top: 0;
    border-radius: 22px;
  }

  .hero-stat {
    padding: 10px 0;
  }

  .hero-stat span {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .hero-stat strong {
    font-size: 18px;
    line-height: 1.15;
  }

  .hero-note {
    margin-top: 10px;
    padding-top: 10px;
    font-size: 13px;
    line-height: 1.5;
  }

  /* zrušení problematických globálních mobilních pravidel */
  .btn {
    width: auto;
  }

  .row-actions {
    flex-direction: column;
  }

  .row-actions .btn {
    width: 100%;
  }

  .cookie-bar__actions {
    flex-direction: column;
  }

  .cookie-bar__actions .btn {
    width: 100%;
  }

  .location-hero {
    padding: 10px;
  }

  .location-hero__head {
    gap: 8px;
    margin-bottom: 10px;
  }

  .location-hero__head h3 {
    font-size: clamp(16px, 6vw, 22px);
    line-height: 1.04;
  }

  .location-hero__actions {
    gap: 8px;
  }

  .location-hero__actions .map-link {
    font-size: 13px;
    line-height: 1.35;
  }

  .location-hero__trigger {
    height: 220px;
    min-height: 220px;
    border-radius: 16px;
  }

  .location-hero__trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

/* MALÉ MOBILY */
@media (max-width: 420px) {
  .hero__copy h1 {
    max-width: 13ch;
    font-size: clamp(23px, 8.6vw, 30px);
    line-height: 1.02;
  }

  .hero__lead {
    max-width: 24ch;
    font-size: 12px;
    line-height: 1.48;
  }

  .hero__actions .btn {
    flex: 1 1 100%;
  }

  .location-hero__trigger {
    height: 200px;
    min-height: 200px;
  }
}

/* =========================
   HERO MOBILE – CLEAN FINAL
   ========================= */
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 980px) {
  .hero__panel {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    height: 620px;
    min-height: 620px;
    position: relative;
    overflow: hidden;
    align-items: flex-start;
  }

  .hero__media,
  .hero__veil {
    position: absolute;
    inset: 0;
  }

  .hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 16%;
    transform: scale(1.16);
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(10, 18, 18, 0.22) 0%, rgba(10, 18, 18, 0.18) 22%, rgba(10, 18, 18, 0.42) 58%, rgba(10, 18, 18, 0.58) 100%),
      linear-gradient(90deg, rgba(10, 18, 18, 0.52) 0%, rgba(10, 18, 18, 0.28) 42%, rgba(10, 18, 18, 0.16) 100%);
  }

  .hero__content {
    position: relative;
    z-index: 2;
    padding: 64px 0 18px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero__copy {
    max-width: 100%;
    padding-left: 0;
    padding-top: 0;
  }

  .hero__copy .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: .12em;
  }

  .hero__copy h1 {
    max-width: 11ch;
    font-size: clamp(32px, 9.2vw, 46px);
    line-height: .98;
    letter-spacing: -0.03em;
  }

  .hero__lead {
    margin-top: 14px;
    max-width: 30ch;
    font-size: 15px;
    line-height: 1.52;
    color: rgba(255,255,255,.94);
    text-shadow: 0 8px 20px rgba(0,0,0,.22);
  }

  .hero__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
  }

  .hero__actions .btn {
    width: auto;
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    min-height: 48px;
    padding: 0 16px;
    font-size: 11px;
    letter-spacing: .05em;
  }
}

@media (max-width: 420px) {
  .hero {
    height: 580px;
    min-height: 580px;
  }

  .hero__content {
    padding-top: 58px;
  }

  .hero__copy h1 {
    max-width: 10.5ch;
    font-size: clamp(28px, 9.8vw, 38px);
  }

  .hero__lead {
    max-width: 26ch;
    font-size: 14px;
    line-height: 1.48;
  }

  .hero__actions .btn {
    flex: 1 1 100%;
  }
}
/* HERO – obsah dole na mobilu */
@media (max-width: 640px) {
  .hero {
    display: flex;
    align-items: flex-end; /* ⬅️ KLÍČOVÉ */
  }

  .hero__content {
    padding: 0 0 28px; /* jen spodní odsazení */
  }

  .hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero__actions {
    margin-top: 14px;
  }
}



/* =========================================
   UVODNI SLOVO + DOWNLOADS
   ========================================= */
.intro-band {
  padding-top: 28px;
}

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

.intro-person {
  padding: 28px;
  border-radius: 30px;
}

.intro-person__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.intro-person__photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 88px;
  border: 1px solid rgba(185, 162, 104, 0.28);
  background: linear-gradient(180deg, rgba(240, 237, 226, 0.92), rgba(250, 249, 246, 0.98));
  box-shadow: 0 14px 32px rgba(26, 34, 33, 0.08);
}

.intro-person__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-person__head h3 {
  margin-top: 8px;
  font-size: clamp(21px, 2vw, 28px);
}

.intro-copy {
  position: relative;
}

.intro-copy p + p {
  margin-top: 14px;
}

.intro-copy.is-collapsed {
  max-height: 240px;
  overflow: hidden;
}

.intro-copy.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 116px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(248, 245, 238, 0) 0%, rgba(248, 245, 238, 0.86) 62%, rgba(248, 245, 238, 1) 100%);
}

.intro-copy__toggle {
  margin-top: 20px;
  min-width: 220px;
}

.downloads-band {
  padding-bottom: 58px;
}

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

.download-tile {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 24px 26px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.download-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(185, 162, 104, 0.46);
  box-shadow: 0 24px 54px rgba(26, 34, 33, 0.10);
}

.download-tile__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(30, 63, 60, 0.08);
  box-shadow: none;
  color: var(--green);
}

.download-tile__icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.download-tile__icon svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.download-tile__body h3 {
  margin: 0 0 8px;
}

.download-tile__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
}

.download-tile__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--green);
  font-weight: 700;
}

.download-tile__link::after {
  content: "→";
  font-size: 16px;
}

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

  .finance-panel {
    grid-template-columns: 1fr;
  }

  .finance-panel .finance-media {
    order: 0;
  }
}

@media (max-width: 640px) {
  .intro-band {
    padding-top: 18px;
  }

  .intro-person {
    padding: 20px;
    border-radius: 24px;
  }

  .intro-person__head {
    align-items: flex-start;
    gap: 14px;
  }

  .intro-person__photo {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .intro-copy.is-collapsed {
    max-height: 200px;
  }

  .intro-copy__toggle {
    width: 100%;
    min-width: 0;
  }

  .download-tile {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
}



/* ===== FORM STATUS + CONFIRMATION MODAL ===== */
.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 1.4em;
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--text-soft);
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.form-modal.is-open {
  display: flex;
}

.form-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 14, 14, 0.64);
  backdrop-filter: blur(6px);
}

.form-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  border-radius: 28px;
  border: 1px solid rgba(185, 162, 104, 0.28);
  background: linear-gradient(180deg, rgba(250, 249, 246, 0.98), rgba(240, 237, 226, 0.94));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
  animation: formModalIn .24s ease;
}

.form-modal__content {
  padding: 30px;
}

.form-modal__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(185, 162, 104, 0.16);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.form-modal__content h2 {
  margin-top: 14px;
}

.form-modal__content p {
  margin-top: 10px;
}

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

.form-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(30, 63, 60, 0.08);
  color: var(--green);
  font-size: 30px;
  line-height: 1;
}

@keyframes formModalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .form-modal {
    padding: 16px;
  }

  .form-modal__content {
    padding: 22px;
  }

  .form-modal__actions .btn {
    width: 100%;
  }
}
