/* ==========================================================================
   AVANTURISTIČKI PARK — EDITORIAL ALPINE PREMIUM
   Stack: pure HTML + CSS + vanilla JS
   ========================================================================== */

/* === DESIGN TOKENS ====================================================== */
:root {
    /* Color — earth, forest, ember */
    --ink: #0F1F1A;
    --ink-soft: #182A22;
    --moss: #2D5A3D;
    --moss-light: #4A7C5D;
    --moss-fog: #6E9A7A;

    --bark: #5C3D1E;
    --bark-light: #8B5E3C;
    --tan: #B48A64;

    --ember: #D9572C;
    --ember-deep: #B0431F;
    --ember-glow: #E89060;

    --paper: #F4EDE0;
    --paper-warm: #ECE0CB;
    --bone: #FAF6EE;

    --charcoal: #1A1A1A;
    --graphite: #3D3D3D;
    --silver: #8C8C8C;
    --silver-light: #C8C2B7;

    /* Type */
    --display: "Fraunces", "Times New Roman", Georgia, serif;
    --sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;

    /* Scale */
    --t-xs: 0.75rem;
    --t-sm: 0.875rem;
    --t-base: 1rem;
    --t-md: 1.125rem;
    --t-lg: 1.375rem;
    --t-xl: 1.75rem;
    --t-2xl: clamp(2rem, 4vw, 2.75rem);
    --t-3xl: clamp(2.5rem, 5.5vw, 4.25rem);
    --t-4xl: clamp(3rem, 7.5vw, 5.75rem);
    --t-5xl: clamp(3.5rem, 11vw, 9rem);

    /* Spacing */
    --s-1: 0.5rem;
    --s-2: 1rem;
    --s-3: 1.5rem;
    --s-4: 2rem;
    --s-5: 3rem;
    --s-6: 4rem;
    --s-7: 6rem;
    --s-8: 8rem;
    --s-9: 10rem;

    /* Layout */
    --container: 1320px;
    --container-narrow: 880px;
    --container-wide: 1480px;
    --nav-h: 76px;

    /* Motion */
    --ease: cubic-bezier(0.32, 0.72, 0, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Borders */
    --line: 1px solid rgba(15, 31, 26, 0.12);
    --line-strong: 1px solid rgba(15, 31, 26, 0.2);
    --line-dark: 1px solid rgba(244, 237, 224, 0.15);
}

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--sans);
    font-weight: 400;
    font-size: var(--t-base);
    line-height: 1.55;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss01", "kern";
}

img,
svg {
    max-width: 100%;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

::selection {
    background: var(--ember);
    color: var(--bone);
}

/* === GRAIN OVERLAY — global atmosphere ================================== */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
    opacity: 0.06;
    mix-blend-mode: multiply;
    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' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* === TYPOGRAPHY ========================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--display);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
}

h1 {
    font-size: var(--t-5xl);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.92;
}

h2 {
    font-size: var(--t-4xl);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

h3 {
    font-size: var(--t-2xl);
    line-height: 1.05;
}

h4 {
    font-size: var(--t-lg);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

p {
    font-size: var(--t-base);
    line-height: 1.65;
    color: var(--graphite);
}

em,
.italic {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.serif {
    font-family: var(--display);
}

.mono {
    font-family: var(--mono);
    font-weight: 400;
    letter-spacing: 0.04em;
}

/* === LAYOUT PRIMITIVES ================================================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

section {
    padding: var(--s-8) 0;
    position: relative;
}

main {
    overflow: hidden;
}

/* === SECTION KICKER — numbered editorial labels ========================= */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--mono);
    font-size: var(--t-xs);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: var(--s-3);
}

.kicker::before {
    content: "";
    width: 24px;
    height: 1px;
    background: currentColor;
    display: inline-block;
}

.kicker-num {
    color: var(--bark-light);
    font-variant-numeric: tabular-nums;
}

.kicker-light {
    color: var(--ember-glow);
}

.kicker-light .kicker-num {
    color: rgba(244, 237, 224, 0.6);
}

/* === SECTION HEADERS ==================================================== */
.section-head {
    margin-bottom: var(--s-7);
    max-width: 780px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head.center .kicker {
    margin-left: auto;
    margin-right: auto;
}

.section-head h2 {
    margin-bottom: var(--s-3);
}

.section-head .lead {
    font-size: var(--t-md);
    color: var(--graphite);
    line-height: 1.6;
    max-width: 60ch;
}

.section-head.center .lead {
    margin-left: auto;
    margin-right: auto;
}

/* === SCROLL PROGRESS BAR ================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 1100;
    background: rgba(15, 31, 26, 0.06);
    pointer-events: none;
}

.scroll-progress__bar {
    height: 100%;
    width: 0%;
    background: var(--ember);
    transition: width 0.05s linear;
    box-shadow: 0 0 10px rgba(217, 87, 44, 0.5);
}

/* === LOADING SCREEN ===================================================== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bone);
    transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
    overflow: hidden;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader__inner {
    position: relative;
    text-align: center;
}

.loader__mark {
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--ember-glow);
    margin-bottom: var(--s-3);
    opacity: 0;
    animation: loaderFadeIn 0.6s 0.2s var(--ease-out) forwards;
}

.loader__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--bone);
    margin-bottom: var(--s-5);
    opacity: 0;
    animation: loaderFadeIn 0.7s 0.4s var(--ease-out) forwards;
}

.loader__title em {
    font-style: italic;
    color: var(--ember-glow);
}

.loader__bar {
    width: min(280px, 60vw);
    height: 1px;
    background: rgba(244, 237, 224, 0.15);
    overflow: hidden;
    margin: 0 auto;
}

.loader__bar::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--ember);
    transform: translateX(-100%);
    animation: loaderProgress 1.6s 0.7s var(--ease-out) forwards;
}

@keyframes loaderFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

@keyframes loaderProgress {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

/* --- Loader duo (index) --- */
.loader__duo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    animation: loaderFadeIn 0.8s 0.25s var(--ease-out) forwards;
    margin-bottom: var(--s-5);
}

.loader__duo-img {
    height: 110px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.loader__duo-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
    flex-shrink: 0;
}

.loader__duo-main {
    font-family: var(--display);
    font-size: 1.55rem;
    font-weight: 300;
    font-style: italic;
    color: var(--bone);
    letter-spacing: -0.01em;
    line-height: 1;
    font-variation-settings: "opsz" 72, "SOFT" 60, "WONK" 0;
    white-space: nowrap;
}

.loader__duo-sub {
    font-family: var(--mono);
    font-size: 1rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ember-glow);
    white-space: nowrap;
}

/* --- Loader logo slika (Lovćen) --- */
.loader__logo-img {
    opacity: 0;
    animation: loaderFadeIn 0.8s 0.25s var(--ease-out) forwards;
    margin-bottom: var(--s-5);
}

.loader__logo-img img {
    width: min(220px, 55vw);
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Nav logo slika — Lovćen / Gorica */
.nav-logo--duo {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.nav-logo--duo a {
    display: flex;
}

.nav-duo-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    gap: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    max-width: 260px;
    opacity: 1;
    transition: opacity 0.35s var(--ease), max-width 0.45s var(--ease);
}

.nav-duo-label__main {
    font-family: var(--display);
    font-size: 1.55rem;
    font-weight: 300;
    font-style: italic;
    color: var(--bone);
    letter-spacing: -0.01em;
    line-height: 1;
    font-variation-settings: "opsz" 72, "SOFT" 60, "WONK" 0;
}

.nav-duo-label__sub {
    font-family: var(--mono);
    font-size: 1rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ember-glow);
}

