/* ============================================
   ALŽBETA KOBYDOVÁ — Brand CSS
   Mobile-first, custom static build
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Pinyon+Script&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --green-dark:   #163B28;
  --green-mid:    #34604B;
  --terracotta:   #C6793D;
  --terracotta-dark: #A44B06;
  --cream-light:  #EEE8E1;
  --cream-warm:   #E4D7B9;
  --gold:         #B29253;

  --bg:           #F5F0EA;
  --text:         #1a1a1a;
  --text-muted:   #5a5a5a;

  --font-heading: 'Cinzel', serif;
  --font-script:  'Pinyon Script', cursive;
  --font-body:    'Poppins', sans-serif;

  --max-w:        1100px;
  --section-pad:  4rem 1.25rem;
  --radius:       4px;
  --transition:   0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  color: var(--green-dark);
  margin-bottom: 1rem;
}

/* script-initial removed — titles use Cinzel only */

p { color: var(--text-muted); font-weight: 300; font-size: 1rem; } /* 16px minimum */

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: var(--section-pad); }
.section--cream { background-color: var(--cream-light); }
.section--warm  { background-color: var(--cream-warm); }
.section--green { background-color: var(--green-dark); }

.text-center { text-align: center; }

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn--primary {
  background: var(--green-dark);
  color: var(--cream-light);
}
.btn--primary:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
}
.btn--outline:hover {
  background: var(--green-dark);
  color: var(--cream-light);
}

.btn--light {
  background: var(--cream-light);
  color: var(--green-dark);
}
.btn--light:hover {
  background: var(--cream-warm);
}

.divider {
  width: 3rem;
  height: 1.5px;
  background: var(--terracotta);
  margin: 1rem auto 2rem;
}
.divider--left { margin-left: 0; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(245, 240, 234, 0.97);
  box-shadow: 0 1px 20px rgba(22, 59, 40, 0.08);
  backdrop-filter: blur(8px);
}

.nav__logo-name {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--cream-light);
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav.scrolled .nav__logo-name {
  color: var(--green-dark);
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream-light);
  transition: all var(--transition);
}

.nav.scrolled .nav__toggle span {
  background: var(--green-dark);
}

.nav__toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__menu {
  position: fixed;
  top: 0; right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--green-dark);
  padding: 5rem 2.5rem 2.5rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav__menu.open { right: 0; }

.nav__menu a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-light);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(238, 232, 225, 0.15);
  opacity: 0.9;
  transition: opacity var(--transition), padding var(--transition);
}

.nav__menu a:not(.btn):hover { opacity: 1; padding-left: 0.5rem; }
.nav__menu .btn:hover { opacity: 1; }
.nav__menu a.active { color: var(--cream-warm); opacity: 1; }

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}
.nav__overlay.show { display: block; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(22, 59, 40, 0.75) 0%,
    rgba(22, 59, 40, 0.2) 50%,
    transparent 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 3rem 1.25rem 4rem;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-warm);
  opacity: 0.85;
  margin-bottom: 1rem;
  display: block;
}

.hero__name {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 9vw, 5rem);
  color: var(--cream-light);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.hero__name .script {
  font-family: var(--font-script);
  font-size: 1.25em;
  display: block;
  line-height: 0.8;
  color: var(--cream-warm);
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(238, 232, 225, 0.9);
  margin: 1.25rem 0 2rem;
  max-width: 340px;
  line-height: 1.7;
}

.hero__scroll {
  display: none;
}


/* ============================================
   INTRO STRIP
   ============================================ */
.intro {
  padding: 3.5rem 1.25rem;
  background: var(--cream-light);
}

.intro__text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--green-dark);
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.intro__text strong {
  font-weight: 500;
  color: var(--green-dark);
}

/* ============================================
   PACKAGES TEASER
   ============================================ */
.packages {
  padding: var(--section-pad);
  background: var(--bg);
}

.packages__header {
  margin-bottom: 2.5rem;
}

.packages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.package-card {
  background: var(--cream-light);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(22, 59, 40, 0.1);
}

.package-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.package-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-card__number {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 0.25rem;
  opacity: 0.4;
}

.package-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--green-dark);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.package-card__desc {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  flex: 1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.package-card__features {
  margin-bottom: 1.5rem;
}

.package-card__features li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
  font-weight: 300;
}

.package-card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-size: 0.8rem;
}

.package-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--cream-warm);
  padding-top: 1.25rem;
  margin-top: auto;
}

.package-card__price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--green-dark);
}

.package-card__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}

.package-card__link:hover { gap: 0.7rem; }
.package-card__link::after { content: '→'; }

/* ============================================
   SERVICES TEASER
   ============================================ */
.services-teaser {
  padding: var(--section-pad);
  background: var(--cream-light);
}

