/*=============================================================
  JO NESBØ U ZAGREBU — landing (/jo-nesbo-zagreb/)
  Scope: .nesbo  |  učitava se samo na landing ruti
=============================================================*/

.nesbo {
    --nsb-ink:        #0a0a0a;
    --nsb-ink-2:      #111111;
    --nsb-panel:      #161616;
    --nsb-panel-2:    #1d1d1d;
    --nsb-line:       #2a2a2a;
    --nsb-red:        #D65A5A;
    --nsb-red-deep:   #b8302f;
    --nsb-white:      #ffffff;
    --nsb-grey:       #b5b5b5;
    --nsb-grey-2:     #8a8a8a;
    --nsb-maxw:       1240px;

    background: var(--nsb-ink);
    color: var(--nsb-white);
    font-family: var(--font-primary);
    display: block;
    overflow-x: clip;
}

.nesbo * { box-sizing: border-box; }

.nesbo-container {
    max-width: var(--nsb-maxw);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* -------- Tipografija -------- */
.nesbo-h2 {
    font-size: clamp(28px, 3.4vw, 46px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin: 0 0 20px;
    color: var(--nsb-white);
}

.nesbo-eyebrow {
    margin: 0 0 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--nsb-red);
}

.nesbo-pull {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--nsb-white);
    padding-left: 18px;
    border-left: 3px solid var(--nsb-line);
}

.nesbo-pull--accent {
    border-left-color: var(--nsb-red);
    color: var(--nsb-red);
    font-size: 21px;
}

/* -------- Gumbi -------- */
.nesbo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border: 1.5px solid transparent;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, transform .15s;
}

.nesbo-btn--primary {
    background: var(--nsb-red);
    border-color: var(--nsb-red);
    color: #fff;
}
.nesbo-btn--primary:hover { background: var(--nsb-red-deep); border-color: var(--nsb-red-deep); color: #fff; }

.nesbo-btn--ghost {
    background: transparent;
    border-color: rgba(255,255,255,.32);
    color: #fff;
}
.nesbo-btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

.nesbo-btn--full { width: 100%; }
.nesbo-btn--lg   { padding: 19px 46px; font-size: 16px; }
.nesbo-btn:active { transform: translateY(1px); }
.nesbo-btn:disabled { opacity: .6; cursor: default; }

/* Spinner u submit gumbu */
.nesbo-btn__spinner { display: none; width: 17px; height: 17px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: nesbo-spin .7s linear infinite; }
.nesbo-form.is-loading .nesbo-btn__spinner { display: block; }
.nesbo-form.is-loading .nesbo-btn__label { opacity: .7; }
@keyframes nesbo-spin { to { transform: rotate(360deg); } }

/*=============================================================
  HERO
=============================================================*/
.nesbo-hero {
    position: relative;
    background: var(--nsb-ink);
    overflow: hidden;
    isolation: isolate;
}

.nesbo-hero__bg {
    position: absolute;
    inset: 0 0 0 auto;
    width: 52%;
    z-index: 0;
}

.nesbo-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center;
    display: block;
}

/* Gradijent lijevo → tekst uvijek čitljiv preko fotografije */
.nesbo-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--nsb-ink) 0%, rgba(10,10,10,.92) 22%, rgba(10,10,10,.25) 62%, rgba(10,10,10,.55) 100%);
}

.nesbo-hero__inner {
    position: relative;
    z-index: 1;
    padding-top: 96px;
    padding-bottom: 96px;
    min-height: clamp(540px, 76vh, 800px);
    display: flex;
    align-items: center;
}

.nesbo-hero__content { max-width: 640px; }

.nesbo-hero__title {
    margin: 0 0 18px;
    font-weight: 700;
    line-height: .92;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}
.nesbo-hero__title span {
    display: block;
    font-size: clamp(48px, 7.4vw, 104px);
    color: #fff;
}
.nesbo-hero__title em {
    display: block;
    font-style: normal;
    font-size: clamp(30px, 4.2vw, 58px);
    font-weight: 600;
    color: var(--nsb-red);
    letter-spacing: 1px;
    margin-top: 6px;
}

.nesbo-hero__lead {
    margin: 0 0 26px;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.5;
    color: var(--nsb-grey);
    max-width: 30em;
}

/* Datum / vrijeme / lokacija */
.nesbo-meta {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}
.nesbo-meta li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--nsb-line);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.nesbo-meta svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--nsb-red); }