.navbar.scrolled .nav-duo-label {
    opacity: 0;
    max-width: 0;
}

.nav-logo-img {
    height: 115px;
    width: auto;
    display: block;
    transition: height 0.4s var(--ease), opacity 0.4s var(--ease);
}

.navbar.scrolled .nav-logo-img {
    height: 50px;
}

.nav-logo-img:hover {
    opacity: 0.75;
}

/* === NAV ================================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 1000;
    overflow: visible;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
        backdrop-filter 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(244, 237, 224, 0.85);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom-color: rgba(15, 31, 26, 0.08);
}

.nav-container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: flex-start;
    align-self: flex-start;
    gap: 0.6rem;
    color: var(--bone);
    transition: color 0.4s var(--ease);
    padding-top: 22px;
    margin-left: -0.9rem;
}

.navbar.scrolled .nav-logo {
    color: var(--ink);
    align-self: center;
    padding-top: 0;
}

.navbar.scrolled .nav-logo--duo {
    align-items: center;
}

.nav-logo-mark {
    font-family: var(--mono);
    font-weight: 600;
    font-size: var(--t-xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.35rem 0.6rem;
    border: 1px solid currentColor;
    line-height: 1;
}

.nav-logo-name {
    font-family: var(--display);
    font-size: var(--t-md);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1;
}

.nav-logo-name em {
    font-style: italic;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 2.5vw, 2.25rem);
    align-self: flex-end;
    padding-bottom: 16px;
}

.nav-link {
    position: relative;
    font-family: var(--sans);
    font-size: var(--t-sm);
    font-weight: 500;
    letter-spacing: -0.005em;
    color: rgba(244, 237, 224, 0.85);
    padding: 0.5rem 0;
    transition: color 0.3s var(--ease);
}

.navbar.scrolled .nav-link {
    color: rgba(15, 31, 26, 0.75);
}

.nav-link:hover {
    color: var(--bone);
}

.navbar.scrolled .nav-link:hover {
    color: var(--ink);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.1rem;
    width: 0;
    height: 1px;
    background: var(--ember);
    transition: width 0.4s var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--bone);
}

.navbar.scrolled .nav-link.active {
    color: var(--ink);
}

.nav-cta {
    background: var(--ember);
    color: var(--bone) !important;
    padding: 0.7rem 1.3rem;
    font-family: var(--mono);
    font-size: var(--t-xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease),
        box-shadow 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--ember-deep);
    color: var(--bone) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 87, 44, 0.35);
}

.nav-cta-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s var(--ease);
}

.nav-cta:hover .nav-cta-arrow {
    transform: translate(2px, -2px);
}

/* Hamburger */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--bone);
    transition: transform 0.4s var(--ease), opacity 0.3s var(--ease),
        background 0.3s var(--ease);
}

.navbar.scrolled .nav-toggle span {
    background: var(--ink);
}

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

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

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

/* === BUTTONS ============================================================ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.05rem 2rem;
    font-family: var(--mono);
    font-size: var(--t-xs);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1;
    border: 1px solid transparent;
    transition: background 0.4s var(--ease), color 0.4s var(--ease),
        border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
    cursor: pointer;
    overflow: hidden;
    will-change: transform;
}

.btn-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.4s var(--ease);
}

.btn:hover .btn-arrow {
    transform: translate(3px, -3px);
}

.btn-primary {
    background: var(--ember);
    color: var(--bone);
    border-color: var(--ember);
}

.btn-primary:hover {
    background: var(--ember-deep);
    border-color: var(--ember-deep);
    box-shadow: 0 12px 30px -10px rgba(217, 87, 44, 0.5);
}

.btn-dark {
    background: var(--ink);
    color: var(--bone);
    border-color: var(--ink);
}

.btn-dark:hover {
    background: var(--bone);
    color: var(--ink);
    border-color: var(--ink);
}

.btn-light {
    background: var(--bone);
    color: var(--ink);
    border-color: var(--bone);
}

.btn-light:hover {
    background: transparent;
    color: var(--bone);
    border-color: var(--bone);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn-ghost:hover {
    background: var(--ink);
    color: var(--bone);
}

.btn-ghost-light {
    background: transparent;
    color: var(--bone);
    border-color: rgba(244, 237, 224, 0.4);
}

.btn-ghost-light:hover {
    background: var(--bone);
    color: var(--ink);
    border-color: var(--bone);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: var(--t-sm);
}

/* Magnetic — controlled by JS, just inherits transition */
.btn[data-magnetic] {
    transition: background 0.4s var(--ease), color 0.4s var(--ease),
        border-color 0.4s var(--ease), box-shadow 0.4s var(--ease),
        transform 0.6s var(--ease-out);
}

/* === HERO =============================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    color: var(--bone);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: var(--nav-h) 0 var(--s-3);
}


.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-color: var(--ink);
    background-image:
        linear-gradient(to bottom, rgba(10,20,16,0.35) 0%, rgba(10,20,16,0.65) 55%, rgba(10,20,16,0.92) 100%),
        url('/images/hero.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(255, 240, 220, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 82% 18%, rgba(217, 87, 44, 0.12) 0%, transparent 50%);
}

.hero-clouds,
.hero-mountains,
.hero-trees {
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: -1;
    will-change: transform;
}

.hero-clouds {
    top: 8%;
    width: 100%;
    height: 28%;
    opacity: 0.65;
    z-index: -2;
}

.hero-mountains {
    bottom: 0;
    width: 100%;
    height: 55%;
    z-index: -2;
}

.hero-trees {
    bottom: 0;
    width: 100%;
    height: 22%;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 240, 220, 0.7);
    border-radius: 50%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 0.5;
    }

    50% {
        transform: translate3d(20px, -40px, 0);
        opacity: 1;
    }
}

/* Hero content layout — editorial asymmetric */
.hero-inner {
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-2);
}

.hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: rgba(244, 237, 224, 0.7);
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-top: 1px solid rgba(244, 237, 224, 0.25);
    padding-top: var(--s-3);
    flex-wrap: wrap;
    gap: var(--s-3);
}

.hero-meta__group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-meta__label {
    color: rgba(244, 237, 224, 0.5);
}

.hero-meta__value {
    color: var(--bone);
    font-size: var(--t-sm);
    letter-spacing: 0.1em;
}

.hero-content {
    max-width: 920px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ember-glow);
    margin-bottom: var(--s-4);
    opacity: 0;
    transform: translateY(20px);
    animation: heroIn 0.9s 0.4s var(--ease-out) forwards;
}

.hero-kicker::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.hero-title {
    font-size: var(--t-5xl);
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: -0.045em;
    color: var(--bone);
    margin-bottom: var(--s-4);
    font-variation-settings: "opsz" 144, "SOFT" 50;
}

.hero-title .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.hero-title .word > span {
    display: inline-block;
    transform: translateY(110%);
    animation: heroWordIn 0.9s var(--ease-out) forwards;
}

.hero-title .word:nth-child(1) > span {
    animation-delay: 0.6s;
}

.hero-title .word:nth-child(2) > span {
    animation-delay: 0.7s;
}

.hero-title .word:nth-child(3) > span {
    animation-delay: 0.8s;
}

.hero-title em {
    font-style: italic;
    color: var(--ember-glow);
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

@keyframes heroWordIn {
    to {
        transform: translateY(0);
    }
}

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

.hero-sub {
    font-size: var(--t-md);
    line-height: 1.55;
    color: rgba(244, 237, 224, 0.85);
    max-width: 540px;
    margin-bottom: var(--s-2);
    opacity: 0;
    transform: translateY(20px);
    animation: heroIn 0.9s 1.1s var(--ease-out) forwards;
}

.hero-actions {
    display: flex;
    gap: var(--s-2);
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: heroIn 0.9s 1.3s var(--ease-out) forwards;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--s-4);
    right: clamp(1.25rem, 4vw, 3rem);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 237, 224, 0.6);
    opacity: 0;
    animation: heroIn 0.9s 1.5s var(--ease-out) forwards;
    transition: opacity 0.4s var(--ease);
}

