/* home.css — štýly úvodnej stránky.
   Vyňaté z inline <style> v public/index.html (v7.7.581). Dôvod: 32 kB CSS
   priamo v HTML tlačilo pomer text/HTML na 16 %, čo Seobility hodnotí v sekcii
   Content. Vedľajší prínos: súbor sa cachuje medzi načítaniami.
   POZOR na poradie — musí sa načítať AŽ ZA /css/cinematic.css, inak sa
   prepíšu prepisy špecifické pre úvodnú (napr. #hero .hero-inner). */
/* ================================================================
       Cinematic Equestrian — preview v1
       Inspired by: Apple.com, Linear.app, Stripe, LGCT
       Clean, editorial, premium — no photography required
       ================================================================ */

    :root {
        --bg: #050811;
        --bg-2: #0a0f1c;
        --bg-3: #111827;
        --surface: rgba(255, 255, 255, 0.03);
        --surface-hi: rgba(255, 255, 255, 0.06);
        --border: rgba(255, 255, 255, 0.08);
        --border-hi: rgba(255, 255, 255, 0.14);
        --ink: #f5f6f9;
        --ink-2: rgba(245, 246, 249, 0.72);
        --ink-3: rgba(245, 246, 249, 0.5);
        --gold: #d4b170;
        --gold-soft: rgba(212, 177, 112, 0.2);
        --emerald: #10b981;
        --emerald-soft: rgba(16, 185, 129, 0.15);

        --container: 1200px;
        --radius: 16px;
        --radius-sm: 8px;

        --ease: cubic-bezier(0.16, 1, 0.3, 1);
        --ease-in: cubic-bezier(0.4, 0, 1, 1);
    }

    /* Font-metric fallbacks — eliminujú CLS pri font-swap */
    @font-face {
        font-family: 'Inter-fallback';
        src: local('Arial');
        size-adjust: 94.74%;
        ascent-override: 89.91%;
        descent-override: 22.34%;
        line-gap-override: 0%;
    }
    @font-face {
        font-family: 'Fraunces-fallback';
        src: local('Georgia');
        size-adjust: 97.5%;
        ascent-override: 84%;
        descent-override: 22%;
        line-gap-override: 0%;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body {
        font-family: 'Inter', 'Inter-fallback', -apple-system, sans-serif;
        background: var(--bg);
        color: var(--ink);
        line-height: 1.55;
        overflow-x: hidden;
    }

    ::selection { background: var(--gold); color: var(--bg); }

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

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

    /* ------------ Type scale ------------ */
    .display-xl {
        font-size: clamp(2.75rem, 8vw, 6rem);
        font-weight: 800;
        letter-spacing: -0.035em;
        line-height: 0.98;
    }
    .display-lg {
        font-size: clamp(2.25rem, 6vw, 4.5rem);
        font-weight: 700;
        letter-spacing: -0.03em;
        line-height: 1.05;
    }
    .display-md {
        font-size: clamp(1.75rem, 4vw, 3rem);
        font-weight: 700;
        letter-spacing: -0.025em;
        line-height: 1.1;
    }
    .eyebrow {
        font-size: 0.72rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        color: var(--gold);
    }
    .serif { font-family: 'Fraunces', 'Fraunces-fallback', Georgia, serif; font-weight: 400; font-style: italic; }

    /* ------------ Noise overlay (premium texture) ------------ */
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 1;
        opacity: 0.4;
        mix-blend-mode: overlay;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* ------------ Header — globálny styling z cinematic.css preberá; tu len badge špecifické pre homepage ------------ */
    .coming-badge {
        display: inline-block;
        background: rgba(212, 177, 112, 0.18);
        color: var(--gold);
        padding: 0.15rem 0.5rem;
        border-radius: 999px;
        font-size: 0.62rem;
        letter-spacing: 0.1em;
        margin-left: 0.4rem;
        font-weight: 600;
        text-transform: uppercase;
    }
    .service.coming-soon { opacity: 0.85; }

    /* --- Dropdown "Viac" --- */
    .nav-more { position: relative; }
    .nav-more-btn {
        background: none; border: none; cursor: pointer; font-family: inherit;
        font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em;
        color: var(--ink-2); padding: 0.5rem 0;
        display: inline-flex; align-items: center; gap: 0.4rem;
        transition: color 0.2s var(--ease);
    }
    .nav-more-btn:hover, .nav-more[data-open="true"] .nav-more-btn { color: var(--ink); }
    .nav-more-caret { display: inline-block; font-size: 0.7em; transition: transform 0.25s var(--ease); opacity: 0.85; }
    .nav-more[data-open="true"] .nav-more-caret { transform: rotate(180deg); }
    .nav-more-menu {
        position: absolute; top: calc(100% + 12px); right: 0;
        min-width: 200px;
        background: rgba(10, 15, 28, 0.96);
        backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(212, 177, 112, 0.18);
        border-radius: 12px; padding: 0.5rem;
        display: flex; flex-direction: column;
        opacity: 0; visibility: hidden; transform: translateY(-6px);
        transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
        z-index: 100;
        box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    }
    .nav-more[data-open="true"] .nav-more-menu { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav-more-menu a {
        font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em;
        color: var(--ink-2);
        padding: 0.7rem 1rem; border-radius: 8px;
        transition: background 0.2s var(--ease), color 0.2s var(--ease);
        white-space: nowrap;
    }
    .nav-more-menu a::after { display: none !important; }
    .nav-more-menu a:hover { background: rgba(212, 177, 112, 0.1); color: var(--gold); }

    /* ------------ Hero ------------ */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 9rem 0 5rem;
        overflow: hidden;
        isolation: isolate;
    }
    /* Animated gradient mesh — cinematic */
    .hero::before {
        content: '';
        position: absolute;
        inset: -20%;
        z-index: -1;
        background:
            radial-gradient(ellipse 60% 80% at 25% 30%, rgba(16, 185, 129, 0.18) 0%, transparent 50%),
            radial-gradient(ellipse 50% 70% at 80% 50%, rgba(212, 177, 112, 0.22) 0%, transparent 55%),
            radial-gradient(ellipse 70% 60% at 50% 90%, rgba(16, 185, 129, 0.12) 0%, transparent 50%);
        filter: blur(60px);
        animation: meshDrift 18s ease-in-out infinite;
    }
    @keyframes meshDrift {
        0%, 100% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(-5%, 3%) scale(1.05); }
    }
    /* Subtle grid overlay */
    .hero::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: -1;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
        background-size: 80px 80px;
        mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
        -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    }
    .hero-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
    .hero .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    .hero .eyebrow::before {
        content: '';
        width: 24px;
        height: 1px;
        background: var(--gold);
    }
    .hero h1 {
        margin-bottom: 2rem;
        max-width: 950px;
    }
    .hero h1 .accent {
        font-family: 'Fraunces', serif;
        font-style: italic;
        font-weight: 400;
        color: var(--gold);
        letter-spacing: -0.03em;
    }
    .hero-lead {
        font-size: clamp(1.05rem, 1.5vw, 1.25rem);
        color: var(--ink-2);
        max-width: 620px;
        margin-bottom: 3rem;
        line-height: 1.6;
    }
    .hero-cta-group {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        align-items: center;
    }

    /* Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        padding: 1rem 2rem;
        font-size: 0.82rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        border-radius: 999px;
        border: 1px solid transparent;
        cursor: pointer;
        transition: all 0.3s var(--ease);
    }
    .btn-primary {
        background: var(--gold);
        color: var(--bg);
        border-color: var(--gold);
    }
    .btn-primary:hover {
        background: #e2c389;
        border-color: #e2c389;
        transform: translateY(-1px);
        box-shadow: 0 10px 40px rgba(212, 177, 112, 0.3);
    }
    .btn-ghost {
        background: transparent;
        color: var(--ink);
        border-color: var(--border-hi);
    }
    .btn-ghost:hover {
        background: var(--surface);
        border-color: var(--ink-2);
    }
    .btn .arrow {
        display: inline-block;
        transition: transform 0.3s var(--ease);
    }
    .btn:hover .arrow { transform: translateX(3px); }

    /* Hero scroll indicator */
    .scroll-indicator {
        position: absolute;
        bottom: 2.5rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.25em;
        color: var(--ink-3);
    }
    .scroll-indicator::after {
        content: '';
        width: 1px;
        height: 40px;
        background: linear-gradient(to bottom, var(--gold), transparent);
        animation: scrollBar 2s ease-in-out infinite;
    }
    @keyframes scrollBar {
        0%, 100% { transform: scaleY(1); transform-origin: top; }
        50% { transform: scaleY(0.4); transform-origin: top; }
    }

    /* ------------ Metrics strip ------------ */
    .metrics {
        padding: 3rem 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        background: var(--bg-2);
    }
    .metrics-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 2rem;
        text-align: center;
    }
    .metric .num {
        font-size: clamp(2rem, 3.5vw, 2.75rem);
        font-weight: 700;
        letter-spacing: -0.03em;
        color: var(--gold);
        display: block;
        margin-bottom: 0.25rem;
    }
    .metric .label {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: var(--ink-3);
        font-weight: 500;
    }

    /* ------------ Section ------------ */
    section.content {
        padding: 7rem 0;
        position: relative;
    }
    section.light { background: #f7f5f0; color: #0a0f1c; }
    section.light .eyebrow { color: #7a6332; }
    section.light a { color: inherit; }

    .section-head {
        max-width: 720px;
        margin-bottom: 4rem;
    }
    .section-head.center {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .section-head .eyebrow { margin-bottom: 1.25rem; display: block; }
    .section-head h2 { margin-bottom: 1rem; }
    .section-head p {
        color: var(--ink-2);
        font-size: 1.05rem;
        line-height: 1.65;
    }
    section.light .section-head p { color: rgba(10, 15, 28, 0.7); }

    /* ------------ Services cards ------------ */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
        gap: 1px;
        background: var(--border);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        overflow: hidden;
    }
    .service {
        background: var(--bg);
        padding: 2.5rem 2rem;
        transition: background 0.3s var(--ease);
        position: relative;
    }
    .service:hover { background: var(--bg-3); }
    .service-num {
        font-size: 0.72rem;
        color: var(--gold);
        letter-spacing: 0.15em;
        margin-bottom: 2rem;
        display: block;
        font-weight: 500;
    }
    .service h3 {
        font-size: 1.35rem;
        font-weight: 600;
        margin-bottom: 0.85rem;
        letter-spacing: -0.01em;
    }
    .service p {
        color: var(--ink-2);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    .service-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        color: var(--gold);
        font-weight: 600;
    }
    .service-link:hover { color: #e2c389; }

    /* ------------ Home trainers grid ------------ */
    .home-trainers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
        gap: 1.5rem;
    }
    .home-trainer-card {
        display: flex;
        flex-direction: column;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
    }
    .home-trainer-card:hover {
        border-color: var(--gold-soft);
        transform: translateY(-2px);
        box-shadow: 0 12px 28px -12px rgba(10,15,28,0.12);
    }
    .home-trainer-img {
        width: 100%;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        background: var(--bg-3);
        display: block;
    }
    .home-trainer-img-fallback {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.4rem;
        font-weight: 600;
        color: var(--gold);
        font-family: 'Fraunces', 'Georgia', serif;
        letter-spacing: -0.02em;
    }
    .home-trainer-body {
        padding: 1.25rem 1.25rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        flex: 1;
    }
    .home-trainer-body h3 {
        font-size: 1.05rem;
        font-weight: 600;
        letter-spacing: -0.005em;
        margin: 0;
    }
    .home-trainer-level {
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        color: var(--gold);
        font-weight: 600;
    }
    .home-trainer-bio {
        color: var(--ink-2);
        font-size: 0.88rem;
        line-height: 1.55;
        margin: 0;
    }
    .home-trainer-specs {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
        margin-top: auto;
        padding-top: 0.25rem;
    }
    .home-trainer-tag {
        font-size: 0.72rem;
        padding: 0.25rem 0.6rem;
        background: var(--bg-3);
        border: 1px solid var(--border);
        border-radius: 999px;
        color: var(--ink-2);
        letter-spacing: 0.01em;
    }

    /* ------------ Home horses grid ------------ */
    .home-horses-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.25rem;
    }
    .home-horse-card {
        display: flex;
        flex-direction: column;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
    }
    .home-horse-card:hover {
        border-color: var(--gold-soft);
        transform: translateY(-2px);
        box-shadow: 0 12px 28px -12px rgba(10,15,28,0.12);
    }
    .home-horse-img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        background: var(--bg-3);
        display: block;
    }
    .home-horse-img-fallback {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.4rem;
        font-weight: 600;
        color: var(--gold);
        font-family: 'Fraunces', 'Georgia', serif;
    }
    .home-horse-body {
        padding: 1rem 1.1rem 1.25rem;
        display: flex;
        flex-direction: column;
        gap: 0.45rem;
        flex: 1;
    }
    .home-horse-body h3 {
        font-size: 1rem;
        font-weight: 600;
        margin: 0;
        letter-spacing: -0.005em;
    }
    .home-horse-meta {
        font-size: 0.82rem;
        color: var(--ink-2);
        margin: 0;
    }
    .home-horse-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem;
        margin-top: auto;
        padding-top: 0.25rem;
        list-style: none;
        padding-left: 0;
    }
    .home-horse-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.55rem;
        background: var(--bg-3);
        border: 1px solid var(--border);
        border-radius: 999px;
        color: var(--ink-2);
    }

    /* ------------ Home events list ------------ */
    .home-events-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-width: 760px;
        margin: 0 auto;
    }
    .home-event-card {
        display: grid;
        grid-template-columns: minmax(140px, 180px) 1fr;
        gap: 1.5rem;
        padding: 1.25rem 1.5rem;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        align-items: center;
        transition: border-color 0.2s var(--ease);
    }
    .home-event-card:hover { border-color: var(--gold-soft); }
    .home-event-date {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--gold);
        letter-spacing: 0.01em;
    }
    .home-event-body h3 {
        font-size: 1.05rem;
        font-weight: 600;
        margin: 0 0 0.35rem;
        letter-spacing: -0.005em;
    }
    .home-event-location {
        font-size: 0.85rem;
        color: var(--ink-2);
        margin: 0 0 0.25rem;
    }
    .home-event-meta {
        font-size: 0.78rem;
        color: var(--ink-2);
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }
    @media (max-width: 600px) {
        .home-event-card {
            grid-template-columns: 1fr;
            gap: 0.5rem;
            padding: 1rem 1.25rem;
        }
    }

    /* ------------ Home booking CTA ------------ */
    .home-booking-card {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
        padding: 3rem 2rem;
        background: var(--bg-3);
        border: 1px solid var(--gold-soft);
        border-radius: var(--radius-lg, 16px);
    }
    .home-booking-card h2 {
        margin: 0.75rem 0 1rem;
    }
    .home-booking-card p {
        color: var(--ink-2);
        max-width: 520px;
        margin: 0 auto;
    }

    /* ------------ About / quote ------------ */
    .about-card {
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
        padding: 2rem;
    }
    .big-quote {
        font-family: 'Fraunces', serif;
        font-style: italic;
        font-weight: 400;
        font-size: clamp(1.5rem, 3.5vw, 2.5rem);
        line-height: 1.3;
        letter-spacing: -0.015em;
        color: var(--ink);
        max-width: 900px;
        margin: 0 auto 2rem;
    }
    .big-quote::before { content: '"'; color: var(--gold); font-size: 1.3em; line-height: 0; vertical-align: -0.15em; margin-right: 0.15em; }
    .big-quote::after { content: '"'; color: var(--gold); font-size: 1.3em; line-height: 0; vertical-align: -0.3em; margin-left: 0.1em; }
    .quote-attribution {
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: var(--ink-3);
    }
    .quote-attribution strong { color: var(--ink); font-weight: 500; }

    /* ------------ Gallery strip (text substitute for no photos) ------------ */
    .showcase {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
        gap: 2rem;
    }
    .showcase-item {
        position: relative;
        padding: 3rem 2rem;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background: var(--surface);
        transition: all 0.4s var(--ease);
        overflow: hidden;
    }
    .showcase-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: radial-gradient(ellipse at top, var(--emerald-soft), transparent 60%);
        opacity: 0;
        transition: opacity 0.4s var(--ease);
        pointer-events: none;
    }
    .showcase-item:hover {
        transform: translateY(-4px);
        border-color: var(--border-hi);
    }
    .showcase-item:hover::before { opacity: 1; }
    .showcase-num {
        font-family: 'Fraunces', serif;
        font-size: 3.5rem;
        color: var(--gold);
        line-height: 1;
        margin-bottom: 1.5rem;
        display: block;
        font-weight: 300;
    }
    .showcase-item h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
    .showcase-item p { color: var(--ink-2); font-size: 0.9rem; line-height: 1.6; }

    /* ------------ CTA section ------------ */
    .cta-section {
        padding: 8rem 0;
        text-align: center;
        position: relative;
        overflow: hidden;
        isolation: isolate;
    }
    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: -1;
        background:
            radial-gradient(ellipse 50% 60% at 50% 50%, rgba(212, 177, 112, 0.15), transparent 60%);
        filter: blur(40px);
    }
    .cta-section h2 {
        max-width: 900px;
        margin: 0 auto 1.5rem;
    }
    .cta-section p {
        color: var(--ink-2);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 2.5rem;
    }
    .cta-section .hero-cta-group { justify-content: center; }
    .cta-contact {
        margin-top: 3rem;
        display: flex;
        justify-content: center;
        gap: 3rem;
        flex-wrap: wrap;
        font-size: 0.88rem;
        color: var(--ink-3);
    }
    .cta-contact a { color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

    /* ------------ Contact + Map layout ------------ */
    .contact-layout {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 3rem;
        align-items: stretch;
    }
    .contact-details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        align-content: start;
    }
    .contact-block {
        padding: 1.25rem 1.5rem;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        transition: border-color 0.3s var(--ease);
    }
    .contact-block:hover { border-color: var(--border-hi); }
    .contact-label {
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        color: var(--gold);
        font-weight: 500;
    }
    .contact-value {
        font-size: 1rem;
        color: var(--ink);
        font-weight: 500;
        line-height: 1.45;
    }
    .contact-value-static { color: var(--ink); }
    a.contact-value { border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease); }
    a.contact-value:hover { border-bottom-color: var(--gold); }

    .contact-map {
        border: 1px solid var(--border);
        border-radius: var(--radius);
        overflow: hidden;
        min-height: 420px;
        position: relative;
        background: var(--bg-3);
    }
    .contact-map iframe {
        width: 100%;
        height: 100%;
        min-height: 420px;
        border: 0;
        display: block;
        filter: grayscale(15%) contrast(1.05);
    }

    @media (max-width: 900px) {
        .contact-layout { grid-template-columns: 1fr; }
        .contact-map { min-height: 340px; }
        .contact-map iframe { min-height: 340px; }
    }
    @media (max-width: 500px) {
        .contact-details { grid-template-columns: 1fr; }
    }

    /* ------------ FAQ ------------ */
    .faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
    .faq-item {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
    }
    .faq-item[open] {
        border-color: rgba(212, 177, 112, 0.32);
        background: var(--surface-hi);
    }
    .faq-item summary {
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        padding: 1.1rem 1.5rem;
        cursor: pointer;
        user-select: none;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item .faq-q {
        font-size: 1rem;
        font-weight: 500;
        color: var(--ink);
        letter-spacing: -0.005em;
    }
    .faq-item .faq-icon {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1px solid var(--border);
        color: var(--gold);
        font-size: 1.2rem;
        line-height: 1;
        transition: transform 0.3s var(--ease), border-color 0.25s var(--ease);
    }
    .faq-item[open] .faq-icon {
        transform: rotate(45deg);
        border-color: var(--gold);
    }
    .faq-item .faq-a {
        padding: 0 1.5rem 1.25rem;
        color: var(--ink-2);
        line-height: 1.7;
    }
    .faq-item .faq-a p { margin: 0; font-size: 0.95rem; }
    .faq-item .faq-a a { color: var(--gold); border-bottom: 1px solid var(--gold-soft); transition: border-color 0.25s var(--ease); }
    .faq-item .faq-a a:hover { border-bottom-color: var(--gold); }
    @media (max-width: 600px) {
        .faq-item summary { padding: 0.95rem 1.1rem; gap: 1rem; }
        .faq-item .faq-q { font-size: 0.92rem; }
        .faq-item .faq-a { padding: 0 1.1rem 1.1rem; }
    }

    /* ------------ Footer ------------ */
    footer {
        padding: 5rem 0 2rem;
        border-top: 1px solid var(--border);
        background: var(--bg-2);
    }
    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }
    .footer-grid h3 {
        font-size: 0.72rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        color: var(--gold);
        margin-bottom: 1.25rem;
    }
    .footer-grid a { display: block; padding: 0.3rem 0; color: var(--ink-2); font-size: 0.92rem; }
    .footer-grid a:hover { color: var(--ink); }
    .footer-social { margin-top: 0.9rem; }
    .footer-social a {
        display: inline-flex; align-items: center; gap: 0.55rem;
        font-size: 0.9rem; color: var(--ink-2);
        border-bottom: 1px solid var(--gold-soft); padding-bottom: 2px;
        transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
    }
    .footer-social a:hover { color: var(--gold); border-bottom-color: var(--gold); }
    .footer-social span[aria-hidden] {
        display: inline-flex; align-items: center; justify-content: center;
        width: 22px; height: 22px; border-radius: 50%;
        background: var(--gold-soft); color: var(--gold);
        font-family: Georgia, serif; font-weight: 700; font-size: 0.9rem; line-height: 1;
    }
    .footer-lead { font-size: 0.95rem; color: var(--ink-2); line-height: 1.7; max-width: 360px; margin-top: 1rem; }
    .footer-bottom {
        padding-top: 2rem;
        border-top: 1px solid var(--border);
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.82rem;
        color: var(--ink-3);
    }
    .footer-bottom a { color: var(--ink-2); }
    .footer-bottom a:hover { color: var(--ink); }

    /* ------------ Fade-in on scroll ------------ */
    .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ------------ Mobile + tablet ------------ */
    /* Breakpoint zvýšený 900 → 1280px aby sa brand-text + 6-položkové menu
       neprekrývali na užších desktopoch (zladené s globálnym cinematic.css). */
    @media (max-width: 1280px) {
        header { padding: 1rem 0; }
        nav.main-nav { display: none; }
        .hero { min-height: 90vh; padding: 7rem 0 4rem; }
        .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
        section.content { padding: 4.5rem 0; }
        .cta-contact { gap: 1.5rem; flex-direction: column; }
    }
    @media (max-width: 500px) {
        .footer-grid { grid-template-columns: 1fr; }
        .container { padding: 0 1.25rem; }
        .hero-cta-group { width: 100%; flex-direction: column; align-items: stretch; }
        .btn { justify-content: center; }
    }

    /* ------------ Accessibility: reduced motion ------------ */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
        .hero::before { animation: none !important; }
    }

    /* ------------ Preview banner ------------ */
    .preview-banner {
        background: linear-gradient(90deg, #ff6b35, #f7931e);
        color: #fff;
        padding: 0.55rem 1rem;
        text-align: center;
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 0.06em;
        position: sticky;
        top: 0;
        z-index: 200;
    }
    .preview-banner strong { font-weight: 700; }

    /* ─── Partners section ─── */
    .partners-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1.25rem;
        margin-top: 2.5rem;
    }
    .partner-card {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid rgba(212, 177, 112, 0.15);
        border-radius: 14px;
        padding: 1.5rem 1.25rem;
        min-height: 110px;
        text-decoration: none;
        transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        position: relative;
    }
    .partner-card:hover,
    .partner-card:focus-visible {
        transform: translateY(-3px);
        border-color: rgba(212, 177, 112, 0.55);
        box-shadow: 0 12px 30px rgba(212, 177, 112, 0.12), 0 4px 12px rgba(0, 0, 0, 0.18);
        outline: none;
    }
    .partner-card img {
        max-width: 100%;
        max-height: 70px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(0.25);
        transition: filter 0.25s ease;
    }
    .partner-card:hover img,
    .partner-card:focus-visible img {
        filter: grayscale(0);
    }
    .partner-card .partner-name-fallback {
        font-family: 'Fraunces', Georgia, serif;
        font-size: 1rem;
        font-weight: 500;
        color: #0f172a;
        text-align: center;
        line-height: 1.3;
    }
    .partner-card[data-type="hlavny_sponzor"] {
        grid-column: span 2;
        min-height: 140px;
    }
    .partner-card[data-type="hlavny_sponzor"] img {
        max-height: 90px;
    }
    @media (max-width: 540px) {
        .partner-card[data-type="hlavny_sponzor"] {
            grid-column: span 1;
        }
    }
    .partners-empty {
        margin-top: 2.5rem;
        text-align: center;
        color: var(--ink-3);
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .partners-empty a {
        color: var(--gold);
        font-weight: 500;
        text-decoration: none;
        border-bottom: 1px solid rgba(212, 177, 112, 0.4);
        transition: border-color 0.15s ease;
    }
    .partners-empty a:hover { border-color: var(--gold); }

/* Stretched link — celá karta ostáva klikateľná, ale text odkazu je iba titulok.
   Dôvod: Seobility hlásil „Some internal link anchor texts are too long" — pri
   odkaze obaľujúcom celú kartu bol textom odkazu aj celý popis (až 227 znakov).
   Klikacia plocha ani vzhľad sa nemenia. */
.card-item { position: relative; }
.stretched-link { color: inherit; text-decoration: none; }
.stretched-link::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}