.nesbo-hero__text {
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--nsb-grey);
    max-width: 34em;
}
.nesbo-hero__text em { color: #fff; font-style: italic; }

.nesbo-hero__ulaz {
    margin: -14px 0 32px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.nesbo-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
}

.nesbo-hero__note + .nesbo-hero__note { margin-top: 8px; }
.nesbo-hero__termini-link {
    display: inline-block;
    padding: 13px 0;
    color: var(--nsb-red);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(214,90,90,.4);
    transition: border-color .2s;
}
.nesbo-hero__termini-link:hover { border-bottom-color: var(--nsb-red); }

.nesbo-hero__note {
    margin: 0;
    font-size: 13px;
    color: var(--nsb-grey-2);
}

/*=============================================================
  TERMINI — Split + Zagreb
=============================================================*/
.nesbo-termini {
    background: var(--nsb-ink);
    border-top: 1px solid var(--nsb-line);
    padding: 76px 0;
}

.nesbo-termini__title { text-align: center; margin-bottom: 40px; }

.nesbo-termini__grid {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.nesbo-termin {
    position: relative;
    padding: 32px 30px 30px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--nsb-line);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
}

.nesbo-termin--prijava {
    background: rgba(214,90,90,.09);
    border-color: rgba(214,90,90,.4);
}

.nesbo-termin__badge {
    align-self: flex-start;
    margin-bottom: 18px;
    padding: 7px 15px;
    border-radius: 50px;
    border: 1px solid var(--nsb-line);
    background: rgba(255,255,255,.06);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--nsb-grey);
}
.nesbo-termin--prijava .nesbo-termin__badge {
    background: var(--nsb-red);
    border-color: var(--nsb-red);
    color: #fff;
}

.nesbo-termin__grad {
    margin: 0 0 10px;
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #fff;
}

.nesbo-termin__datum {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 600;
    color: var(--nsb-red);
}
.nesbo-termin__datum span { color: var(--nsb-red); }

.nesbo-termin__mjesto {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--nsb-grey);
}
.nesbo-termin__mjesto strong { color: #fff; font-weight: 600; }

.nesbo-termin__cta { margin-top: 22px; align-self: flex-start; }

.nesbo-termini__napomena {
    margin: 0;
    padding: 18px 22px;
    border-left: 3px solid var(--nsb-red);
    background: rgba(255,255,255,.035);
    border-radius: 0 8px 8px 0;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--nsb-grey);
}
.nesbo-termini__napomena strong { color: #fff; }

/*=============================================================
  PRIJAVNI OBRAZAC
=============================================================*/
.nesbo-form-section {
    background: var(--nsb-ink-2);
    border-top: 1px solid var(--nsb-line);
    padding: 84px 0;
    scroll-margin-top: 180px;
}

.nesbo-form-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: start;
}

.nesbo-form-intro .nesbo-h2 { margin-bottom: 14px; }

.nesbo-form-date {
    margin: 0 0 22px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--nsb-red);
}

.nesbo-form-lead {
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--nsb-grey);
    max-width: 36em;
}
.nesbo-form-lead em { color: #fff; font-style: italic; }

.nesbo-form-book {
    display: block;
    width: 210px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 22px 50px rgba(0,0,0,.6);
}

/* -------- Kartica s formom -------- */
.nesbo-form-card {
    background: var(--nsb-panel);
    border: 1px solid var(--nsb-line);
    border-radius: 14px;
    padding: 38px 36px 34px;
    box-shadow: 0 30px 70px rgba(0,0,0,.45);
}

/* -------- Brojač slobodnih mjesta (iznad obrasca) -------- */
.nesbo-seats {
    margin-bottom: 26px;
    padding: 16px 18px;
    background: rgba(255,255,255,.045);
    border: 1px solid var(--nsb-line);
    border-radius: 10px;
}

.nesbo-seats__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.nesbo-seats__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--nsb-grey-2);
}

.nesbo-seats__value {
    font-size: 14px;
    font-weight: 600;
    color: var(--nsb-grey);
    white-space: nowrap;
}
.nesbo-seats__value strong {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.nesbo-seats__bar {
    height: 6px;
    border-radius: 50px;
    background: rgba(255,255,255,.1);
    overflow: hidden;
}
.nesbo-seats__bar span {
    display: block;
    height: 100%;
    border-radius: 50px;
    background: var(--nsb-red);
    transition: width .4s ease;
}

.nesbo-seats__note {
    margin: 10px 0 0;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--nsb-grey-2);
}