.services-groups {
  margin-top: 2rem;
}

.services-group {
  padding: 1.25rem 0;
  border-top: 1px solid var(--cream-warm);
}

.services-group:last-child {
  border-bottom: 1px solid var(--cream-warm);
}

.services-group__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(228, 215, 185, 0.5);
}

.service-row:last-child {
  border-bottom: none;
}

.service-row__name {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--green-dark);
  letter-spacing: 0.05em;
}

.service-row__duration {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  white-space: nowrap;
}

.service-row__price {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--terracotta);
  white-space: nowrap;
  min-width: 4rem;
  text-align: right;
}

/* ============================================
   BIRTH SUPPORT BANNER
   ============================================ */
.birth-support {
  position: relative;
  padding: 4rem 1.25rem;
  background: var(--green-dark);
  overflow: hidden;
}

.birth-support::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(198, 121, 61, 0.1);
}

.birth-support__label {
  color: var(--cream-warm);
  opacity: 0.7;
}

.birth-support__title {
  color: var(--cream-light);
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  margin-bottom: 1rem;
}

.birth-support__text {
  color: rgba(238, 232, 225, 0.75);
  font-weight: 300;
  font-size: 1rem;
  max-width: 500px;
  margin-bottom: 2rem;
}

.birth-support__prices {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.price-block {
  border-left: 2px solid var(--terracotta);
  padding-left: 1.25rem;
}

.price-block__name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--cream-warm);
  margin-bottom: 0.25rem;
}

.price-block__amount {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--cream-light);
}

.price-block__note {
  font-size: 0.875rem;
  color: rgba(238, 232, 225, 0.65);
  font-weight: 300;
  margin-top: 0.2rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-pad);
  background: var(--bg);
}

.testimonials__track {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial {
  background: var(--cream-light);
  padding: 1.75rem;
  border-radius: 2px;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-script);
  font-size: 5rem;
  color: var(--terracotta);
  opacity: 0.2;
  position: absolute;
  top: -0.5rem;
  left: 1.25rem;
  line-height: 1;
}

.testimonial__text {
  font-size: 1rem;
  font-style: italic;
  color: var(--green-dark);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream-warm);
}

.testimonial__name {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--green-dark);
}

.testimonial__type {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 4rem 1.25rem;
  background: var(--cream-warm);
  text-align: center;
}

.cta-section__title {
  font-size: clamp(1.4rem, 5vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-section__text {
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--green-dark);
  padding: 3rem 1.25rem 2rem;
  color: var(--cream-light);
}

.footer__logo {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--cream-light);
  display: block;
  margin-bottom: 0.25rem;
}

.footer__name {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--cream-warm);
  opacity: 0.7;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.footer__links a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-light);
  opacity: 0.6;
  transition: opacity var(--transition);
}

.footer__links a:hover { opacity: 1; }

.footer__info {
  font-size: 0.85rem;
  color: rgba(238, 232, 225, 0.5);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.footer__info a {
  color: var(--cream-warm);
  opacity: 0.7;
}

.footer__note {
  border-top: 1px solid rgba(238, 232, 225, 0.1);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(238, 232, 225, 0.3);
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(238, 232, 225, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity var(--transition), border-color var(--transition);
}

.footer__social a:hover {
  opacity: 1;
  border-color: rgba(238, 232, 225, 0.5);
}

.footer__social svg {
  width: 14px;
  height: 14px;
  fill: var(--cream-light);
}

/* ============================================
   PAGE HEADER (subpages)
   ============================================ */
.page-header {
  padding: 7rem 1.25rem 3.5rem;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}


.page-header__label { color: var(--cream-warm); opacity: 0.65; }

.page-header__title {
  color: var(--cream-light);
  font-size: clamp(2rem, 8vw, 3.5rem);
}

.page-header__sub {
  color: rgba(238, 232, 225, 0.65);
  font-size: 1rem;
  font-weight: 300;
  max-width: 450px;
  margin-top: 0.75rem;
}

/* ============================================
   PONUKA PAGE
   ============================================ */
.ponuka-section {
  padding: 3rem 1.25rem;
}

.ponuka-section + .ponuka-section {
  border-top: 1px solid var(--cream-warm);
}

.travel-note {
  margin-top: 1.25rem;
  padding: 0 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.one-time-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--cream-warm);
  margin-top: 2rem;
  border: 1px solid var(--cream-warm);
}

.one-time-item {
  background: var(--bg);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.one-time-item__left { flex: 1; }

.one-time-item__name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--green-dark);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.one-time-item__duration {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}

.one-time-item__price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--terracotta);
  white-space: nowrap;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.product-card {
  background: var(--cream-light);
  padding: 1.5rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--green-dark);
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