.scroll-indicator__line {
    width: 1px;
    height: 36px;
    background: rgba(244, 237, 224, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-indicator__line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--ember-glow);
    animation: scrollLine 2.4s var(--ease-out) infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(200%);
    }
}

/* Hero subpage variants */
.hero--sub {
    min-height: 70vh;
    min-height: 70svh;
    align-items: flex-end;
    padding: calc(var(--nav-h) + var(--s-5)) 0 var(--s-3);
}

.hero-bg--gorica {
    background:
        radial-gradient(120% 80% at 50% 100%, var(--ink) 0%, transparent 70%),
        linear-gradient(180deg, #b8c8b0 0%, #95b39c 22%, #6e9a7a 50%, #2d5a3d 78%, var(--ink) 100%);
}

.hero-bg--lovcen {
    background:
        radial-gradient(120% 80% at 50% 100%, var(--ink) 0%, transparent 70%),
        linear-gradient(180deg, #b3bac0 0%, #7d8a92 24%, #4a5d63 52%, #2c4a3d 80%, var(--ink) 100%);
}

.hero-bg--contact {
    background:
        radial-gradient(120% 80% at 50% 100%, var(--ink) 0%, transparent 70%),
        linear-gradient(180deg, #6e9a7a 0%, #4a7c5d 35%, #2d5a3d 70%, var(--ink) 100%);
}

/* === MARQUEE STRIP ====================================================== */
.marquee {
    background: var(--ink);
    color: var(--bone);
    padding: var(--s-3) 0;
    border-top: 1px solid rgba(244, 237, 224, 0.1);
    border-bottom: 1px solid rgba(244, 237, 224, 0.1);
    overflow: hidden;
    position: relative;
}

.marquee__track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: marqueeScroll 32s linear infinite;
    will-change: transform;
}

.marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 4rem;
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    letter-spacing: -0.02em;
    color: var(--bone);
    white-space: nowrap;
    line-height: 1;
}

.marquee__item em {
    color: var(--ember-glow);
    font-style: italic;
}

.marquee__sep {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: var(--ember);
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee:hover .marquee__track {
    animation-play-state: paused;
}

/* === ABOUT / INTRO ====================================================== */
.about {
    background: var(--paper);
    padding-top: var(--s-9);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-7);
    align-items: start;
}

.about-lead {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 60;
}

.about-lead em {
    font-style: italic;
    color: var(--ember);
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.about-body p {
    margin-bottom: var(--s-3);
    font-size: var(--t-md);
    color: var(--graphite);
    max-width: 52ch;
}

.about-body p:first-child::first-letter {
    font-family: var(--display);
    font-size: 4em;
    font-weight: 300;
    line-height: 0.85;
    float: left;
    margin: 0.05em 0.12em -0.1em 0;
    color: var(--ember);
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

/* === FEATURES ROW ======================================================= */
.features {
    background: var(--paper);
    padding-top: var(--s-7);
    padding-bottom: var(--s-9);
    border-bottom: var(--line);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: var(--line);
}

.feature {
    padding: var(--s-5) var(--s-4) 0;
    border-right: var(--line);
    position: relative;
}

.feature:last-child {
    border-right: none;
}

.feature__num {
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.2em;
    color: var(--ember);
    margin-bottom: var(--s-3);
}

.feature__icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--s-3);
    color: var(--ink);
    transition: transform 0.5s var(--ease-out), color 0.4s var(--ease);
}

.feature:hover .feature__icon {
    transform: translateY(-4px);
    color: var(--ember);
}

.feature__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature h3 {
    font-size: var(--t-xl);
    margin-bottom: var(--s-2);
    line-height: 1.1;
}

.feature p {
    color: var(--graphite);
    font-size: var(--t-sm);
    line-height: 1.6;
}

/* === PARKS SECTION ====================================================== */
.parks {
    background: var(--paper);
    padding: var(--s-9) 0;
}

.parks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-4);
}

.park-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    color: var(--bone);
    cursor: pointer;
    transition: transform 0.6s var(--ease-out);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--s-4);
    border: 1px solid rgba(15, 31, 26, 0.1);
}

.park-card:nth-child(2) {
    transform: translateY(var(--s-5));
}

.park-card:hover {
    transform: translateY(-4px);
}

.park-card:nth-child(2):hover {
    transform: translateY(calc(var(--s-5) - 4px));
}

.park-card__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform 1s var(--ease-out);
}

.park-card:hover .park-card__bg {
    transform: scale(1.05);
}

.park-card__bg--gorica {
    background:
        radial-gradient(120% 80% at 50% 100%, rgba(15, 31, 26, 0.85) 0%, transparent 65%),
        linear-gradient(165deg, #95b39c 0%, #6e9a7a 35%, #4a7c5d 65%, #1a3a2a 100%);
}

.park-card__bg--lovcen {
    background:
        radial-gradient(120% 80% at 50% 100%, rgba(15, 31, 26, 0.9) 0%, transparent 65%),
        linear-gradient(165deg, #97a3a8 0%, #7d8a92 30%, #4a5d63 60%, #1a2c2a 100%);
}

.park-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 31, 26, 0.75) 100%);
}

.park-card__top,
.park-card__bottom {
    position: relative;
    z-index: 2;
}

.park-card__num {
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(244, 237, 224, 0.65);
}

.park-card__title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 0.95;
    color: var(--bone);
    margin-bottom: var(--s-2);
    font-weight: 300;
    letter-spacing: -0.03em;
}

.park-card__title em {
    font-style: italic;
    color: var(--ember-glow);
}

.park-card__tagline {
    font-family: var(--display);
    font-style: italic;
    font-size: var(--t-md);
    color: rgba(244, 237, 224, 0.85);
    margin-bottom: var(--s-3);
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.park-card__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: var(--s-3);
}

.park-card__tag {
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border: 1px solid rgba(244, 237, 224, 0.4);
    color: rgba(244, 237, 224, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(244, 237, 224, 0.08);
}

.park-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bone);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(244, 237, 224, 0.4);
    transition: gap 0.4s var(--ease), border-color 0.3s var(--ease);
    align-self: flex-start;
}

.park-card:hover .park-card__cta {
    gap: 0.9rem;
    border-color: var(--ember-glow);
    color: var(--ember-glow);
}

.park-card__cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.4s var(--ease);
}

.park-card:hover .park-card__cta svg {
    transform: translate(3px, -3px);
}

/* === ACTIVITIES ========================================================= */
.activities {
    background: var(--paper-warm);
    padding: var(--s-9) 0;
    border-top: var(--line);
    border-bottom: var(--line);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: var(--line);
}

.activity {
    padding: var(--s-5) var(--s-4);
    border-right: var(--line);
    position: relative;
    background: transparent;
    transition: background 0.5s var(--ease);
    overflow: hidden;
}

.activity:last-child {
    border-right: none;
}

.activity:hover {
    background: var(--paper);
}

.activity__num {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: var(--s-4);
    display: block;
}

.activity__icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--s-4);
    color: var(--ink);
    transition: color 0.4s var(--ease), transform 0.5s var(--ease);
}

.activity:hover .activity__icon {
    color: var(--ember);
    transform: translateY(-4px);
}

