/* ==========================================================================
   Self-hosted fonts (GDPR-compliant, no external requests to Google)
   ========================================================================== */

/* Inter — variable font, latin-ext (Slovak diacritics) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Inter — variable font, latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Cormorant Garamond — normal, latin-ext */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Cormorant Garamond — normal, latin */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Cormorant Garamond — italic, latin-ext */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Cormorant Garamond — italic, latin */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root{
  --bg:#f6f2e9; --fg:#1f2b25; --muted:#f0ead9; --muted-fg:#556059;
  --card:#fbf7ec; --border:#e3dccb; --primary:#4d7a4c; --primary-deep:#3f5c46;
  --primary-fg:#faf7ee; --accent:#c8d4b3; --secondary:#ece5d0;
  --radius:.625rem;
}
*{box-sizing:border-box;border-color:var(--border);margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:"Inter",ui-sans-serif,system-ui,sans-serif;background:var(--bg);color:var(--fg);line-height:1.5;-webkit-font-smoothing:antialiased;overflow-x:clip}
.serif{font-family:"Cormorant Garamond",ui-serif,Georgia,serif}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;background:none;border:none;color:inherit}
ul{list-style:none}

/* Accessibility — focus-visible */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius);
}
:focus:not(:focus-visible) {
  outline: none;
}

/* Screen reader only utility */
.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 to content link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 100;
  padding: .5rem 1rem;
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container{max-width:72rem;margin:0 auto;padding:0 1.5rem}
.wrap-narrow{max-width:48rem;margin:0 auto;padding:0 1.5rem}

/* Header */
.header{position:sticky;top:0;z-index:40;border-bottom:1px solid var(--border);background:rgba(246,242,233,.85);backdrop-filter:blur(10px)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:1rem 1.5rem;max-width:72rem;margin:0 auto}

/* Section nav (scroll spy bar) */
.section-nav{
  display:none;
  position:sticky;top:var(--header-h, 3.75rem);z-index:39;
  border-bottom:1px solid rgba(107,143,106,.18);
  background:rgba(238,243,233,.92);backdrop-filter:blur(8px);
  overflow:hidden;
}
.section-nav-progress{
  position:absolute;left:0;bottom:0;height:3px;
  background:linear-gradient(90deg, var(--primary), var(--accent));
  width:0%;
  transition:width .15s ease-out;
  border-radius:0 2px 2px 0;
  box-shadow:0 0 6px rgba(77,122,76,.3);
}
@media(min-width:768px){.section-nav{display:block}}
.section-nav-inner{
  display:flex;align-items:center;justify-content:center;
  gap:.25rem;
  max-width:72rem;margin:0 auto;padding:.5rem 1.5rem;
  position:relative;
  overflow-x:auto;
  scrollbar-width:none;
}
.section-nav-inner::-webkit-scrollbar{display:none}
.section-nav-link{
  padding:.35rem .75rem;
  font-size:.75rem;
  color:var(--muted-fg);
  border-radius:9999px;
  white-space:nowrap;
  transition:color .2s,background .2s;
  text-decoration:none;
  position:relative;
}
.section-nav-link:hover{color:var(--fg);background:rgba(107,143,106,.06)}
.section-nav-link.active{color:var(--primary-fg);background:var(--primary);font-weight:500}
.section-nav-link.passed{color:var(--primary-deep);background:rgba(107,143,106,.15);font-weight:500}
.section-nav-indicator{
  position:absolute;bottom:0;left:0;
  height:2px;background:var(--primary);
  border-radius:1px;
  transition:left .3s ease,width .3s ease;
  pointer-events:none;
}
.logo{display:flex;align-items:center;gap:.5rem}
.logo-icon{width:2rem;height:2rem;border-radius:9999px;background:rgba(107,143,106,.15);color:var(--primary);display:flex;align-items:center;justify-content:center}
.logo-text{display:flex;flex-direction:column;gap:.1rem}.logo-name{font-family:"Cormorant Garamond",serif;font-size:1.125rem;color:var(--primary-deep);letter-spacing:-.01em;line-height:1.2}.logo-company{font-family:"Inter",sans-serif;font-size:.65rem;color:var(--muted-fg);letter-spacing:.04em;text-transform:uppercase;line-height:1}
.nav{display:none;gap:2rem;font-size:.875rem;color:var(--muted-fg)}
.nav a:hover{color:var(--fg)}
@media(min-width:768px){.nav{display:flex}}
.btn{display:inline-flex;align-items:center;justify-content:center;border-radius:9999px;padding:.625rem 1.25rem;font-size:.875rem;font-weight:500;transition:.2s;border:1px solid transparent}
.btn-primary{background:var(--primary);color:var(--primary-fg);box-shadow:0 1px 2px rgba(0,0,0,.05)}
.btn-primary:hover{background:var(--primary-deep)}
.btn-outline{border-color:rgba(107,143,106,.4);color:var(--primary-deep)}
.btn-outline:hover{background:rgba(107,143,106,.1)}
.btn-lg{padding:.875rem 1.75rem;font-size:1rem;box-shadow:0 4px 14px rgba(107,143,106,.25)}
.header .btn{display:none}
@media(min-width:640px){.header .btn{display:inline-flex}}
.header-actions{display:flex;align-items:center;gap:.625rem}
.btn-sm{padding:.4rem .9rem;font-size:.8125rem}
.btn-portal{gap:.35rem}
@media(max-width:639px){.btn-portal .btn-portal-label{display:none}.btn-portal{padding:.5rem;min-width:2.25rem;min-height:2.25rem}}

