/* ==========================================================================
   Arbëria of Houston — public site design system
   Albanian red and black, warmed with gold and a bone-white ground.
   ========================================================================== */

:root {
    /* Brand */
    --red: #c8102e;
    --red-deep: #97071f;
    --red-bright: #e4172f;
    --ink: #0d0d10;
    --ink-soft: #1a1a20;
    --gold: #c9a227;
    --gold-light: #e3c964;

    /* Neutrals */
    --bone: #faf7f2;
    --bone-2: #f2ede4;
    --line: #e4ddd1;
    --muted: #6b6660;
    --muted-2: #918b83;
    --white: #ffffff;

    /* Type */
    --display: "Playfair Display", "Iowan Old Style", Georgia, serif;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Shape */
    --r-sm: 8px;
    --r: 14px;
    --r-lg: 22px;
    --r-xl: 32px;

    /* Shadow */
    --sh-1: 0 1px 2px rgba(13, 13, 16, .06), 0 2px 8px rgba(13, 13, 16, .04);
    --sh-2: 0 4px 12px rgba(13, 13, 16, .08), 0 12px 32px rgba(13, 13, 16, .06);
    --sh-3: 0 12px 28px rgba(13, 13, 16, .12), 0 32px 64px rgba(13, 13, 16, .10);
    --sh-red: 0 8px 24px rgba(200, 16, 46, .28);

    /* Layout */
    --wrap: 1200px;
    --wrap-narrow: 780px;

    /* A shallow bar; the badge is larger than it and hangs over the edge. */
    --nav-h: 100px;
    --nav-h-stuck: 100px;
}

/* --------------------------------------------------------------- reset */

*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    /* Anchors land below the shrunken bar, since that is what is on screen
       once the page has been scrolled. */
    scroll-padding-top: calc(var(--nav-h-stuck) + 20px);
}

body {
    margin: 0;
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
    background: var(--bone);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
    font-family: var(--display);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.015em;
    color: var(--ink);
    margin: 0 0 .5em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.12rem; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--red); color: #fff; }

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* --------------------------------------------------------------- layout */

.wrap { width: min(100% - 48px, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 48px, var(--wrap-narrow)); margin-inline: auto; }

.section { padding-block: clamp(64px, 9vw, 120px); }
.section-tight { padding-block: clamp(44px, 6vw, 76px); }
.section-bone { background: var(--bone-2); }
.section-dark { background: var(--ink); color: #e9e6e1; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.stack > * + * { margin-top: 18px; }
.center { text-align: center; }
.flow-max { max-width: 62ch; }
.mt-0 { margin-top: 0; }

/* ---------------------------------------------------------- typography */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--red);
    flex: none;
}

.eyebrow-center { justify-content: center; }
.eyebrow-light { color: var(--gold-light); }
.eyebrow-light::before { background: var(--gold); }

.lede {
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
    color: var(--muted);
    line-height: 1.7;
}

.section-dark .lede { color: #b9b4ad; }

.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; }

