:root {
  --bg: #fbf7f0;
  --bg-2: #f4ecdf;
  --paper: #fffdf9;
  --ink: #1f2932;
  --muted: #63717c;
  --line: rgba(35, 44, 52, .12);
  --accent: #67a5cf;
  --accent-dark: #2f6f9d;
  --sand: #e8d8bf;
  --shadow: 0 18px 46px rgba(52, 43, 31, .09);
  --radius: 30px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.06; letter-spacing: -.035em; }
h1 {
  font-size: clamp(2.25rem, 4.75vw, 4.65rem);
  max-width: 760px;
  font-weight: 950;
  line-height: .98;
  letter-spacing: -.055em;
}
h2 { font-size: clamp(2rem, 3.6vw, 3.55rem); }
h3 { font-size: 1.25rem; letter-spacing: -.02em; }

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

/* Jemné oddělení jednotlivých sekcí */
main > section + section {
  border-top: 1px solid rgba(31, 41, 50, .08);
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 240, .82);
  border-bottom: 1px solid rgba(31, 41, 50, .08);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand img { width: 210px; height: auto; }
.main-nav { margin-left: auto; display: flex; gap: 24px; font-size: .94rem; color: #43505a; }
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--ink); }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: .78rem 1.08rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  font-size: .92rem;
  box-shadow: 0 14px 35px rgba(31, 41, 50, .16);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3.7vw, 48px) 0 clamp(52px, 6vw, 84px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -18% auto auto;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 165, 207, .16), rgba(103, 165, 207, 0) 62%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: -160px;
  bottom: -220px;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 216, 191, .55), rgba(232, 216, 191, 0) 64%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .92fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}
.eyebrow {
  display: block;
  margin: 0 0 22px;
  padding: 0;
  color: var(--accent-dark);
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}
.eyebrow::before {
  content: none;
}
.kicker {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}
.hero-lead {
  font-size: clamp(1.04rem, 1.45vw, 1.24rem);
  line-height: 1.75;
  max-width: 700px;
  margin: 24px 0 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 34px 0 20px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 18px 40px rgba(47, 111, 157, .23);
}
.button.quiet, .button.secondary {
  background: rgba(255, 255, 255, .55);
  color: var(--ink);
  border-color: var(--line);
}
.reassurance {
  max-width: 680px;
  display: grid;
  gap: 4px;
  padding: 17px 20px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 253, 249, .70);
  border-radius: 0 18px 18px 0;
  box-shadow: 0 12px 30px rgba(52, 43, 31, .06);
}
.reassurance strong { font-size: 1rem; }
.reassurance span { color: var(--muted); }

.hero-visual { position: relative; align-self: start; transform: translateY(50px); }
.portrait-wrap {
  position: relative;
  max-width: 530px;
  margin-left: auto;
}
.portrait-card {
  position: relative;
  border-radius: 42px;
  padding: 13px;
  background: rgba(255, 253, 249, .8);
  box-shadow: 0 12px 28px rgba(52, 43, 31, .05);
  border: 1px solid rgba(31, 41, 50, .06);
}
.portrait-card::before {
  content: none;
}
.portrait-card img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  border-radius: 32px;
  filter: saturate(.92) contrast(.98) brightness(1.02);
}
.note-card {
  position: absolute;
  left: -20px;
  bottom: 30px;
  width: min(310px, 82%);
  padding: 22px 24px;
  border-radius: 26px;
  background: rgba(255, 253, 249, .94);
  box-shadow: 0 20px 50px rgba(52, 43, 31, .14);
  border: 1px solid rgba(31, 41, 50, .08);
}
.note-card p { margin: 0; color: var(--ink); font-weight: 750; line-height: 1.45; }

.hero-booking-card {
  margin: 26px 0 0 auto;
  max-width: 430px;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 26px;
  background: rgba(255, 253, 249, .82);
  border: 1px solid rgba(31, 41, 50, .08);
  box-shadow: 0 14px 32px rgba(52, 43, 31, .07);
}
.hero-booking-card strong {
  color: var(--ink);
  line-height: 1.25;
  font-size: 1.02rem;
}
.hero-booking-card span {
  color: var(--muted);
}
.hero-booking-card a {
  margin-top: 4px;
  color: var(--accent-dark);
  font-weight: 900;
  width: fit-content;
  border-bottom: 1px solid rgba(47, 111, 157, .34);
}


.section { padding: clamp(70px, 8vw, 110px) 0; }
.intro-grid, .process-grid, .audience-grid, .about-grid, .contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}
.soft-copy { font-size: 1.12rem; }
.soft-copy p { max-width: 690px; }
#proc .intro-grid { align-items: center; }
#proc .soft-copy { align-self: center; }