.product-card__footer {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--cream-warm);
}

.product-card__price {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--terracotta);
  letter-spacing: 0.05em;
}

.product-card__price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 0.2rem;
}

/* ============================================
   O MNE PAGE
   ============================================ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3rem 1.25rem;
}

.about-hero__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}

.about-hero__text p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.9;
}

.certs-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
}

.certs-list li {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(22,59,40,0.1);
  font-size: 0.875rem;
  color: var(--green-dark);
}

.certs-list li:first-child {
  border-top: 1px solid rgba(22,59,40,0.1);
}

.certs-list__year {
  flex-shrink: 0;
  width: 4.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.04em;
}

.certs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--cream-warm);
  border: 1px solid var(--cream-warm);
  margin-top: 2rem;
}

.cert-item {
  background: var(--bg);
  padding: 0.75rem 1.25rem;
}

.cert-item__text {
  font-size: 0.875rem;
  color: var(--green-dark);
  font-weight: 400;
  line-height: 1.4;
}

.podcast-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--cream-light);
  border-radius: 2px;
  margin-bottom: 0.75rem;
  transition: background var(--transition);
}

.podcast-item:hover { background: var(--cream-warm); }

.podcast-item__icon {
  width: 44px;
  height: 44px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.podcast-item__icon svg { width: 16px; height: 16px; fill: var(--cream-light); }

.podcast-item__title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--green-dark);
  margin-bottom: 0.2rem;
  letter-spacing: 0.04em;
}

.podcast-item__sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ============================================
   EVENTY PAGE
   ============================================ */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.event-card {
  background: var(--cream-light);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.event-card__date-bar {
  background: var(--green-dark);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.event-card__day {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--cream-light);
  line-height: 1;
}

.event-card__month-year {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-warm);
  opacity: 0.7;
}

.event-card__body { padding: 1.5rem; }

.event-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--green-dark);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.event-card__meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.event-card__desc {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.event-card__price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
}

/* ============================================
   KONTAKT PAGE
   ============================================ */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 3rem 1.25rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  background: var(--cream-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg { width: 16px; height: 16px; fill: var(--green-dark); }

.contact-info__label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: 1rem;
  color: var(--text);
  font-weight: 300;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--cream-light);
  border: 1.5px solid var(--cream-warm);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  font-weight: 300;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--green-mid);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 0.5rem;
}

/* ============================================
   ADDITIONAL INFO BOX
   ============================================ */
.info-box {
  background: var(--cream-light);
  border-radius: 2px;
  padding: 1.5rem;
  border-left: 3px solid var(--terracotta);
  margin-top: 2rem;
}

.info-box__title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.info-box__list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}

.info-box__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-size: 0.75rem;
}

/* ============================================
   FADE IN ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET 640px+
   ============================================ */
@media (min-width: 640px) {
  :root { --section-pad: 5rem 1.5rem; }

  .packages__grid { grid-template-columns: repeat(2, 1fr); }

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

  .certs-grid { grid-template-columns: repeat(2, 1fr); }

  .certs-list { grid-template-columns: repeat(2, 1fr); }
  .certs-list li:nth-child(odd) { padding-right: 2rem; }
  .certs-list li:nth-child(even) { padding-left: 2rem; border-left: 1px solid rgba(22,59,40,0.1); }

  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .one-time-grid { grid-template-columns: repeat(2, 1fr); }

  .events-grid { grid-template-columns: repeat(2, 1fr); }

  .birth-support__prices { flex-direction: row; gap: 2.5rem; }
}

/* ============================================
   RESPONSIVE — DESKTOP 1024px+
   ============================================ */
@media (min-width: 1024px) {
  :root { --section-pad: 6rem 2rem; }

  .nav__toggle { display: none; }

  .nav__menu {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    padding: 0;
    flex-direction: row;
    gap: 0;
    align-items: center;
  }

  .nav__menu a {
    color: var(--cream-light);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    opacity: 0.8;
    transition: color var(--transition), opacity var(--transition);
  }

  .nav.scrolled .nav__menu a:not(.btn) {
    color: var(--green-dark);
  }

  .nav__menu a:not(.btn):hover { opacity: 1; padding-left: 1rem; }
  .nav__menu a.active { color: var(--cream-warm); opacity: 1; }
  .nav.scrolled .nav__menu a.active { color: var(--terracotta); opacity: 1; }

  .nav__menu .btn {
    margin-left: 0.5rem;
    padding: 0.6rem 1.5rem;
    font-size: 0.65rem;
  }

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

  .about-hero {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 4rem;
    padding: 4rem 2rem;
  }

  .kontakt-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 2rem;
  }

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

  .testimonials__track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__content { max-width: var(--max-w); margin: 0 auto; padding: 3rem 2rem 5rem; }

}
