:root{
  --bg: #ffffff;
  --ink: #1a1a1a;
  --muted: #5c5c5c;

  --primary: #e3cfb1;
  --secondary: #e6a23e;

  --card: #fffaf2;
  --border: rgba(26,26,26,0.10);

  --shadow: 0 12px 30px rgba(0,0,0,0.08);
  --radius: 18px;

  --font-head: "Prata", serif;
  --font-body: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --container: 1120px;
  --header-h: 76px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
}

img{ max-width: 100%; height: auto; }
a{ color: inherit; text-decoration: none; }

.container{
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* Accessibility */
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
.skip-link{
  position: absolute;
  left: 12px;
  top: 12px;
  background: var(--ink);
  color: white;
  padding: 10px 12px;
  border-radius: 10px;
  transform: translateY(-200%);
  transition: transform .2s ease;
  z-index: 999999;
}
.skip-link:focus{ transform: translateY(0); }

/* Header (fixed, clean like the reference vibe) */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.brand-mark{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  object-fit: contain;
}
.brand-title{
  display:block;
  font-family: var(--font-head);
  letter-spacing: .2px;
  font-size: 18px;
  line-height: 1.1;
}
.brand-subtitle{
  display:block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* Nav */
.nav{
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-menu{
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link{
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(0,0,0,1);
  font-weight: 500;
  transition: background .2s ease, transform .2s ease, color .2s ease;
}
.nav-link:hover{
  background: rgba(227,207,177,0.40);
  transform: translateY(-1px);
}
.nav-link.is-active{
  background: rgba(230,162,62,0.18);
  color: rgba(0,0,0,1);
}

/* Mobile toggle */
.nav-toggle{
  display: none;
  border: 1px solid var(--border);
  background: white;
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}
.nav-toggle-lines{
  display: block;
  width: 18px;
  height: 12px;
  position: relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after,
.nav-toggle-lines{
  background: transparent;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  width: 18px;
  height: 2px;
  background: rgba(26,26,26,0.75);
  border-radius: 2px;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.nav-toggle-lines::before{ top: 2px; }
.nav-toggle-lines::after{ top: 8px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before{ top: 5px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after{ top: 5px; transform: rotate(-45deg); }

/* Sections */
.section{
  position: relative;
  padding: 48px 0;
}
.section-soft{
  background: linear-gradient(180deg, rgba(227,207,177,0.24), rgba(255,255,255,0.0));
}
.section-head{
  max-width: 820px;
  margin-bottom: 28px;
}
.section-head.center{ text-align: center; margin-inline: auto; }
.eyebrow{
  margin: 0 0 18px 0;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 24px;
  color: rgba(0,0,0,1);
}
.section-title{
  margin: 0;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.15;
}
.section-subtitle{
  margin: 12px 0 0 0;
  color: rgba(0,0,0,1);  text-align: justify;}

/* HERO (two-column + decorative background) */
.hero{
  padding-top: calc(16px + var(--header-h));
  padding-bottom: 0;
}
.hero-bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 380px at 15% 25%, rgba(230,162,62,0.25), transparent 60%),
    radial-gradient(900px 380px at 75% 10%, rgba(227,207,177,0.60), transparent 60%),
    linear-gradient(180deg, rgba(227,207,177,0.30), rgba(255,255,255,0.0) 65%);
  pointer-events: none;
}
.hero-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 72px;
}
.hero-copy{
  max-width: 100%;
  overflow: hidden;
}
.hero-title{
  margin: 0 0 18px 0;
  font-family: var(--font-head);
  font-weight: 200;
  font-size: clamp(25px, 2.8vw, 25px);
  line-height: 1.05;
}
.hero-role{
  margin: 0 0 24px 0;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  color: var(--muted);
}
.lead{
  margin: 0 0 20px 0;
  font-size: 18px;
  color: rgba(0,0,0,1);
  text-align: justify;
}
.body{
  margin: 0 0 14px 0;
  color: rgba(0,0,0,1);
}

/* Chips (topics list) */
.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 18px 0;
}
.chip{
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(230,162,62,0.30);
  background: rgba(255,255,255,0.70);
  font-size: 13px;
  color: rgba(0,0,0,1);
}

/* Buttons */
.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 12px 24px rgba(0,0,0,0.10); }
.btn:active{ transform: translateY(0px); }

.btn-primary{
  background: linear-gradient(180deg, rgba(230,162,62,0.95), rgba(230,162,62,0.75));
  border-color: rgba(230,162,62,0.35);
}
.btn-ghost{
  background: rgba(255,255,255,0.72);
}
.btn-block{ width: 100%; }

/* Hero side card */
.hero-card{
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-card-mobile{
  display: none;
}
.hero-card-desktop{
  display: block;
}
.portrait{
  height: 450px;
  background-image: url("PhDr. Simona Zahoráková - fotka.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(26,26,26,0.08);
}
.quote{
  padding: 18px 18px 20px 18px;
}
.quote-text{
  margin: 0;
  font-family: var(--font-head);
  font-size: 18px;
  line-height: 1.4;
}
.quote-author{
  margin: 10px 0 0 0;
  color: rgba(0,0,0,1);
  font-size: 13px;
}

/* Divider (wave) */
.section-divider{
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  overflow: hidden;
}
.section-divider svg{ width: 100%; height: 100%; }
.section-divider path{
  fill: var(--bg);
  opacity: 1;
}

/* Cards grid (About section) */
.cards-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 26px;
}
.card{
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.06);
}
.card-icon{ font-size: 22px; }
.card-title{
  margin: 10px 0 10px 0;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 20px;
}
.list{
  margin: 0;
  padding-left: 18px;
  color: rgba(0,0,0,1);
}
.list li{ margin-bottom: 8px; }
.list.two-col{
  columns: 2;
  column-gap: 18px;
}
.list.two-col li{ break-inside: avoid; }

/* Highlight quote box */
.highlight{
  margin-top: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(230,162,62,0.30);
  background: linear-gradient(180deg, rgba(227,207,177,0.34), rgba(255,255,255,0.55));
  padding: 18px 18px;
}
.highlight-text{
  margin: 0;
  font-family: var(--font-head);
  font-size: 18px;
  line-height: 1.45;
}

/* Pricing */
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.price-card{
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.price-card.featured{
  border-color: rgba(230,162,62,0.45);
  box-shadow: 0 18px 36px rgba(0,0,0,0.10);
  transform: translateY(-6px);
}
.badge{
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(230,162,62,0.18);
  border: 1px solid rgba(230,162,62,0.30);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.price-title{
  margin: 0;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
}
.price-main{
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price{
  font-size: 30px;
  font-weight: 800;
}
.per{
  color: rgba(0,0,0,1);
  font-weight: 600;
}
.price-list{
  list-style: none;
  padding: 0;
  margin: 6px 0 8px 0;
  border-top: 1px dashed rgba(26,26,26,0.16);
  padding-top: 10px;
}
.price-list li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  color: rgba(0,0,0,1);
}

.pricing-notes{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.note{
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.note-title{
  margin: 0 0 6px 0;
  font-family: var(--font-head);
  font-weight: 400;
}
.note-text{ margin: 0; color: rgba(0,0,0,1); }

/* Contact */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.contact-card{
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.06);
}
.contact-card.soft{
  background: linear-gradient(180deg, rgba(227,207,177,0.26), rgba(255,255,255,0.0));
}
.contact-title{
  margin: 0 0 10px 0;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 20px;
}
.contact-items{
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.contact-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(10,10,10,0.10);
  background: rgba(255,255,255,0.70);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-item:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
.contact-ico{ width: 22px; text-align: center; }
.contact-label{ font-weight: 700; color: rgba(0,0,0,1); }

.contact-actions{
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* Details (mini FAQ) */
details{
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.72);
  border-radius: 14px;
  padding: 10px 12px;
  margin-top: 10px;
}
summary{
  cursor: pointer;
  font-weight: 800;
}
details p{
  margin: 10px 0 0 0;
  color: rgba(0,0,0,1);
}

/* Footer */
.site-footer{
  border-top: 1px solid var(--border);
  padding: 18px 0;
  background: rgba(255,255,255,0.85);
}
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-text{
  margin: 0;
  color: rgba(26,26,26,0.62);
}
.to-top{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(227,207,177,0.22);
}

/* Responsive */
@media (max-width: 1024px){
  .hero{ 
    padding-top: calc(8px + var(--header-h));
  }
  .hero-grid{ 
    grid-template-columns: 1fr; 
    overflow: hidden;
  }
  .hero-copy{
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  .portrait{ height: 260px; }
  
  .hero-card-mobile{
    display: block;
    margin: 24px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero-card-desktop{
    display: none;
  }

  .cards-grid{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .list.two-col{ columns: 1; }
}

@media (max-width: 760px){
  .section{
    padding: 20px 0;
  }
  
  .nav-toggle{ display: inline-flex; }
  .nav-menu{
    position: absolute;
    right: 20px;
    top: calc(var(--header-h) - 8px);
    width: min(320px, calc(100vw - 40px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255,255,255,0.92);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open{ display: flex; }
  .nav-link{ justify-content: center; }

  .pricing-grid{ grid-template-columns: 1fr; }
  .pricing-notes{ grid-template-columns: 1fr; }

  .footer-inner{ flex-direction: column; }
}