/* Hero */
.hero{padding:5rem 0}
@media(min-width:768px){.hero{padding:8rem 0}}
.hero-grid{display:grid;gap:3rem;max-width:72rem;margin:0 auto;padding:0 1.5rem}
@media(min-width:768px){.hero-grid{grid-template-columns:1.15fr 1fr;gap:4rem}}
.eyebrow{display:inline-flex;align-items:center;gap:.5rem;border:1px solid rgba(107,143,106,.25);background:rgba(107,143,106,.06);color:var(--primary-deep);border-radius:9999px;padding:.25rem .75rem;font-size:.75rem;letter-spacing:.18em;text-transform:uppercase;width:fit-content;margin-bottom:1.5rem}
.eyebrow-dot{width:.375rem;height:.375rem;border-radius:9999px;background:var(--primary)}
h1{font-family:"Cormorant Garamond",serif;font-size:2.5rem;line-height:1.05;color:var(--primary-deep);letter-spacing:-.02em;font-weight:500}
@media(min-width:640px){h1{font-size:3rem}}
@media(min-width:768px){h1{font-size:3.75rem}}
h1 em{color:var(--primary);font-style:normal}
.lead{margin-top:1.5rem;max-width:36rem;font-size:1.125rem;color:var(--muted-fg)}
.hero-actions{margin-top:2.25rem;display:flex;flex-wrap:wrap;align-items:center;gap:1rem}
.link-underline{font-size:.875rem;color:var(--primary-deep);text-decoration:underline;text-underline-offset:4px}
.trust{margin-top:2.5rem;display:flex;flex-wrap:wrap;gap:1.5rem;font-size:.75rem;color:var(--muted-fg)}
.trust span{display:flex;align-items:center;gap:.5rem}
.icon{width:1rem;height:1rem;stroke:currentColor;fill:none;stroke-width:1.6}

.hero-media{position:relative}
.hero-media .blur{position:absolute;left:-2rem;top:-2rem;width:10rem;height:10rem;border-radius:9999px;background:rgba(200,212,179,.4);filter:blur(48px)}
.hero-img{position:relative;overflow:hidden;border-radius:2rem;border:1px solid var(--border);box-shadow:0 20px 40px rgba(63,92,70,.12);aspect-ratio:1/1}
.hero-img img{width:100%;height:100%;object-fit:cover;display:block}
.hero-accent{position:absolute;bottom:-1.5rem;left:-1.5rem;width:13rem;aspect-ratio:1/1;overflow:hidden;border-radius:1rem;border:1px solid var(--border);box-shadow:0 10px 24px rgba(0,0,0,.1);display:none}
.hero-accent img{width:100%;height:100%;object-fit:cover;display:block}
@media(min-width:768px){.hero-accent{display:block}}
.hero-card{position:absolute;bottom:-1.5rem;right:1rem;max-width:220px;border:1px solid var(--border);background:var(--card);padding:1rem 1.25rem;border-radius:1rem;box-shadow:0 10px 24px rgba(0,0,0,.1)}
.hero-card p:first-child{font-family:"Cormorant Garamond",serif;font-style:italic;color:var(--primary-deep);font-size:.875rem}
.hero-card p:last-child{margin-top:.5rem;font-size:.75rem;color:var(--muted-fg)}

/* Sections */
section{padding:4rem 0}
.section-alt{border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:rgba(236,229,208,.4)}
.section-tint{border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:rgba(107,143,106,.06)}
.section-header{max-width:36rem}
.section-header.center{text-align:center;margin:0 auto}
.kicker{margin-bottom:.75rem;font-size:.75rem;letter-spacing:.2em;text-transform:uppercase;color:var(--primary)}
h2{font-family:"Cormorant Garamond",serif;font-size:1.875rem;line-height:1.2;color:var(--primary-deep);font-weight:500}
@media(min-width:768px){h2{font-size:2.25rem}}
h3{font-family:"Cormorant Garamond",serif;font-size:1.25rem;color:var(--primary-deep);font-weight:500}

