/* ============================================
   MOJ KRAGUJEVAC — Editorial design system
   ============================================ */

:root {
    /* Boje — topla, zemljana, otmena paleta */
    --cream: #F4ECDC;
    --cream-soft: #FAF4E6;
    --cream-deep: #EADFC4;
    --paper: #F8F2E4;
    --ink: #1A1410;
    --ink-soft: #3D2D24;
    --ink-mute: #6B5A4D;

    --oxblood: #6B1E1E;
    --oxblood-deep: #4A1313;
    --burgundy: #8C2828;

    --orange: #E8642A;
    --orange-deep: #C44E18;
    --amber: #D89034;

    --gold: #C9A55C;
    --gold-deep: #A7853D;

    --park: #4A6B2D;

    /* Tipografija */
    --font-display: 'Fraunces', 'Times New Roman', serif;
    --font-body: 'Lora', Georgia, serif;
    --font-sans: 'Archivo', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Razmaci */
    --container: 1340px;
    --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* ============================================
   RESET / BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    /* Suptilna noisy tekstura tipa papir */
    background-image:
        radial-gradient(circle at 20% 30%, rgba(107, 30, 30, 0.025) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 100, 42, 0.02) 0%, transparent 50%);
}

/* Paper grain — fine SVG noise overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    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.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.1, 0 0 0 0 0.08, 0 0 0 0 0.07, 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

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

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

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

::selection {
    background: var(--oxblood);
    color: var(--cream);
}

/* ============================================
   SECTION ARCHITECTURE
   ============================================ */
.section__chapter {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--oxblood);
    padding: 0.35rem 0;
    border-top: 1px solid var(--oxblood);
    border-bottom: 1px solid var(--oxblood);
    margin-bottom: 1.5rem;
}

.section__chapter--light {
    color: var(--cream);
    border-color: var(--cream);
}

.section__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    font-variation-settings: "opsz" 100;
}

.section__title em {
    font-style: italic;
    font-weight: 300;
    color: var(--oxblood);
    font-variation-settings: "opsz" 144;
}

.section__deck {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: var(--ink-soft);
    max-width: 38rem;
    line-height: 1.6;
    font-style: italic;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem var(--gutter);
    transition: all 0.4s ease;
    background: rgba(244, 236, 220, 0);
}

.nav.scrolled {
    background: rgba(244, 236, 220, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(26, 20, 16, 0.08);
    padding: 0.7rem var(--gutter);
}

.nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    z-index: 102;
}

.nav__logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.nav.scrolled .nav__logo {
    width: 36px;
    height: 36px;
}

.nav__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 0.95;
}

.nav__brand-line {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--cream);
    letter-spacing: 0.02em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: color 0.3s;
}

.nav.scrolled .nav__brand-line {
    color: var(--ink);
    text-shadow: none;
}

.nav__brand-line--accent {
    color: var(--orange);
    font-style: italic;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav.scrolled .nav__brand-line--accent {
    color: var(--orange-deep);
    text-shadow: none;
}

.nav__menu {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.nav__menu a {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 0.3rem 0;
    transition: color 0.3s;
}

.nav.scrolled .nav__menu a {
    color: var(--ink-soft);
    text-shadow: none;
}

.nav__menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav__menu a:hover {
    color: var(--orange);
}

.nav.scrolled .nav__menu a:hover {
    color: var(--oxblood);
}

.nav__menu a:hover::after {
    transform: scaleX(1);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border: 1px solid var(--cream);
    color: var(--cream);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav.scrolled .nav__cta {
    border-color: var(--ink);
    color: var(--ink);
    background: transparent;
    text-shadow: none;
}

.nav__cta:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--cream);
    text-shadow: none;
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 102;
}

.nav__burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s ease;
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--cream);
}

.hero__bg {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center 60%;
    z-index: 1;
    animation: heroZoom 24s ease-out forwards;
    transform-origin: center;
}

@keyframes heroZoom {
    from { transform: scale(1.18); }
    to { transform: scale(1.0); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg,
            rgba(26, 20, 16, 0.72) 0%,
            rgba(26, 20, 16, 0.35) 35%,
            rgba(26, 20, 16, 0.45) 70%,
            rgba(26, 20, 16, 0.85) 100%),
        linear-gradient(135deg, rgba(107, 30, 30, 0.25), transparent 60%);
}

.hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 8rem var(--gutter) 5rem;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s 0.3s forwards;
}

.hero__eyebrow-line {
    width: 60px;
    height: 1px;
    background: var(--orange);
}

.hero__eyebrow-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream-soft);
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(4rem, 14vw, 11.5rem);
    line-height: 0.85;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    font-variation-settings: "opsz" 144;
    color: var(--cream);
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.hero__title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    animation: titleReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__title-word:nth-child(1) { animation-delay: 0.4s; }
.hero__title-word:nth-child(2) { animation-delay: 0.55s; }
.hero__title-word:nth-child(3) { animation-delay: 0.7s; }
.hero__title-word:nth-child(4) {
    animation-delay: 0.85s;
    color: var(--orange);
    font-style: italic;
    font-weight: 400;
}

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

.hero__subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-weight: 300;
    color: var(--cream-soft);
    margin-bottom: 4rem;
    max-width: 40rem;
    opacity: 0;
    animation: fadeUp 1s 1.1s forwards;
}

.hero__subtitle em {
    color: var(--orange);
    font-style: italic;
    font-weight: 400;
}

.hero__meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(244, 236, 220, 0.25);
    border-bottom: 1px solid rgba(244, 236, 220, 0.25);
    padding: 1.5rem 0;
    max-width: 720px;
    opacity: 0;
    animation: fadeUp 1s 1.4s forwards;
}

.hero__meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(244, 236, 220, 0.15);
}

.hero__meta-item:first-child { padding-left: 0; }
.hero__meta-item:last-child { border-right: none; }

.hero__meta-num {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    font-weight: 500;
    color: var(--cream);
    line-height: 1;
}

.hero__meta-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream-soft);
    opacity: 0.7;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: var(--cream);
    opacity: 0;
    animation: fadeUp 1s 1.7s forwards;
}

.hero__scroll span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero__scroll-dot {
    animation: scrollPulse 2s ease-in-out infinite;
    stroke-linecap: round;
}

@keyframes scrollPulse {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

.hero__corner {
    position: absolute;
    z-index: 4;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--cream-soft);
    opacity: 0.65;
    padding: 1.5rem var(--gutter);
}

.hero__corner--tl { top: 80px; left: 0; }
.hero__corner--tr { top: 80px; right: 0; }
.hero__corner--bl { bottom: 0; left: 0; }
.hero__corner--br { bottom: 0; right: 0; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   INTRO / O GRADU
   ============================================ */
.intro {
    position: relative;
    padding: 8rem var(--gutter) 6rem;
    background: var(--paper);
    z-index: 2;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ink-mute), transparent);
    opacity: 0.4;
}

.intro__container {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 4rem;
    align-items: start;
}

.intro__header {
    position: sticky;
    top: 110px;
}

.intro__body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--ink-soft);
}

.intro__body p {
    margin-bottom: 1.5rem;
}