.warm-panel {
  background: linear-gradient(180deg, rgba(244,236,223,.68), rgba(251,247,240,1));
}
.center-title {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}
.center-title p:last-child { font-size: 1.1rem; margin-top: 18px; }
.narrow { max-width: 850px; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.benefit-grid article {
  background: rgba(255, 253, 249, .74);
  border: 1px solid rgba(31, 41, 50, .08);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 20px 30px 30px;
  box-shadow: 0 18px 40px rgba(52, 43, 31, .06);
}
.benefit-grid article > * {
  position: relative;
  z-index: 1;
}
.number {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  color: var(--accent-dark);
  opacity: .07;
  font-weight: 950;
  letter-spacing: -.08em;
  font-size: clamp(5.2rem, 7.2vw, 6.4rem);
  line-height: .9;
  pointer-events: none;
}
.benefit-grid h3 { margin-top: 20px; }
.benefit-grid p { margin-top: 14px; }

.process { background: var(--paper); }
.process-sticky {
  position: sticky;
  top: 120px;
}
.process-sticky p { font-size: 1.08rem; margin-top: 20px; }
.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--accent-dark);
  font-weight: 850;
  border-bottom: 1px solid rgba(47, 111, 157, .35);
}
.steps { display: grid; gap: 16px; }
.steps article {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 20px;
  row-gap: 6px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.steps article:first-child { padding-top: 0; }
.steps span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg-2);
  color: var(--accent-dark);
  font-weight: 900;
}
.steps p { grid-column: 2 / 3; margin: 0; max-width: 680px; }

.quote-section { padding: clamp(58px, 7vw, 96px) 0; }
blockquote {
  margin: 0;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 38px;
  background: #25313b;
  color: #fff;
  box-shadow: var(--shadow);
}
blockquote p {
  margin: 0 0 22px;
  max-width: 920px;
  font-size: clamp(1.8rem, 3.4vw, 3.35rem);
  line-height: 1.15;
  letter-spacing: -.04em;
  color: #fff;
}
blockquote cite { color: rgba(255,255,255,.74); font-style: normal; }

.audience-list {
  display: grid;
  gap: 12px;
  margin-top: 46px;
}
.audience-list p {
  margin: 0;
  padding: 18px 0 18px 34px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: #485660;
}
.audience-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}
.soft-service { background: linear-gradient(180deg, rgba(255,253,249,.78), rgba(244,236,223,.5)); }
.service-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 980px;
  margin: 34px auto 0;
}
.service-pill {
  appearance: none;
  border: 1px solid rgba(31, 41, 50, .08);
  cursor: pointer;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 253, 249, .86);
  color: #47545e;
  font: inherit;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.service-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(103, 165, 207, .35);
}
.service-pill.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 16px 34px rgba(31, 41, 50, .13);
}
.service-detail {
  max-width: 820px;
  margin: 28px auto 0;
  text-align: left;
}
.service-detail-item {
  display: none;
  padding: 26px 30px;
  border-radius: 28px;
  background: rgba(255, 253, 249, .78);
  border: 1px solid rgba(31, 41, 50, .08);
  box-shadow: 0 18px 40px rgba(52, 43, 31, .06);
}
.service-detail-item.is-active { display: block; }
.service-detail-item h3 { margin-bottom: 10px; }
.service-detail-item p { margin: 0; }
.about { background: var(--paper); }
.about-grid { grid-template-columns: .72fr 1fr; align-items: center; }
.about-photo {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-2);
}
.about-photo img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; }

.about h2 + p,
.contact h2 + p {
  margin-top: 24px;
}

.about p { font-size: 1.08rem; }
.signature { color: var(--ink); font-weight: 850; margin-top: 22px; }

.contact {
  background: var(--bg-2);
  padding-bottom: clamp(80px, 9vw, 120px);
}
.contact-grid { grid-template-columns: .95fr 1.05fr; align-items: start; }
.contact-lead { font-size: 1.12rem; max-width: 680px; }
.contact-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.contact-options a, .contact-options div {
  min-height: 112px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 253, 249, .7);
  border: 1px solid rgba(31, 41, 50, .08);
}
.contact-options span { display: block; margin-bottom: 10px; color: var(--muted); font-size: .88rem; }
.contact-options strong { display: block; color: var(--ink); line-height: 1.35; }

.contact-options-three {
  grid-template-columns: repeat(3, 1fr);
}