/* Rich text coming out of the CMS editor. */
.prose { font-size: 1.05rem; line-height: 1.78; color: #33312e; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.5em; }
.prose ul, .prose ol { padding-left: 1.3em; margin-bottom: 1.2em; }
.prose li { margin-bottom: .5em; }
.prose a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.prose img { border-radius: var(--r); margin-block: 1.6em; }
.prose blockquote {
    margin: 1.8em 0;
    padding: 4px 0 4px 26px;
    border-left: 3px solid var(--gold);
    font-family: var(--display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--ink);
}

/* ------------------------------------------------------------- buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border: 1px solid transparent;
    border-radius: 100px;
    font-size: .93rem;
    font-weight: 600;
    letter-spacing: .01em;
    text-align: center;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--red); color: #fff; box-shadow: var(--sh-red); }
.btn-primary:hover { background: var(--red-bright); box-shadow: 0 12px 30px rgba(200, 16, 46, .36); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #24242c; }

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

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

.btn-outline-light { border-color: rgba(255, 255, 255, .4); color: #fff; }
.btn-outline-light:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-lg { padding: 18px 38px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-disabled { opacity: .5; pointer-events: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: .93rem;
    color: var(--red);
}

.link-arrow span { transition: transform .2s ease; }
.link-arrow:hover span { transform: translateX(5px); }

/* ----------------------------------------------------------- top nav */

.topbar {
    background: var(--ink);
    color: #cfcac3;
    font-size: .82rem;
    padding: 9px 0;
}

/* Same width as the nav below it, so the phone number lines up with the badge. */
.topbar-in { width: min(100% - 48px, 1400px); display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.topbar a { color: #cfcac3; transition: color .18s; }
.topbar a:hover { color: var(--gold-light); }
.topbar-links { display: flex; gap: 20px; align-items: center; }

.nav {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(250, 247, 242, .88);
    backdrop-filter: saturate(1.6) blur(14px);
    -webkit-backdrop-filter: saturate(1.6) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.nav.is-stuck {
    border-bottom-color: var(--line);
    box-shadow: 0 4px 20px rgba(13, 13, 16, .06);
}

.nav-in {
    /* Wider than the content wrap: nine menu items, the badge and the button
       need more room than a 1200px column gives them. */
    width: min(100% - 48px, 1400px);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand { display: flex; align-items: center; gap: 14px; flex: none; }

/*
 * The badge is deliberately taller than the bar and breaks out of it, mostly
 * downwards, so it overlaps whatever is below. Negative margins keep it out of
 * the flex measurement, so the bar itself stays shallow.
 */
.brand img {
    position: relative;
    z-index: 2;
    height: 136px;
    width: auto;
    /* Sits low in the bar and hangs well below it. Shifting weight from the
       top margin to the bottom one drops the badge without resizing it. */
    margin-block: -2px -60px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--red), var(--red-deep));
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-size: 1.28rem;
    font-weight: 700;
    box-shadow: var(--sh-red);
    flex: none;
}

.brand-text { line-height: 1.15; }
.brand-name { font-family: var(--display); font-size: 1.38rem; font-weight: 700; color: var(--ink); display: block; }
.brand-sub { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }

.nav-links a {
    position: relative;
    display: block;
    padding: 12px 9px;
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #1c2340;
    /* "Albanian School" and "About Us" must never break across two lines. */
    white-space: nowrap;
    transition: color .16s;
}

.nav-links a:hover { color: var(--red); }
.nav-links a.is-active { color: var(--red); }

/* Red rule under the page you are on. */
.nav-links a.is-active::after {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    bottom: 4px;
    height: 2px;
    background: var(--red);
}

.nav-actions { display: flex; align-items: center; gap: 12px; flex: none; }

/* Squared-off call to action, as on the organisation's own header. */
.nav-cta {
    border-radius: 4px;
    padding: 14px 22px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: none;
}

.nav-cta:hover { box-shadow: 0 8px 22px rgba(200, 16, 46, .3); }

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    place-items: center;
}

.nav-toggle span { display: block; width: 19px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
    content: ""; position: absolute; left: 0; width: 19px; height: 2px; background: var(--ink);
    transition: transform .22s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ---------------------------------------------------------------- hero */

.hero {
    position: relative;
    min-height: min(88vh, 780px);
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(13, 13, 16, .94) 0%, rgba(13, 13, 16, .78) 42%, rgba(151, 7, 31, .52) 100%);
}

.hero-fallback {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(1100px 620px at 12% 8%, rgba(200, 16, 46, .42), transparent 60%),
        radial-gradient(820px 520px at 90% 92%, rgba(201, 162, 39, .22), transparent 62%),
        linear-gradient(160deg, #101015 0%, #1c0d12 55%, #2a0c16 100%);
}

/* Faint double-headed eagle silhouette behind the hero copy. */
.hero-crest {
    position: absolute;
    right: -4%;
    top: 50%;
    transform: translateY(-50%);
    width: min(46vw, 560px);
    opacity: .07;
    z-index: -1;
    pointer-events: none;
}

.hero-in { padding-block: clamp(80px, 12vw, 140px); max-width: 720px; }
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-sub {
    font-size: clamp(1.05rem, 1.7vw, 1.28rem);
    color: rgba(255, 255, 255, .84);
    max-width: 56ch;
    margin-bottom: 36px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 48px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.hero-meta div { line-height: 1.3; }
.hero-meta b { display: block; font-family: var(--display); font-size: 1.9rem; color: var(--gold-light); }
.hero-meta span { font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; color: rgba(255, 255, 255, .6); }

/* Small page hero used on inner pages. */
.page-hero {
    position: relative;
    padding-block: clamp(70px, 10vw, 130px);
    background: var(--ink);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(760px 420px at 8% 0%, rgba(200, 16, 46, .40), transparent 62%),
        radial-gradient(620px 400px at 96% 100%, rgba(201, 162, 39, .18), transparent 60%);
}

.page-hero-img { position: absolute; inset: 0; z-index: -2; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255, 255, 255, .8); max-width: 62ch; font-size: 1.08rem; }

.crumbs { font-size: .82rem; color: rgba(255, 255, 255, .55); margin-bottom: 20px; }
.crumbs a:hover { color: var(--gold-light); }
.crumbs span { margin-inline: 8px; }

/* --------------------------------------------------------------- cards */

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-3);
    border-color: transparent;
}

.card-body { padding: 26px; }
.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bone-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2, .7, .3, 1); }
.card-hover:hover .card-media img { transform: scale(1.05); }