.intro__lead {
    font-size: 1.25rem !important;
    line-height: 1.6 !important;
    color: var(--ink) !important;
}

.dropcap {
    float: left;
    font-family: var(--font-display);
    font-size: 5.5rem;
    line-height: 0.85;
    font-weight: 600;
    color: var(--oxblood);
    margin: 0.45rem 0.6rem -0.2rem 0;
    font-variation-settings: "opsz" 144;
}

.intro__pullquote {
    position: relative;
    margin: 3rem 0 1rem;
    padding: 2rem 0 2rem 3rem;
    border-left: 2px solid var(--oxblood);
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.4;
    font-style: italic;
    font-weight: 300;
    color: var(--ink);
    font-variation-settings: "opsz" 144;
}

.quote-mark {
    position: absolute;
    top: -1.5rem;
    left: 1.5rem;
    font-size: 5rem;
    line-height: 1;
    color: var(--oxblood);
    opacity: 0.4;
    font-family: var(--font-display);
    font-style: normal;
}

.intro__pullquote-attr {
    display: block;
    margin-top: 1rem;
    font-size: 0.8rem;
    font-family: var(--font-sans);
    font-style: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 500;
}

.intro__stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0 2rem 2rem;
    border-left: 1px solid var(--cream-deep);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat__num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--oxblood);
    line-height: 1;
    font-variation-settings: "opsz" 144;
    letter-spacing: -0.02em;
}

.stat__label {
    font-size: 0.85rem;
    color: var(--ink-mute);
    line-height: 1.5;
    font-style: italic;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
    position: relative;
    padding: 7rem var(--gutter);
    background: var(--cream);
}

.timeline__container {
    max-width: var(--container);
    margin: 0 auto;
}

.timeline__header {
    margin-bottom: 5rem;
    max-width: 50rem;
}

.timeline__track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 3rem;
}

.timeline__line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--oxblood), var(--orange), var(--oxblood));
}

.t-item {
    position: relative;
    padding: 2rem 1rem 0 0;
    border-top: 0;
    transition: transform 0.4s ease;
}

.t-item::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--oxblood);
    border: 2px solid var(--cream);
    box-shadow: 0 0 0 1px var(--oxblood);
}

.t-item--highlight::before {
    background: var(--orange);
    box-shadow: 0 0 0 1px var(--orange), 0 0 16px rgba(232, 100, 42, 0.5);
}

.t-item--dark::before {
    background: var(--ink);
    box-shadow: 0 0 0 1px var(--ink);
}

.t-item__year {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--oxblood);
    line-height: 1;
    margin-bottom: 0.8rem;
    font-variation-settings: "opsz" 144;
    letter-spacing: -0.02em;
}

.t-item--highlight .t-item__year { color: var(--orange-deep); }
.t-item--dark .t-item__year { color: var(--ink); }

.t-item__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.t-item p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.t-item:hover {
    transform: translateY(-4px);
}

/* ============================================
   LANDMARKS
   ============================================ */
.landmarks {
    padding: 7rem var(--gutter);
    background: var(--paper);
    position: relative;
}

.landmarks__container {
    max-width: var(--container);
    margin: 0 auto;
}

.landmarks__header {
    margin-bottom: 4rem;
    max-width: 50rem;
}

.landmarks__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.landmark {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease;
}

.landmark--lg {
    grid-column: span 3;
}

.landmark__img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 24px rgba(26, 20, 16, 0.12);
    transition: transform 0.6s ease;
}

.landmark--lg .landmark__img {
    aspect-ratio: 16/10;
}

.landmark:hover .landmark__img {
    transform: scale(1.015);
    box-shadow: 0 12px 40px rgba(26, 20, 16, 0.2);
}

.landmark__num {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    font-style: italic;
    font-variation-settings: "opsz" 144;
}

.landmark__cat {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange-deep);
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.landmark__title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 1.8vw, 1.7rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 0.8rem;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.landmark__body p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--ink-soft);
}

/* ============================================
   ŠUMARICE — memorial section, dark
   ============================================ */
.sumarice {
    position: relative;
    padding: 8rem var(--gutter);
    color: var(--cream);
    overflow: hidden;
    z-index: 2;
}

.sumarice__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
    filter: brightness(0.55) contrast(1.05) saturate(0.9);
}

.sumarice__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(26, 20, 16, 0.7), rgba(74, 19, 19, 0.85)),
        radial-gradient(circle at 30% 20%, transparent 0%, rgba(26, 20, 16, 0.4) 70%);
}

.sumarice__container {
    position: relative;
    z-index: 3;
    max-width: var(--container);
    margin: 0 auto;
}

.sumarice__title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    color: var(--cream);
    font-variation-settings: "opsz" 144;
}

.sumarice__title em {
    color: var(--orange);
    font-style: italic;
    font-weight: 300;
}

.sumarice__quote {
    max-width: 580px;
    margin-bottom: 3rem;
    padding: 2rem 0 2rem 2rem;
    border-left: 2px solid var(--orange);
}

.sumarice__quote p {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.5;
    font-style: italic;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 1.2rem;
    font-variation-settings: "opsz" 144;
}

.sumarice__quote cite {
    font-family: var(--font-mono);
    font-style: normal;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: var(--cream-soft);
    opacity: 0.85;
}

.sumarice__quote cite em {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0;
}

.sumarice__text {
    max-width: 720px;
    margin-bottom: 4rem;
}

.sumarice__text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--cream-soft);
    margin-bottom: 1.4rem;
}

.sumarice__text strong {
    color: var(--cream);
    font-weight: 600;
}

.sumarice__numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(244, 236, 220, 0.2);
    border-bottom: 1px solid rgba(244, 236, 220, 0.2);
    padding: 2rem 0;
}

.sumarice__num {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(244, 236, 220, 0.12);
}

.sumarice__num:first-child { padding-left: 0; }
.sumarice__num:last-child { border-right: none; }

.sumarice__num-big {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--orange);
    line-height: 1;
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 144;
}

.sumarice__num-lbl {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream-soft);
    opacity: 0.75;
}

/* ============================================
   NUMBERS / U BROJKAMA
   ============================================ */
.numbers {
    padding: 7rem var(--gutter);
    background: var(--cream);
}

.numbers__container {
    max-width: var(--container);
    margin: 0 auto;
}

.numbers__container .section__title {
    margin-bottom: 4rem;
}

.numbers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink);
    border-left: 1px solid var(--ink);
}

.numb {
    padding: 2.5rem 1.8rem;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    background: var(--cream);
    transition: background 0.4s ease;
    position: relative;
    overflow: hidden;
}

.numb:hover {
    background: var(--cream-deep);
}

.numb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--oxblood);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.numb:hover::before {
    transform: scaleX(1);
}

.numb__big {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--oxblood);
    line-height: 1;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 144;
}

.numb__lbl {
    font-size: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.5;
    font-style: italic;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: 7rem var(--gutter);
    background: var(--paper);
}

.gallery__container {
    max-width: var(--container);
    margin: 0 auto;
}

.gallery__header {
    margin-bottom: 4rem;
    max-width: 50rem;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1.5rem;
}

