/* ===================================
   Barbora Novosadova - Coaching Website
   Design: Warm, Refined, Feminine
   Fonts: Lora + Jost
   =================================== */

/* CSS Variables */
:root {
    /* Palette from brief */
    --bg: #fdf9f5;
    --champagne: #f4ece2;
    --nude: #e6d4c4;
    --mauve: #c8a4aa;
    --rose: #a87880;
    --bronze: #c09060;
    --gold: #c8aa72;
    --warm-brown: #6e4e46;
    --dark: #281814;
    --muted: #907268;

    --nude-warm: #e8d8c8;
    --contact-bg: #7a5a52;
    --gold-light: #d4b882;

    /* Semantic */
    --text: #281814;
    --text-muted: #907268;
    --text-light: rgba(253, 249, 245, 0.85);

    /* Layout */
    --container: 1100px;
    --section-py: clamp(60px, 8vw, 120px);

    /* Fonts */
    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Jost', -apple-system, sans-serif;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--rose);
    text-decoration: none;
    transition: color 0.25s var(--ease);
}

a:hover {
    color: var(--warm-brown);
}

strong {
    font-weight: 500;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    background: var(--dark);
    color: var(--bg);
    padding: 8px 16px;
    border-radius: 0 0 4px 4px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
    color: var(--bg);
}

/* ==================
   NAVIGATION
   ================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 249, 245, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: box-shadow 0.3s var(--ease);
}

.nav.scrolled {
    box-shadow: 0 1px 0 rgba(40, 24, 20, 0.06);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 64px;
    gap: 32px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--warm-brown);
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-decoration: none;
}

.nav-logo:hover {
    color: var(--dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin-left: auto;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.25s;
}

.nav-menu a:hover {
    color: var(--dark);
}

.nav-menu .nav-cta {
    color: var(--rose);
    font-weight: 400;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 8px;
}

.nav-email {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--rose);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s;
}

.nav-email:hover {
    color: var(--warm-brown);
}

/* Language Switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--muted);
    cursor: pointer;
    padding: 8px 10px;
    letter-spacing: 0.05em;
    transition: color 0.25s;
}

.lang-btn.active {
    color: var(--dark);
    font-weight: 500;
}

.lang-btn:hover {
    color: var(--dark);
}

.lang-divider {
    color: var(--nude);
    font-size: 0.75rem;
}

.lang-switch-mobile {
    display: none;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
}

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--dark);
    transition: all 0.3s var(--ease);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================
   HERO
   ================== */

.hero {
    padding-top: 64px;
    min-height: clamp(700px, 92vh, 860px);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.hero-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 48px;
    align-items: center;
    width: 100%;
    position: relative;
}

.hero-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 16px;
    font-weight: 500;
}

.hero-content {
    padding: var(--section-py) 0;
    padding-left: 26px;
    position: relative;
    align-self: center;
    width: min(100%, 460px);
    justify-self: end;
}

.hero-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(var(--section-py) + 18px);
    bottom: calc(var(--section-py) + 18px);
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, var(--rose) 18%, var(--rose) 82%, transparent 100%);
    opacity: 0.55;
}

.hero-cta {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    margin-top: 28px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 28px;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(22px);
    animation: heroUp 0.9s var(--ease) forwards;
}

.hero-line:nth-child(1) { animation-delay: 0.3s; }
.hero-line:nth-child(2) { animation-delay: 0.55s; }
.hero-line:nth-child(3) { animation-delay: 0.75s; }

.hero-title em {
    color: var(--rose);
    font-style: italic;
}

@keyframes heroUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-sub {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 12px;
    max-width: 460px;
}

.hero-bold {
    font-weight: 400;
    color: var(--dark);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    max-width: 420px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 28px;
    max-width: 460px;
}

.hero-tagline em {
    color: var(--rose);
    font-style: italic;
}

.hero-image {
    position: relative;
    min-height: 0;
    height: clamp(430px, 42vw, 640px);
    align-self: center;
    margin-top: 0;
    margin-bottom: 0;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -12px;
    bottom: -12px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    pointer-events: none;
}

.hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% 50%;
    border-radius: 4px;
}

/* ==================
   QUOTE STRIP
   ================== */

.quote-strip {
    background: var(--nude-warm);
    padding: 48px 0;
}

.quote-strip-inner {
    margin: 0 auto;
    text-align: center;
}

.quote-strip blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.15rem, 1.6vw, 1.4rem);
    color: var(--warm-brown);
    line-height: 1.5;
    max-width: 680px;
    margin: 0 auto;
}

/* ==================
   SECTION COMMON
   ================== */

.section {
    padding: var(--section-py) 0;
}

.section-label,
h2.section-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-label--light {
    color: var(--gold);
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-heading em {
    color: var(--rose);
    font-style: italic;
}

.section-heading--light {
    color: var(--bg);
}

.section-heading--light em {
    color: var(--gold);
}

.section-muted {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================
   MAIN TEXT (PRE KOHO)
   ================== */

.main-text {
    background: var(--bg);
    padding-bottom: clamp(32px, 4vw, 56px);
}

.main-text-centered {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.main-text-centered .section-heading {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.section-subtitle {
    color: var(--muted);
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    margin-bottom: 48px;
    line-height: 1.7;
}

.check-heading {
    font-size: clamp(1.15rem, 1.5vw, 1.3rem);
    margin-bottom: 24px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    text-align: left;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    font-style: italic;
    line-height: 1.6;
    color: var(--warm-brown);
}

.check-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    font-size: 1.4em;
    line-height: 1.3;
    color: var(--mauve);
}

.about-content .btn {
    margin-top: 16px;
}

.highlight-block {
    background: var(--champagne);
    border-left: 3px solid var(--mauve);
    padding: 28px 32px;
    margin: 36px 0;
    border-radius: 0 4px 4px 0;
    text-align: left;
}

.highlight-block p {
    margin-bottom: 12px;
    font-size: clamp(1.1rem, 1.4vw, 1.25rem);
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.highlight-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    font-style: italic;
    line-height: 1.6;
    color: var(--warm-brown);
}

.highlight-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--mauve);
    font-size: 1.2em;
}

.safe-space-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: var(--warm-brown);
    line-height: 1.6;
    margin-bottom: 28px;
}

.main-text-centered .btn {
    margin-top: 8px;
}

/* ==================
   PRÍBEHY (Stories)
   ================== */

.stories-section {
    background: var(--champagne);
    padding-top: clamp(60px, 7vw, 100px);
    padding-bottom: clamp(60px, 7vw, 100px);
}

.stories-label {
    display: block;
    text-align: center;
    margin-bottom: 40px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.story-card {
    background: var(--bg);
    padding: 36px 32px;
    border-radius: 6px;
    border-top: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
}

.story-name {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--rose);
    margin-bottom: 14px;
    line-height: 1.2;
}

.story-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--warm-brown);
    margin: 0;
}

@media (max-width: 820px) {
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .story-card {
        padding: 28px 26px;
    }

    .story-name {
        font-size: 1.45rem;
    }
}

/* ==================
   ČO SA ZMENÍ
   ================== */

@media (min-width: 1800px) {
    .nav-container,
    .hero-container {
        max-width: min(1680px, calc(100vw - 240px));
    }

    .hero {
        min-height: clamp(720px, 62vh, 900px);
    }

    .hero-container {
        grid-template-columns: minmax(440px, 0.72fr) minmax(820px, 1.28fr);
        gap: clamp(72px, 4.8vw, 128px);
    }

    .hero-content {
        width: min(100%, 540px);
        justify-self: end;
    }

    .hero-image {
        height: clamp(500px, 28vw, 640px);
    }
}

.changes-section {
    background: var(--bg);
    padding-top: clamp(32px, 4vw, 56px);
    padding-bottom: clamp(48px, 6vw, 80px);
}

.changes-section + .packages-section {
    padding-top: clamp(40px, 5vw, 64px);
}