.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; }

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 13px;
    border-radius: 100px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.pill-red { background: rgba(200, 16, 46, .1); color: var(--red-deep); }
.pill-gold { background: rgba(201, 162, 39, .16); color: #7e6413; }
.pill-ink { background: rgba(13, 13, 16, .07); color: var(--ink); }
.pill-green { background: rgba(21, 128, 61, .12); color: #15803d; }
.pill-solid { background: var(--red); color: #fff; }

.pill-float { position: absolute; top: 14px; left: 14px; z-index: 2; box-shadow: var(--sh-1); }

/* ------------------------------------------------------- value / icons */

.value-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 34px 30px;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.value-card:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.value-card:hover::before { transform: scaleX(1); }

.value-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, rgba(200, 16, 46, .12), rgba(201, 162, 39, .14));
    color: var(--red);
    margin-bottom: 20px;
}

.value-icon svg { width: 26px; height: 26px; }

/* -------------------------------------------------------------- events */

.event-card { display: flex; flex-direction: column; height: 100%; }
.event-card .card-body { display: flex; flex-direction: column; flex: 1; }

.event-date {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 62px;
    background: var(--white);
    border-radius: 12px;
    text-align: center;
    padding: 8px 0 9px;
    box-shadow: var(--sh-2);
    line-height: 1;
}

.event-date b { display: block; font-family: var(--display); font-size: 1.5rem; color: var(--ink); }
.event-date span { font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); }

.event-meta { display: flex; flex-direction: column; gap: 9px; margin: 16px 0 20px; font-size: .89rem; color: var(--muted); }
.event-meta div { display: flex; align-items: flex-start; gap: 9px; }
.event-meta svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--red); }