.g-item {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: 0 2px 16px rgba(26, 20, 16, 0.12);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.g-item--tall { grid-row: span 2; }
.g-item--wide { grid-column: span 2; }

.g-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 20, 16, 0.25);
}

.g-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 20, 16, 0.85), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.g-item:hover::after { opacity: 1; }

.g-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-style: italic;
    z-index: 2;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease 0.05s;
}

.g-item:hover figcaption {
    transform: translateY(0);
    opacity: 1;
}

/* ============================================
   CTA / INSTAGRAM
   ============================================ */
.cta {
    position: relative;
    padding: 7rem var(--gutter);
    background: var(--ink);
    color: var(--cream);
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange), transparent 70%);
    opacity: 0.15;
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--oxblood), transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.cta__container {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    z-index: 2;
}

.cta__content {
    max-width: 720px;
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 1.5rem 0 2rem;
    font-variation-settings: "opsz" 144;
}

.cta__title strong {
    color: var(--orange);
    font-weight: 600;
    font-style: italic;
}

.cta__title em {
    color: var(--orange);
    font-style: italic;
    font-weight: 300;
}

.cta__text {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--cream-soft);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.8rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn--primary {
    background: var(--orange);
    color: var(--ink);
    border-color: var(--orange);
}

.btn--primary:hover {
    background: transparent;
    color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(232, 100, 42, 0.3);
}

.btn--ghost {
    border-color: var(--cream-soft);
    color: var(--cream);
}

.btn--ghost:hover {
    background: var(--cream);
    color: var(--ink);
    transform: translateY(-2px);
}

.cta__handle {
    display: inline-flex;
    align-items: baseline;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1;
    color: var(--cream);
    opacity: 0.85;
    font-variation-settings: "opsz" 144;
}

.cta__handle-at {
    color: var(--orange);
    margin-right: 0.1em;
    font-size: 1.2em;
    font-weight: 400;
}

.cta__handle-text {
    font-style: italic;
    border-bottom: 1px solid rgba(244, 236, 220, 0.2);
    padding-bottom: 0.2em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--ink);
    color: var(--cream-soft);
    padding: 5rem var(--gutter) 2rem;
    border-top: 1px solid rgba(244, 236, 220, 0.1);
}

.footer__container {
    max-width: var(--container);
    margin: 0 auto;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(244, 236, 220, 0.1);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer__tagline {
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 360px;
    color: var(--cream-soft);
    opacity: 0.7;
    font-style: italic;
}

.footer__head {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.2rem;
}

.footer__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer__col a {
    font-size: 0.9rem;
    transition: color 0.3s;
    color: var(--cream-soft);
    opacity: 0.8;
}

.footer__col a:hover {
    color: var(--orange);
    opacity: 1;
}

.footer__col li {
    font-size: 0.9rem;
    color: var(--cream-soft);
    opacity: 0.8;
}

.footer__social {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.2rem 1.4rem;
    border: 1px solid rgba(244, 236, 220, 0.15);
    border-radius: 8px;
    transition: all 0.3s;
}

.footer__social:hover {
    border-color: var(--orange);
    background: rgba(232, 100, 42, 0.05);
}

.footer__social-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--orange);
    font-weight: 500;
    line-height: 1;
}

.footer__social-lbl {
    font-size: 0.78rem;
    color: var(--cream-soft);
    opacity: 0.7;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--cream-soft);
    opacity: 0.6;
}

.footer__motto {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0;
    color: var(--cream);
    opacity: 0.85;
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 1024px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--ink);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 2rem 3rem;
        gap: 1.8rem;
        transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 101;
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__menu a {
        font-size: 1.2rem !important;
        color: var(--cream) !important;
        text-shadow: none !important;
        font-family: var(--font-display) !important;
        font-weight: 300 !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
    }

    .nav__cta { display: none; }

    .nav__burger {
        display: flex;
    }

    .nav__burger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background: var(--cream);
    }

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

    .nav__burger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background: var(--cream);
    }

    .intro__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro__header { position: static; }

    .intro__stats {
        flex-direction: row;
        flex-wrap: wrap;
        border-left: none;
        border-top: 1px solid var(--cream-deep);
        padding: 2rem 0 0 0;
    }

    .intro__stats .stat {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .landmark,
    .landmark--lg {
        grid-column: span 1;
    }

    .landmarks__grid .landmark--lg .landmark__img {
        aspect-ratio: 4/3;
    }

    .gallery__grid {
        grid-auto-rows: 240px;
    }

    .g-item--wide {
        grid-column: span 2;
    }

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

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

    .footer__brand {
        grid-column: 1 / -1;
    }
}

/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media (max-width: 640px) {
    .hero__content {
        padding: 7rem 1.5rem 5rem;
    }

    .hero__meta {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 0;
    }

    .hero__meta-item:nth-child(2) { border-right: none; }
    .hero__meta-item:nth-child(3) { padding-left: 0; }

    .hero__corner { font-size: 0.55rem; padding: 1rem; }
    .hero__corner--tl, .hero__corner--tr { display: none; }

    .timeline__track {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .timeline__line {
        left: 8px;
        right: auto;
        top: 0;
        bottom: 0;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg, var(--oxblood), var(--orange), var(--oxblood));
    }

    .t-item {
        padding-left: 2rem;
        padding-top: 0;
    }

    .t-item::before {
        top: 12px;
        left: 3px;
    }

    .landmarks__grid,
    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-auto-rows: auto;
    }

    .g-item, .g-item--tall, .g-item--wide {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 4/3;
    }

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

    .sumarice__num {
        padding: 1rem;
        border-right: 1px solid rgba(244, 236, 220, 0.12) !important;
        border-bottom: 1px solid rgba(244, 236, 220, 0.12);
    }

    .sumarice__num:nth-child(2) { border-right: none !important; }
    .sumarice__num:nth-child(3),
    .sumarice__num:nth-child(4) { border-bottom: none; }

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

    .intro__stats .stat {
        flex: 1 1 100%;
    }

    .intro__pullquote {
        padding-left: 1.5rem;
        font-size: 1.15rem;
    }

    .quote-mark {
        left: 0.5rem;
    }

    .dropcap {
        font-size: 4rem;
    }
}

/* ============================================
   AD BANNER — Horizontalni reklamni prostor
   ============================================ */
.ad-banner {
    position: relative;
    z-index: 2;
    background: var(--cream-deep);
    border-top: 1px dashed rgba(107, 30, 30, 0.25);
    border-bottom: 1px dashed rgba(107, 30, 30, 0.25);
    padding: 1.5rem var(--gutter);
}

.ad-banner__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.ad-banner__label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    border: 1px dashed var(--ink-mute);
    padding: 0.25rem 0.55rem;
    border-radius: 3px;
    flex-shrink: 0;
    opacity: 0.7;
}

.ad-banner__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
    text-align: center;
}

.ad-banner__headline {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.01em;
    font-variation-settings: "opsz" 100;
    font-style: italic;
}

.ad-banner__sub {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
}

.ad-banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--oxblood);
    border: 1px solid var(--oxblood);
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ad-banner__cta:hover {
    background: var(--oxblood);
    color: var(--cream);
}

/* ============================================
   AD MARQUEE — Scrolling reklamna traka
   ============================================ */