/* Help grid */
.grid-2{display:grid;gap:1.5rem;margin-top:3.5rem}
@media(min-width:768px){.grid-2{grid-template-columns:1fr 1fr}}
.card{border:1px solid var(--border);background:var(--card);border-radius:1rem;padding:2rem;transition:.2s}
.card:hover{border-color:rgba(107,143,106,.4);box-shadow:0 4px 12px rgba(0,0,0,.05)}
.icon-tile{width:3rem;height:3rem;border-radius:.75rem;background:rgba(107,143,106,.1);color:var(--primary);display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem}
.icon-tile svg{width:1.25rem;height:1.25rem}
.card p{margin-top:.75rem;font-size:.875rem;color:var(--muted-fg);line-height:1.6}

/* About */
.about-grid{display:grid;gap:3.5rem;max-width:72rem;margin:0 auto;padding:0 1.5rem;align-items:center}
@media(min-width:768px){.about-grid{grid-template-columns:1fr 1.2fr}}
.about-img{position:relative}
.about-img .frame{overflow:hidden;border-radius:2rem;border:1px solid var(--border);box-shadow:0 10px 24px rgba(0,0,0,.08)}
.about-img .frame img{aspect-ratio:1/1;object-fit:cover;width:100%}
.badge{position:absolute;bottom:-1.25rem;right:-1.25rem;border:1px solid var(--border);background:var(--bg);padding:1rem 1.25rem;border-radius:1rem;box-shadow:0 6px 16px rgba(0,0,0,.08)}
.badge p:first-child{font-family:"Cormorant Garamond",serif;font-size:1.5rem;color:var(--primary)}
.badge p:last-child{font-size:.75rem;color:var(--muted-fg)}
.about p.body{margin-top:1.5rem;font-size:1rem;color:var(--muted-fg);line-height:1.7}
.about p.body + p.body{margin-top:1rem}
.check-list{margin-top:2rem;display:grid;gap:.75rem;font-size:.875rem}
@media(min-width:640px){.check-list{grid-template-columns:1fr 1fr}}
.check-list li{display:flex;gap:.5rem;align-items:flex-start}
.check-list svg{width:1rem;height:1rem;color:var(--primary);flex-shrink:0;margin-top:.15rem}

/* Steps */
.grid-3{display:grid;gap:1.5rem;margin-top:3.5rem}
@media(min-width:768px){.grid-3{grid-template-columns:repeat(3,1fr)}}
.step-num{font-family:"Cormorant Garamond",serif;font-size:3rem;color:rgba(107,143,106,.25);line-height:1}