.event-foot {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.price-from { font-size: .78rem; color: var(--muted-2); }
.price-from b { display: block; font-family: var(--display); font-size: 1.3rem; color: var(--ink); }

/* Featured event banner */
.feature-event {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    background: var(--ink);
    border-radius: var(--r-xl);
    overflow: hidden;
    color: #fff;
    box-shadow: var(--sh-3);
}

.feature-event-img { position: relative; min-height: 380px; }
.feature-event-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-event-body { padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.feature-event-body h2 { color: #fff; }
.feature-event-body .event-meta { color: rgba(255, 255, 255, .72); }
.feature-event-body .event-meta svg { color: var(--gold); }

/* --------------------------------------------------------------- stats */

.stats-band {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.stat { background: var(--white); padding: 34px 24px; text-align: center; }
.stat b { display: block; font-family: var(--display); font-size: clamp(2.1rem, 3.4vw, 3rem); color: var(--red); line-height: 1; }
.stat span { display: block; margin-top: 10px; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
.stat small { display: block; margin-top: 5px; font-size: .8rem; color: var(--muted-2); }

.section-dark .stats-band { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .12); }
.section-dark .stat { background: var(--ink); }
.section-dark .stat b { color: var(--gold-light); }
.section-dark .stat span { color: rgba(255, 255, 255, .72); }
.section-dark .stat small { color: rgba(255, 255, 255, .45); }

/* -------------------------------------------------------------- people */

.person { text-align: center; }

.person-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--r-lg);
    object-fit: cover;
    background: var(--bone-2);
    margin-bottom: 18px;
}

.person-initials {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--r-lg);
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-size: 2.6rem;
    color: var(--red);
    background: linear-gradient(145deg, rgba(200, 16, 46, .1), rgba(201, 162, 39, .14));
    margin-bottom: 18px;
}

.person h4 { margin-bottom: 4px; }
.person .role { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--red); font-weight: 600; }
.person .bio { font-size: .92rem; color: var(--muted); margin-top: 12px; }

/* ------------------------------------------------------------- gallery */

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--r);
    overflow: hidden;
    background: var(--bone-2);
    cursor: zoom-in;
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2, .7, .3, 1); }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 26px 16px 13px;
    font-size: .85rem;
    color: #fff;
    background: linear-gradient(transparent, rgba(13, 13, 16, .82));
    opacity: 0;
    transition: opacity .25s;
}

.gallery-item:hover figcaption { opacity: 1; }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(10, 10, 13, .94);
    display: none;
    place-items: center;
    padding: 32px;
}

.lightbox.is-open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 84vh; object-fit: contain; border-radius: var(--r); }
.lightbox-cap { color: #cfcac3; text-align: center; margin-top: 16px; font-size: .9rem; }

.lightbox-close, .lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
}

.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav.prev { left: 24px; top: 50%; }
.lightbox-nav.next { right: 24px; top: 50%; }
.lightbox-close:hover, .lightbox-nav:hover { background: var(--red); border-color: var(--red); }

/* --------------------------------------------------------------- forms */

.field { margin-bottom: 20px; }

.field label,
.label {
    display: block;
    font-size: .84rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: #3c3a37;
    margin-bottom: 8px;
}

.req { color: var(--red); }

.input, .select, .textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    background: var(--white);
    font: inherit;
    font-size: .98rem;
    color: var(--ink);
    transition: border-color .16s, box-shadow .16s;
}

.input:focus, .select:focus, .textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(200, 16, 46, .1);
}

.textarea { min-height: 130px; resize: vertical; }

.select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b6660' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 42px;
}

.hint { font-size: .82rem; color: var(--muted-2); margin-top: 6px; }
.error { font-size: .84rem; color: var(--red); margin-top: 6px; }
.input.is-error, .select.is-error, .textarea.is-error { border-color: var(--red); }

.checks { display: grid; gap: 11px; }

.check {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: .94rem;
    color: #3c3a37;
    cursor: pointer;
}

.check input { width: 19px; height: 19px; margin: 2px 0 0; accent-color: var(--red); flex: none; }

.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0 20px; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 3.4vw, 42px); }

.form-section + .form-section { margin-top: 36px; padding-top: 34px; border-top: 1px solid var(--line); }
.form-section h3 { font-size: 1.16rem; margin-bottom: 6px; }
.form-section > p { color: var(--muted); font-size: .93rem; margin-bottom: 22px; }

fieldset { border: 0; padding: 0; margin: 0; }
legend { padding: 0; }

/* Honeypot - hidden from people, visible to bots. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ------------------------------------------------------------- notices */

.notice {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 16px 20px;
    border-radius: var(--r);
    font-size: .95rem;
    margin-bottom: 24px;
    border: 1px solid;
}