.ad-marquee {
    background: var(--ink);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    cursor: default;
    user-select: none;
}

.ad-marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

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

.ad-marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0 2.5rem;
    font-family: var(--font-display);
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    font-style: italic;
    font-weight: 300;
    white-space: nowrap;
    color: rgba(244, 236, 220, 0.7);
    font-variation-settings: "opsz" 100;
}

.ad-marquee__item strong {
    font-weight: 700;
    font-style: normal;
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.ad-marquee__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--oxblood);
    display: inline-block;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
    background: var(--cream);
    padding: 5.5rem var(--gutter);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--cream-deep);
}

.newsletter::after {
    content: 'NEWSLETTER';
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: var(--font-display);
    font-size: 7rem;
    font-weight: 700;
    color: var(--cream-deep);
    pointer-events: none;
    letter-spacing: -0.04em;
    white-space: nowrap;
    line-height: 1;
    font-variation-settings: "opsz" 144;
}

.newsletter__container {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.newsletter__left {
    max-width: 540px;
}

.newsletter__tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--oxblood);
    padding: 0.35rem 0;
    border-top: 1px solid var(--oxblood);
    border-bottom: 1px solid var(--oxblood);
    margin-bottom: 1.5rem;
}

.newsletter__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1.2rem;
    font-variation-settings: "opsz" 100;
}

.newsletter__title em {
    color: var(--oxblood);
    font-style: italic;
    font-weight: 300;
    font-variation-settings: "opsz" 144;
}

.newsletter__desc {
    font-size: 1rem;
    color: var(--ink-mute);
    line-height: 1.7;
    font-style: italic;
}

.newsletter__right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.newsletter__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 2.2rem;
    background: var(--oxblood);
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid var(--oxblood);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter__btn:hover {
    background: transparent;
    color: var(--oxblood);
}

.newsletter__btn svg:last-child {
    transition: transform 0.3s ease;
}

.newsletter__btn:hover svg:last-child {
    transform: translateX(4px);
}

.newsletter__hint {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--ink-mute);
    opacity: 0.7;
    text-align: center;
}

@media (max-width: 768px) {
    .newsletter__container {
        flex-direction: column;
        text-align: center;
    }
    .newsletter__left { max-width: 100%; }
    .newsletter__tag { margin-left: auto; margin-right: auto; }
    .newsletter::after { display: none; }
}

/* ============================================
   NEWSLETTER MODAL
   ============================================ */
.nl-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.nl-modal.open {
    opacity: 1;
    pointer-events: all;
}

.nl-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 16, 0.78);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.nl-modal__box {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--cream-deep);
    padding: 3.5rem 3rem 2.5rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 40px 100px rgba(26, 20, 16, 0.3);
    transform: translateY(40px) scale(0.97);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.nl-modal.open .nl-modal__box {
    transform: translateY(0) scale(1);
}

.nl-modal__deco {
    position: absolute;
    top: -1rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 7rem;
    color: var(--oxblood);
    opacity: 0.08;
    line-height: 1;
    font-style: italic;
    pointer-events: none;
    font-variation-settings: "opsz" 144;
}

.nl-modal__close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cream-deep);
    cursor: pointer;
    border: none;
    color: var(--ink-mute);
    transition: all 0.25s ease;
}

.nl-modal__close:hover {
    background: var(--oxblood);
    color: var(--cream);
}

.nl-modal__label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.67rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--oxblood);
    margin-bottom: 1rem;
}

.nl-modal__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 0.8rem;
    font-variation-settings: "opsz" 100;
}

.nl-modal__title em {
    color: var(--oxblood);
    font-style: italic;
    font-variation-settings: "opsz" 144;
}

.nl-modal__sub {
    font-size: 0.95rem;
    color: var(--ink-mute);
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.nl-modal__form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nl-modal__input {
    width: 100%;
    padding: 0.95rem 1.3rem;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--cream);
    border: 1.5px solid var(--cream-deep);
    color: var(--ink);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.nl-modal__input:focus {
    border-color: var(--oxblood);
}

.nl-modal__input::placeholder {
    color: var(--ink-mute);
    opacity: 0.55;
}

.nl-modal__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 1rem 1.8rem;
    background: var(--oxblood);
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 2px solid var(--oxblood);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nl-modal__submit:hover {
    background: transparent;
    color: var(--oxblood);
}

.nl-modal__msg {
    min-height: 1.4rem;
    margin-top: 0.9rem;
    font-size: 0.88rem;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nl-modal__msg--success { color: var(--park); }
.nl-modal__msg--error   { color: var(--oxblood); }

@media (max-width: 480px) {
    .nl-modal__box { padding: 2.5rem 1.5rem 2rem; }
    .ad-banner__inner { flex-direction: column; gap: 0.8rem; }
    .ad-banner__text { text-align: center; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ============================================
   TIMELINE — collapsible dropdown
   ============================================ */
.timeline__collapsible {
    position: relative;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline__collapsible.is-collapsed {
    max-height: 22rem;
}

.timeline__collapsible.is-collapsed::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 10rem;
    background: linear-gradient(to bottom, rgba(244, 236, 220, 0) 0%, var(--cream) 85%);
    pointer-events: none;
}

.timeline__toggle-wrap {
    margin-top: 2rem;
    text-align: center;
}

.timeline__collapsible.is-collapsed + .timeline__toggle-wrap {
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.timeline__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--oxblood);
    border: 1px solid var(--oxblood);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline__toggle:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 100, 42, 0.3);
}

.timeline__toggle-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline__toggle[aria-expanded="true"] .timeline__toggle-icon {
    transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
    .timeline__collapsible,
    .timeline__toggle-icon {
        transition: none;
    }
}

/* ============================================
   TIMELINE & SUMARICE — "saznajte više" link (homepage)
   ============================================ */
.timeline__more {
    margin-top: 4rem;
    text-align: center;
}

.timeline__more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--oxblood);
    border: 1px solid var(--oxblood);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.timeline__more-link:hover {
    background: var(--oxblood);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 30, 30, 0.25);
}

.timeline__more-link svg {
    transition: transform 0.3s ease;
}

.timeline__more-link:hover svg {
    transform: translateX(4px);
}

.sumarice__more {
    margin-top: 3rem;
}

.sumarice__more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
    border: 1px solid var(--orange);
    background: transparent;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.sumarice__more-link:hover {
    background: var(--orange);
    color: var(--ink);
    transform: translateY(-2px);
}

.sumarice__more-link svg {
    transition: transform 0.3s ease;
}

.sumarice__more-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   ACTIVE NAV LINK (sub-pages)
   ============================================ */
.nav__menu a.active {
    color: var(--orange);
}
.nav.scrolled .nav__menu a.active {
    color: var(--oxblood);
}
.nav__menu a.active::after {
    transform: scaleX(1);
}

/* ============================================
   PAGE HERO — sub-page header banner
   ============================================ */
.page-hero {
    position: relative;
    min-height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: var(--cream);
    padding-top: 6rem;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
    animation: heroZoom 24s ease-out forwards;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg,
            rgba(26, 20, 16, 0.65) 0%,
            rgba(26, 20, 16, 0.35) 40%,
            rgba(26, 20, 16, 0.85) 100%),
        linear-gradient(135deg, rgba(107, 30, 30, 0.25), transparent 60%);
}

