:root {
  --white: #ffffff;
  --black: #111111;
  --gray-50: #fafafa;
  --gray-100: #f3f3f1;
  --gray-200: #e7e7e2;
  --gray-300: #d5d5ce;
  --gray-500: #78786f;
  --gray-700: #3b3b36;
  --orange-100: #ffe4c4;
  --orange-200: #ffd4a0;
  --green-100: #ddf4d6;
  --green-200: #c7edbf;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  --radius: 22px;
  --radius-small: 14px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

button {
  font: inherit;
  cursor: pointer;
}

.container {
  width: min(var(--max-width), calc(100% - 36px));
  margin: 0 auto;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(14px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.header-inner {
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-100) 0 50%, var(--green-100) 50% 100%);
  box-shadow: inset 0 0 0 4px var(--white);
}


.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: var(--white);
  flex: 0 0 auto;
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--gray-700);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.language-switch a:hover,
.language-switch a:focus-visible {
  background: var(--gray-100);
  color: var(--black);
  outline: none;
}

.language-switch a.active {
  background: var(--black);
  color: var(--white);
}

.language-switch a.active:hover,
.language-switch a.active:focus-visible {
  background: var(--black);
  color: var(--white);
}

.section {
  padding: 58px 0;
}

.section-muted {
  background: var(--gray-100);
}

.hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 22%, var(--green-100), transparent 30%),
    radial-gradient(circle at 16% 82%, var(--orange-100), transparent 28%),
    var(--white);
}

.hero-grid,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 24px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gray-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.25rem, 6vw, 5.1rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

p {
  color: var(--gray-700);
  margin: 12px 0 0;
}

.lead {
  max-width: 700px;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}


.hero-card,
.info-card,
.process-step,
.panel {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-card,
.panel {
  padding: clamp(18px, 2.4vw, 24px);
}

.hero.section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.hero-card {
  position: relative;
  overflow: hidden;
}

.hero-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.625rem);
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 170px;
  height: 170px;
  background: var(--green-100);
  border-radius: 50%;
  z-index: 0;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.facts {
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.facts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--gray-200);
}

.facts dt {
  color: var(--gray-700);
  font-weight: 600;
}

.facts dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.facts dd a {
  text-decoration: none;
  border-bottom: 2px solid var(--green-200);
  word-break: break-word;
}

.cards,
.process-grid {
  display: grid;
  gap: 14px;
}

.cards-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.process-step {
  padding: 18px;
}

.info-card {
  min-height: 170px;
}

.panel-orange {
  background: var(--orange-100);
}

.panel-green {
  background: var(--green-100);
}

.plain-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.plain-list li {
  padding-left: 22px;
  position: relative;
}

.plain-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--black);
  font-weight: 900;
}


/* Jemnější typografie pro sekci vymezení služeb. */
#vymezeni h2 {
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  font-weight: 680;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

#vymezeni .plain-list,
#vymezeni p {
  font-size: 0.96rem;
}

.process-grid {
  margin-top: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-weight: 800;
}

.contact-note {
  margin-top: 16px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--black);
  border-radius: var(--radius-small);
  background: var(--green-100);
  color: var(--black);
  font-size: clamp(1.08rem, 2.5vw, 1.7rem);
  font-weight: 850;
  letter-spacing: -0.03em;
  text-decoration: none;
  word-break: break-word;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-email:hover,
.contact-email:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  outline: none;
}

.site-footer {
  padding: 24px 0;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 750;
}

@media (max-width: 960px) {
  .hero-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .reverse-mobile > :first-child {
    order: 2;
  }

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

@media (max-width: 700px) {
  .language-switch {
    margin-top: -2px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 42px 0;
  }

  .hero {
    min-height: auto;
  }

  .cards-three,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .facts div {
    display: grid;
  }

  .facts dd {
    text-align: left;
  }
}


/* Úprava sekce Služby: informace zůstávají vpravo, texty jsou zvětšené o 50 % a boxy se přizpůsobují obsahu. */
#sluzby .two-column {
  grid-template-columns: minmax(0, 0.86fr) minmax(390px, 1.14fr);
  align-items: start;
}

#sluzby .cards-three {
  grid-template-columns: 1fr;
  justify-self: end;
  width: 100%;
  gap: 14px;
}

#sluzby .info-card {
  min-height: auto;
  padding: clamp(20px, 2.4vw, 26px);
  display: grid;
  align-content: start;
  gap: 10px;
}

#sluzby .info-card h3 {
  font-size: 1.35rem;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

#sluzby .info-card p {
  margin-top: 0;
  font-size: 0.75rem;
  line-height: 1.55;
}

.service-subnote {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.75em;
  line-height: 1.45;
  color: var(--gray-500);
  vertical-align: baseline;
}

@media (max-width: 960px) {
  #sluzby .two-column {
    grid-template-columns: 1fr;
  }
}


/* Kompaktnější rozvržení: menší svislé mezery, zachovaný vzhled i barevnost. */
.hero-grid,
.two-column {
  gap: clamp(20px, 3vw, 28px);
}

.cards,
.process-grid {
  gap: 14px;
}

.hero-card .plain-list li + li,
.panel .plain-list li + li {
  margin-top: 0;
}

#sluzby .cards-three {
  gap: 14px;
}

#sluzby .info-card {
  padding: clamp(20px, 2.4vw, 26px);
  gap: 8px;
}

#sluzby .info-card p {
  line-height: 1.45;
}

@media (max-width: 700px) {
  .hero.section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section {
    padding: 40px 0;
  }

  .hero-card,
  .panel,
  .info-card,
  .process-step {
    padding: 18px;
  }
}


/* Header po odstranění navigace: vlevo pouze značka, vpravo výběr jazyka. */
.header-inner {
  justify-content: space-between;
}

@media (max-width: 700px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
  }
}
