/* ============================================================
   STUDIO KLID — jóga a pilates
   Serene minimal art direction
   ============================================================ */

:root {
  /* Palette — warm neutrals, sage, clay */
  --paper:      #fbf8f3;
  --cream:      #f4efe6;
  --sand:       #eae3d6;
  --sage:       #8e9b84;
  --sage-deep:  #6a7660;
  --sage-soft:  #dfe4d7;
  --clay:       #c08e6e;
  --clay-deep:  #a5745a;
  --ink:        #2f2b26;
  --ink-soft:   #4a453d;
  --muted:      #837c70;
  --line:       #e6ded0;
  --line-soft:  #efe9dd;

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Instrument Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Space + shape */
  --radius:    18px;
  --radius-lg: 26px;
  --shadow:    0 22px 60px -32px rgba(58, 50, 38, 0.45);
  --shadow-sm: 0 12px 30px -20px rgba(58, 50, 38, 0.4);
  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
  --container:  1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--sage-soft); color: var(--ink); }

:focus-visible {
  outline: 2.5px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden, .skip-link {
  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:focus {
  position: fixed; top: 12px; left: 12px; z-index: 1000;
  width: auto; height: auto; clip: auto; margin: 0;
  padding: 10px 18px; background: var(--ink); color: var(--paper);
  border-radius: 10px;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin-bottom: 1.1rem;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; color: var(--ink); }
h1 em, h2 em { font-style: italic; color: var(--clay-deep); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.01em; padding: 0.85em 1.7em; border-radius: 100px;
  border: 1px solid transparent; transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 1.05em 2.1em; font-size: 1rem; }

.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: var(--sage-deep); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--sage-deep); color: var(--sage-deep); transform: translateY(-2px); }

.btn--pill { background: var(--sage-deep); color: var(--paper); padding: 0.7em 1.4em; font-size: 0.9rem; }
.btn--pill:hover { background: var(--ink); transform: translateY(-2px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.nav.is-scrolled { border-color: var(--line); background: color-mix(in srgb, var(--paper) 92%, transparent); }

.nav__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0.9rem clamp(1.1rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}

.nav__brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--ink); }
.nav__mark { color: var(--sage-deep); display: inline-flex; }
.nav__name { font-family: var(--serif); font-size: 1.4rem; letter-spacing: 0.01em; }

.nav__menu { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav__menu a { font-size: 0.94rem; color: var(--ink-soft); position: relative; transition: color 0.3s var(--ease); }
.nav__menu > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--sage-deep); transition: width 0.35s var(--ease);
}
.nav__menu > a:not(.btn):hover { color: var(--ink); }
.nav__menu > a:not(.btn):hover::after { width: 100%; }

.nav__cta-mobile { display: none; }
.nav__burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  padding: 8px; z-index: 120;
}
.nav__burger span {
  width: 24px; height: 1.8px; background: var(--ink); border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__orb {
  position: absolute; top: -18%; right: -8%;
  width: 62vw; max-width: 760px; aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%,
              color-mix(in srgb, var(--sage-soft) 90%, #fff) 0%,
              color-mix(in srgb, var(--cream) 70%, transparent) 55%,
              transparent 72%);
  border-radius: 50%;
  filter: blur(6px);
  animation: breathe 11s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.12); opacity: 1; }
}

.hero__grid {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1.1rem, 4vw, 2.5rem) clamp(3rem, 6vw, 5rem);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center; min-height: min(88vh, 860px);
}

.hero__title {
  font-size: clamp(2.9rem, 6.5vw, 5.6rem);
  letter-spacing: -0.015em; margin-bottom: 1.6rem;
}
.hero__lead {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  color: var(--ink-soft); max-width: 34ch; margin-bottom: 2.2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.4rem; }
.hero__meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.9rem;
  font-size: 0.9rem; color: var(--muted);
}
.hero__meta strong { color: var(--ink); font-weight: 600; }
.hero__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--clay); }

