/* =====================
   Reset & proměnné
   ===================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --rose:    #FFDCDC;
  --cream:   #FFF2EB;
  --peach:   #FFE8CD;
  --sand:    #FFD6BA;
  --ink:     #1e1814;
  --dark:    #2e2420;
  --muted:   #7a6358;
  --light:   #a08070;
  --accent:  #b5633f;
  --accent2: #c97a5a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  font-weight: 300;
}

/* =====================
   Typografie
   ===================== */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.15;
}

h1 em, h2 em {
  font-style: italic;
  color: var(--accent);
}

.eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* =====================
   Navigace
   ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(255, 242, 235, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(181, 99, 63, 0.1);
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: var(--dark);
  font-weight: 500;
}

.nav__links {
  display: flex;
  gap: 3rem;
}

.nav__links a {
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  transition: color 0.25s;
}

.nav__links a:hover {
  color: var(--accent);
}

.nav__cta {
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--accent);
  padding: 0.65rem 1.6rem;
  border-radius: 2px;
  font-weight: 400;
  transition: background 0.25s, transform 0.2s;
}

.nav__cta:hover {
  background: var(--dark);
  transform: translateY(-1px);
}

/* =====================
   Hero
   ===================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 5rem;
}

.hero__photo {
  position: relative;
  background: var(--peach);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 3rem;
}

.hero__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,220,220,0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(255,214,186,0.5) 0%, transparent 50%);
}

.hero__photo-frame {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}

.hero__photo-placeholder span {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
  position: relative;
  z-index: 1;
  background: rgba(255,232,205,0.6);
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(181,99,63,0.2);
  border-radius: 2px;
}

.hero__photo-badge {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255,242,235,0.85);
  backdrop-filter: blur(10px);
  padding: 0.9rem 1.8rem;
  border-radius: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(181,99,63,0.15);
}

.dot {
  color: var(--accent2);
  opacity: 0.6;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 5rem 5rem 5rem;
  background: var(--cream);
  position: relative;
}

.hero__content::before {
  content: '';
  position: absolute;
  top: 8rem; right: 4rem;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(181,99,63,0.12);
}

.hero__content::after {
  content: '';
  position: absolute;
  top: 8.8rem; right: 4.8rem;
  width: 104px; height: 104px;
  border-radius: 50%;
  border: 1px solid rgba(181,99,63,0.07);
}

.hero__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 1.8rem;
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 400px;
  margin-bottom: 2.8rem;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn--dark {
  background: var(--ink);
  color: var(--cream);
}

.btn--dark:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(46,36,32,0.3);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(181,99,63,0.12);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}

.stat span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--light);
  text-transform: uppercase;
}

.stat__divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(181,99,63,0.15);
}

/* =====================
   Strip
   ===================== */
.strip {
  background: var(--sand);
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  border-top: 1px solid rgba(181,99,63,0.1);
  border-bottom: 1px solid rgba(181,99,63,0.1);
}

.strip__dot {
  color: var(--accent2);
  opacity: 0.5;
  font-size: 0.55rem;
}

/* =====================
   Sekce — obecné
   ===================== */
.section {
  padding: 7rem 4rem;
  background: var(--cream);
}

.section--peach {
  background: var(--peach);
}

.section__header {
  margin-bottom: 4rem;
}

.section__header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  margin-top: 0.4rem;
}

/* =====================
   Služby
   ===================== */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(181,99,63,0.1);
  border: 1px solid rgba(181,99,63,0.1);
}

.service {
  background: var(--cream);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
}

.service:hover {
  background: var(--rose);
}

.service--large {
  grid-column: span 2;
  padding: 3rem 2.5rem;
}

.service--right {
  grid-column: 2 / span 2;
}

.service__number {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  color: rgba(181,99,63,0.35);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.service__icon-wrap {
  margin-bottom: 1rem;
}

.service__icon {
  font-size: 1.6rem;
  color: var(--accent2);
  opacity: 0.7;
  line-height: 1;
}

.service h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
  color: var(--ink);
}

.service--large h3 {
  font-size: 1.5rem;
}

.service p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 380px;
}

.service__link {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  font-weight: 400;
  transition: letter-spacing 0.2s;
}

.service__link:hover {
  letter-spacing: 0.2em;
}

/* =====================
   O mně
   ===================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  background: var(--rose);
}

.about__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 4rem;
  overflow: hidden;
}

.about__circle {
  position: absolute;
  border-radius: 50%;
}

.about__circle--1 {
  width: 400px; height: 400px;
  border: 1px solid rgba(181,99,63,0.18);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.about__circle--2 {
  width: 280px; height: 280px;
  background: rgba(255,242,235,0.45);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.about__quote {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about__quote blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--dark);
  line-height: 1.6;
  max-width: 300px;
}

.about__text {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.about__text h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1.8rem;
}

.about__text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 420px;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.about__tags span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(181,99,63,0.25);
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
}

/* =====================
   Kurzy
   ===================== */