.activity__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.activity h3 {
    font-size: var(--t-2xl);
    margin-bottom: var(--s-2);
    line-height: 1.05;
}

.activity p {
    color: var(--graphite);
    margin-bottom: var(--s-4);
    max-width: 38ch;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 0.7rem;
    border: 1px solid currentColor;
    line-height: 1;
}

.tag--easy {
    color: var(--moss);
}

.tag--medium {
    color: var(--bark);
}

.tag--hard {
    color: var(--ember-deep);
}

/* === STATS ============================================================== */
.stats {
    background: var(--ink);
    color: var(--bone);
    padding: var(--s-9) 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(217, 87, 44, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 88% 80%, rgba(74, 124, 93, 0.22) 0%, transparent 50%);
    pointer-events: none;
}

.stats__container {
    position: relative;
    z-index: 1;
}

.stats h2 {
    color: var(--bone);
}

.stats h2 em {
    color: var(--ember-glow);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(244, 237, 224, 0.15);
    margin-top: var(--s-7);
}

.stat {
    padding: var(--s-5) var(--s-3) 0;
    border-right: 1px solid rgba(244, 237, 224, 0.15);
}

.stat:last-child {
    border-right: none;
}

.stat__num {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    color: var(--bone);
    margin-bottom: var(--s-2);
    letter-spacing: -0.04em;
    font-variant-numeric: tabular-nums;
    font-variation-settings: "opsz" 144, "SOFT" 30;
}

.stat__suffix {
    color: var(--ember-glow);
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.stat__label {
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 237, 224, 0.7);
}

/* === PULL QUOTE / EDITORIAL BLOCK ====================================== */
.pull-quote {
    background: var(--paper);
    padding: var(--s-9) 0;
    border-bottom: var(--line);
}

.pull-quote__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    text-align: center;
}

.pull-quote__mark {
    font-family: var(--display);
    font-style: italic;
    font-size: 6rem;
    line-height: 0.5;
    color: var(--ember);
    margin-bottom: var(--s-3);
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.pull-quote__text {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    line-height: 1.25;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: var(--s-4);
    font-variation-settings: "opsz" 144, "SOFT" 50;
}

.pull-quote__text em {
    font-style: italic;
    color: var(--ember);
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.pull-quote__attr {
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--graphite);
}

/* === TESTIMONIALS ======================================================= */
.testimonials {
    background: var(--paper);
    padding: var(--s-9) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: var(--line);
}

.testimonial {
    padding: var(--s-5) var(--s-4) 0;
    border-right: var(--line);
}

.testimonial:last-child {
    border-right: none;
}

.testimonial__stars {
    display: flex;
    gap: 0.2rem;
    color: var(--ember);
    margin-bottom: var(--s-3);
}

.testimonial__stars svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.testimonial__text {
    font-family: var(--display);
    font-weight: 400;
    font-size: var(--t-lg);
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: var(--s-4);
    letter-spacing: -0.015em;
    font-variation-settings: "opsz" 144, "SOFT" 50;
}

.testimonial__text em {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.testimonial__author {
    font-family: var(--sans);
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.testimonial__role {
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--silver);
}

/* === CTA BAND =========================================================== */
.cta-band {
    background: var(--ink);
    color: var(--bone);
    padding: var(--s-9) 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 80% at 50% 50%, rgba(217, 87, 44, 0.22) 0%, transparent 60%);
    pointer-events: none;
}

.cta-band__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-band h2 {
    color: var(--bone);
    margin-bottom: var(--s-3);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
}

.cta-band h2 em {
    color: var(--ember-glow);
}

.cta-band p {
    color: rgba(244, 237, 224, 0.85);
    font-size: var(--t-md);
    margin-bottom: var(--s-5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === FOOTER ============================================================= */
.footer {
    background: var(--ink);
    color: var(--bone);
    padding: var(--s-7) 0 var(--s-3);
    border-top: 1px solid rgba(244, 237, 224, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-massive {
    font-family: var(--display);
    font-weight: 200;
    font-size: clamp(3.5rem, 14vw, 12rem);
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: rgba(244, 237, 224, 0.08);
    margin-bottom: var(--s-7);
    text-align: center;
    user-select: none;
    pointer-events: none;
}

.footer-massive em {
    font-style: italic;
    color: rgba(217, 87, 44, 0.25);
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--s-5);
    padding-bottom: var(--s-6);
    border-bottom: 1px solid rgba(244, 237, 224, 0.1);
}

.footer-brand h3 {
    color: var(--bone);
    font-size: var(--t-xl);
    margin-bottom: var(--s-2);
    font-weight: 400;
}

.footer-brand h3 em {
    color: var(--ember-glow);
}

.footer-brand p {
    color: rgba(244, 237, 224, 0.65);
    font-size: var(--t-sm);
    max-width: 320px;
}

.footer-col h4 {
    font-family: var(--mono);
    font-size: var(--t-xs);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ember-glow);
    margin-bottom: var(--s-3);
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: rgba(244, 237, 224, 0.75);
    font-size: var(--t-sm);
    transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
}

.footer-col a:hover {
    color: var(--bone);
    padding-left: 0.4rem;
}

.footer-col p {
    color: rgba(244, 237, 224, 0.75);
    font-size: var(--t-sm);
    margin-bottom: 0.6rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--s-3);
    color: rgba(244, 237, 224, 0.5);
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    flex-wrap: wrap;
    gap: var(--s-2);
}

/* === SUBPAGE — INFO CARDS ============================================== */
.info-bar {
    background: var(--paper);
    padding: var(--s-7) 0;
    border-bottom: var(--line);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: var(--line);
}

.info {
    padding: var(--s-4) var(--s-3);
    border-right: var(--line);
    display: flex;
    align-items: flex-start;
    gap: var(--s-3);
}

.info:last-child {
    border-right: none;
}

.info__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--ember);
    margin-top: 0.2rem;
}

.info__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info__label {
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 0.3rem;
}

.info__value {
    font-family: var(--display);
    font-size: var(--t-md);
    color: var(--ink);
    line-height: 1.3;
}

/* === TRACKS (subpage) =================================================== */
.tracks {
    background: var(--paper);
    padding: var(--s-9) 0;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-3);
}

.track {
    background: var(--bone);
    padding: var(--s-5) var(--s-4);
    border: var(--line);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease);
    display: flex;
    flex-direction: column;
}

.track:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -16px rgba(15, 31, 26, 0.18);
}

.track__num {
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.2em;
    color: var(--ember);
    margin-bottom: var(--s-3);
}

.track__icon {
    width: 56px;
    height: 56px;
    color: var(--ink);
    margin-bottom: var(--s-4);
}

.track__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.track__title {
    font-size: var(--t-xl);
    margin-bottom: var(--s-2);
}

.track__desc {
    color: var(--graphite);
    font-size: var(--t-sm);
    margin-bottom: var(--s-4);
    line-height: 1.6;
}

.track__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: var(--line);
    margin-bottom: var(--s-3);
}

.track__spec {
    padding: 0.85rem 0;
    border-bottom: var(--line);
    border-right: var(--line);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.track__spec:nth-child(2n) {
    border-right: none;
    padding-left: var(--s-2);
}

.track__spec:nth-child(2n+1) {
    padding-right: var(--s-2);
}

.track__spec-label {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver);
}

.track__spec-value {
    font-family: var(--display);
    font-size: var(--t-md);
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.track__price {
    margin-top: auto;
    padding-top: var(--s-3);
    border-top: var(--line);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.track__price-label {
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver);
}

.track__price-value {
    font-family: var(--display);
    font-size: var(--t-2xl);
    color: var(--ember);
    line-height: 1;
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

/* Premium accent line that draws across track on hover */
.track {
    position: relative;
    overflow: hidden;
}

.track::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--ember);
    transition: width 0.55s var(--ease-out);
}