/* Hero visual frame */
.hero__visual { position: relative; }
.hero__frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 4 / 5;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__frame-caption {
  position: absolute; left: 18px; bottom: 18px;
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(8px);
  padding: 0.55rem 1rem; border-radius: 100px;
  font-size: 0.85rem; color: var(--ink); letter-spacing: 0.02em;
}
.hero__breath {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--sage); animation: breathe 4.5s ease-in-out infinite;
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 2; width: 26px; height: 42px; border: 1.5px solid var(--line);
  border-radius: 100px; display: none;
}
.hero__scroll span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 4px; background: var(--sage-deep);
  animation: scrolldot 1.8s ease-in-out infinite;
}
@keyframes scrolldot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--cream); overflow: hidden; padding: 1.1rem 0;
}
.marquee__track {
  display: flex; align-items: center; gap: 2.2rem; width: max-content;
  animation: scrollx 34s linear infinite;
  font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-style: italic; color: var(--sage-deep);
}
.marquee__dot { color: var(--clay); font-style: normal; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section {
  max-width: var(--container); margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) clamp(1.1rem, 4vw, 2.5rem);
}
.section__head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section__title { font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -0.01em; margin-bottom: 1.1rem; }
.section__lead { color: var(--ink-soft); font-size: clamp(1.02rem, 1rem + 0.2vw, 1.15rem); }

/* ============================================================
   CARDS — lekce
   ============================================================ */
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.1rem, 2vw, 1.8rem);
}
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__img { overflow: hidden; aspect-ratio: 5 / 4; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.card:hover .card__img img { transform: scale(1.06); }
.card__body { padding: 1.5rem 1.6rem 1.8rem; }
.card__title { font-size: 1.55rem; margin-bottom: 0.5rem; }
.card__text { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 1rem; }
.card__tag {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--sage-deep); font-weight: 600;
}

/* ============================================================
   ROZVRH
   ============================================================ */
.rozvrh { background: transparent; }
.schedule {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}
.schedule__table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.schedule__table thead th {
  background: var(--cream); text-align: left; font-family: var(--sans);
  font-weight: 600; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sage-deep); padding: 1.1rem 1.4rem;
}
.schedule__table tbody th {
  text-align: left; font-family: var(--serif); font-weight: 400; font-size: 1.15rem;
  color: var(--ink); padding: 1.1rem 1.4rem; white-space: nowrap;
}
.schedule__table td { padding: 0.9rem 1.4rem; vertical-align: middle; }
.schedule__table tbody tr { border-top: 1px solid var(--line-soft); transition: background 0.3s var(--ease); }
.schedule__table tbody tr:hover { background: color-mix(in srgb, var(--cream) 55%, transparent); }
.is-empty { color: var(--line); }