.courses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(181,99,63,0.15);
  border: 1px solid rgba(181,99,63,0.15);
}

.course {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  background: rgba(255,242,235,0.6);
  padding: 2.2rem 2rem;
  text-decoration: none;
  transition: background 0.25s;
}

.course:hover {
  background: rgba(255,255,255,0.8);
}

.course__meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 60px;
}

.course__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: rgba(181,99,63,0.35);
  line-height: 1;
}

.course__tag {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  white-space: nowrap;
}

.course h3 {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.course p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.course__arrow {
  color: var(--accent);
  font-size: 1.1rem;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}

.course:hover .course__arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* =====================
   CTA
   ===================== */
.cta {
  background: var(--sand);
  padding: 8rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(181,99,63,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(181,99,63,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1.2rem;
  color: var(--ink);
}

.cta p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 2.5rem;
}

/* =====================
   Footer
   ===================== */
.footer {
  background: var(--dark);
  padding: 2.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 232, 205, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--sand);
  font-weight: 400;
  letter-spacing: 0.06em;
}

/* =====================
   Responzivita
   ===================== */
@media (max-width: 1024px) {
  .hero__content {
    padding: 5rem 3rem;
  }
  .services {
    grid-template-columns: 1fr 1fr;
  }
  .service--large,
  .service--right {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }
  .nav__links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__photo {
    height: 55vw;
    min-height: 220px;
  }
  .hero__content {
    padding: 3rem 1.8rem 4rem;
  }
  .section { padding: 4rem 1.8rem; }
  .services { grid-template-columns: 1fr; }
  .service--large,
  .service--right { grid-column: span 1; }
  .about { grid-template-columns: 1fr; }
  .about__visual { min-height: 280px; padding: 4rem 2rem; }
  .about__text { padding: 3rem 1.8rem; }
  .courses { grid-template-columns: 1fr; }
  .footer {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    padding: 2rem 1.8rem;
  }
}

/* =====================
   Ceník
   ===================== */
.section--rose { background: var(--rose); }
.section--sand { background: var(--sand); }

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.price-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(181,99,63,0.12);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(181,99,63,0.12);
}

.price-card--featured {
  background: var(--cream);
  border-color: var(--accent);
  border-width: 1.5px;
}

.price-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--cream);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 2px;
  white-space: nowrap;
}

.price-card__label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
}

.price-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}

.price-card__price span {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.price-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.price-card__list li {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}

.price-card__list li::before {
  content: '◇';
  position: absolute;
  left: 0;
  font-size: 0.5rem;
  color: var(--accent2);
  top: 0.25rem;
}

/* =====================
   FAQ
   ===================== */
.faq {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(181,99,63,0.12);
}

.faq__item {
  border-bottom: 1px solid rgba(181,99,63,0.12);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark);
  text-align: left;
  transition: color 0.2s;
  gap: 1rem;
}

.faq__question:hover {
  color: var(--accent);
}

.faq__icon {
  font-size: 1.4rem;
  color: var(--accent);
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__item--open .faq__answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq__answer p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 620px;
}

/* =====================
   Obchodní podmínky
   ===================== */
.conditions {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.conditions__left h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.conditions__left p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--muted);
}

.conditions__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.condition-block {
  padding: 1.5rem;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(181,99,63,0.12);
  border-radius: 4px;
}

.condition-block h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.condition-block p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--muted);
}

/* =====================
   Spolupráce
   ===================== */
.collab {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.collab__text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.collab__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.collab__value {
  padding: 1.8rem 1.5rem;
  background: var(--rose);
  border: 1px solid rgba(181,99,63,0.1);
  border-radius: 4px;
  transition: background 0.25s;
}

.collab__value:hover {
  background: var(--peach);
}

.collab__value-icon {
  font-size: 1.4rem;
  color: var(--accent2);
  margin-bottom: 0.8rem;
  line-height: 1;
}

.collab__value h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.collab__value p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--muted);
}

/* =====================
   Responzivita — doplněk
   ===================== */
@media (max-width: 1024px) {
  .pricing { grid-template-columns: 1fr; max-width: 440px; }
  .conditions { grid-template-columns: 1fr; gap: 3rem; }
  .conditions__right { grid-template-columns: 1fr; }
  .collab { grid-template-columns: 1fr; gap: 3rem; }
  .collab__values { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pricing { max-width: 100%; }
  .collab__values { grid-template-columns: 1fr; }
}