.notice svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.notice-success { background: #f0fdf4; border-color: #bbf7d0; color: #14532d; }
.notice-error { background: #fef2f2; border-color: #fecaca; color: #7f1d1d; }
.notice-info { background: #f0f7ff; border-color: #bfdbfe; color: #1e3a8a; }
.notice-warn { background: #fffbeb; border-color: #fde68a; color: #78350f; }

/* ------------------------------------------------------------ CTA band */

.cta-band {
    position: relative;
    border-radius: var(--r-xl);
    padding: clamp(44px, 6vw, 76px);
    background: linear-gradient(135deg, var(--red-deep), var(--red) 60%, #b00d26);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(620px 320px at 85% 15%, rgba(201, 162, 39, .3), transparent 60%);
}

.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .84); max-width: 58ch; margin-inline: auto; }

/* -------------------------------------------------------------- footer */

.footer { background: var(--ink); color: #a8a39c; padding-block: 68px 0; font-size: .93rem; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 20px; }
.footer a { color: #a8a39c; transition: color .16s; }
.footer a:hover { color: var(--gold-light); }

.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 44px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }

.footer-brand .brand { margin-bottom: 20px; }
.footer-brand .brand img { height: 56px; }
.footer-brand p { max-width: 38ch; }

.socials { display: flex; gap: 11px; margin-top: 22px; }

.socials a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    display: grid;
    place-items: center;
    transition: background .18s, border-color .18s, transform .18s;
}

.socials a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; }

.newsletter { display: flex; gap: 10px; margin-top: 16px; }
.newsletter .input { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .16); color: #fff; }
.newsletter .input::placeholder { color: #78736d; }

.footer-bottom {
    margin-top: 56px;
    padding-block: 26px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    font-size: .84rem;
    color: #78736d;
}

.footer-bottom-links { display: flex; gap: 22px; }

/* Thin Albanian-flag rule used as a section divider. */
.flag-rule { height: 4px; background: linear-gradient(90deg, var(--red) 0 33%, var(--ink) 33% 66%, var(--gold) 66% 100%); }

/* ------------------------------------------------------------- reveal */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2, .7, .3, 1), transform .7s cubic-bezier(.2, .7, .3, 1); }
.reveal.is-in { opacity: 1; transform: none; }

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

/* --------------------------------------------------------- responsive */

@media (max-width: 1080px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .feature-event { grid-template-columns: 1fr; }
    .feature-event-img { min-height: 260px; }
}

/* Ten menu items plus the badge and the button need room; below this the bar
   would start to crush, so it becomes a burger instead. */
@media (max-width: 1260px) {
    :root { --nav-h: 84px; --nav-h-stuck: 84px; }
    .nav-in { height: 84px; }

    /* Barely breaks the bar on small screens, so it cannot cover the dropdown. */
    .brand img { height: 92px; margin-block: 0 -16px; }

    .nav-toggle { display: grid; }
    .nav-links {
        position: fixed;
        inset: var(--nav-h) 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 18px 24px 26px;
        background: var(--bone);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--sh-2);
        max-height: calc(100vh - var(--nav-h));
        overflow-y: auto;
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        transition: opacity .2s, transform .2s, visibility .2s;
    }
    .nav-links.is-open { opacity: 1; visibility: visible; transform: none; }
    .nav-links a { padding: 13px 14px; font-size: 1rem; }
    .nav-actions .btn { display: none; }
    .nav-links .mobile-cta { display: block; margin-top: 12px; }
    .topbar-links span.hide-sm { display: none; }
}

@media (min-width: 1261px) {
    .nav-links .mobile-cta { display: none; }
}

@media (max-width: 640px) {
    body { font-size: 16px; }
    .wrap, .wrap-narrow { width: calc(100% - 32px); }
    .hero { min-height: auto; }
    .hero-meta { gap: 22px; }
    .hero-meta b { font-size: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .btn { width: 100%; }
    .btn-row { flex-direction: column; }
    .footer-brand .brand img { height: 52px; }
}

/* ---------------------------------------------------------- utilities */

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute; top: -60px; left: 16px; z-index: 999;
    background: var(--red); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 10px;
}

.skip-link:focus { top: 0; }