.changes-centered {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.changes-centered .section-label {
    margin-bottom: 32px;
}

.changes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.changes-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    font-style: italic;
    line-height: 1.6;
    color: var(--warm-brown);
}

.changes-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--mauve);
    font-size: 1.3em;
}

/* ==================
   PACKAGES
   ================== */

.packages-section {
    background: var(--champagne);
}

.packages-section .section-label,
.packages-section .section-heading,
.packages-section .section-muted {
    text-align: center;
}

.packages-section .section-muted {
    margin: 0 auto 40px;
    max-width: 560px;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}

.package-card {
    background: var(--bg);
    padding: 40px 36px;
    border-radius: 6px;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.package-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(40, 24, 20, 0.06);
}

.package-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--bronze);
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 16px;
}

.package-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--warm-brown);
    margin-bottom: 8px;
}

.package-tagline {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.package-tagline em {
    font-style: italic;
}

.package-price {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 4px;
}

.package-detail {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.package-for {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
}

.package-result {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(40, 24, 20, 0.08);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--warm-brown);
}

.packages-note {
    background: var(--warm-brown);
    color: var(--text-light);
    padding: 20px 28px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
}

.packages-note p {
    margin: 0;
}

.packages-guarantee {
    margin: 24px auto 0;
    max-width: 560px;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--warm-brown);
}

.guarantee-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    margin-right: 8px;
    vertical-align: 2px;
}

/* ==================
   PRE FIRMY (Companies)
   ================== */

.companies {
    background: var(--dark);
    color: rgba(253, 249, 245, 0.85);
}

.companies-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.companies-hero .section-label,
.companies-hero .section-heading {
    text-align: left;
}

.companies-hero-image {
    position: relative;
}

.companies-hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -12px;
    bottom: -12px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    pointer-events: none;
}

.companies-hero-image img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.companies-hero .companies-intro {
    text-align: left;
    margin: 0;
}

.companies-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
    color: rgba(253, 249, 245, 0.7);
    font-size: 0.95rem;
}

.block-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    margin-top: 40px;
}

.block-label--light {
    color: var(--gold);
}

.companies .section-label,
.companies .section-heading {
    text-align: center;
}

/* Situations */
.situations {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.situation {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    border-left: 2px solid rgba(200, 170, 114, 0.3);
}

.sit-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.sit-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1rem;
    color: rgba(253, 249, 245, 0.9);
}

.sit-insight {
    font-size: 0.9rem;
    color: rgba(253, 249, 245, 0.65);
    line-height: 1.6;
}

.sit-insight strong {
    color: rgba(253, 249, 245, 0.9);
}

/* Dark block */
.dark-block {
    background: rgba(255, 255, 255, 0.06);
    padding: 32px;
    border-radius: 6px;
    margin: 32px 0;
    text-align: center;
}

.dark-block .big {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 400;
    color: rgba(253, 249, 245, 0.95);
    margin-bottom: 12px;
}

.dark-block p:last-child {
    font-size: 0.9rem;
    color: rgba(253, 249, 245, 0.6);
}

.dark-block strong {
    color: rgba(253, 249, 245, 0.9);
}

/* Formats */
.formats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 48px;
}

.format {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
}

.format-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1;
    min-width: 36px;
}

.format-title {
    font-weight: 400;
    font-size: 0.95rem;
    color: rgba(253, 249, 245, 0.95);
    margin-bottom: 6px;
}

.format-desc {
    font-size: 0.85rem;
    color: rgba(253, 249, 245, 0.55);
    line-height: 1.6;
}

/* Companies CTA */
.companies-cta {
    text-align: center;
    padding-top: 20px;
}

.companies-cta-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: rgba(253, 249, 245, 0.95);
    margin-bottom: 4px;
}

.companies-cta-sub {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 24px;
}

/* ==================
   TESTIMONIAL
   ================== */

.testimonial {
    background: var(--dark);
    padding: var(--section-py) 0;
}

.testimonial .section-label--light {
    text-align: center;
    margin-bottom: 32px;
}