/* Pri kraju — crveni naglasak */
.nesbo-seats.is-low {
    background: rgba(214,90,90,.1);
    border-color: rgba(214,90,90,.45);
}
.nesbo-seats.is-low .nesbo-seats__value strong,
.nesbo-seats.is-low .nesbo-seats__note { color: var(--nsb-red); }
.nesbo-seats.is-low .nesbo-seats__note { font-weight: 600; }

.nesbo-form-title {
    margin: 0 0 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: var(--nsb-red);
}

.nesbo-field { margin-bottom: 18px; }

.nesbo-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.nesbo-field label span[aria-hidden] { color: var(--nsb-red); }
.nesbo-optional { font-weight: 400; color: var(--nsb-grey-2); font-size: 13px; }

.nesbo-field input,
.nesbo-field select {
    width: 100%;
    padding: 14px 16px;
    background: var(--nsb-panel-2);
    border: 1.5px solid var(--nsb-line);
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.3;
    transition: border-color .18s, background .18s;
    appearance: none;
    -webkit-appearance: none;
}

.nesbo-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23b5b5b5' stroke-width='2.4' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
    cursor: pointer;
}
.nesbo-field select option { background: var(--nsb-panel-2); color: #fff; }

.nesbo-field input:focus,
.nesbo-field select:focus {
    outline: none;
    border-color: var(--nsb-red);
    background: #222;
}

.nesbo-field input::placeholder { color: #6d6d6d; }

.nesbo-field.has-error input,
.nesbo-field.has-error select { border-color: var(--nsb-red-deep); }

.nesbo-field__err,
.nesbo-check .nesbo-field__err {
    display: none;
    margin: 7px 0 0;
    font-size: 13px;
    line-height: 1.4;
    color: #ff8b8b;
}
.has-error .nesbo-field__err { display: block; }

/* -------- Checkboxi -------- */
.nesbo-check { margin-bottom: 14px; }

.nesbo-check label {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--nsb-grey);
    cursor: pointer;
}

.nesbo-check input[type="checkbox"] {
    flex-shrink: 0;
    width: 19px;
    height: 19px;
    margin: 1px 0 0;
    accent-color: var(--nsb-red);
    cursor: pointer;
}

.nesbo-check.has-error label span { color: #ff8b8b; }

/* Honeypot */
.nesbo-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.nesbo-form #nesbo-submit { margin-top: 12px; }

.nesbo-form-msg {
    display: none;
    margin: 16px 0 0;
    padding: 13px 16px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
}
.nesbo-form-msg.is-error   { display: block; background: rgba(214,90,90,.14); border: 1px solid rgba(214,90,90,.45); color: #ffb3b3; }
.nesbo-form-msg.is-success { display: block; background: rgba(76,175,80,.12);  border: 1px solid rgba(76,175,80,.4);  color: #a9e0ab; }

.nesbo-form-fine {
    margin: 16px 0 0;
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--nsb-grey-2);
    text-align: center;
}

/* -------- Najava: prijave još nisu otvorene -------- */
.nesbo-najava { text-align: center; padding: 18px 6px 10px; }

.nesbo-najava__icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 2px solid var(--nsb-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nsb-red);
}
.nesbo-najava__icon svg { width: 30px; height: 30px; }

.nesbo-najava__label {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: var(--nsb-red);
}

.nesbo-najava__title {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--nsb-grey);
}
.nesbo-najava__title strong {
    display: inline-block;
    margin-top: 6px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #fff;
}

.nesbo-najava__text {
    margin: 0 0 24px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--nsb-grey-2);
}
/* -------- Poruka nakon klika na link za potvrdu (?potvrda=...) -------- */
.nesbo-confirm {
    margin-bottom: 26px;
    padding: 22px 24px;
    border-radius: 10px;
    border: 1px solid var(--nsb-line);
    background: rgba(255,255,255,.045);
    text-align: center;
}

.nesbo-confirm__title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

.nesbo-confirm__text {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--nsb-grey);
}

.nesbo-confirm .nesbo-btn { margin-top: 18px; }

.nesbo-confirm--ok {
    background: rgba(76,175,80,.1);
    border-color: rgba(76,175,80,.4);
}
.nesbo-confirm--ok .nesbo-confirm__title { color: #a9e0ab; }

.nesbo-confirm--err {
    background: rgba(214,90,90,.12);
    border-color: rgba(214,90,90,.45);
}
.nesbo-confirm--err .nesbo-confirm__title { color: var(--nsb-red); }
/* -------- Poruka nakon uspješne prijave -------- */
.nesbo-success { text-align: center; padding: 16px 4px 8px; }

.nesbo-success__icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: rgba(214,90,90,.15);
    border: 2px solid var(--nsb-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nsb-red);
}
.nesbo-success__icon svg { width: 30px; height: 30px; }