.page-hero--dark .page-hero__overlay {
    background:
        linear-gradient(180deg,
            rgba(26, 20, 16, 0.85) 0%,
            rgba(26, 20, 16, 0.6) 35%,
            rgba(74, 19, 19, 0.92) 100%),
        radial-gradient(circle at 30% 30%, transparent 0%, rgba(0,0,0,0.4) 70%);
}

.page-hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 4rem var(--gutter) 5rem;
}

.page-hero__title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(3rem, 9vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin: 1.2rem 0 1.5rem;
    font-variation-settings: "opsz" 144;
    color: var(--cream);
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.page-hero__title em {
    color: var(--orange);
    font-style: italic;
    font-weight: 300;
}

.page-hero__deck {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    font-weight: 300;
    color: var(--cream-soft);
    max-width: 42rem;
    line-height: 1.55;
    font-style: italic;
}

.page-hero__date {
    position: absolute;
    bottom: 1.5rem;
    right: var(--gutter);
    z-index: 4;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--cream-soft);
    opacity: 0.7;
}

/* ============================================
   POEM — Krvava bajka (sumarice)
   ============================================ */
.poem {
    padding: 7rem var(--gutter);
    background: var(--paper);
    position: relative;
    z-index: 2;
}

.poem__container {
    max-width: var(--container);
    margin: 0 auto;
}

.poem__header {
    margin-bottom: 4rem;
    max-width: 50rem;
}

.poem__body {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 4rem;
    align-items: start;
}

.poem__verses {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.65;
    color: var(--ink);
    font-style: italic;
    font-weight: 300;
    font-variation-settings: "opsz" 144;
    column-count: 1;
}

.poem__verses p {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--cream-deep);
    transition: border-color 0.4s ease;
}

.poem__verses p:hover {
    border-left-color: var(--oxblood);
}

.poem__aside {
    position: sticky;
    top: 100px;
    padding: 2rem;
    background: var(--cream);
    border: 1px solid var(--cream-deep);
    border-left: 3px solid var(--oxblood);
}

.poem__aside-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--oxblood);
    margin-bottom: 1rem;
}

.poem__aside p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 1rem;
}

.poem__aside-cite {
    display: block;
    margin-top: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--ink-mute);
    border-top: 1px solid var(--cream-deep);
    padding-top: 1rem;
}

/* ============================================
   STORY — what happened (sumarice)
   ============================================ */
.story {
    padding: 7rem var(--gutter);
    background: var(--cream);
}

.story__container {
    max-width: var(--container);
    margin: 0 auto;
}

.story__header {
    margin-bottom: 4rem;
    max-width: 50rem;
}

.story__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--ink-soft);
}

.story__text p {
    margin-bottom: 1.4rem;
}

.story__lead {
    font-size: 1.2rem !important;
    line-height: 1.7 !important;
    color: var(--ink) !important;
}

.story__sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background: var(--paper);
    border: 1px solid var(--cream-deep);
    position: sticky;
    top: 100px;
}

.story__fact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    border-bottom: 1px solid var(--cream-deep);
    padding-bottom: 1.5rem;
}

.story__fact:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.story__fact-num {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--oxblood);
    line-height: 1;
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 144;
}

.story__fact-lbl {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

/* ============================================
   KAMENI CVET — sumarice
   ============================================ */
.cvet {
    padding: 7rem var(--gutter);
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.cvet::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange), transparent 70%);
    opacity: 0.12;
    pointer-events: none;
}

.cvet__container {
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cvet__header {
    margin-bottom: 4rem;
    max-width: 50rem;
}

.cvet__title {
    color: var(--cream);
}

.cvet__title em {
    color: var(--orange);
}

.cvet__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cvet__img {
    width: 100%;
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    filter: brightness(0.9) contrast(1.05);
}

.cvet__body p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--cream-soft);
    margin-bottom: 1.4rem;
}

.cvet__body strong {
    color: var(--cream);
    font-weight: 600;
}

.cvet__list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.cvet__list li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(244, 236, 220, 0.12);
    font-size: 0.98rem;
    color: var(--cream-soft);
}

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

.cvet__list strong {
    color: var(--orange);
}

/* ============================================
   MUSEUM — 21. oktobar
   ============================================ */
.museum {
    padding: 7rem var(--gutter);
    background: var(--paper);
}

.museum__container {
    max-width: var(--container);
    margin: 0 auto;
}

.museum__header {
    margin-bottom: 4rem;
    max-width: 50rem;
}

.museum__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.museum__text {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--ink-soft);
}

.museum__text p {
    margin-bottom: 1.4rem;
}

.museum__text strong {
    color: var(--oxblood);
    font-weight: 600;
}

.museum__list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.museum__list li {
    position: relative;
    padding: 0.8rem 0 0.8rem 1.8rem;
    border-bottom: 1px solid var(--cream-deep);
    font-size: 0.98rem;
}

.museum__list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 0.85rem;
    color: var(--orange);
    font-size: 0.8rem;
}

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

.museum__cta-text {
    margin-top: 1.5rem !important;
    padding: 1.5rem;
    background: var(--cream);
    border-left: 3px solid var(--oxblood);
    font-size: 0.98rem !important;
    font-style: italic;
}

.museum__img {
    width: 100%;
    aspect-ratio: 3/4;
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 40px rgba(26, 20, 16, 0.25);
    position: sticky;
    top: 100px;
}

/* ============================================
   BIG CLASS — Veliki školski čas
   ============================================ */
.big-class {
    padding: 8rem var(--gutter);
    background: var(--oxblood-deep);
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.big-class::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(232, 100, 42, 0.1), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(107, 30, 30, 0.4), transparent 60%);
    pointer-events: none;
}

.big-class__container {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.big-class__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 1.2rem 0 2.5rem;
    font-variation-settings: "opsz" 144;
    color: var(--cream);
}

.big-class__title em {
    color: var(--orange);
    font-style: italic;
}

.big-class__text {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--cream-soft);
    margin-bottom: 3rem;
}

.big-class__text strong {
    color: var(--cream);
}

.big-class__quote {
    padding: 2rem;
    border-top: 1px solid rgba(244, 236, 220, 0.25);
    border-bottom: 1px solid rgba(244, 236, 220, 0.25);
}

.big-class__quote p {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-style: italic;
    line-height: 1.5;
    color: var(--cream);
    margin-bottom: 1rem;
    font-variation-settings: "opsz" 144;
}

.big-class__quote cite {
    font-family: var(--font-mono);
    font-style: normal;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--cream-soft);
    opacity: 0.7;
}

/* ============================================
   ORIGIN — istorija page
   ============================================ */
.origin {
    padding: 7rem var(--gutter) 5rem;
    background: var(--paper);
}

.origin__container {
    max-width: 1100px;
    margin: 0 auto;
}

.origin__header {
    margin-bottom: 3rem;
    max-width: 50rem;
}

.origin__body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--ink-soft);
    max-width: 760px;
}

.origin__body p {
    margin-bottom: 1.5rem;
}