/* Single featured testimonial above "Pre koho som tu" */
.testimonial-featured .section-label--light {
    display: block;
    margin-bottom: 24px;
}

.testimonial-inner--featured {
    padding: 24px 0 8px;
}

/* Carousel */
.testimonial-carousel {
    position: relative;
}

.testimonial-slides {
    position: relative;
    overflow: hidden;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.testimonial-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 40px 0 24px;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
    color: rgba(200, 170, 114, 0.15);
    position: absolute;
    top: -16px;
    left: -32px;
    pointer-events: none;
}

.testimonial-quote-close {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
    color: rgba(200, 170, 114, 0.15);
    position: absolute;
    bottom: -8px;
    right: 0;
    pointer-events: none;
}

.testimonial blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    font-style: italic;
    line-height: 1.7;
    color: rgba(253, 249, 245, 0.85);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    margin-top: 28px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.testimonial-author a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.testimonial-author a:hover {
    border-bottom-color: var(--gold);
}

/* Carousel navigation */
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 40px;
    position: relative;
}

.testimonial-arrow {
    background: none;
    border: 1px solid rgba(200, 170, 114, 0.3);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-arrow:hover {
    background: rgba(200, 170, 114, 0.1);
    border-color: var(--gold);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(200, 170, 114, 0.4);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--gold);
    border-color: var(--gold);
}

.testimonial-dot:hover {
    border-color: var(--gold);
}

/* ==================
   POST-TESTIMONIAL CTA
   ================== */

.post-testimonial-cta {
    background: var(--champagne);
    padding: 56px 0;
}

.post-cta-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.post-cta-text {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 1.6vw, 1.4rem);
    font-style: italic;
    color: var(--warm-brown);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* ==================
   ABOUT
   ================== */

.about {
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--nude-warm);
}

.about-separator {
    width: 40px;
    height: 2px;
    background: var(--mauve);
    margin: 20px 0 28px;
}

.about-quote {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--rose);
    line-height: 1.6;
    margin: 24px 0;
    padding: 0;
    border: none;
}

.about-image img {
    width: 100%;
    height: auto;
    filter: sepia(6%) contrast(1.03);
}

.about-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-content .section-heading {
    margin-bottom: 24px;
}

/* Credentials */
.credentials {
    margin-top: 40px;
}

.credentials h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 12px;
}

.credentials-list {
    list-style: none;
    padding: 0;
}

.credentials-list li {
    font-size: 0.88rem;
    color: var(--muted);
    padding: 6px 0;
    border-bottom: 1px solid rgba(40, 24, 20, 0.06);
}

.credentials-list li:last-child {
    border-bottom: none;
}

.credentials-list a {
    color: var(--rose);
}

.icf-note {
    font-size: 0.82rem;
    color: var(--muted);
    font-style: italic;
    margin-top: 12px;
}

/* Certificates Gallery */
.certificates-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.certificate-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-decoration: none;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.25s var(--ease);
}

.certificate-item:hover {
    transform: scale(1.02);
}

.certificate-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid rgba(40, 24, 20, 0.08);
}

.certificate-item span {
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
}

/* Credentials (full-width below about grid) */
.about .credentials {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(40, 24, 20, 0.06);
}

/* Podcast Section */
.podcast-section {
    margin-top: 40px;
}

.podcast-section > h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 16px;
}

.podcast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

/* Podcast */
.podcast-feature {
    margin-top: 0;
}

.podcast-feature h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.podcast-desc {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 16px;
}

.podcast-embed {
    border-radius: 6px;
    overflow: hidden;
}

.podcast-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 6px;
}

.podcast-source {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 8px;
    text-align: center;
}

/* ==================
   BLOG
   ================== */

.blog {
    background: var(--champagne);
}

.blog .section-label,
.blog .section-heading {
    text-align: center;
}