.nesbo-success__title {
    margin: 0 0 14px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
}
.nesbo-success__lead { margin: 0 0 10px; font-size: 16px; line-height: 1.6; color: #fff; }
.nesbo-success__mail { margin: 0 0 22px; font-size: 15px; line-height: 1.65; color: var(--nsb-grey); }
.nesbo-success__hint {
    margin: 18px 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--nsb-grey-2);
}
.nesbo-success__hint strong { color: var(--nsb-grey); font-weight: 600; }

.nesbo-success__meta {
    margin: 0 0 24px;
    padding: 14px 16px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--nsb-line);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--nsb-red);
}

/*=============================================================
  HARRY HOLE IMA NOVI SLUČAJ
=============================================================*/
.nesbo-story {
    background: var(--nsb-ink);
    padding: 92px 0;
    border-top: 1px solid var(--nsb-line);
}

.nesbo-story__grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 66px;
    align-items: start;
}

.nesbo-story__media { position: sticky; top: 110px; }

.nesbo-story__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,.65);
}

.nesbo-story__text p {
    margin: 0 0 20px;
    font-size: 16.5px;
    line-height: 1.85;
    color: var(--nsb-grey);
}
.nesbo-story__text p em { color: #fff; font-style: italic; }
.nesbo-story__text .nesbo-btn { margin-top: 12px; }

/*=============================================================
  BROJKE
=============================================================*/
.nesbo-stats {
    background: linear-gradient(180deg, #140d0d 0%, var(--nsb-ink) 100%);
    border-top: 1px solid var(--nsb-line);
    border-bottom: 1px solid var(--nsb-line);
    padding: 76px 0;
}

.nesbo-stats__title {
    margin: 0 0 48px;
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.nesbo-stats__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.nesbo-stats__grid li {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,.035);
    border: 1px solid var(--nsb-line);
    border-radius: 12px;
}

.nesbo-stats__grid strong {
    display: block;
    font-size: clamp(38px, 4.4vw, 58px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1.5px;
    color: var(--nsb-red);
    margin-bottom: 12px;
}

.nesbo-stats__grid span {
    display: block;
    font-size: 14px;
    line-height: 1.55;
    color: var(--nsb-grey);
}

/*=============================================================
  TKO JE JO NESBØ
=============================================================*/
.nesbo-bio { background: var(--nsb-ink-2); padding: 92px 0; }

.nesbo-bio__grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 64px;
    align-items: start;
}

.nesbo-bio__media { position: sticky; top: 110px; }

.nesbo-bio__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    filter: grayscale(1) contrast(1.05);
}

.nesbo-bio__sub {
    margin: -8px 0 26px;
    font-size: 16px;
    font-weight: 600;
    color: var(--nsb-red);
    line-height: 1.5;
}

.nesbo-bio__text p {
    margin: 0 0 20px;
    font-size: 16.5px;
    line-height: 1.85;
    color: var(--nsb-grey);
}
.nesbo-bio__text p em { color: #fff; font-style: italic; }

/*=============================================================
  KNJIGE IZ WEBSHOPA (svijetla sekcija — .fk-card je za bijelu pozadinu)
=============================================================*/
.nesbo-books {
    background: #fff;
    color: var(--color-text);
    padding: 76px 0;
}

.nesbo-books__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.nesbo-books .nesbo-h2 { color: var(--color-text); margin: 0; }

.nesbo-books__count {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--color-text-muted);
}

.nesbo-books__all {
    display: inline-block;
    padding: 13px 0;
    color: var(--nsb-red);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}
.nesbo-books__all:hover { text-decoration: underline; }

.nesbo-books__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px 24px;
}

/*=============================================================
  ZAVRŠNI CTA
=============================================================*/
.nesbo-cta {
    position: relative;
    background: var(--nsb-ink);
    padding: 96px 0;
    border-top: 1px solid var(--nsb-line);
    text-align: center;
}

.nesbo-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(184,48,47,.28) 0%, transparent 62%);
    pointer-events: none;
}

.nesbo-cta__inner { position: relative; }

.nesbo-cta__title {
    margin: 0 0 20px;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #fff;
}

.nesbo-cta__meta {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--nsb-red);
    letter-spacing: .5px;
}

.nesbo-cta__line {
    margin: 0 0 32px;
    font-size: 18px;
    color: var(--nsb-grey);
}