.origin__quote {
    position: relative;
    margin: 3rem 0 1rem;
    padding: 2rem 0 2rem 3rem;
    border-left: 2px solid var(--oxblood);
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.4;
    font-style: italic;
    font-weight: 300;
    color: var(--ink);
    font-variation-settings: "opsz" 144;
}

.origin__quote-attr {
    display: block;
    margin-top: 1rem;
    font-size: 0.8rem;
    font-family: var(--font-sans);
    font-style: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 500;
}

/* ============================================
   BIG TIMELINE — istorija
   ============================================ */
.big-timeline {
    padding: 6rem var(--gutter);
    background: var(--cream);
}

.big-timeline__container {
    max-width: 1100px;
    margin: 0 auto;
}

.big-timeline__header {
    margin-bottom: 4rem;
    max-width: 50rem;
}

.big-timeline__list {
    position: relative;
    padding-left: 3rem;
}

.big-timeline__collapsible {
    position: relative;
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.big-timeline__collapsible.is-collapsed {
    max-height: 32rem;
}

.big-timeline__collapsible.is-collapsed::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 12rem;
    background: linear-gradient(to bottom, rgba(244, 236, 220, 0) 0%, var(--cream) 90%);
    pointer-events: none;
}

.big-timeline__toggle-wrap {
    margin-top: 3rem;
    text-align: center;
}

.big-timeline__collapsible.is-collapsed + .big-timeline__toggle-wrap {
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

.big-timeline__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--oxblood);
    border: 1px solid var(--oxblood);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.big-timeline__toggle:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 100, 42, 0.3);
}

.big-timeline__toggle-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.big-timeline__toggle[aria-expanded="true"] .big-timeline__toggle-icon {
    transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
    .big-timeline__collapsible,
    .big-timeline__toggle-icon {
        transition: none;
    }
}

.big-timeline__list::before {
    content: '';
    position: absolute;
    left: calc(0.45rem + 8px);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--oxblood), var(--orange) 50%, var(--oxblood));
}

.bt-item {
    position: relative;
    padding-bottom: 3rem;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 2rem;
    align-items: start;
}

.bt-item::before {
    content: '';
    position: absolute;
    top: 8px;
    left: -2.55rem;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--oxblood);
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 1px var(--oxblood);
}

.bt-item--milestone::before {
    background: var(--orange);
    box-shadow: 0 0 0 1px var(--orange), 0 0 18px rgba(232, 100, 42, 0.5);
}

.bt-item--dark::before {
    background: var(--ink);
    box-shadow: 0 0 0 1px var(--ink);
}

.bt-item__year {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 500;
    color: var(--oxblood);
    line-height: 1;
    letter-spacing: -0.01em;
    font-variation-settings: "opsz" 144;
    padding-top: 0.1rem;
}

.bt-item--milestone .bt-item__year { color: var(--orange-deep); }
.bt-item--dark .bt-item__year { color: var(--ink); }

.bt-item__body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.7rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.bt-item__body p {
    font-size: 0.98rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.bt-item__body p:last-child {
    margin-bottom: 0;
}

.bt-item__body strong {
    color: var(--oxblood);
    font-weight: 600;
}

.bt-item__quote {
    font-style: italic;
    color: var(--ink-mute) !important;
    padding-left: 1rem;
    border-left: 2px solid var(--cream-deep);
    font-size: 0.92rem !important;
}

.bt-item__link {
    color: var(--oxblood);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.bt-item__link:hover {
    color: var(--orange);
}

/* ============================================
   ZASTAVA — industrijska sekcija
   ============================================ */
.zastava {
    position: relative;
    padding: 8rem var(--gutter);
    color: var(--cream);
    overflow: hidden;
}

.zastava__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
    filter: brightness(0.45) saturate(1.1);
}

.zastava__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(26, 20, 16, 0.7), rgba(74, 19, 19, 0.85)),
        radial-gradient(circle at 70% 30%, rgba(232, 100, 42, 0.15), transparent 60%);
}

.zastava__container {
    position: relative;
    z-index: 3;
    max-width: var(--container);
    margin: 0 auto;
}

.zastava__title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    color: var(--cream);
    font-variation-settings: "opsz" 144;
}

.zastava__title em {
    color: var(--orange);
    font-style: italic;
}

.zastava__lead {
    max-width: 760px;
    margin-bottom: 4rem;
}

.zastava__lead p {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--cream-soft);
}

.zastava__lead strong {
    color: var(--orange);
    font-weight: 700;
}

.zastava__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(244, 236, 220, 0.2);
    border-bottom: 1px solid rgba(244, 236, 220, 0.2);
    padding: 2.5rem 0;
    margin-bottom: 4rem;
}

.zs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(244, 236, 220, 0.12);
}

.zs:first-child { padding-left: 0; }
.zs:last-child { border-right: none; }

.zs__num {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--orange);
    line-height: 1;
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 144;
}

.zs__lbl {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream-soft);
    opacity: 0.75;
}

.zastava__models {
    max-width: 760px;
}

.zastava__models-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.zastava__models-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(244, 236, 220, 0.12);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--cream-soft);
}

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

.zastava__models-list strong {
    color: var(--orange);
    font-weight: 600;
}

/* ============================================
   FACTS — zanimljivosti
   ============================================ */
.facts {
    padding: 7rem var(--gutter);
    background: var(--cream);
}

.facts__container {
    max-width: var(--container);
    margin: 0 auto;
}

.facts__header {
    margin-bottom: 4rem;
    max-width: 50rem;
}

.facts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink);
    border-left: 1px solid var(--ink);
}

.facts__collapsible {
    position: relative;
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.facts__collapsible.is-collapsed {
    max-height: 26rem;
}

.facts__collapsible.is-collapsed::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 11rem;
    background: linear-gradient(to bottom, rgba(244, 236, 220, 0) 0%, var(--cream) 90%);
    pointer-events: none;
}

.facts__toggle-wrap {
    margin-top: 2.5rem;
    text-align: center;
}

.facts__collapsible.is-collapsed + .facts__toggle-wrap {
    margin-top: -2.5rem;
    position: relative;
    z-index: 2;
}

.facts__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--oxblood);
    border: 1px solid var(--oxblood);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.facts__toggle:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 100, 42, 0.3);
}

.facts__toggle-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.facts__toggle[aria-expanded="true"] .facts__toggle-icon {
    transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
    .facts__collapsible,
    .facts__toggle-icon {
        transition: none;
    }
}

.fact {
    padding: 2.2rem 1.8rem;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    background: var(--cream);
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}

.fact:hover {
    background: var(--cream-deep);
}

.fact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--oxblood);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.fact:hover::before {
    transform: scaleX(1);
}

.fact__num {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--orange-deep);
    margin-bottom: 0.8rem;
}

.fact__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.fact p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--ink-soft);
}

.fact strong {
    color: var(--oxblood);
    font-weight: 600;
}

/* ============================================
   NEWS — vesti page
   ============================================ */
.news-headline {
    padding: 5rem var(--gutter) 4rem;
    background: var(--paper);
}

.news-headline__container {
    max-width: var(--container);
    margin: 0 auto;
}

.news-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    background: var(--cream);
    border: 1px solid var(--cream-deep);
    overflow: hidden;
}