.blog .section-heading {
    margin-bottom: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.blog-card {
    background: var(--bg);
    padding: 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(40, 24, 20, 0.06);
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.blog-card-link {
    font-size: 0.82rem;
    color: var(--rose);
    font-weight: 400;
}

/* ==================
   CONTACT FORM
   ================== */

.contact-form-section {
    background: var(--contact-bg);
    color: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
}

.contact-form-side .section-heading--light {
    margin-bottom: 12px;
}

.contact-sub {
    color: rgba(253, 249, 245, 0.7);
    margin-bottom: 32px;
}

/* Form */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(253, 249, 245, 0.7);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-required {
    color: var(--gold);
}

.form-optional {
    font-weight: 300;
    color: rgba(253, 249, 245, 0.4);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--bg);
    transition: border-color 0.25s, background 0.25s, outline-color 0.25s;
    outline: 2px solid transparent;
    outline-offset: 1px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.14);
    outline-color: var(--gold);
}

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

.form-counter {
    display: block;
    text-align: right;
    font-size: 0.72rem;
    color: rgba(253, 249, 245, 0.35);
    margin-top: 4px;
}

.btn-submit {
    width: 100%;
    padding: 14px 32px;
    background: var(--bg);
    color: var(--warm-brown);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s;
}

.btn-submit:hover {
    background: var(--champagne);
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: default;
    transform: none;
}

.form-gdpr {
    font-size: 0.75rem;
    color: rgba(253, 249, 245, 0.4);
    margin-top: 12px;
    line-height: 1.5;
}

.form-gdpr a {
    color: rgba(253, 249, 245, 0.6);
    text-decoration: underline;
}

.form-error {
    padding: 16px 20px;
    margin-top: 16px;
    background: rgba(168, 120, 128, 0.15);
    border: 1px solid rgba(168, 120, 128, 0.3);
    border-radius: 4px;
}

.form-error p {
    font-size: 0.88rem;
    color: rgba(253, 249, 245, 0.85);
    line-height: 1.5;
    margin: 0;
}

.form-success {
    padding: 28px;
    text-align: center;
}

.form-success p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--bg);
}

.contact-col-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.contact-divider {
    width: 100%;
    height: 1px;
    background: rgba(253, 249, 245, 0.12);
    margin: 24px 0;
}

/* Contact info side */
.contact-info-side h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--bg);
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item svg {
    color: rgba(253, 249, 245, 0.5);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: rgba(253, 249, 245, 0.85);
    font-size: 0.9rem;
}

.contact-item a:hover {
    color: var(--bg);
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-booking {
    margin-bottom: 28px;
}

.contact-booking p {
    font-size: 0.88rem;
    color: rgba(253, 249, 245, 0.6);
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-links a {
    color: rgba(253, 249, 245, 0.5);
    transition: color 0.25s;
}

.social-links a:hover {
    color: var(--bg);
}

.contact-free-cta {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1rem;
    color: var(--gold);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Follow (Sleduj ma) side */
.contact-follow-side .follow-promo {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(253, 249, 245, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
}

.follow-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.follow-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: rgba(253, 249, 245, 0.85);
    transition: color 0.25s;
}

.follow-link:hover {
    color: var(--bg);
}

.follow-link svg {
    color: rgba(253, 249, 245, 0.5);
    flex-shrink: 0;
}

.follow-link-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
}

.follow-link-handle {
    display: block;
    font-size: 0.8rem;
    color: rgba(253, 249, 245, 0.5);
}

.follow-footer {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(253, 249, 245, 0.08);
}

.follow-footer p {
    font-size: 0.8rem;
    color: rgba(253, 249, 245, 0.45);
    line-height: 1.6;
}

/* ==================
   BUTTONS
   ================== */

.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 400;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    border: none;
}

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

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--dark);
}

.btn-booking {
    background: rgba(255, 255, 255, 0.12);
    color: var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
}

.btn-booking:hover {
    background: rgba(255, 255, 255, 0.18);
}

.btn-outline {
    background: transparent;
    color: var(--rose);
    border: 1px solid var(--mauve);
}

.text-link {
    display: inline-block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-bottom: 1px solid var(--gold-light);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
    margin-top: 12px;
}