/* Pricing */
.price-card{position:relative;display:flex;flex-direction:column;border:1px solid var(--border);background:var(--card);border-radius:1rem;padding:2rem;transition:.2s}
.price-card.highlight{border-color:var(--primary);background:rgba(107,143,106,.04);box-shadow:0 10px 24px rgba(107,143,106,.12)}
.tag{position:absolute;top:-.75rem;left:2rem;background:var(--primary);color:var(--primary-fg);padding:.25rem .75rem;border-radius:9999px;font-size:.625rem;text-transform:uppercase;letter-spacing:.08em}
.tags-row{position:absolute;top:-.75rem;left:2rem;display:flex;gap:.5rem}
.tags-row .tag{position:static}
.tag-online{background:#e8f5e9;color:#2e7d32}
.price-card h3{font-size:1.5rem}
.price-row{margin-top:1rem;display:flex;align-items:baseline;gap:.5rem}
.price{font-family:"Cormorant Garamond",serif;font-size:3rem;color:var(--primary);line-height:1}
.unit{font-size:.875rem;color:var(--muted-fg)}
.features{margin-top:1.5rem;display:flex;flex-direction:column;gap:.75rem;font-size:.875rem}
.features li{display:flex;gap:.5rem;align-items:flex-start}
.features svg{width:1rem;height:1rem;color:var(--primary);flex-shrink:0;margin-top:.15rem}
.price-card .btn{margin-top:2rem}
.small-note{margin-top:1.5rem;text-align:center;font-size:.75rem;color:var(--muted-fg)}

/* Reviews marquee */
.reviews-section{overflow:hidden;padding-bottom:3rem}
.reviews-section .section-header{margin-bottom:2rem}
.reviews-marquee{position:relative;width:100%;overflow:hidden;-webkit-mask-image:linear-gradient(to right,transparent,#000 8%,#000 92%,transparent);mask-image:linear-gradient(to right,transparent,#000 8%,#000 92%,transparent)}
.reviews-track{display:flex;gap:1.25rem;width:max-content;animation:marquee 35s linear infinite;padding:.5rem 0}
.reviews-track:hover{animation-play-state:paused}
.reviews-track:focus-within{animation-play-state:paused}
@keyframes marquee{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
.review-card{flex-shrink:0;width:280px;background:var(--card);border:1px solid var(--border);border-radius:.875rem;padding:1.25rem 1.5rem;display:flex;flex-direction:column;gap:.5rem;transition:box-shadow .2s,transform .2s}
.review-card:hover{box-shadow:0 4px 20px rgba(107,143,106,.12);transform:translateY(-2px)}
.review-stars{color:#e2a93b;font-size:.875rem;letter-spacing:1px}
.review-text{font-family:"Cormorant Garamond",serif;font-size:1rem;font-style:italic;color:var(--primary-deep);line-height:1.5;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.review-author{font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;color:var(--muted-fg);margin-top:auto}
.review-more-btn{background:none;border:none;color:var(--accent);font-size:.75rem;font-weight:500;cursor:pointer;padding:.25rem 0;letter-spacing:.02em;transition:color .2s}
.review-more-btn:hover{color:var(--primary-deep);text-decoration:underline}

/* Review detail modal */
.review-modal-overlay{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;padding:1.5rem;background:rgba(30,40,30,.55);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);opacity:0;visibility:hidden;transition:opacity .25s,visibility .25s}
.review-modal-overlay.active{opacity:1;visibility:visible}
.review-modal-box{background:var(--card);border:1px solid var(--border);border-radius:1rem;max-width:480px;width:100%;padding:2rem 2rem 1.75rem;position:relative;transform:translateY(12px) scale(.97);transition:transform .25s;box-shadow:0 16px 48px rgba(0,0,0,.18)}
.review-modal-overlay.active .review-modal-box{transform:translateY(0) scale(1)}
.review-modal-close{position:absolute;top:.75rem;right:.75rem;background:none;border:none;cursor:pointer;color:var(--muted-fg);padding:.25rem;border-radius:50%;transition:background .2s,color .2s}
.review-modal-close:hover{background:var(--border);color:var(--primary-deep)}
.review-modal-stars{color:#e2a93b;font-size:1rem;letter-spacing:1.5px;margin-bottom:.5rem}
.review-modal-text{font-family:"Cormorant Garamond",serif;font-size:1.125rem;font-style:italic;color:var(--primary-deep);line-height:1.6;margin-bottom:1rem}
.review-modal-author{font-size:.75rem;letter-spacing:.08em;text-transform:uppercase;color:var(--muted-fg)}
@media(max-width:640px){.review-card{width:240px}.reviews-track{gap:1rem}.review-modal-box{padding:1.5rem 1.25rem 1.25rem}}

/* FAQ */
.faq{margin-top:3rem;border:1px solid var(--border);background:var(--card);border-radius:1rem;overflow:hidden}
.faq-item{border-bottom:1px solid var(--border)}
.faq-item:last-child{border-bottom:none}
.faq-btn{display:flex;flex-direction:column;align-items:flex-start;width:100%;padding:1.25rem 1.5rem;text-align:left}
.faq-btn-head{display:flex;width:100%;justify-content:space-between;align-items:center;gap:1rem}
.faq-btn-head .q{font-family:"Cormorant Garamond",serif;font-size:1.125rem;color:var(--primary-deep)}
.faq-btn-head svg{width:1rem;height:1rem;color:var(--primary);flex-shrink:0}
.faq-answer{display:none;padding:0 1.5rem 1.25rem;font-size:.875rem;color:var(--muted-fg);line-height:1.6}
.faq-item.open .faq-answer{display:block}
.faq-item h3{margin:0;font-size:inherit}
.faq-item .plus{display:block}
.faq-item .minus{display:none}
.faq-item.open .plus{display:none}
.faq-item.open .minus{display:block}

/* Final CTA */
.cta{border-top:1px solid var(--border);background:var(--primary);color:var(--primary-fg);padding:4rem 0}
.cta-grid{display:grid;gap:3rem;max-width:64rem;margin:0 auto;padding:0 1.5rem;align-items:center}
@media(min-width:768px){.cta-grid{grid-template-columns:1.1fr 1fr}}
.cta .kicker{color:rgba(250,247,238,.7)}
.cta h2{color:var(--primary-fg);font-size:1.875rem}
@media(min-width:768px){.cta h2{font-size:3rem}}
.cta .lead{color:rgba(250,247,238,.8);max-width:28rem}
.cta .portal-hint{font-size:.875rem;color:rgba(250,247,238,.65);margin-top:.75rem;max-width:28rem}
.cta .portal-hint .link-underline{color:rgba(250,247,238,.9)}
.cta .trust{color:rgba(250,247,238,.7)}

/* Booking */
.booking{background:var(--bg);color:var(--fg);border-radius:1.5rem;padding:1.5rem;box-shadow:0 20px 40px rgba(0,0,0,.2)}
.booking-head{display:flex;justify-content:space-between;align-items:center}
.booking-head .lbl{font-size:.75rem;text-transform:uppercase;letter-spacing:.1em;color:var(--muted-fg)}
.booking-head .month{font-family:"Cormorant Garamond",serif;font-size:1.125rem;color:var(--primary-deep)}
.pill{background:rgba(107,143,106,.1);color:var(--primary-deep);border-radius:9999px;padding:.25rem .75rem;font-size:.75rem}
.slots{margin-top:1.25rem;display:flex;flex-direction:column;gap:.75rem}
.slot{border:1px solid var(--border);border-radius:.75rem;padding:.75rem}
.slot-head{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:.5rem;font-size:.875rem}
.slot-head .day{font-weight:500;color:var(--primary-deep)}
.slot-head .date{font-size:.75rem;color:var(--muted-fg)}
.times{display:flex;flex-wrap:wrap;gap:.5rem}
.time-btn{border:1px solid var(--border);background:rgba(236,229,208,.6);color:var(--fg);border-radius:.5rem;padding:.375rem .75rem;font-size:.75rem;transition:.15s;cursor:pointer}
.time-btn:hover{border-color:rgba(107,143,106,.5)}
.time-btn.active{border-color:var(--primary);background:var(--primary);color:var(--primary-fg)}
.book-cta{margin-top:1.25rem;width:100%;display:block;text-align:center;border-radius:9999px;background:var(--primary);color:var(--primary-fg);padding:.75rem 1.25rem;font-size:.875rem;font-weight:500;text-decoration:none;transition:.2s}
.book-cta:hover{background:var(--primary-deep)}
.slots-loading,.slots-empty{font-size:.8125rem;color:var(--muted-fg);text-align:center;padding:1.5rem .5rem}

/* Footer */
footer.site{border-top:1px solid var(--border);background:var(--bg);padding:3.5rem 0}
.foot-grid{display:grid;gap:2.5rem;max-width:72rem;margin:0 auto;padding:0 1.5rem}
@media(min-width:768px){.foot-grid{grid-template-columns:repeat(4,1fr)}}
.foot-grid p.brand{font-family:"Cormorant Garamond",serif;font-size:1.25rem;color:var(--primary-deep)}
.foot-grid .desc{margin-top:.5rem;font-size:.875rem;color:var(--muted-fg)}
.foot-col{font-size:.875rem}
.foot-col .kicker{margin-bottom:.75rem}
.foot-col p,.foot-col li{color:var(--muted-fg)}
.foot-col a{text-decoration:underline;text-underline-offset:2px}
.foot-col a:hover{text-decoration-thickness:2px}
.foot-col ul li + li{margin-top:.25rem}
.copyright{max-width:72rem;margin:2.5rem auto 0;padding:1.5rem 1.5rem 0;border-top:1px solid var(--border);font-size:.75rem;color:var(--muted-fg)}

/* ── Mobile hamburger & nav drawer ── */
.burger{
  display:flex;align-items:center;justify-content:center;
  width:2.25rem;height:2.25rem;
  border-radius:.5rem;
  color:var(--fg);
  transition:background .2s;
}
.burger:hover{background:rgba(107,143,106,.08)}
@media(min-width:768px){.burger{display:none}}

/* Animated burger lines */
.burger svg line{transition:transform .3s ease,opacity .2s ease;transform-origin:center}
.burger.open .burger-top{transform:translateY(6px) rotate(45deg)}
.burger.open .burger-mid{opacity:0}
.burger.open .burger-bot{transform:translateY(-6px) rotate(-45deg)}

/* Overlay */
.mobile-nav-overlay{
  position:fixed;inset:0;z-index:41;
  background:rgba(31,43,37,.4);
  backdrop-filter:blur(2px);
  opacity:0;visibility:hidden;
  transition:opacity .3s,visibility .3s;
}
.mobile-nav-overlay.open{opacity:1;visibility:visible}

/* Drawer */
.mobile-nav{
  position:fixed;top:0;right:0;bottom:0;z-index:42;
  width:min(20rem,85vw);
  background:var(--bg);
  border-left:1px solid var(--border);
  box-shadow:-8px 0 24px rgba(0,0,0,.08);
  padding:5rem 1.5rem 2rem;
  display:flex;flex-direction:column;gap:2rem;
  transform:translateX(100%);
  transition:transform .3s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open{transform:translateX(0)}
@media(min-width:768px){.mobile-nav{display:none}}

.mobile-nav-links{
  display:flex;flex-direction:column;gap:.25rem;
}
.mobile-nav-links a{
  padding:.75rem 1rem;
  font-size:1rem;
  color:var(--fg);
  border-radius:var(--radius);
  transition:background .2s,color .2s;
}
.mobile-nav-links a:hover{background:rgba(107,143,106,.08);color:var(--primary-deep)}

.mobile-nav-actions{
  display:flex;flex-direction:column;gap:.75rem;
  margin-top:auto;
  padding-top:1.5rem;
  border-top:1px solid var(--border);
}
.mobile-nav-actions .btn{width:100%;justify-content:center;gap:.5rem}

/* Body scroll lock when mobile nav is open */
body.nav-open{overflow:hidden}

/* Mobile CTA */
.mobile-cta{position:fixed;left:0;right:0;bottom:0;z-index:40;border-top:1px solid var(--border);background:rgba(246,242,233,.95);backdrop-filter:blur(10px);padding:.75rem}
.mobile-cta a{display:flex;align-items:center;justify-content:center;width:100%;border-radius:9999px;background:var(--primary);color:var(--primary-fg);padding:.75rem 1.25rem;font-size:.875rem;font-weight:500}
@media(max-width:639px){footer.site{padding-bottom:4.5rem}}
@media(min-width:640px){.mobile-cta{display:none}}

/* ── More-link (About section CTA) ── */
.more-link{
  display:inline-flex;align-items:center;gap:.5rem;
  margin-top:1.75rem;
  font-size:.875rem;font-weight:500;
  color:var(--primary-deep);
  text-decoration:underline;text-underline-offset:4px;
  transition:color .2s,gap .2s;
}
.more-link:hover{color:var(--primary);gap:.75rem}
.more-link svg{flex-shrink:0;transition:transform .2s}
.more-link:hover svg{transform:translateX(3px)}

/* ── Subpage hero ── */
.subpage-hero{padding:2.5rem 0 2rem}
.back-link{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:.8125rem;color:var(--muted-fg);
  margin-bottom:1.5rem;
  transition:color .2s;
}
.back-link:hover{color:var(--primary-deep)}
.subpage-hero-grid{display:grid;gap:2rem;align-items:center}
@media(min-width:768px){.subpage-hero-grid{grid-template-columns:1.2fr 1fr;gap:3rem}}
.subpage-h1{
  font-family:"Cormorant Garamond",serif;
  font-size:2.25rem;line-height:1.1;
  color:var(--primary-deep);font-weight:500;
  margin-top:.5rem;
}
@media(min-width:640px){.subpage-h1{font-size:3rem}}
.subpage-h1 em{color:var(--primary);font-style:normal}
.subpage-photo .frame{
  overflow:hidden;border-radius:2rem;
  border:1px solid var(--border);
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}
.subpage-photo .frame img{aspect-ratio:1/1;object-fit:cover;width:100%}

/* ── Timeline (work experience) ── */
.timeline{margin-top:2.5rem;display:flex;flex-direction:column;gap:0}
.timeline-item{display:grid;grid-template-columns:1.25rem 1fr;gap:0 1.5rem;position:relative}
.timeline-item:not(:last-child)::before{
  content:"";position:absolute;left:.5625rem;top:1.75rem;bottom:0;
  width:1px;background:var(--border);
}
.timeline-marker{
  width:1.25rem;height:1.25rem;border-radius:9999px;
  background:var(--primary);border:3px solid var(--bg);
  box-shadow:0 0 0 1px var(--primary);
  flex-shrink:0;margin-top:.25rem;
  position:relative;z-index:1;
}
.timeline-content{padding-bottom:2.5rem}
.timeline-head{
  display:flex;flex-direction:column;gap:.25rem;margin-bottom:.75rem;
}
@media(min-width:640px){
  .timeline-head{flex-direction:row;justify-content:space-between;align-items:flex-start;gap:1rem}
}
.timeline-content h3{font-size:1.125rem;color:var(--primary-deep)}
.timeline-org{font-size:.8125rem;color:var(--primary);margin-top:.2rem}
.timeline-date{
  font-size:.75rem;letter-spacing:.08em;text-transform:uppercase;
  color:var(--muted-fg);white-space:nowrap;flex-shrink:0;margin-top:.25rem;
}
.timeline-content > p{font-size:.875rem;color:var(--muted-fg);line-height:1.6}

/* ── Education grid ── */
.edu-grid{display:grid;gap:1.5rem;margin-top:2.5rem}
@media(min-width:640px){.edu-grid{grid-template-columns:1fr 1fr}}
.edu-card{
  display:flex;gap:1.25rem;
  border:1px solid var(--border);background:var(--card);
  border-radius:1rem;padding:1.75rem;
  transition:.2s;
}
.edu-card:hover{border-color:rgba(107,143,106,.4);box-shadow:0 4px 12px rgba(0,0,0,.05)}
.edu-icon{
  width:3rem;height:3rem;flex-shrink:0;
  border-radius:.75rem;background:rgba(107,143,106,.1);
  color:var(--primary);
  display:flex;align-items:center;justify-content:center;
}
.edu-icon svg{width:1.25rem;height:1.25rem}
.edu-year{font-size:.75rem;letter-spacing:.12em;text-transform:uppercase;color:var(--primary)}
.edu-card h3{margin-top:.25rem;font-size:1.125rem;color:var(--primary-deep)}
.edu-school{font-size:.8125rem;color:var(--muted-fg);margin-top:.25rem;margin-bottom:.5rem}
.edu-card > div > p{font-size:.875rem;color:var(--muted-fg);line-height:1.6}

/* ── Scroll reveal animations ── */
[data-reveal]{
  opacity:0;
  transition:opacity .6s ease, transform .6s ease;
  will-change:opacity,transform;
}
[data-reveal="from-left"]  { transform:translateX(-60px) }
[data-reveal="from-right"] { transform:translateX( 60px) }
[data-reveal="from-bottom"]{ transform:translateY( 40px) }
[data-reveal].revealed{
  opacity:1;
  transform:translate(0,0);
}
/* Respect reduced-motion preference */
@media(prefers-reduced-motion:reduce){
  [data-reveal]{ transition:none;opacity:1;transform:none }
  .reviews-track{animation:none}
}

/* ── Certificates grid ── */
.cert-grid{display:grid;gap:1.5rem;margin-top:2.5rem}
@media(min-width:640px){.cert-grid{grid-template-columns:1fr 1fr}}
@media(min-width:1024px){.cert-grid{grid-template-columns:repeat(3,1fr)}}
.cert-card{
  display:flex;gap:1.25rem;
  border:1px solid var(--border);background:var(--card);
  border-radius:1rem;padding:1.75rem;
  transition:.2s;
}
.cert-card:hover{border-color:rgba(107,143,106,.4);box-shadow:0 4px 12px rgba(0,0,0,.05)}
.cert-badge{
  flex-shrink:0;align-self:flex-start;
  background:rgba(107,143,106,.12);color:var(--primary-deep);
  border-radius:.5rem;padding:.3rem .6rem;
  font-size:.7rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;
  white-space:nowrap;
}
.cert-card h3{font-size:1rem;color:var(--primary-deep)}
.cert-provider{font-size:.8rem;color:var(--primary);margin:.2rem 0 .1rem}
.cert-detail{font-size:.75rem;color:var(--muted-fg);margin-bottom:.5rem;letter-spacing:.04em}
.cert-card > div > p:not(.cert-provider):not(.cert-detail){font-size:.8125rem;color:var(--muted-fg);line-height:1.6}

/* ── Pricing — rozšírený cenník (5 kariet) ── */

/* Medzinádzov skupín */
.price-group-label {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-fg);
  margin-bottom: 1.25rem;
  margin-top: .5rem;
}

/* Grid pre 2 balíčky (širší, centrovane) */
.grid-2-pricing {
  display: grid;
  gap: 1.5rem;
  margin-top: 0;
}
@media (min-width: 640px) {
  .grid-2-pricing {
    grid-template-columns: 1fr 1fr;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Tag pre večerné sedenie */
.tag-evening {
  background: #2c4a34;
  color: #fff;
}

/* Odkaz v small-note */
.note-link {
  color: var(--primary-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.note-link:hover { color: var(--primary); }

/* Scroll to top button */
.scroll-top{
  position:fixed;
  bottom:2rem;
  right:2rem;
  z-index:50;
  width:3rem;
  height:3rem;
  border-radius:9999px;
  background:var(--primary);
  color:var(--primary-fg);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 14px rgba(63,92,70,.3);
  opacity:0;
  visibility:hidden;
  transform:translateY(.5rem);
  transition:opacity .3s,visibility .3s,transform .3s,background .2s;
  border:none;
  cursor:pointer;
}
.scroll-top:hover{background:var(--primary-deep)}
.scroll-top.visible{opacity:1;visibility:visible;transform:translateY(0)}
@media(max-width:639px){.scroll-top{bottom:5rem;right:1rem;width:2.75rem;height:2.75rem;box-shadow:0 4px 16px rgba(63,92,70,.4)}}


/* Legal pages — compact sections */
.legal-page{padding-top:2rem;padding-bottom:2rem}
.legal-page h1{margin-bottom:1rem}
.legal-page .legal-intro{margin-bottom:1.5rem}
.legal-page section{padding:1rem 0}
.legal-page section h2{font-size:1.5rem;margin-bottom:.5rem}
@media(min-width:768px){.legal-page section h2{font-size:1.75rem}}
.legal-page section p,.legal-page section ul{margin-bottom:.5rem}

/* Contact form page */
.contact-form{max-width:36rem;margin-top:2rem}
.form-row{display:grid;gap:1rem}
@media(min-width:640px){.form-row{grid-template-columns:1fr 1fr}}
.contact-form .field{display:flex;flex-direction:column;gap:.5rem;margin-bottom:1rem}
.contact-form .field label{font-size:.8125rem;font-weight:500;color:var(--fg)}
.contact-form .field input,
.contact-form .field textarea{
  width:100%;padding:.75rem 1rem;
  border:1px solid var(--border);border-radius:.75rem;
  background:var(--bg);color:var(--fg);
  font:inherit;font-size:.9375rem;
  transition:border-color .2s;outline:none;resize:vertical;
}
.contact-form .field input:focus,
.contact-form .field textarea:focus{border-color:var(--primary)}
.contact-form .field input::placeholder,
.contact-form .field textarea::placeholder{color:var(--muted-fg);opacity:.7}
.char-count{font-weight:400;color:var(--muted-fg);font-size:.75rem}
.form-note{margin:1rem 0;font-size:.75rem;color:var(--muted-fg)}
.form-note a{color:var(--primary-deep);text-decoration:underline;text-underline-offset:2px}
.form-success{margin-top:1.5rem;text-align:center}
.form-success p{margin-top:.75rem;font-size:.875rem;color:var(--muted-fg)}
.sent-badge{
  display:inline-flex;align-items:center;gap:.5rem;
  background:rgba(77,122,76,.1);color:var(--primary-deep);
  border-radius:9999px;padding:.4rem 1rem;
  font-size:.8125rem;font-weight:500;
}
.contact-form .error-msg{
  margin-top:1rem;padding:.75rem 1rem;
  background:rgba(180,60,60,.08);color:#b43c3c;
  border-radius:.75rem;font-size:.8125rem;
}
.contact-form .btn-full{margin-top:.5rem}
/* Honeypot — invisible to users */
.hp-field{position:absolute;left:-9999px;top:-9999px;opacity:0;height:0;overflow:hidden}


/* ── Homepage workshops section ── */
.ws-home-grid{display:grid;gap:1.5rem;margin-top:2.5rem}
@media(min-width:640px){.ws-home-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.ws-home-grid{grid-template-columns:repeat(3,1fr)}}
.ws-home-card{
  display:flex;gap:1.25rem;
  border:1px solid var(--border);background:var(--card);
  border-radius:1rem;padding:1.5rem;
  transition:.2s;
  text-decoration:none;
  color:inherit;
}
.ws-home-card:hover{border-color:rgba(107,143,106,.4);box-shadow:0 4px 12px rgba(0,0,0,.05);transform:translateY(-2px)}
.ws-home-card-icon{
  width:3rem;height:3rem;flex-shrink:0;
  border-radius:.75rem;background:rgba(107,143,106,.1);
  color:var(--primary);
  display:flex;align-items:center;justify-content:center;
}
.ws-home-card-icon svg{width:1.25rem;height:1.25rem}
.ws-home-card-content{display:flex;flex-direction:column;gap:.3rem;min-width:0}
.ws-home-card-title{
  font-family:"Cormorant Garamond",serif;
  font-size:1.125rem;color:var(--primary-deep);font-weight:500;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.ws-home-card-meta{font-size:.75rem;color:var(--muted-fg);display:flex;flex-wrap:wrap;gap:.5rem}
.ws-home-card-price{font-size:.875rem;color:var(--primary);font-weight:500;margin-top:.25rem}
/* Smart capacity badge for homepage (reuse vzdelavania classes) */
.ws-home-capacity{
  display:inline-flex;align-items:center;gap:.25rem;
  padding:.15rem .5rem;border-radius:9999px;
  font-size:.65rem;font-weight:500;
}
.ws-home-capacity--available{background:rgba(77,122,76,.1);color:var(--primary-deep)}
.ws-home-capacity--limited{background:rgba(200,150,50,.12);color:#8a6b15}
.ws-home-capacity--last{background:rgba(180,60,60,.1);color:#b43c3c}
.ws-home-capacity--full{background:rgba(100,100,100,.1);color:var(--muted-fg)}