.contact-options-list {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 680px;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 253, 249, .72);
  border: 1px solid rgba(31, 41, 50, .08);
}
.contact-options-list a {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.contact-options-list a + a {
  border-top: 1px solid rgba(31, 41, 50, .08);
}
.contact-options-list span {
  margin: 0;
  font-size: .94rem;
}
.contact-options-list strong {
  text-align: right;
  white-space: nowrap;
}
.contact-place {
  margin: 14px 0 0;
  font-size: .96rem;
  color: var(--muted);
}

.office-locations {
  margin-top: 22px;
  max-width: 680px;
}
.office-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.6;
}
.office-list {
  display: grid;
  gap: 12px;
}
.office-item {
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(255, 253, 249, .72);
  border: 1px solid rgba(31, 41, 50, .08);
}
.office-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .9rem;
}
.office-item strong {
  display: block;
  color: var(--ink);
  line-height: 1.4;
}
.office-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .92rem;
}
.office-item a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 850;
  font-size: .94rem;
}

.contact-form-column {
  display: grid;
  gap: 16px;
  align-content: start;
}
.contact-form {
  background: var(--paper);
  border-radius: 34px;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.9);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 8px; color: var(--ink); font-weight: 750; margin-bottom: 14px; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(31, 41, 50, .13);
  background: #fff;
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  color: var(--ink);
  outline: none;
}
input:focus, textarea:focus { border-color: rgba(103, 165, 207, .75); box-shadow: 0 0 0 4px rgba(103, 165, 207, .13); }
textarea { min-height: 142px; resize: vertical; }
.form-note { margin: 14px 0 0; font-size: .9rem; }
.marketing-consent-note {
  margin-top: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(31, 41, 50, .045);
  border: 1px solid rgba(31, 41, 50, .08);
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.55;
}

.booking-panel {
  margin-top: clamp(42px, 6vw, 76px);
  padding-top: clamp(36px, 5vw, 60px);
  border-top: 1px solid rgba(31, 41, 50, .10);
}
.booking-intro {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}
.booking-intro p:last-child {
  font-size: 1.08rem;
  margin-top: 18px;
}
.booking-card {
  width: min(100%, 980px);
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid rgba(31, 41, 50, .08);
  border-radius: 34px;
  padding: clamp(10px, 2vw, 18px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tidycal-embed {
  width: 100%;
  min-height: 700px;
  height: 700px;
}

.tidycal-embed iframe {
  width: 100% !important;
  min-height: 700px !important;
  height: 700px !important;
  border: 0 !important;
  border-radius: 24px;
}

.site-footer { padding: 30px 0; background: #1f2932; color: rgba(255,255,255,.72); }
.footer-inner { display: flex; justify-content: space-between; gap: 18px; font-size: .94rem; }

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .header-inner { justify-content: space-between; }
  .brand img { width: 190px; }
}
@media (max-width: 900px) {
  h1 { font-size: clamp(2.3rem, 11vw, 4.4rem); }
  .hero-grid, .intro-grid, .process-grid, .audience-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; }
  .portrait-wrap { margin-left: 0; }
  .benefit-grid { grid-template-columns: 1fr; }
  .process-sticky { position: static; }
  .audience-list { margin-top: 0; }
  .contact-options, .contact-options-three { grid-template-columns: 1fr; }
  .contact-options-list a { align-items: flex-start; display: grid; gap: 6px; }
  .contact-options-list strong { text-align: left; white-space: normal; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { position: static; }
  .header-inner { min-height: 70px; }
  .brand img { width: 168px; }
  .header-cta { padding: .65rem .85rem; font-size: .84rem; }
  .hero { padding-top: 30px; }
  .hero-actions { display: grid; align-items: stretch; }
  .button { width: 100%; }
  .note-card { position: relative; left: 0; bottom: auto; width: auto; margin-top: 14px; }
  .hero-visual { transform: none; }
  .portrait-wrap { max-width: 100%; }
  .portrait-card { max-width: 100%; }
  .hero-booking-card { max-width: none; margin-left: 0; }
  .portrait-card::before { content: none; }
  .reassurance { border-radius: 18px; border-left-width: 3px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  blockquote { border-radius: 28px; }
  .service-cloud { justify-content: flex-start; }
}

/* Bezpečný kontaktní formulář */
.form-message {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(31, 41, 50, .10);
  background: rgba(255, 253, 249, .86);
}
.form-message strong { color: var(--ink); }
.form-message span { color: var(--muted); }
.form-success { border-left: 4px solid var(--accent); }
.form-error { border-left: 4px solid #b65d50; }
.hp-wrap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.consent-check {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  margin: 4px 0 16px;
  color: var(--muted);
  font-weight: 600;
  font-size: .92rem;
  line-height: 1.45;
}
.consent-check input {
  width: auto;
  margin-top: 3px;
}
.turnstile-wrap { margin: 4px 0 18px; }

.form-info { border-left: 4px solid var(--accent); }
.contact-form button[disabled] {
  opacity: .72;
  cursor: wait;
}


@media (max-width: 760px) {
  .booking-card {
    width: 100%;
    border-radius: 24px;
    padding: 8px;
  }

  .tidycal-embed,
  .tidycal-embed iframe {
    min-height: 760px !important;
    height: 760px !important;
  }
}