.track:hover::after {
    width: 100%;
}

.track__icon svg {
    transition: transform 0.55s var(--ease-spring);
}

.track:hover .track__icon svg {
    transform: scale(1.12) rotate(-3deg);
}

/* === SISTEM STAZA (color-graded trails, dark) ========================== */
.trails {
    background: var(--ink);
    color: var(--paper);
    padding: var(--s-9) 0;
    position: relative;
    overflow: hidden;
}

.trails::before {
    content: "";
    position: absolute;
    top: -25%;
    left: 50%;
    width: 90%;
    height: 65%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(217, 87, 44, 0.13), transparent 70%);
    pointer-events: none;
}

.trails .container {
    position: relative;
    z-index: 1;
}

.trails .kicker {
    color: var(--paper);
}

.trails .section-head h2 {
    color: var(--paper);
}

.trails .section-head .lead {
    color: var(--silver-light);
}

/* Difficulty scale */
.trail-scale {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    max-width: 640px;
    margin: 0 0 var(--s-7);
}

.trail-scale__cap {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver-light);
    white-space: nowrap;
}

.trail-scale__bar {
    flex: 1;
    display: flex;
    height: 12px;
    border-radius: 7px;
    overflow: hidden;
    gap: 2px;
    background: rgba(244, 237, 224, 0.06);
    padding: 2px;
}

.trail-scale__bar span {
    flex: 1;
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
}