.slot {
  display: inline-flex; flex-direction: column; line-height: 1.3;
  padding: 0.5rem 0.85rem; border-radius: 12px; font-size: 0.88rem;
  border: 1px solid var(--line); background: var(--paper);
  transition: transform 0.3s var(--ease);
}
.slot b { font-family: var(--serif); font-size: 1.02rem; font-weight: 500; }
.slot:hover { transform: translateY(-2px); }
.slot--hatha   { background: color-mix(in srgb, var(--sage-soft) 45%, var(--paper)); }
.slot--vinyasa { background: color-mix(in srgb, var(--clay) 16%, var(--paper)); }
.slot--pilates { background: color-mix(in srgb, #cdd6c4 40%, var(--paper)); }
.slot--begin   { background: color-mix(in srgb, #e6d9c6 55%, var(--paper)); }
.slot--preg    { background: color-mix(in srgb, #e8d3cb 55%, var(--paper)); }
.slot--breath  { background: color-mix(in srgb, #d9e0e0 55%, var(--paper)); }

.schedule__cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.4rem 1.6rem; background: var(--cream);
  border-top: 1px solid var(--line); color: var(--ink-soft);
}

/* ============================================================
   CENÍK
   ============================================================ */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2vw, 1.6rem); align-items: stretch; }
.price {
  position: relative; display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2.2rem 2rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price--featured {
  background: linear-gradient(170deg, color-mix(in srgb, var(--sage-soft) 55%, var(--paper)), var(--paper));
  border-color: var(--sage);
}
.price__badge {
  position: absolute; top: -13px; left: 2rem;
  background: var(--sage-deep); color: var(--paper);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 100px;
}
.price__kicker { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--sage-deep); font-weight: 600; margin-bottom: 0.6rem; }
.price__name { font-size: 1.5rem; margin-bottom: 1rem; }
.price__amount { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); margin-bottom: 0.3rem; }
.price__num { font-size: 3rem; line-height: 1; }
.price__per { font-size: 1rem; color: var(--muted); }
.price__note { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.4rem; }
.price__list { list-style: none; padding: 0; margin: 0 0 1.8rem; display: grid; gap: 0.7rem; flex: 1; }
.price__list li { position: relative; padding-left: 1.6rem; font-size: 0.95rem; color: var(--ink-soft); }
.price__list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage); box-shadow: 0 0 0 4px color-mix(in srgb, var(--sage-soft) 60%, transparent);
}
.price__btn { width: 100%; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { }
.about__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about__media { position: relative; }
.about__img { border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.about__img--1 { width: 82%; }
.about__img--2 {
  position: absolute; right: 0; bottom: -6%; width: 46%;
  border: 6px solid var(--paper);
}
.about__quote {
  position: absolute; left: -6%; bottom: 8%; max-width: 240px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.1rem 1.3rem; box-shadow: var(--shadow-sm);
  font-family: var(--serif); font-style: italic; font-size: 1.02rem; color: var(--ink-soft);
}
.about__copy p { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 46ch; }
.about__copy .section__title { text-align: left; margin-bottom: 1.5rem; }
.about__copy .eyebrow { margin-bottom: 1rem; }
.about__stats {
  list-style: none; padding: 1.6rem 0; margin: 0.8rem 0 2rem;
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.about__stats strong { display: block; font-family: var(--serif); font-size: 2.1rem; color: var(--clay-deep); line-height: 1; }
.about__stats span { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }

/* ============================================================
   REFERENCE
   ============================================================ */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2vw, 1.6rem); }
.review {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem 1.9rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review__stars { color: var(--clay); letter-spacing: 0.15em; font-size: 0.95rem; }
.review blockquote p { font-family: var(--serif); font-size: 1.18rem; line-height: 1.5; color: var(--ink); font-style: italic; }
.review__author { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: 0.85rem; font-weight: 600;
  background: var(--sage-soft); color: var(--sage-deep); letter-spacing: 0.04em;
}
.review__author b { display: block; font-weight: 600; font-size: 0.98rem; }
.review__author small { color: var(--muted); font-size: 0.84rem; }

/* ============================================================
   FAQ
   ============================================================ */
.accordion { max-width: 780px; margin: 0 auto; display: grid; gap: 0.8rem; }
.acc {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.acc[open] { border-color: var(--sage); background: color-mix(in srgb, var(--cream) 40%, var(--paper)); }
.acc summary {
  list-style: none; cursor: pointer; padding: 1.25rem 1.6rem;
  font-family: var(--serif); font-size: 1.2rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "+"; font-family: var(--sans); font-size: 1.5rem; font-weight: 300;
  color: var(--sage-deep); transition: transform 0.4s var(--ease); flex-shrink: 0;
}
.acc[open] summary::after { transform: rotate(45deg); }
.acc__body { padding: 0 1.6rem 1.4rem; }
.acc__body p { color: var(--ink-soft); font-size: 0.98rem; }
.acc[open] .acc__body { animation: accreveal 0.5s var(--ease); }
@keyframes accreveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ============================================================
   KONTAKT + FORM
   ============================================================ */
.kontakt__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.kontakt__form-wrap {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-bottom: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form__row .field { margin-bottom: 0; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--ink-soft); }
.field label span[aria-hidden] { color: var(--clay-deep); }
.field__opt { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.98rem; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 12px; padding: 0.8rem 0.95rem; width: 100%;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); background: var(--paper);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--sage-soft) 55%, transparent);
}
.field.is-invalid input, .field.is-invalid select {
  border-color: var(--clay-deep); box-shadow: 0 0 0 4px color-mix(in srgb, var(--clay) 22%, transparent);
}
.field__error { color: var(--clay-deep); font-size: 0.8rem; min-height: 0; }
.field.is-invalid .field__error { min-height: 1em; }

.form__submit { width: 100%; margin-top: 0.4rem; }
.form__success {
  margin-top: 1rem; padding: 1rem 1.2rem; border-radius: 12px;
  background: color-mix(in srgb, var(--sage-soft) 55%, var(--paper));
  border: 1px solid var(--sage); color: var(--sage-deep); font-size: 0.95rem;
}
.form__note { margin-top: 0.9rem; font-size: 0.8rem; color: var(--muted); text-align: center; }

/* Kontakt info */
.kontakt__list { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: 1.3rem; }
.kontakt__list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.kontakt__ico {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; background: var(--cream);
  border: 1px solid var(--line); font-size: 1.05rem; color: var(--sage-deep);
}
.kontakt__list b { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; margin-bottom: 0.2rem; }
.kontakt__list a { color: var(--ink); transition: color 0.3s var(--ease); }
.kontakt__list a:hover { color: var(--sage-deep); }
.kontakt__map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.kontakt__map iframe { display: block; filter: grayscale(0.25) contrast(0.95); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: color-mix(in srgb, var(--paper) 80%, transparent); }
.footer__grid {
  max-width: var(--container); margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.1rem, 4vw, 2.5rem) 2.5rem;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem;
}
.nav__brand--footer { color: var(--paper); margin-bottom: 1rem; }
.nav__brand--footer .nav__mark { color: var(--sage); }
.footer__tag { font-size: 0.95rem; line-height: 1.6; color: color-mix(in srgb, var(--paper) 65%, transparent); }
.footer__col h3 { font-family: var(--sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--sage); font-weight: 600; margin-bottom: 1.1rem; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer__col li, .footer__col a { font-size: 0.93rem; color: color-mix(in srgb, var(--paper) 72%, transparent); transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--paper); }
.footer__bottom {
  max-width: var(--container); margin: 0 auto;
  padding: 1.5rem clamp(1.1rem, 4vw, 2.5rem); border-top: 1px solid color-mix(in srgb, var(--paper) 14%, transparent);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem;
  font-size: 0.84rem; color: color-mix(in srgb, var(--paper) 55%, transparent);
}

/* ============================================================
   STICKY CTA
   ============================================================ */
.sticky-cta {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90; background: var(--clay-deep); color: var(--paper);
  padding: 0.95em 1.6em; border-radius: 100px; font-weight: 600; font-size: 0.95rem;
  box-shadow: 0 16px 40px -14px rgba(165, 116, 90, 0.7);
  opacity: 0; transform: translateY(24px) scale(0.95); pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.3s var(--ease);
}
.sticky-cta.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.sticky-cta:hover { background: var(--ink); transform: translateY(-3px); }

/* ============================================================
   REVEAL animations
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.6rem; padding: 2rem 2.2rem; background: var(--paper);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,0.4);
    transform: translateX(100%); transition: transform 0.5s var(--ease); z-index: 110;
  }
  .nav.is-open .nav__menu { transform: none; }
  .nav__menu a { font-size: 1.15rem; }
  .nav__cta { display: none; }
  .nav__cta-mobile { display: inline-flex; margin-top: 0.6rem; }
  .nav__burger { display: flex; }

  .hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .hero__visual { order: -1; max-width: 460px; }
  .hero__scroll { display: block; }

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

  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 500px; margin: 0 auto 1rem; }
  .about__copy .section__title, .about__copy .eyebrow { text-align: left; }

  .kontakt__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .cards, .pricing, .reviews { grid-template-columns: 1fr; }
  .price--featured { order: -1; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .form__row .field { margin-bottom: 1.1rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }

  /* horizontal-scroll schedule on small screens */
  .schedule { overflow-x: auto; }
  .schedule__table { min-width: 560px; }

  .about__quote { position: static; max-width: none; margin-top: 1rem; left: 0; }
  .about__img--1 { width: 100%; }
  .about__img--2 { display: none; }

  .nav__name { font-size: 1.25rem; }
  .sticky-cta { padding: 0.85em 1.3em; font-size: 0.9rem; }
}

/* ============================================================
   MOTION PREFERENCES
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