.news-feature__img {
    background-size: cover;
    background-position: center;
    min-height: 380px;
}

.news-feature__body {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-feature__cat {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--oxblood);
    border-top: 1px solid var(--oxblood);
    border-bottom: 1px solid var(--oxblood);
    padding: 0.35rem 0;
    margin-bottom: 1.2rem;
    width: fit-content;
}

.news-feature__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 100;
}

.news-feature__title em {
    color: var(--oxblood);
    font-style: italic;
    font-weight: 300;
    font-variation-settings: "opsz" 144;
}

.news-feature__lead {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 1rem;
}

.news-feature__lead strong {
    color: var(--ink);
    font-weight: 600;
}

.news-feature__source {
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--ink-mute);
    opacity: 0.75;
}

/* ── Grid of news cards ── */
.news-grid-section {
    padding: 5rem var(--gutter) 7rem;
    background: var(--cream);
}

.news-grid-section__container {
    max-width: var(--container);
    margin: 0 auto;
}

.news-grid-section__header {
    margin-bottom: 4rem;
    max-width: 50rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.news-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1.5rem;
    background: var(--paper);
    border: 1px solid var(--cream-deep);
    padding: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
}

.news-card:hover {
    background: var(--cream);
    border-color: var(--oxblood);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 20, 16, 0.1);
}

.news-card__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    background: var(--ink);
    color: var(--cream);
    border-radius: 4px;
    text-align: center;
}

.news-card__day {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    color: var(--cream);
    letter-spacing: -0.02em;
}

.news-card__month {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-top: 0.4rem;
}

.news-card__body {
    display: flex;
    flex-direction: column;
}

.news-card__tag {
    display: inline-block;
    width: fit-content;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.7rem;
}

.news-card__tag--event       { background: rgba(232, 100, 42, 0.15); color: var(--orange-deep); }
.news-card__tag--sport       { background: rgba(74, 107, 45, 0.15); color: var(--park); }
.news-card__tag--info        { background: rgba(107, 30, 30, 0.1); color: var(--oxblood); }
.news-card__tag--infra       { background: rgba(168, 137, 67, 0.18); color: var(--gold-deep); }
.news-card__tag--culture     { background: rgba(140, 40, 40, 0.13); color: var(--burgundy); }
.news-card__tag--health      { background: rgba(74, 107, 45, 0.14); color: var(--park); }
.news-card__tag--in-memoriam { background: rgba(26, 20, 16, 0.85); color: var(--cream); }

.news-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 0.7rem;
    letter-spacing: -0.01em;
}

.news-card__body p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 0.6rem;
}

.news-card__body p:last-child {
    margin-bottom: 0;
}

.news-card__body strong {
    color: var(--oxblood);
    font-weight: 600;
}

/* ── Sources ── */
.news-sources {
    padding: 4rem var(--gutter);
    background: var(--paper);
    border-top: 1px solid var(--cream-deep);
}

.news-sources__container {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.news-sources__text {
    font-size: 1rem;
    color: var(--ink-soft);
    margin: 1.5rem 0 1.5rem;
    line-height: 1.65;
}

.news-sources__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 1rem;
    margin-bottom: 2rem;
}

.news-sources__list a {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--oxblood);
    padding: 0.5rem 1rem;
    border: 1px solid var(--cream-deep);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.news-sources__list a:hover {
    background: var(--oxblood);
    color: var(--cream);
    border-color: var(--oxblood);
}

.news-sources__note {
    font-family: var(--font-display);
    font-size: 0.92rem;
    color: var(--ink-mute);
    line-height: 1.6;
}

/* ============================================
   BACK CTA — sub-page footer block
   ============================================ */
.back-cta {
    padding: 7rem var(--gutter);
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.back-cta::before {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--oxblood), transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.back-cta__container {
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.back-cta__container .section__chapter {
    color: var(--orange);
    border-color: var(--orange);
}

.back-cta__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    color: var(--cream);
    font-variation-settings: "opsz" 144;
}

.back-cta__title em {
    color: var(--orange);
    font-style: italic;
}

.back-cta__links {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(244, 236, 220, 0.15);
}

.back-cta__link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.6rem 0;
    border-bottom: 1px solid rgba(244, 236, 220, 0.15);
    color: var(--cream);
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 400;
    transition: all 0.3s ease;
    font-style: italic;
    letter-spacing: -0.01em;
}

.back-cta__link:hover {
    color: var(--orange);
    padding-left: 1rem;
}

.back-cta__num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--orange);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    font-style: normal;
    font-weight: 300;
}

.back-cta__link:hover .back-cta__num {
    transform: translateX(6px);
}

/* ============================================
   RESPONSIVE — sub-pages
   ============================================ */
@media (max-width: 1024px) {
    .poem__body,
    .story__grid,
    .cvet__grid,
    .museum__grid,
    .news-feature {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .poem__aside,
    .story__sidebar,
    .museum__img {
        position: static;
    }

    .museum__img,
    .cvet__img {
        aspect-ratio: 16/10;
        max-height: 480px;
    }

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

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

    .zastava__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 0;
    }

    .zs:nth-child(2) { border-right: none; }
    .zs:nth-child(3) { padding-left: 0; }

    .bt-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .news-feature__img { min-height: 280px; }
}

@media (max-width: 640px) {
    .page-hero {
        min-height: 50vh;
    }

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

    .news-card {
        grid-template-columns: 70px 1fr;
        padding: 1.3rem;
        gap: 1rem;
    }

    .news-card__day { font-size: 1.3rem; }

    .news-feature__body { padding: 2rem 1.5rem; }

    .big-timeline__list {
        padding-left: 1.8rem;
    }

    .big-timeline__list::before {
        left: calc(0.1rem + 5.5px);
    }

    .bt-item::before {
        left: -1.7rem;
    }

    .zastava__stats {
        padding: 1.5rem 0;
    }

    .zs {
        padding: 0 1rem;
    }
}

/* ============================================
   PHOTO GALLERY — sekcija galerije na podstranicama
   ============================================ */
.photo-gallery {
    padding: 6rem var(--gutter);
    background: var(--cream-soft);
}

.photo-gallery--dark {
    background: var(--ink);
    color: var(--cream);
}

.photo-gallery__container {
    max-width: var(--container);
    margin: 0 auto;
}

.photo-gallery__header {
    margin-bottom: 3.5rem;
    max-width: 50rem;
}

.photo-gallery--dark .section__chapter { color: rgba(244,236,220,0.5); border-color: rgba(244,236,220,0.2); }
.photo-gallery--dark .section__title { color: var(--cream); }

.photo-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 1rem;
}

.pg-item {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.pg-item--wide { grid-column: span 2; }
.pg-item--tall { grid-row: span 2; }

.pg-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 20, 16, 0.28);
}

.pg-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,20,16,0.8) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pg-item:hover::after { opacity: 1; }

.pg-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.1rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream);
    transform: translateY(8px);
    opacity: 0;
    transition: all 0.4s ease 0.05s;
    z-index: 2;
}

.pg-item:hover figcaption {
    transform: translateY(0);
    opacity: 1;
}