.trail-scale__bar span:nth-child(1) { background: #F6C026; }
.trail-scale__bar span:nth-child(2) { background: #EFEADC; }
.trail-scale__bar span:nth-child(3) { background: #E8842B; }
.trail-scale__bar span:nth-child(4) { background: #4CA05A; }
.trail-scale__bar span:nth-child(5) { background: #3B7DD8; }
.trail-scale__bar span:nth-child(6) { background: #9460B8; }
.trail-scale__bar span:nth-child(7) { background: #D63B3B; }
.trail-scale__bar span:nth-child(8) { background: #161616; }

/* Trail color tokens */
.trail--zuta { --trail: #F6C026; }
.trail--bijela { --trail: #EFEADC; }
.trail--narandzasta { --trail: #E8842B; }
.trail--zelena { --trail: #4CA05A; }
.trail--plava { --trail: #3B7DD8; }
.trail--ljubicasta { --trail: #9460B8; }
.trail--crvena { --trail: #D63B3B; }
.trail--crna { --trail: #161616; }

.trail-scale.visible .trail-scale__bar span {
    animation: trailScaleFill 0.55s var(--ease-out) forwards;
}

.trail-scale.visible .trail-scale__bar span:nth-child(1) { animation-delay: 0.08s; }
.trail-scale.visible .trail-scale__bar span:nth-child(2) { animation-delay: 0.16s; }
.trail-scale.visible .trail-scale__bar span:nth-child(3) { animation-delay: 0.24s; }
.trail-scale.visible .trail-scale__bar span:nth-child(4) { animation-delay: 0.32s; }
.trail-scale.visible .trail-scale__bar span:nth-child(5) { animation-delay: 0.40s; }
.trail-scale.visible .trail-scale__bar span:nth-child(6) { animation-delay: 0.48s; }
.trail-scale.visible .trail-scale__bar span:nth-child(7) { animation-delay: 0.56s; }
.trail-scale.visible .trail-scale__bar span:nth-child(8) { animation-delay: 0.64s; }

@keyframes trailScaleFill {
    to { transform: scaleX(1); }
}

/* Tiers */
.trail-tiers {
    display: grid;
    gap: 0;
}

.trail-tier {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: var(--s-5);
    padding: var(--s-5) 0;
    border-top: var(--line-dark);
    align-items: start;
}

.trail-tier:last-child {
    border-bottom: var(--line-dark);
}

.trail-tier__age {
    display: flex;
    flex-direction: column;
}

.trail-tier__age span {
    font-family: var(--display);
    font-size: var(--t-3xl);
    line-height: 0.85;
    font-style: italic;
    color: var(--ember-glow);
    font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1;
}

.trail-tier__age small {
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver);
    margin-top: 0.75rem;
}

.trail-tier__intro h3 {
    font-size: var(--t-lg);
    color: var(--paper);
    margin-bottom: 0.5rem;
}

.trail-tier__intro p {
    color: var(--silver-light);
    font-size: var(--t-sm);
    line-height: 1.65;
    max-width: 34ch;
}

.trail-list {
    display: grid;
    gap: 0.65rem;
}

.trail {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    padding: 0.9rem var(--s-3);
    background: rgba(244, 237, 224, 0.03);
    border: 1px solid rgba(244, 237, 224, 0.08);
    border-left: 3px solid var(--trail);
    border-radius: 5px;
    transition: transform 0.45s var(--ease-out),
        background 0.45s var(--ease),
        box-shadow 0.45s var(--ease),
        border-color 0.45s var(--ease);
}

.trail:hover {
    transform: translateX(10px);
    background: rgba(244, 237, 224, 0.06);
    box-shadow: -8px 0 30px -10px var(--trail);
}

.trail__swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--trail);
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
    transition: transform 0.45s var(--ease-spring);
}

.trail:hover .trail__swatch {
    transform: scale(1.15);
}

.trail__swatch--light {
    box-shadow: inset 0 0 0 1px rgba(15, 31, 26, 0.25),
        0 0 0 4px rgba(255, 255, 255, 0.04);
}

.trail__body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
    min-width: 0;
}

.trail__name {
    font-family: var(--display);
    font-size: var(--t-md);
    color: var(--paper);
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.trail__tag {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--silver);
}

.trail__meter {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}

.trail__meter i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(244, 237, 224, 0.15);
    transition: background 0.4s var(--ease);
}

/* Fill meter dots up to level via class */
.trail__meter.lvl-1 i:nth-child(-n+1),
.trail__meter.lvl-2 i:nth-child(-n+2),
.trail__meter.lvl-3 i:nth-child(-n+3),
.trail__meter.lvl-4 i:nth-child(-n+4),
.trail__meter.lvl-5 i:nth-child(-n+5) {
    background: var(--trail);
}

/* Crna staza — near-black is invisible on dark bg, give it a visible treatment */
.trail--crna .trail__meter.lvl-5 i:nth-child(-n+5) {
    background: rgba(244, 237, 224, 0.7);
}

.trail--crna .trail__swatch {
    background: #161616;
    box-shadow: inset 0 0 0 1px rgba(244, 237, 224, 0.35),
        0 0 0 4px rgba(255, 255, 255, 0.04);
}

/* Staggered reveal of trail rows when tier scrolls in */
.trail-tier .trail {
    opacity: 0;
    transform: translateX(-26px);
}

.trail-tier.visible .trail {
    animation: trailRowIn 0.7s var(--ease-out) forwards;
}

.trail-tier.visible .trail:nth-child(1) { animation-delay: 0.10s; }
.trail-tier.visible .trail:nth-child(2) { animation-delay: 0.22s; }
.trail-tier.visible .trail:nth-child(3) { animation-delay: 0.34s; }

@keyframes trailRowIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Meter dots pop in */
.trail-tier .trail__meter i {
    transform: scale(0);
}

.trail-tier.visible .trail__meter i {
    animation: trailDotPop 0.45s var(--ease-spring) forwards;
}

.trail-tier.visible .trail__meter i:nth-child(1) { animation-delay: 0.40s; }
.trail-tier.visible .trail__meter i:nth-child(2) { animation-delay: 0.47s; }
.trail-tier.visible .trail__meter i:nth-child(3) { animation-delay: 0.54s; }
.trail-tier.visible .trail__meter i:nth-child(4) { animation-delay: 0.61s; }
.trail-tier.visible .trail__meter i:nth-child(5) { animation-delay: 0.68s; }

@keyframes trailDotPop {
    to { transform: scale(1); }
}

/* === GORICA — DETALJNE STAZE (kartice) ================================= */
/* Skala za Goricu: 3 boje (žuta → zelena → plava) */
.trail-scale--gorica .trail-scale__bar span:nth-child(2) { background: #4CA05A; }
.trail-scale--gorica .trail-scale__bar span:nth-child(3) { background: #3B7DD8; }
.trail-scale--gorica .trail-scale__bar span:nth-child(4) { background: #D63B3B; }
.trail-scale--gorica .trail-scale__bar span:nth-child(5) { background: #1C1C1C; }

.trail--crna { --trail: #1C1C1C; }

.gtrails {
    display: grid;
    gap: var(--s-4);
    margin-top: var(--s-6);
    align-items: start;
}

.gtrail {
    display: flex;
    flex-direction: column;
    background: rgba(244, 237, 224, 0.03);
    border: 1px solid rgba(244, 237, 224, 0.08);
    border-top: 3px solid var(--trail);
    border-radius: 8px;
    padding: var(--s-4);
    transition: transform 0.5s var(--ease-out),
        background 0.5s var(--ease),
        box-shadow 0.5s var(--ease);
}

.gtrail:hover {
    transform: translateY(-6px);
    background: rgba(244, 237, 224, 0.06);
    box-shadow: 0 24px 55px -28px var(--trail);
}

.gtrail__head {
    display: flex;
    align-items: center;
    gap: var(--s-2);
    padding-bottom: var(--s-3);
    border-bottom: 1px solid rgba(244, 237, 224, 0.08);
}

.gtrail__title {
    flex: 1;
    min-width: 0;
}

.gtrail__title h3 {
    font-family: var(--display);
    font-size: var(--t-xl);
    color: var(--paper);
    line-height: 1;
    letter-spacing: -0.01em;
}

.gtrail__tag {
    display: block;
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--silver);
    margin-top: 0.45rem;
}

.gtrail__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(244, 237, 224, 0.08);
    border: 1px solid rgba(244, 237, 224, 0.08);
    border-radius: 6px;
    overflow: hidden;
    margin: var(--s-3) 0;
}

.gstat {
    background: var(--ink);
    padding: 0.85rem var(--s-2);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.gstat__val {
    font-family: var(--display);
    font-size: var(--t-md);
    color: var(--ember-glow);
    font-style: italic;
    line-height: 1;
}

.gstat__lab {
    font-family: var(--mono);
    font-size: 0.55rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--silver);
}

.gtrail__ob-label {
    display: block;
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 0.7rem;
}

.gobstacles {
    list-style: none;
    counter-reset: ob;
    display: grid;
    gap: 0.4rem;
}

.gobstacles li {
    counter-increment: ob;
    position: relative;
    padding-left: 2.2rem;
    font-size: var(--t-sm);
    color: var(--silver-light);
    line-height: 1.45;
}

.gobstacles li::before {
    content: counter(ob, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0.15em;
    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--trail);
}

/* Plava — meter lvl-3 na tamnoj podlozi vidljiva, sve ok jer boje su svijetle */

@media (min-width: 880px) {
    .gtrails {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* === PRICING ============================================================ */
.pricing {
    background: var(--paper-warm);
    padding: var(--s-9) 0;
    border-top: var(--line);
    border-bottom: var(--line);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-3);
    align-items: stretch;
}

.price {
    background: var(--bone);
    padding: var(--s-5) var(--s-4);
    border: var(--line);
    display: flex;
    flex-direction: column;
    transition: transform 0.5s var(--ease-out);
    position: relative;
}

.price:hover {
    transform: translateY(-6px);
}

.price--featured {
    background: var(--ink);
    color: var(--bone);
    border-color: var(--ink);
}

.price--featured h3,
.price--featured .price__amount {
    color: var(--bone);
}

.price--featured .price__period,
.price--featured .price__list li {
    color: rgba(244, 237, 224, 0.8);
}

.price--featured .price__num {
    color: var(--silver);
}

.price__badge {
    position: absolute;
    top: -1px;
    right: var(--s-3);
    background: var(--ember);
    color: var(--bone);
    padding: 0.4rem 0.9rem;
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.price__num {
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.2em;
    color: var(--ember);
    margin-bottom: var(--s-3);
}

.price h3 {
    font-size: var(--t-xl);
    margin-bottom: var(--s-3);
}

.price__amount {
    font-family: var(--display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.04em;
    margin-bottom: 0.3rem;
    font-variation-settings: "opsz" 144, "SOFT" 30;
}

.price__amount em {
    font-style: italic;
    color: var(--ember);
    font-size: 0.5em;
    vertical-align: super;
    line-height: 1;
    letter-spacing: 0;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.price__period {
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: var(--s-4);
}

.price__list {
    flex: 1;
    margin-bottom: var(--s-4);
    border-top: 1px solid rgba(15, 31, 26, 0.1);
}

.price--featured .price__list {
    border-top-color: rgba(244, 237, 224, 0.15);
}

.price__list li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(15, 31, 26, 0.08);
    color: var(--graphite);
    font-size: var(--t-sm);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.price--featured .price__list li {
    border-bottom-color: rgba(244, 237, 224, 0.1);
}

.price__list li::before {
    content: "→";
    color: var(--ember);
    flex-shrink: 0;
    font-weight: 500;
}

.price--featured .price__list li::before {
    color: var(--ember-glow);
}

/* === PRICE TABLES (uzrasne cijene — Gorica) ============================= */
.price-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--s-4);
    margin-top: var(--s-5);
}

.price-table {
    border: var(--line);
    border-radius: 10px;
    overflow: hidden;
}

.price-table__head {
    padding: var(--s-4);
    border-bottom: var(--line);
    background: var(--paper-warm);
}

.price-table__kicker {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: var(--s-2);
}

.price-table__head h3 {
    font-family: var(--display);
    font-size: var(--t-2xl);
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}

.price-table__head p {
    font-size: var(--t-sm);
    color: var(--muted);
    line-height: 1.55;
    max-width: 32ch;
}

.price-rows {
    padding: var(--s-2) 0;
}

.price-row {
    display: flex;
    align-items: center;
    padding: var(--s-3) var(--s-4);
    gap: var(--s-2);
    border-bottom: var(--line);
    transition: background 0.25s var(--ease);
}

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

.price-row:hover {
    background: var(--paper-warm);
}

.price-row__age {
    font-family: var(--sans);
    font-size: var(--t-sm);
    font-weight: 500;
    color: var(--ink);
    flex: 1;
}

.price-row__sep {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(
        90deg, var(--silver) 0, var(--silver) 4px, transparent 4px, transparent 8px
    );
    opacity: 0.4;
}

.price-row__price {
    font-family: var(--display);
    font-size: var(--t-2xl);
    font-style: italic;
    color: var(--ember);
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
}

.price-row__sub {
    font-family: var(--mono);
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-top: 0.15rem;
}

.price-table__note {
    padding: var(--s-2) var(--s-4) var(--s-3);
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    border-top: var(--line);
}

.pricing-cta {
    margin-top: var(--s-5);
    text-align: center;
}

.pricing-cta__note {
    color: var(--muted);
    font-size: var(--t-sm);
    margin-bottom: var(--s-3);
}

/* === ACTIVITY CHECKBOXES ================================================ */
.activity-checks {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 0.5rem;
    margin-top: var(--s-2);
}

.activity-checks[hidden] { display: none !important; }

.activity-checks-header {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 0.4rem;
}

.btn-select-all {
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ember);
    background: none;
    border: 1px solid var(--ember);
    border-radius: 4px;
    padding: 0.3rem 0.65rem;
    cursor: pointer;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
    line-height: 1;
}

.btn-select-all:hover {
    background: var(--ember);
    color: var(--bone);
}

/* Label reset inside activity checks */
.check-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.55rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid rgba(15, 31, 26, 0.12);
    border-radius: 6px;
    cursor: pointer;
    font-size: var(--t-sm);
    font-family: var(--sans);
    color: var(--graphite);
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
    user-select: none;
    line-height: 1.2;
    margin: 0 !important;
}

.check-item:hover {
    border-color: var(--ember);
    background: rgba(217, 87, 44, 0.04);
}

.check-item input[type="checkbox"] {
    width: 15px !important;
    height: 15px !important;
    min-width: 15px;
    accent-color: var(--ember);
    cursor: pointer;
    flex-shrink: 0;
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.check-item:has(input:checked) {
    border-color: var(--ember);
    background: rgba(217, 87, 44, 0.07);
    color: var(--ink);
}

.check-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
    display: block;
}

/* Trail colour dots */
.check-dot--zuta        { background: #F6C026; }
.check-dot--bijela      { background: #EFEADC; border: 1px solid #bbb; }
.check-dot--narandzasta { background: #E8842B; }
.check-dot--zelena      { background: #4CA05A; }
.check-dot--plava       { background: #3B7DD8; }
.check-dot--ljubicasta  { background: #9460B8; }
.check-dot--crvena      { background: #D63B3B; }
.check-dot--crna        { background: #1C1C1C; border: 1px solid #888; }

.activity-hint {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: var(--s-2);
}

.activity-hint[hidden] { display: none; }

/* === PRACTICAL ========================================================== */
.practical {
    background: var(--paper);
    padding: var(--s-9) 0;
}

.practical-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: var(--line);
}

.practical-item {
    padding: var(--s-5) var(--s-4) 0;
    border-right: var(--line);
}

.practical-item:last-child {
    border-right: none;
}

.practical-item__num {
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.2em;
    color: var(--ember);
    margin-bottom: var(--s-3);
}

.practical-item h4 {
    font-family: var(--display);
    font-size: var(--t-xl);
    font-weight: 400;
    margin-bottom: var(--s-3);
    line-height: 1.1;
}

.practical-item ul {
    border-top: var(--line);
}

.practical-item ul li {
    padding: 0.7rem 0;
    border-bottom: var(--line);
    color: var(--graphite);
    font-size: var(--t-sm);
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    line-height: 1.5;
}

.practical-item ul li::before {
    content: counter(list-item, decimal-leading-zero);
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.1em;
    color: var(--ember);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.practical-item ul {
    counter-reset: list-item;
    list-style: none;
}

.practical-item ul li {
    counter-increment: list-item;
}

/* === RESERVATION BOX (subpage) ========================================= */
.reservation {
    background: var(--ink);
    color: var(--bone);
    padding: var(--s-9) 0;
}

.reservation-box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.reservation-box h3 {
    color: var(--bone);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: var(--s-3);
}

.reservation-box h3 em {
    color: var(--ember-glow);
}

.reservation-box p {
    color: rgba(244, 237, 224, 0.8);
    font-size: var(--t-md);
    margin-bottom: var(--s-5);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.reservation-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--s-3);
    color: var(--ember-glow);
}

.reservation-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* === CONTACT — info cards =============================================== */
.contact-info {
    background: var(--paper);
    padding: var(--s-9) 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: var(--line);
}

.contact-card {
    padding: var(--s-5) var(--s-4);
    border-right: var(--line);
    transition: background 0.4s var(--ease);
}

.contact-card:last-child {
    border-right: none;
}

.contact-card:hover {
    background: var(--paper-warm);
}

.contact-card__num {
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.2em;
    color: var(--ember);
    margin-bottom: var(--s-3);
}

.contact-card__icon {
    width: 32px;
    height: 32px;
    color: var(--ink);
    margin-bottom: var(--s-3);
}

.contact-card__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-card__label {
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 0.5rem;
}

.contact-card__value {
    font-family: var(--display);
    font-size: var(--t-lg);
    color: var(--ink);
    line-height: 1.2;
    word-break: break-word;
    transition: color 0.3s var(--ease);
}

.contact-card a.contact-card__value:hover {
    color: var(--ember);
}

/* === FORM =============================================================== */
.form-section {
    background: var(--paper-warm);
    padding: var(--s-9) 0;
    border-top: var(--line);
}

.form-wrap {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.form {
    background: var(--bone);
    padding: clamp(2rem, 5vw, 3.5rem);
    border: var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-3) var(--s-4);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: var(--mono);
    font-size: var(--t-xs);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--graphite);
    margin-bottom: 0.5rem;
}

.form-group label .req {
    color: var(--ember);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 0;
    border: none;
    border-bottom: 1.5px solid rgba(15, 31, 26, 0.18);
    font-family: var(--sans);
    font-size: var(--t-md);
    color: var(--ink);
    background: transparent;
    transition: border-color 0.3s var(--ease);
    width: 100%;
    border-radius: 0;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%230F1F1A' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 18px;
    padding-right: 2rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--ember);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-bottom-color: var(--ember-deep);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 0.85rem;
}

.form-error {
    color: var(--ember-deep);
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.05em;
    margin-top: 0.3rem;
    min-height: 1.2em;
}

.form-submit {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--s-3);
    border-top: var(--line);
    margin-top: var(--s-2);
    flex-wrap: wrap;
    gap: var(--s-2);
}

.form-disclaimer {
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: 0.05em;
    color: var(--silver);
    max-width: 320px;
}

.form-success {
    grid-column: 1 / -1;
    background: var(--ink);
    color: var(--bone);
    padding: var(--s-4);
    margin-top: var(--s-3);
    display: none;
    animation: fadeUp 0.5s var(--ease-out);
    border-left: 4px solid var(--ember);
}

.form-success.visible {
    display: block;
}

.form-success h4 {
    color: var(--bone);
    font-family: var(--display);
    font-size: var(--t-xl);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: rgba(244, 237, 224, 0.85);
    font-size: var(--t-sm);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

/* === SCROLL-IN ANIMATIONS ============================================== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

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

.fade-in-scale {
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

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

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Text reveal — line-by-line */
.reveal {
    overflow: hidden;
    display: inline-block;
}

.reveal__inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1s var(--ease-out);
}

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

/* === RESPONSIVE ========================================================= */
@media (max-width: 1024px) {

    .features-grid,
    .activities-grid,
    .testimonials-grid,
    .stats-grid,
    .info-grid,
    .practical-grid,
    .contact-info-grid,
    .tracks-grid,
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature,
    .activity,
    .testimonial,
    .practical-item,
    .contact-card {
        border-bottom: var(--line);
    }

    .feature:nth-child(2n),
    .activity:nth-child(2n),
    .testimonial:nth-child(2n),
    .practical-item:nth-child(2n),
    .contact-card:nth-child(2n) {
        border-right: none;
    }

    .stats-grid {
        border-top: 1px solid rgba(244, 237, 224, 0.15);
    }

    .stat:nth-child(2n) {
        border-right: none;
    }

    .stat:nth-child(1),
    .stat:nth-child(2) {
        border-bottom: 1px solid rgba(244, 237, 224, 0.15);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--s-4);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--s-5);
    }

    .form {
        grid-template-columns: 1fr;
    }

    .trail-tier {
        grid-template-columns: 1fr;
        gap: var(--s-3);
    }

    .trail-tier__age {
        flex-direction: row;
        align-items: baseline;
        gap: var(--s-2);
    }

    .trail-tier__age small {
        margin-top: 0;
    }

    .trail-tier__intro p {
        max-width: none;
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--s-6) 0;
    }

    /* --- NAV / HEADER --- */
    .nav-toggle {
        display: flex;
    }

    /* Logo — manji na mobilnom */
    .nav-logo {
        padding-top: 4px;
    }

    .nav-logo-img {
        height: 72px;
    }

    .navbar.scrolled .nav-logo-img {
        height: 44px;
    }

    /* Duo label — sakrij na malom ekranu */
    .nav-duo-label {
        display: none;
    }

    /* Duo gap — manji */
    .nav-logo--duo {
        gap: 0.4rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 88%;
        max-width: 380px;
        height: 100vh;
        background: var(--ink);
        flex-direction: column;
        align-items: flex-start;
        align-self: unset;
        padding: var(--s-6) var(--s-4);
        padding-bottom: 0;
        justify-content: center;
        gap: var(--s-3);
        transition: right 0.5s var(--ease);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link,
    .navbar.scrolled .nav-menu .nav-link,
    .navbar.scrolled .nav-menu .nav-link:hover {
        font-family: var(--display);
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        font-weight: 300;
        color: var(--bone);
        letter-spacing: -0.02em;
    }

    .nav-menu .nav-link.active,
    .navbar.scrolled .nav-menu .nav-link.active {
        color: var(--ember-glow);
        font-style: italic;
    }

    .navbar.scrolled .nav-toggle.active span {
        background: var(--bone);
    }

    .nav-menu .nav-cta {
        margin-top: var(--s-3);
        font-family: var(--mono);
        font-size: var(--t-sm);
    }

    /* --- LOADER --- */
    .loader__duo {
        gap: 0.75rem;
        flex-wrap: nowrap;
    }

    .loader__duo-img {
        height: 72px;
    }

    .loader__duo-main {
        font-size: 1.05rem;
    }

    .loader__duo-sub {
        font-size: 0.7rem;
    }

    .loader__logo-img img {
        width: min(160px, 50vw);
    }

    /* --- HERO --- */
    .hero--sub {
        min-height: 60vh;
        min-height: 60svh;
        padding: calc(var(--nav-h) + var(--s-4)) 0 var(--s-3);
    }

    .hero-meta {
        font-size: 0.6rem;
        flex-wrap: wrap;
        gap: var(--s-3);
    }

    .hero-meta__group {
        min-width: 80px;
    }

    /* --- TRAIL SCALE --- */
    .trail-scale {
        gap: var(--s-2);
    }

    .trail {
        gap: var(--s-2);
        padding: 0.8rem var(--s-2);
    }

    .trail__tag {
        font-size: 0.58rem;
    }

    /* --- TRAIL TIERS --- */
    .trail-tier {
        grid-template-columns: 1fr;
        gap: var(--s-3);
    }

    .trail-tier__age {
        flex-direction: row;
        align-items: baseline;
        gap: var(--s-2);
    }

    .trail-tier__age small {
        margin-top: 0;
    }

    /* --- PRICE TABLES --- */
    .price-tables {
        grid-template-columns: 1fr;
    }

    .price-row {
        padding: var(--s-2) var(--s-3);
    }

    .price-row__price {
        font-size: var(--t-xl);
    }

    /* --- GRIDS --- */
    .features-grid,
    .activities-grid,
    .testimonials-grid,
    .info-grid,
    .practical-grid,
    .contact-info-grid,
    .tracks-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .feature,
    .activity,
    .testimonial,
    .practical-item,
    .contact-card,
    .info {
        border-right: none;
        border-bottom: var(--line);
    }

    .feature:last-child,
    .activity:last-child,
    .testimonial:last-child,
    .practical-item:last-child,
    .contact-card:last-child,
    .info:last-child {
        border-bottom: none;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .parks-grid {
        grid-template-columns: 1fr;
    }

    .park-card:nth-child(2) {
        transform: translateY(0);
    }

    .park-card:nth-child(2):hover {
        transform: translateY(-4px);
    }

    /* --- ACTIVITY CHECKBOXES --- */
    .activity-checks {
        grid-template-columns: 1fr 1fr !important;
    }

    /* --- FOOTER --- */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-massive {
        font-size: clamp(2.5rem, 12vw, 6rem);
    }

    /* --- HERO ACTIONS --- */
    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

    /* --- FORMS --- */
    .form-submit {
        flex-direction: column;
        align-items: stretch;
    }

    .form-disclaimer {
        order: 2;
        max-width: none;
    }

    /* --- ABOUT / SECTIONS --- */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--s-4);
    }

    .section-head {
        margin-bottom: var(--s-5);
    }

    .kicker {
        margin-bottom: var(--s-2);
    }

    /* --- GTRAILS (Gorica stari layout - fallback) --- */
    .gtrails {
        grid-template-columns: 1fr !important;
    }

    /* --- CTA BAND --- */
    .cta-band__inner {
        padding: var(--s-6) var(--s-4);
    }
}

@media (max-width: 480px) {

    /* --- STATS --- */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: none !important;
        border-bottom: 1px solid rgba(244, 237, 224, 0.15);
    }

    .stat:last-child {
        border-bottom: none;
    }

    /* --- LOGO još manji --- */
    .nav-logo-img {
        height: 56px;
    }

    .navbar.scrolled .nav-logo-img {
        height: 38px;
    }

    /* --- LOADER duo na uskim ekranima --- */
    .loader__duo {
        gap: 0.5rem;
    }

    .loader__duo-img {
        height: 56px;
    }

    .loader__duo-main {
        font-size: 0.85rem;
    }

    .loader__duo-sub {
        font-size: 0.6rem;
        letter-spacing: 0.14em;
    }

    /* --- CHECKBOXES 1 kolona --- */
    .activity-checks {
        grid-template-columns: 1fr !important;
    }

    /* --- HERO title --- */
    .hero-title {
        letter-spacing: -0.035em;
    }

    /* --- HERO meta 2 kolone --- */
    .hero-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--s-2);
        font-size: 0.58rem;
    }

    /* --- PRICE tables --- */
    .price-row__sep {
        display: none;
    }

    .price-row {
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    /* --- FOOTER minimal --- */
    .footer-massive {
        font-size: clamp(2rem, 15vw, 4rem);
    }

    /* --- TRAIL scale labels --- */
    .trail-scale__cap {
        font-size: 0.55rem;
    }

    /* --- BTN full width --- */
    .pricing-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* === A11Y =============================================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .marquee__track {
        animation: none !important;
    }

    .fade-in,
    .fade-in-left,
    .fade-in-right,
    .fade-in-scale {
        opacity: 1 !important;
        transform: none !important;
    }

    .reveal__inner {
        transform: none !important;
    }

    .trail,
    .trail-tier .trail,
    .trail__meter i,
    .trail-tier .trail__meter i,
    .trail-scale__bar span {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

:focus-visible {
    outline: 2px solid var(--ember);
    outline-offset: 3px;
}

/* === UTIL =============================================================== */
.no-scroll {
    overflow: hidden;
}

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

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--ember);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9995;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease),
        background 0.3s var(--ease);
    opacity: 0;
}

.cursor-dot.visible {
    opacity: 1;
}

.cursor-dot.hover {
    width: 36px;
    height: 36px;
    background: var(--ember-glow);
}