.text-link:hover {
    color: var(--bronze);
    border-color: var(--bronze);
}

.btn-outline:hover {
    background: var(--mauve);
    color: var(--bg);
}

/* ==================
   KARTY CTA
   ================== */

.karty-cta {
    background: var(--bg);
    padding: 48px 0;
}

.karty-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--champagne);
    padding: 28px 36px;
    border-radius: 6px;
    gap: 24px;
}

.karty-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 4px;
}

.karty-content p {
    font-size: 0.88rem;
    color: var(--muted);
}

/* ==================
   FOOTER
   ================== */

.footer {
    background: var(--dark);
    padding: 24px 0;
    color: rgba(253, 249, 245, 0.5);
    border-top: 1px solid rgba(253, 249, 245, 0.08);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-links a {
    color: rgba(253, 249, 245, 0.35);
    text-decoration: none;
}

.footer-links a:hover {
    color: rgba(253, 249, 245, 0.7);
}

/* ==================
   BOOKING MODAL
   ================== */

.booking-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.booking-modal.active {
    display: flex;
}

.booking-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(40, 24, 20, 0.6);
    backdrop-filter: blur(4px);
}

.booking-modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    height: 80vh;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
}

.booking-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.booking-modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    background: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.booking-modal-close:hover {
    transform: scale(1.1);
}

/* ==================
   RESPONSIVE
   ================== */

@media (max-width: 860px) {
    .nav-toggle {
        display: flex;
    }

    /* Remove backdrop-filter on mobile nav to fix stacking context */
    .nav {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: var(--bg);
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1001;
        background: var(--bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
        gap: 0;
        visibility: hidden;
        opacity: 0;
        transform: translateX(100%);
        transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), visibility 0s 0.35s;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
        transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), visibility 0s 0s;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 14px 0;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(40, 24, 20, 0.06);
    }

    .lang-switch-mobile {
        display: block;
        padding-bottom: 16px;
        margin-bottom: 8px;
        border-bottom: 1px solid rgba(40, 24, 20, 0.06);
    }

    .nav-right {
        display: none;
    }

    /* Hero */
    .hero {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-content {
        padding: 40px 0 32px;
        padding-left: 18px;
        order: 1;
        width: 100%;
        justify-self: stretch;
    }

    .hero-content::before {
        top: 52px;
        bottom: 44px;
    }

    .hero-image {
        order: 2;
        min-height: 320px;
        max-height: 56vh;
        margin: 0 0 12px 0;
    }

    .hero-image img {
        object-position: 55% 30%;
    }

    .hero-image::before {
        top: 14px;
        left: 14px;
        right: -10px;
        bottom: -10px;
    }

    .companies-hero {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .companies-hero .section-label,
    .companies-hero .section-heading {
        text-align: center;
    }

    .companies-hero .companies-intro {
        text-align: center;
    }

    .companies-hero-image {
        max-width: 400px;
        margin: 0 auto;
        margin-right: 12px;
        margin-bottom: 12px;
    }

    .companies-hero-image::before {
        top: 14px;
        left: 14px;
        right: -10px;
        bottom: -10px;
    }

    /* Main text */
    .main-text-centered {
        max-width: 100%;
    }

    /* Packages */
    .packages-grid {
        grid-template-columns: 1fr;
    }

    /* Situations */
    .situation {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Formats */
    .formats {
        grid-template-columns: 1fr;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image {
        max-height: 50vh;
        overflow: hidden;
    }

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

    /* Podcast */
    .podcast-grid {
        grid-template-columns: 1fr;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Footer */
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Karty */
    .karty-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .package-card {
        padding: 28px 24px;
    }

    .certificates-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero-line {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }

    .package-card,
    .blog-card,
    .certificate-item,
    .booking-modal-close,
    .btn-submit {
        transition: none;
    }
}

@media (prefers-reduced-motion: reduce) and (max-width: 860px) {
    .nav-menu {
        transition: none;
        transform: none;
    }

    .nav-menu:not(.active) {
        visibility: hidden;
        opacity: 0;
    }
}