.pg-item__zoom {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(244, 236, 220, 0.12);
    border: 1px solid rgba(244, 236, 220, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    color: var(--cream);
    backdrop-filter: blur(4px);
}

.pg-item:hover .pg-item__zoom { opacity: 1; }

/* Gravura inline u tekstu */
.inline-gravura {
    margin: 3rem 0;
    border: 1px solid var(--cream-deep);
    border-radius: 2px;
    overflow: hidden;
}

.inline-gravura img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(15%);
}

.inline-gravura figcaption {
    padding: 0.85rem 1.2rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-mute);
    background: var(--cream-deep);
    border-top: 1px solid var(--cream-deep);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 16, 0.96);
    cursor: pointer;
}

.lightbox__figure {
    position: relative;
    z-index: 1;
    max-width: min(90vw, 1280px);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    pointer-events: none;
}

.lightbox__img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    border-radius: 2px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    transition: opacity 0.25s ease;
}

.lightbox__img.loading { opacity: 0.25; }

.lightbox__caption {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(244, 236, 220, 0.55);
    text-align: center;
}

.lightbox__close {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(244, 236, 220, 0.08);
    border: 1px solid rgba(244, 236, 220, 0.18);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: background 0.3s ease;
    backdrop-filter: blur(6px);
}

.lightbox__close:hover { background: rgba(244, 236, 220, 0.18); }

.lightbox__prev,
.lightbox__next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(244, 236, 220, 0.08);
    border: 1px solid rgba(244, 236, 220, 0.18);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: background 0.3s ease;
    backdrop-filter: blur(6px);
}

.lightbox__prev { left: 1.25rem; }
.lightbox__next { right: 1.25rem; }

.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(244, 236, 220, 0.18); }

.lightbox__counter {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: rgba(244, 236, 220, 0.4);
    z-index: 10001;
}

@media (max-width: 768px) {
    .photo-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .pg-item--wide { grid-column: span 2; }
    .pg-item--tall { grid-row: span 1; }
}

@media (max-width: 500px) {
    .lightbox__prev { left: 0.4rem; }
    .lightbox__next { right: 0.4rem; }
    .lightbox__prev,
    .lightbox__next { width: 38px; height: 38px; }
}

/* ============================================
   GALERIJA STRANA — simple grid
   ============================================ */
.simple-gallery {
    padding: 5rem var(--gutter) 7rem;
    background: var(--cream);
}

.simple-gallery__container {
    max-width: var(--container);
    margin: 0 auto;
}

.simple-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.sg-item {
    position: relative;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-color: var(--ink);
    cursor: zoom-in;
    overflow: hidden;
    margin: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sg-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 20, 16, 0) 50%, rgba(26, 20, 16, 0.45) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sg-item:hover {
    transform: scale(1.02);
    z-index: 2;
}

.sg-item:hover::after,
.sg-item:focus-visible::after {
    opacity: 1;
}

.sg-item:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 4px;
}

@media (max-width: 900px) {
    .simple-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .simple-gallery { padding: 3rem var(--gutter) 5rem; }
    .simple-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

/* ============================================
   KONTAKT STRANA
   ============================================ */
.contact {
    padding: 6rem var(--gutter) 4rem;
    background: var(--cream);
}

.contact__container {
    max-width: var(--container);
    margin: 0 auto;
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 2.5rem 2rem;
    background: #fff;
    border: 1px solid rgba(26, 20, 16, 0.08);
    border-radius: 8px;
    color: var(--ink);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover:not(.contact-card--static) {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(26, 20, 16, 0.12);
    border-color: var(--oxblood);
}

.contact-card__icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cream);
    color: var(--oxblood);
    margin-bottom: 0.4rem;
}

.contact-card:hover:not(.contact-card--static) .contact-card__icon {
    background: var(--oxblood);
    color: var(--cream);
}

.contact-card__label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--oxblood);
}

.contact-card__value {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.25;
    word-break: break-word;
}

.contact-card__hint {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(26, 20, 16, 0.65);
    margin-top: 0.3rem;
}

.contact-reasons {
    padding: 5rem var(--gutter);
    background: #fff;
}

.contact-reasons__container {
    max-width: var(--container);
    margin: 0 auto;
}

.contact-reasons__header {
    margin-bottom: 4rem;
    max-width: 50rem;
}

.contact-reasons__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.reason {
    padding: 2rem 0 0;
    border-top: 2px solid var(--oxblood);
}

.reason__num {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--orange);
    margin-bottom: 0.8rem;
    letter-spacing: 0.1em;
}

.reason__title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.9rem;
    color: var(--ink);
}

.reason p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(26, 20, 16, 0.78);
}

.contact-cta {
    padding: 6rem var(--gutter);
    background: var(--ink);
    color: var(--cream);
    text-align: center;
}

.contact-cta__container {
    max-width: 720px;
    margin: 0 auto;
}

.contact-cta__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.contact-cta__deck {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(244, 236, 220, 0.78);
    margin-bottom: 2.5rem;
}

.contact-cta__actions {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

@media (max-width: 900px) {
    .contact__grid,
    .contact-reasons__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .contact { padding: 4rem var(--gutter) 3rem; }
    .contact-reasons { padding: 4rem var(--gutter); }
    .contact-cta { padding: 4rem var(--gutter); }
}


/* ───────── VIDEO/SLIKA REKLAMA (Supabase) ───────── */
.ad-video {
    position: relative;
    z-index: 2;
    background: var(--cream-deep, #1a1614);
    border-top: 1px dashed rgba(107, 30, 30, 0.25);
    border-bottom: 1px dashed rgba(107, 30, 30, 0.25);
    padding: 3rem var(--gutter, 2rem);
}
.ad-video__inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}
.ad-video__label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(107, 30, 30, 0.7);
    font-weight: 600;
}
.ad-video__link {
    display: block;
    line-height: 0;
    text-decoration: none;
}
.ad-video__media {
    line-height: 0;
}
.ad-video__player {
    width: 320px;
    max-width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    background: #000;
    border-radius: 6px;
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
    display: block;
}
.ad-video__caption {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    align-items: center;
    text-align: center;
}
.ad-video__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);
    line-height: 1.25;
    font-weight: 500;
    color: #6B1E1E;
}
.ad-video__cta {
    display: inline-flex;
    align-items: center;
    gap: .4em;
    padding: .7em 1.4em;
    background: #6B1E1E;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: .85rem;
    letter-spacing: .05em;
    font-weight: 600;
    transition: background .15s;
}
.ad-video__cta:hover { background: #8a2a2a; }
.ad-video__rotator {
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(107, 30, 30, 0.55);
    font-weight: 500;
}
.ad-video__sound {
    background: transparent;
    border: 1px solid rgba(107, 30, 30, 0.3);
    color: #6B1E1E;
    padding: .55em 1em;
    font: inherit;
    font-size: .8rem;
    border-radius: 3px;
    cursor: pointer;
    letter-spacing: .04em;
}
.ad-video__sound:hover { border-color: #6B1E1E; background: rgba(107,30,30,.05); }

@media (max-width: 600px) {
    .ad-video { padding: 2rem var(--gutter, 1rem); }
    .ad-video__player { width: 280px; }
}