/*=============================================================
  RESPONSIVE
=============================================================*/
@media (max-width: 1200px) {
    .nesbo-container { padding: 0 32px; }
    .nesbo-form-grid { grid-template-columns: 1fr 440px; gap: 44px; }
    .nesbo-story__grid { grid-template-columns: 290px 1fr; gap: 48px; }
    .nesbo-bio__grid   { grid-template-columns: 360px 1fr; gap: 48px; }
}

@media (max-width: 992px) {
    .nesbo-termini { padding: 60px 0; }
    .nesbo-termini__grid { grid-template-columns: 1fr; gap: 18px; }

    /* Na uskom ekranu fotografija ide u pojas na vrhu umjesto preko cijele visine.
       Preko pune visine cover skalira po visini pa se cijeli portret stisne i lice
       završi iza naslova; s fiksnim pojasom kadriramo glavu (object-position Y). */
    .nesbo-hero__bg {
        width: 100%;
        height: 430px;
        bottom: auto;
    }
    .nesbo-hero__bg img { object-position: 62% 16%; }
    .nesbo-hero__bg::after {
        background: linear-gradient(180deg, rgba(10,10,10,.12) 0%, rgba(10,10,10,.3) 42%, rgba(10,10,10,.85) 78%, var(--nsb-ink) 100%);
    }
    .nesbo-hero__inner { padding-top: 330px; padding-bottom: 72px; min-height: 0; }
    .nesbo-hero__content { max-width: 100%; }

    .nesbo-form-section { padding: 68px 0; }
    .nesbo-form-grid { grid-template-columns: 1fr; gap: 38px; }
    /* Ista naslovnica je 100px niže u story sekciji, i to veća — na mobu bi se
       dvije iste slike vidjele jedna ispod druge. */
    .nesbo-form-book { display: none; }

    .nesbo-story, .nesbo-bio { padding: 68px 0; }
    .nesbo-story__grid, .nesbo-bio__grid { grid-template-columns: 1fr; gap: 34px; }
    .nesbo-story__media, .nesbo-bio__media { position: static; }
    .nesbo-story__media img { width: 230px; margin: 0 auto; }
    .nesbo-bio__media img { max-width: 460px; margin: 0 auto; }

    .nesbo-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .nesbo-books__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .nesbo-container { padding: 0 20px; }

    .nesbo-termini { padding: 52px 0; }
    .nesbo-termin { padding: 26px 22px 24px; }
    .nesbo-termin__cta { width: 100%; }
    .nesbo-termini__napomena { font-size: 13.5px; padding: 16px 18px; }


    .nesbo-hero__inner { padding-top: 300px; padding-bottom: 56px; }
    .nesbo-hero__title { letter-spacing: -0.5px; }
    .nesbo-meta { gap: 8px; }
    .nesbo-meta li { padding: 9px 14px; font-size: 13px; }
    .nesbo-hero__ulaz {
    margin: -14px 0 32px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.nesbo-hero__actions { flex-direction: column; align-items: stretch; }
    .nesbo-hero__actions .nesbo-btn { width: 100%; }

    .nesbo-form-card { padding: 28px 22px 26px; border-radius: 12px; }
    .nesbo-form-section, .nesbo-story, .nesbo-bio, .nesbo-cta { padding: 56px 0; }
    .nesbo-stats { padding: 56px 0; }
    .nesbo-stats__title { margin-bottom: 32px; }

    .nesbo-story__text p, .nesbo-bio__text p { font-size: 15.5px; line-height: 1.8; }
    .nesbo-pull { font-size: 17px; }
    .nesbo-pull--accent { font-size: 18px; }

    .nesbo-books { padding: 56px 0; }
    .nesbo-books__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 16px; }

    .nesbo-cta__line { font-size: 16px; }
    .nesbo-cta .nesbo-btn--lg { width: 100%; }
}

@media (max-width: 480px) {
    .nesbo-hero__bg img { object-position: 72% center; }
    .nesbo-meta { flex-direction: column; align-items: flex-start; }
    .nesbo-meta li { width: 100%; }

    .nesbo-stats__grid { grid-template-columns: 1fr; gap: 14px; }
    .nesbo-stats__grid li { padding: 22px 18px; }

    .nesbo-success__title { font-size: 23px; }

    /* "SLOBODNIH MJESTA" i broj se na 375px stisnu u dva reda — složi ih jedan
       ispod drugog umjesto da se lome nasred etikete. */
    .nesbo-seats__row { display: block; }
    .nesbo-seats__label { display: block; margin-bottom: 4px; letter-spacing: 1.2px; }
    .nesbo-seats__value { display: block; }
}

/* Poštuj prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .nesbo * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
