/* ==========================================================================
   International Food Festival — core stylesheet
   Character-led, premium, white-based. Red / black / gold accents.
   ========================================================================== */

/* ---- Self-hosted fonts (no CDN — GDPR) ---- */
@font-face {
    font-family: 'Nunito';
    font-style: normal; font-weight: 200 1000; font-display: swap;
    src: url('../fonts/Nunito.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal; font-weight: 100 900; font-display: swap;
    src: url('../fonts/InterVariable.woff2') format('woff2');
}
@font-face {
    font-family: 'Caveat';
    font-style: normal; font-weight: 400 700; font-display: swap;
    src: url('../fonts/Caveat.woff2') format('woff2');
}

/* ---- Tokens ---- */
:root {
    --white: #ffffff;
    --offwhite: #fffdf5;
    --cream: #faf7ef;
    --cream-warm: #fff3d6;
    --red: #e82027;
    --red-deep: #b5121b;
    --black: #111111;
    --ink: #1a1714;
    --gold: #c99a2e;
    --green: #145a47;
    --pink: #f45b7a;

    --font-display: 'Nunito', 'Trebuchet MS', 'Segoe UI', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-hand: 'Caveat', cursive;

    --container: 1200px;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 14px rgba(17,17,17,.08);
    --shadow: 0 12px 34px rgba(17,17,17,.12);
    --shadow-lg: 0 26px 60px -18px rgba(17,17,17,.30);
    --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.02;
    letter-spacing: .005em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ink);
}
h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
em { font-style: normal; color: var(--red); }

.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; left: 1rem; top: -3rem; z-index: 200;
    background: var(--red); color: #fff; padding: .6rem 1rem; border-radius: 8px;
    transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---- Section rhythm: alternate white / cream, dark zones for drama ---- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--cream { background: var(--cream); }
.section--accent { background: var(--cream-warm); }
.section--dark { background: var(--ink); color: #f3efe7; }
.section--dark h2, .section--dark h3 { color: #fff; }

.kicker {
    display: inline-block;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .78rem;
    color: var(--gold);
    margin-bottom: 14px;
}
.kicker--red { color: var(--red); }
.kicker--gold { color: var(--gold); }

.section-head { margin-bottom: 48px; }
.section-head--center { text-align: center; max-width: 720px; margin-inline: auto; }
.section-head__sub { margin-top: 14px; color: #6a635a; font-size: 1.05rem; }
.section--dark .section-head__sub { color: #c9c2b6; }
.section-cta { margin-top: 44px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.lead { font-size: 1.15rem; color: #4a443d; margin-bottom: 22px; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5em;
    font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em;
    font-size: .95rem; padding: 15px 30px; border-radius: 999px;
    transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
    will-change: transform; line-height: 1;
}
.btn--sm { padding: 11px 20px; font-size: .82rem; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px -6px rgba(232,32,39,.6); }
.btn--primary:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #1a1407; }
.btn--gold:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn--outline { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px currentColor; }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--ghost { background: transparent; color: inherit; box-shadow: inset 0 0 0 1px rgba(0,0,0,.25); }
.section--dark .btn--outline { color: #fff; }
.section--dark .btn--outline:hover { background: #fff; color: var(--ink); }

/* ---- Header ---- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(1.2) blur(8px);
    border-bottom: 1px solid rgba(17,17,17,.06);
    transition: box-shadow .3s, padding .3s;
}
.site-header.is-stuck { box-shadow: 0 6px 22px rgba(17,17,17,.08); }
/* Centred-logo split nav: lang | left-nav | LOGO | right-nav | CTA */
.site-header__inner { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; column-gap: 18px; padding-block: 12px; }
.site-header__nav { display: contents; }
.site-header__logo { grid-column: 3; grid-row: 1; justify-self: center; }
.site-header__logo img { height: 66px; width: auto; transition: height .3s; display: block; }
.site-header.is-stuck .site-header__logo img { height: 52px; }
.site-nav--left  { grid-column: 2; grid-row: 1; justify-self: end; }
.site-nav--right { grid-column: 4; grid-row: 1; justify-self: start; }
.site-nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.site-nav__list a, .site-nav__sub-toggle {
    display: inline-flex; align-items: center; gap: 5px; padding: 8px 12px; border-radius: 8px;
    font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em;
    font-weight: 600; font-size: .88rem; color: #2a2620; white-space: nowrap;
    position: relative;
    transition: color .3s var(--ease), background .3s var(--ease), transform .2s var(--ease);
}
.site-nav__sub-toggle { background: none; border: 0; cursor: pointer; line-height: 1; }

/* Micro-animated underline matching IFF branding */
.site-nav__list a::after, .site-nav__sub-toggle::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s cubic-bezier(.25, .8, .25, 1);
}

.site-nav__list a:hover, .site-nav__sub-toggle:hover {
    color: var(--red);
    background: color-mix(in srgb, var(--gold) 14%, transparent);
    transform: translateY(-1px);
}
.site-nav__list a:hover::after, .site-nav__sub-toggle:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Active page states with Gold branding accents */
.site-nav__list a[aria-current="page"], .site-nav__sub-toggle.is-active { 
    color: var(--red); 
}
.site-nav__list a[aria-current="page"]::after, .site-nav__sub-toggle.is-active::after {
    transform: scaleX(1);
    background: var(--gold);
}

/* Dropdown (sub-tab) with tactile elastic animation & glassmorphism */
.has-sub { position: relative; }
.site-nav__caret { font-size: .68em; transition: transform .3s var(--ease); color: #8a8278; }
.has-sub:hover .site-nav__caret, .has-sub:focus-within .site-nav__caret, .has-sub.is-open .site-nav__caret { transform: rotate(180deg); color: var(--red); }
.has-sub::after { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 12px; }
.site-nav__sub {
    position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(14px) scale(0.95);
    min-width: 200px; list-style: none; margin: 0; padding: 8px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(17,17,17,.06); border-radius: 14px;
    box-shadow: 0 18px 48px rgba(17,17,17,.12), 0 4px 12px rgba(17,17,17,.04);
    display: flex; flex-direction: column; gap: 2px;
    opacity: 0; visibility: hidden; pointer-events: none; 
    transition: opacity .3s cubic-bezier(.34, 1.56, .64, 1), transform .3s cubic-bezier(.34, 1.56, .64, 1), visibility .3s; z-index: 120;
}
.has-sub:hover .site-nav__sub, .has-sub:focus-within .site-nav__sub, .has-sub.is-open .site-nav__sub {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0) scale(1);
}
.site-nav__sub a { padding: 9px 12px; border-radius: 8px; font-size: .92rem; white-space: nowrap; transition: background .2s, color .2s, padding-left .2s var(--ease); }
.site-nav__sub a:hover { background: var(--cream); color: var(--red); padding-left: 16px; }

/* Language dropdown with matching tactile transition */
.lang-switch { grid-column: 1; grid-row: 1; justify-self: start; position: relative; font-family: var(--font-display); }
.lang-switch__btn {
    display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 99px;
    background: none; border: 1px solid rgba(17,17,17,.12); cursor: pointer;
    font: inherit; font-size: .8rem; letter-spacing: .04em; color: #2a2620;
    transition: border-color .2s, background .2s, color .2s;
}
.lang-switch__btn:hover { border-color: var(--red); color: var(--red); }
.lang-switch__code { font-weight: 700; }
.lang-switch__caret { font-size: .62em; color: #6a635a; transition: transform .3s var(--ease); }
.lang-switch.is-open .lang-switch__caret { transform: rotate(180deg); color: var(--red); }
.flag--lang { width: 22px; height: auto; border-radius: 3px; box-shadow: 0 0 0 1px rgba(17,17,17,.10); }

.lang-switch__menu {
    position: absolute; top: calc(100% + 8px); left: 0; min-width: 172px;
    list-style: none; margin: 0; padding: 6px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(17,17,17,.08); border-radius: 12px;
    box-shadow: 0 18px 48px rgba(17,17,17,.12);
    opacity: 0; visibility: hidden; transform: translateY(14px) scale(0.95); pointer-events: none;
    transition: opacity .3s cubic-bezier(.34, 1.56, .64, 1), transform .3s cubic-bezier(.34, 1.56, .64, 1), visibility .3s; z-index: 130;
}
.lang-switch.is-open .lang-switch__menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); pointer-events: auto; }
.lang-switch__menu a { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; color: #2a2620; font-size: .88rem; white-space: nowrap; transition: background .2s, color .2s, padding-left .2s var(--ease); }
.lang-switch__menu a:hover { background: var(--cream); color: var(--red); padding-left: 14px; }
.lang-switch__menu a.is-active { background: var(--red); color: #fff; }
.lang-switch__menu a.is-active:hover { background: var(--red-deep); color: #fff; }
.lang-switch__menu a.is-active .flag--lang { box-shadow: 0 0 0 1px rgba(255,255,255,.35); }

.site-header__cta { grid-column: 5; grid-row: 1; justify-self: end; white-space: nowrap; }
.site-nav__toggle { display: none; }

/* ---- Hero slider ---- */
.hero { position: relative; background: var(--offwhite); overflow: hidden; }
.hero__viewport { position: relative; }
.hero__slide {
    position: absolute; inset: 0; opacity: 0; visibility: hidden;
    transform: scale(1.02);
    transition: opacity .7s var(--ease), transform .9s var(--ease), visibility .7s;
}
/* Only the active slide sits in layout flow (defines hero height); the rest
   are absolutely overlaid. Slide 1 is server-rendered .is-active, so no
   collapse before JS runs. */
.hero__slide.is-active { opacity: 1; visibility: visible; transform: none; position: relative; z-index: 1; }
.hero__inner {
    display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 32px;
    min-height: min(82vh, 760px); padding-block: 56px;
}
.hero__copy { max-width: 540px; }
.hero__title { font-size: clamp(2.8rem, 7vw, 5.5rem); margin: 10px 0 16px; }
.hero__title em { color: var(--accent, var(--red)); }
.hero__sub { font-size: 1.2rem; color: #4a443d; margin-bottom: 30px; max-width: 30ch; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__figure { position: relative; display: flex; justify-content: center; align-items: flex-end; align-self: stretch; }
.hero__char {
    position: relative; z-index: 2;
    height: min(72vh, 660px); width: auto; object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(17,17,17,.28));
    animation: heroIn .9s var(--ease) both;
}
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
/* Soft red fabric wave behind character */
.hero__wave {
    position: absolute; z-index: 1; bottom: 6%; left: 50%; translate: -50% 0;
    width: 118%; height: 70%;
    background: radial-gradient(60% 60% at 50% 60%, color-mix(in srgb, var(--accent) 26%, transparent), transparent 70%);
}
.hero__halo {
    position: absolute; z-index: 0; top: 8%; left: 50%; translate: -50% 0;
    width: 62%; aspect-ratio: 1; border-radius: 50%;
    background: var(--accent); opacity: .10; filter: blur(20px);
}

/* Flag garland (bunting) across the top */
.hero__garland {
    position: absolute; top: 0; left: 0; right: 0; height: 26px; z-index: 5;
    background:
        repeating-linear-gradient(135deg,
            var(--red) 0 18px, var(--gold) 18px 36px, var(--green) 36px 54px,
            var(--black) 54px 72px, var(--red-deep) 72px 90px);
    -webkit-mask: repeating-linear-gradient(90deg, #000 0 0) ,
        linear-gradient(#000 0 0);
    -webkit-mask:
        linear-gradient(#000 0 0) top/100% 6px no-repeat,
        repeating-conic-gradient(from -45deg at 50% 0, #000 0deg 90deg, transparent 90deg 180deg) 0 6px / 26px 22px;
    mask:
        linear-gradient(#000 0 0) top/100% 6px no-repeat,
        repeating-conic-gradient(from -45deg at 50% 0, #000 0deg 90deg, transparent 90deg 180deg) 0 6px / 26px 22px;
    opacity: .9;
}

.hero__arrow {
    position: absolute; top: 50%; translate: 0 -50%; z-index: 6;
    width: 46px; height: 46px; border-radius: 50%;
    background: #fff; box-shadow: var(--shadow-sm); color: var(--ink);
    font-size: 1.6rem; line-height: 1; display: grid; place-items: center;
    transition: transform .2s, background .2s, color .2s;
}
.hero__arrow:hover { background: var(--red); color: #fff; }
.hero__arrow--prev { left: 18px; }
.hero__arrow--next { right: 18px; }
.hero__dots { position: absolute; bottom: 22px; left: 50%; translate: -50% 0; z-index: 6; display: flex; gap: 10px; }
.hero__dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(17,17,17,.2); transition: background .2s, width .2s; }
.hero__dot.is-active { background: var(--red); width: 30px; border-radius: 999px; }

/* ---- Split (text + media) ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--center { align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); object-fit: cover; }
.sticker {
    position: absolute; font-family: var(--font-hand); transform: rotate(-6deg);
    background: var(--gold); color: #1a1407; padding: 8px 16px; border-radius: 999px;
    box-shadow: var(--shadow-sm);
}
.sticker--tag { bottom: -16px; left: 24px; }

/* ---- Badges ---- */
.badge { display: inline-block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em;
    font-size: .72rem; padding: 5px 12px; border-radius: 999px; }
.badge--green { background: var(--green); color: #fff; }

/* ---- Event cards ---- */
.event-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.event-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s; display: flex; flex-direction: column; }
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.event-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.event-card:hover .event-card__media img { transform: scale(1.06); }
.event-card__date { position: absolute; top: 14px; left: 14px; background: var(--red); color: #fff;
    font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em;
    padding: 8px 14px; border-radius: 999px; font-size: .82rem; box-shadow: var(--shadow-sm); }
.event-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.event-card__body h3 { margin: 4px 0; }
.event-card__meta { display: flex; flex-direction: column; gap: 6px; color: #5a544c; font-size: .94rem; }
.event-card__actions { margin-top: auto; padding-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
.event-card--ghost { border: 2px dashed rgba(17,17,17,.16); background: transparent; box-shadow: none; }
.event-card__ghost-inner { margin: auto; text-align: center; padding: 40px 24px; display: flex; flex-direction: column; gap: 12px; align-items: center; }

/* ---- Character cards ---- */
.char-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.char-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s; display: flex; flex-direction: column; }
.char-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.char-card__media { position: relative; aspect-ratio: 9/16; overflow: hidden; background: var(--red); }
.char-card__pose { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top;
    transition: opacity .45s var(--ease), transform .6s var(--ease); }
.char-card__pose--2 { opacity: 0; }
/* Default (no 2nd pose yet): a gentle zoom on hover */
.char-card:hover .char-card__pose--1 { transform: scale(1.05); }
/* When a 2nd pose exists: cross-fade to it on hover */
.char-card.has-pose2:hover .char-card__pose--1 { opacity: 0; transform: none; }
.char-card.has-pose2:hover .char-card__pose--2 { opacity: 1; }
.char-card__body { padding: 22px; }
.char-card__theme { font-family: var(--font-hand); color: var(--accent); font-size: .95rem; }
.char-card__body h3 { margin: 4px 0 8px; }
.char-card__body p { color: #5a544c; font-size: .95rem; }
.char-card__more { display: inline-block; margin-top: 14px; font-family: var(--font-display);
    text-transform: uppercase; letter-spacing: .05em; font-size: .82rem; color: var(--accent); }

/* ---- Experience grid (dark) ---- */
.exp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.exp-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius); padding: 28px; transition: transform .3s var(--ease), border-color .3s; }
.exp-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.exp-card__icon { font-size: 2.2rem; display: block; margin-bottom: 12px; }
.exp-card p { color: #c9c2b6; font-size: .95rem; margin-top: 6px; }

/* ---- CTA bands ---- */
.cta-band--vendor { background: linear-gradient(120deg, #fff 0%, var(--cream) 100%); }

/* ---- Partner grid ---- */
.partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.partner-card { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--gold); transition: transform .3s var(--ease); }
.partner-card:hover { transform: translateY(-4px); }
.partner-card p { color: #5a544c; margin-top: 8px; font-size: .96rem; }

/* Partner logo strip (official partners) */
.partner-logos__title { text-align: center; font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 8px; }
.partner-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: clamp(28px, 6vw, 64px); margin-top: 24px; }
.partner-logos__item { display: inline-flex; }
.partner-logos__item img { height: 46px; width: auto; max-width: 180px; object-fit: contain;
    filter: grayscale(1); opacity: .65; transition: filter .25s var(--ease), opacity .25s var(--ease); }
.partner-logos__item:hover img { filter: none; opacity: 1; }

/* ---- Gallery strip ---- */
.gallery-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.gallery-strip__item { aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.gallery-strip__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-strip__item:hover img { transform: scale(1.08); }

/* ---- Newsletter ---- */
.newsletter__form { display: flex; flex-direction: column; gap: 14px; max-width: 480px; }
.newsletter__row { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter__form input[type=email], .newsletter__form input[type=text], .newsletter__form select {
    flex: 1 1 180px; padding: 14px 16px; border-radius: 12px; border: 1px solid rgba(17,17,17,.18); background: #fff; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: #5a544c; }
.consent input { margin-top: 4px; }
.newsletter__social { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: center; }

/* ---- Social icon buttons ---- */
.social-ico { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
    border-radius: 50%; color: var(--ink); background: rgba(17,17,17,.06);
    transition: transform .2s var(--ease), background .2s, color .2s; }
.social-ico svg { width: 20px; height: 20px; display: block; }
.social-ico:hover { color: #fff; background: var(--red); transform: translateY(-3px); }

/* ---- Instagram homepage block ---- */
.ig-feed { max-width: 960px; margin: 0 auto; }
.ig-feed iframe { width: 100%; min-height: 460px; border: 0; border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.ig-cta { display: flex; flex-direction: column; align-items: center; gap: 8px; max-width: 520px; margin: 8px auto 0;
    padding: 40px 28px; border-radius: var(--radius-lg); text-decoration: none; text-align: center; color: #fff;
    background: linear-gradient(135deg, #feda75, #fa7e1e 25%, #d62976 55%, #962fbf 80%, #4f5bd5);
    box-shadow: var(--shadow-lg); transition: transform .3s var(--ease); }
.ig-cta:hover { transform: translateY(-4px); }
.ig-cta__handle { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: clamp(1.4rem, 4vw, 1.9rem); }
.ig-cta__note { font-size: .95rem; opacity: .92; }

/* ---- Footer ---- */
.site-footer { background: var(--ink); color: #cfc8bd; }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr; gap: 36px; padding: 64px 24px 48px; }
.site-footer__logo { height: 76px; margin-bottom: 18px; }
.site-footer__brand p { font-size: .95rem; max-width: 36ch; }
.site-footer__social { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.site-footer__social .social-ico { color: #fff; background: rgba(255,255,255,.10); }
.site-footer__social .social-ico:hover { color: var(--ink); background: var(--gold); transform: translateY(-3px); }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; letter-spacing: .08em; }
.site-footer__col a { display: block; padding: 5px 0; color: #cfc8bd; }
.site-footer__col a:hover { color: var(--gold); }
.site-footer address { font-style: normal; font-size: .92rem; line-height: 1.8; }
.site-footer address a { color: var(--gold); }
.site-footer__bar { border-top: 1px solid rgba(255,255,255,.10); padding: 18px 0; font-size: .85rem; color: #9a9388; }

/* ---- Cookie banner ---- */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 150;
    background: #fff; box-shadow: var(--shadow-lg); border-radius: var(--radius);
    padding: 18px 20px; display: flex; gap: 18px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
/* The display:flex above beats the UA [hidden]{display:none}, so the banner
   could never be dismissed. Restore hidden behaviour explicitly. */
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: .92rem; color: #4a443d; margin: 0; max-width: 60ch; }
.cookie-banner a { color: var(--red); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; }

/* ---- Reveal on scroll ---- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
    .hero__inner { grid-template-columns: 1fr; text-align: center; min-height: auto; padding-block: 70px 40px; gap: 10px; }
    .hero__copy { max-width: none; margin-inline: auto; }
    .hero__sub { margin-inline: auto; }
    .hero__cta { justify-content: center; }
    .hero__char { height: min(52vh, 460px); }
    .split { grid-template-columns: 1fr; gap: 32px; }
    .split__media { order: -1; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

/* Header collapses to a drawer earlier than the rest, so the split nav never wraps. */
@media (max-width: 980px) {
    /* The header's backdrop-filter makes it the containing block for any
       position:fixed descendant — which would collapse the fixed drawer to the
       header's height and clip the menu. Drop the blur on mobile so the drawer
       sizes to the viewport. (Header stays ~92% opaque white, so no visual loss.) */
    .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
    .site-header__inner { display: flex; align-items: center; justify-content: space-between; column-gap: 12px; }
    .site-header__logo { justify-self: auto; }
    .site-header__logo img { height: 46px; }
    .site-header.is-stuck .site-header__logo img { height: 42px; }

    .site-nav__toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; z-index: 110; background: none; border: 0; cursor: pointer; }
    .site-nav__toggle span:not(.sr-only) { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
    .site-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .site-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .site-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Drawer */
    .site-header__nav {
        display: flex; flex-direction: column; align-items: stretch; gap: 4px;
        position: fixed; inset: 0 0 0 22%; background: #fff;
        padding: 86px 26px 28px; box-shadow: var(--shadow-lg);
        transform: translateX(100%); transition: transform .35s var(--ease);
        z-index: 105; overflow-y: auto;
    }
    .site-header__nav.is-open { transform: none; }
    .site-nav--left, .site-nav--right { justify-self: auto; width: 100%; }
    .site-nav__list { flex-direction: column; align-items: stretch; gap: 2px; width: 100%; }
    .site-nav__list > li { width: 100%; }
    .site-nav__list a, .site-nav__sub-toggle { font-size: 1.1rem; padding: 12px 8px; width: 100%; justify-content: flex-start; }

    /* Sub-lists are always expanded inside the drawer (no popover) */
    .has-sub { position: static; }
    .has-sub::after { display: none; }
    .site-nav__caret { display: none; }
    .site-nav__sub {
        position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
        box-shadow: none; border: 0; border-left: 2px solid rgba(17,17,17,.10);
        border-radius: 0; margin: 0 0 6px 12px; padding: 0 0 0 12px; min-width: 0;
    }
    .site-nav__sub a { font-size: 1rem; padding: 10px 8px; }

    .lang-switch { justify-self: auto; position: static; margin-top: 16px; width: 100%; }
    .lang-switch__btn { display: none; }
    .lang-switch__menu { position: static; opacity: 1; visibility: visible; transform: none; pointer-events: auto; box-shadow: none; border: 0; padding: 0; min-width: 0; }
    .lang-switch__menu a { font-size: 1.05rem; padding: 11px 8px; }
    .site-header__cta { display: inline-flex; justify-self: auto; align-self: flex-start; margin-top: 16px; }
}

@media (max-width: 760px) {
    .gallery-strip { grid-template-columns: repeat(2, 1fr); }
    .site-footer__grid { grid-template-columns: 1fr; }
    .hero__arrow { display: none; }
    h2 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
}

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

/* ==========================================================================
   Inner pages
   ========================================================================== */

/* Page hero (inner banner) */
.page-hero { position: relative; background: var(--cream); overflow: hidden;
    padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 64px); border-bottom: 1px solid rgba(17,17,17,.06); }
.page-hero::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 14px;
    background: repeating-linear-gradient(135deg, var(--red) 0 16px, var(--gold) 16px 32px, var(--green) 32px 48px, var(--black) 48px 64px); opacity: .85; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); margin-top: 8px; }
.page-hero__lead { margin-top: 14px; max-width: 60ch; color: #4a443d; font-size: 1.12rem; }
.page-hero--center { text-align: center; }
.page-hero--center .page-hero__lead { margin-inline: auto; }

/* Breadcrumb */
.crumbs { font-size: .85rem; color: #8a8278; }
.crumbs a:hover { color: var(--red); }

/* Gallery */
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.gallery-filters button { padding: 9px 20px; border-radius: 999px; font-family: var(--font-display);
    text-transform: uppercase; font-size: .8rem; letter-spacing: .06em; background: #fff;
    box-shadow: inset 0 0 0 1px rgba(17,17,17,.16); transition: background .2s, color .2s, box-shadow .2s; }
.gallery-filters button:hover { box-shadow: inset 0 0 0 1px var(--red); color: var(--red); }
.gallery-filters button.is-active { background: var(--red); color: #fff; box-shadow: none; }

.gallery-grid { columns: 4 240px; column-gap: 16px; }
.gallery-grid__item { break-inside: avoid; margin-bottom: 16px; display: block; position: relative;
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--cream);
    transition: transform .3s var(--ease), opacity .3s; }
.gallery-grid__item img { width: 100%; display: block; transition: transform .6s var(--ease); }
.gallery-grid__item:hover { transform: translateY(-3px); }
.gallery-grid__item:hover img { transform: scale(1.05); }
.gallery-grid__item[hidden] { display: none; }
.gallery-grid__item::after { content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(17,17,17,.35), transparent 45%); opacity: 0; transition: opacity .3s; }
.gallery-grid__item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(10,8,6,.92);
    display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 18px; right: 22px; color: #fff; font-size: 2.4rem; line-height: 1; }
.lightbox__nav { position: absolute; top: 50%; translate: 0 -50%; color: #fff; font-size: 3rem; padding: 12px;
    opacity: .7; transition: opacity .2s; }
.lightbox__nav:hover { opacity: 1; }
.lightbox__nav--prev { left: 14px; }
.lightbox__nav--next { right: 14px; }

@media (max-width: 980px) { .page-hero__inner { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .gallery-grid { columns: 2 140px; column-gap: 12px; } }

/* ==========================================================================
   Typeform-style form (vendor / partner / contact)
   ========================================================================== */
.tf { position: relative; background: var(--white); }
.tf__progress { position: sticky; top: 0; left: 0; height: 5px; width: 100%; background: rgba(17,17,17,.08); z-index: 5; }
.tf__progress span { display: block; height: 100%; width: 0; background: var(--red); transition: width .4s var(--ease); border-radius: 0 4px 4px 0; }
.tf__viewport { position: relative; min-height: 76vh; display: grid; align-items: center; padding: clamp(32px,6vw,72px) clamp(20px,5vw,32px); overflow: hidden; }
.tf__step {
    grid-area: 1 / 1; width: 100%; max-width: 680px; margin: 0 auto;
    opacity: 0; transform: translateY(40px); pointer-events: none;
    transition: opacity .45s var(--ease), transform .55s var(--ease);
}
.tf__step.is-active { opacity: 1; transform: none; pointer-events: auto; }
.tf__step.is-exit-up { opacity: 0; transform: translateY(-40px); }
.tf__qnum { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display);
    color: var(--red); font-size: .95rem; letter-spacing: .04em; margin-bottom: 10px; }
.tf__question { font-family: var(--font-display); text-transform: none; font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2.4rem); line-height: 1.12; color: var(--ink); overflow-wrap: break-word; }
.tf__question .req { color: var(--red); }
.tf__help { margin-top: 10px; color: #7a7269; font-size: 1rem; }
.tf__control { margin-top: 26px; }
.tf__input, .tf__textarea {
    width: 100%; border: 0; border-bottom: 2px solid rgba(17,17,17,.2); background: transparent;
    font-size: 1.4rem; padding: 8px 2px; color: var(--ink); transition: border-color .2s; font-family: var(--font-body);
}
.tf__textarea { resize: none; min-height: 90px; line-height: 1.5; }
.tf__input:focus, .tf__textarea:focus { outline: none; border-color: var(--red); }
.tf__input::placeholder, .tf__textarea::placeholder { color: #b8b1a7; }

.tf__choices { display: grid; gap: 12px; margin-top: 24px; }
.tf__choice {
    display: flex; align-items: center; gap: 14px; text-align: left; width: 100%;
    padding: 16px 18px; border-radius: 12px; background: #fff; box-shadow: inset 0 0 0 1.5px rgba(17,17,17,.18);
    font-size: 1.1rem; transition: background .15s, box-shadow .15s, transform .1s;
}
.tf__choice:hover { box-shadow: inset 0 0 0 1.5px var(--red); background: var(--cream); }
.tf__choice.is-selected { background: color-mix(in srgb, var(--red) 12%, #fff); box-shadow: inset 0 0 0 2px var(--red); }
.tf__choice kbd { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 6px;
    background: rgba(17,17,17,.08); font-family: var(--font-display); font-size: .85rem; color: var(--ink); }
.tf__choice.is-selected kbd { background: var(--red); color: #fff; }

.tf__file label { display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
    padding: 14px 22px; border-radius: 12px; box-shadow: inset 0 0 0 1.5px rgba(17,17,17,.2);
    font-family: var(--font-display); text-transform: uppercase; font-size: .85rem; letter-spacing: .05em; transition: .2s; }
.tf__file label:hover { box-shadow: inset 0 0 0 1.5px var(--red); color: var(--red); }
.tf__file input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.tf__file-names { margin-top: 12px; color: #7a7269; font-size: .9rem; }

.tf__consent { display: flex; gap: 12px; align-items: flex-start; margin-top: 24px; font-size: 1rem; color: #4a443d; }
.tf__consent input { margin-top: 5px; width: 18px; height: 18px; accent-color: var(--red); }

.tf__actions { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
.tf__ok { background: var(--red); color: #fff; padding: 13px 28px; border-radius: 10px;
    font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; font-size: .95rem;
    transition: background .2s, transform .15s; }
.tf__ok:hover { background: var(--red-deep); transform: translateY(-1px); }
.tf__back { background: transparent; color: #6f6a62; padding: 13px 18px; border-radius: 10px;
    font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; font-size: .82rem;
    border: 1.5px solid rgba(17,17,17,.16); transition: border-color .2s, color .2s, background .2s; }
.tf__back:hover { color: var(--ink); border-color: var(--ink); background: rgba(17,17,17,.04); }
.tf__hint { font-size: .85rem; color: #9a938a; }
.tf__hint kbd { font-family: var(--font-display); background: rgba(17,17,17,.08); padding: 1px 7px; border-radius: 5px; }
.tf__error { color: var(--red-deep); margin-top: 14px; font-size: .92rem; font-weight: 600; min-height: 1.2em; }

.tf__nav { position: sticky; bottom: 18px; float: right; display: flex; gap: 2px; margin: 0 24px 18px 0;
    border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.tf__nav button { width: 44px; height: 40px; background: var(--ink); color: #fff; font-size: 1.1rem; transition: background .2s; }
.tf__nav button:hover { background: var(--red); }
.tf__nav button:disabled { opacity: .4; cursor: default; background: var(--ink); }

.tf__thanks { text-align: center; }
.tf__thanks .tf__check { width: 84px; height: 84px; border-radius: 50%; background: var(--green); color: #fff;
    display: grid; place-items: center; font-size: 2.6rem; margin: 0 auto 24px; }
.tf__welcome .tf__question { font-size: clamp(2rem, 5vw, 3.2rem); }

@media (prefers-reduced-motion: reduce) {
    .tf__step { transition: opacity .2s; transform: none; }
    .tf__step.is-exit-up { transform: none; }
}

/* Notices (form fallback messages) */
.notice { padding: 14px 18px; border-radius: 12px; margin: 24px 0; font-size: .96rem; }
.notice--ok { background: #e7f6ee; color: #13633f; border: 1px solid #b6e2cb; }
.notice--err { background: #fdecec; color: #a01b1b; border: 1px solid #f3c4c4; }

/* Single event */
.event-highlights { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(16px, 4vw, 44px);
    list-style: none; margin: 0 0 28px; padding: 0; }
.event-highlights li { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display);
    text-transform: uppercase; letter-spacing: .03em; font-size: .9rem; color: var(--ink); }
.event-highlights__ico { font-size: 1.5rem; line-height: 1; }
.theme-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }
.theme-card { background: #fff; border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--gold); }
.theme-card__name { font-family: var(--font-display); font-size: 1.05rem; margin: 0; color: var(--ink); }
.theme-card__note { margin: 6px 0 0; color: #5a544c; font-size: .9rem; line-height: 1.45; }
.quick-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: rgba(17,17,17,.08); border-radius: var(--radius); overflow: hidden; }
.quick-info > div { background: #fff; padding: 22px 24px; }
.quick-info dt { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; color: var(--gold); font-size: .72rem; }
.quick-info dd { margin-top: 6px; font-weight: 600; font-size: 1.05rem; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { background: var(--cream-warm); color: var(--ink); padding: 8px 16px; border-radius: 999px; font-size: .92rem; font-weight: 600; }
.ticklist { display: grid; gap: 10px; }
.ticklist li { position: relative; padding-left: 30px; color: #4a443d; }
.ticklist li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--green); color: #fff; font-size: .7rem; display: grid; place-items: center; }
.map-embed iframe { width: 100%; height: 440px; border: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }

/* Per-day program / opening hours */
.program { max-width: 540px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.program li { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 20px; background: #fff; }
.program li + li { border-top: 1px solid rgba(17,17,17,.08); }
.program__day { font-weight: 600; text-transform: capitalize; }
.program__hours { font-family: var(--font-display); letter-spacing: .03em; color: var(--red); white-space: nowrap; }

/* FAQ accordion */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid rgba(17,17,17,.12); }
.faq__q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 0; font-family: var(--font-display); text-transform: uppercase; font-size: 1.05rem; color: var(--ink); }
.faq__q::after { content: "+"; font-size: 1.6rem; color: var(--red); line-height: 1; transition: transform .25s; }
.faq__item.is-open .faq__q::after { content: "−"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq__a p { padding: 0 0 22px; color: #5a544c; }

/* Contact info list */
.contact-info { display: grid; gap: 14px; margin-top: 16px; font-size: 1.05rem; }
.contact-info a { color: var(--ink); }
.contact-info a:hover { color: var(--red); }

/* Generic forms (wall, simple POST forms) */
.form { display: grid; gap: 16px; }
.form--card { background: #fff; padding: clamp(20px, 4vw, 32px); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 600; font-size: .9rem; }
.field input, .field textarea, .field select { padding: 12px 14px; border: 1px solid rgba(17,17,17,.18); border-radius: 12px; background: #fff; width: 100%; font: inherit; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; border-color: var(--red); }
.field textarea { resize: vertical; min-height: 90px; }

/* Taste Wall */
.wall-grid { columns: 3 280px; column-gap: 20px; }
.wall-card { break-inside: avoid; margin: 0 0 20px; background: #fff; border-radius: var(--radius-lg); padding: 24px;
    box-shadow: var(--shadow-sm); border-top: 4px solid var(--gold); }
.wall-card:nth-child(3n+1) { border-top-color: var(--red); }
.wall-card:nth-child(3n+2) { border-top-color: var(--green); }
.wall-card blockquote { font-size: 1.05rem; line-height: 1.55; color: var(--ink); }
.wall-card figcaption { margin-top: 14px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; font-size: .9rem; color: #6a635a; }
.wall-card figcaption strong { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; color: var(--ink); }
.wall-card__city { color: var(--red); }
@media (max-width: 600px) { .wall-grid { columns: 1; } }

/* ===== Festival menu (dishes, grouped by brand) ===== */
.menu-nav { position: sticky; top: 58px; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(17,17,17,.08); }
.menu-nav__inner { position: relative; max-width: var(--container); margin: 0 auto; }
.menu-nav__track { display: flex; gap: 8px; overflow-x: auto; padding: 12px 20px; -webkit-overflow-scrolling: touch; scrollbar-width: none; scroll-behavior: smooth; }
.menu-nav__track::-webkit-scrollbar { display: none; }
.menu-nav__track a { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; padding: 8px 14px; border-radius: 999px; background: var(--cream);
    font-family: var(--font-display); text-transform: uppercase; font-size: .76rem; letter-spacing: .03em; color: var(--ink);
    box-shadow: inset 0 0 0 1px rgba(17,17,17,.1); transition: background .2s, color .2s, box-shadow .2s; }
.menu-nav__track a:hover { background: var(--red); color: #fff; box-shadow: none; }
/* Brand logo inside a chip (replaces the text name) */
.menu-nav__logo { height: 22px; width: auto; max-width: 132px; object-fit: contain; display: block; }
.menu-nav__track a.has-logo { padding: 6px 14px; background: #fff; box-shadow: inset 0 0 0 1px rgba(17,17,17,.08); }
.menu-nav__track a.has-logo:hover { background: #fff; box-shadow: 0 4px 14px rgba(17,17,17,.16); }
/* Scroll affordance arrows */
.menu-nav__arrow { position: absolute; top: 0; bottom: 0; width: 46px; display: flex; align-items: center; justify-content: center;
    border: 0; cursor: pointer; z-index: 2; color: var(--ink); font-size: 1.7rem; line-height: 1; padding: 0; }
.menu-nav__arrow--prev { left: 0; justify-content: flex-start; padding-left: 8px; background: linear-gradient(90deg, rgba(255,255,255,.99) 55%, rgba(255,255,255,0)); }
.menu-nav__arrow--next { right: 0; justify-content: flex-end; padding-right: 8px; background: linear-gradient(270deg, rgba(255,255,255,.99) 55%, rgba(255,255,255,0)); }
.menu-nav__arrow:hover { color: var(--red); }
.menu-nav__arrow[hidden] { display: none; }

.brand-block { padding: 40px 0; border-bottom: 1px dashed rgba(17,17,17,.12); scroll-margin-top: 120px; }
.brand-block:last-child { border-bottom: 0; }
.brand-block__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px;
    border-left: 5px solid var(--a, var(--red)); padding-left: 14px; }
.brand-block__flag { font-size: 1.6rem; }
.brand-block__name { font-size: clamp(1.4rem, 4vw, 2rem); margin: 0; line-height: 1; }
.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    box-shadow: 0 6px 18px rgba(0,0,0,.13);
}
.brand-logo img {
    height: 52px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}
.brand-logo--invert {
    background: var(--ink);
    border-color: rgba(255,255,255,.14);
    box-shadow: 0 6px 18px rgba(0,0,0,.30);
}
@media (max-width: 600px) {
    .brand-logo {
        padding: 8px 12px;
        border-radius: 12px;
    }
    .brand-logo img {
        height: 42px;
    }
}
.brand-block__amb { margin-left: auto; font-family: var(--font-display); text-transform: uppercase; font-size: .78rem; letter-spacing: .04em; color: var(--a, var(--red)); }

.menu-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 560px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }

.menu-item { display: flex; flex-direction: column; background: #fff; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); }
.menu-item__img { position: relative; aspect-ratio: 4/5; overflow: hidden;
    background: linear-gradient(140deg, color-mix(in srgb, var(--a, #ccc) 22%, #fff), #fff); display: grid; place-items: center; }
.menu-item__img img { width: 100%; height: 100%; object-fit: cover; }
.menu-item__ph { font-size: 3rem; opacity: .5; filter: grayscale(.1); }
.menu-item__body { padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.menu-item__name { font-size: 1.05rem; line-height: 1.2; margin: 0; }

/* Per-dish story (ingredients & origin) — native <details>, no JS */
.menu-item__story { font-size: .9rem; }
.menu-item__story summary { cursor: pointer; list-style: none; color: var(--a, var(--red));
    font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; font-size: .72rem; display: inline-flex; align-items: center; gap: 6px; }
.menu-item__story summary::-webkit-details-marker { display: none; }
.menu-item__story summary::after { content: "▾"; transition: transform .2s; }
.menu-item__story[open] summary::after { transform: rotate(180deg); }
.menu-item__story p { margin-top: 8px; color: #5a544c; line-height: 1.5; }

/* Recommendation buttons */
.rec { display: flex; gap: 10px; margin-top: auto; }
.rec__btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: 999px;
    font-weight: 700; font-size: .92rem; background: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(17,17,17,.14);
    transition: background .15s, box-shadow .15s, transform .1s; }
.rec__btn:active { transform: scale(.95); }
.rec__up:hover { box-shadow: inset 0 0 0 1.5px var(--green); }
.rec__down:hover { box-shadow: inset 0 0 0 1.5px var(--red); }
.rec.is-voted .rec__btn { cursor: default; opacity: .55; box-shadow: inset 0 0 0 1.5px rgba(17,17,17,.12); }
.rec.voted-up .rec__up { opacity: 1; background: color-mix(in srgb, var(--green) 16%, #fff); box-shadow: inset 0 0 0 2px var(--green); color: var(--green); }
.rec.voted-down .rec__down { opacity: 1; background: color-mix(in srgb, var(--red) 12%, #fff); box-shadow: inset 0 0 0 2px var(--red); color: var(--red-deep); }

/* Flag badge on dish frames + clickable name */
.menu-item__medialink { display: block; }
.menu-item__flag { position: absolute; top: 8px; left: 8px; z-index: 2; font-size: 1.05rem; line-height: 1;
    background: rgba(255,255,255,.92); border-radius: 9px; padding: 4px 8px; box-shadow: var(--shadow-sm); }
a.menu-item__name { display: block; color: var(--ink); transition: color .2s; }
a.menu-item__name:hover { color: var(--a, var(--red)); }
.menu-item__types { align-self: flex-start; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em;
    font-size: .66rem; color: var(--a, var(--red)); background: color-mix(in srgb, var(--a, #ccc) 13%, #fff);
    padding: 3px 9px; border-radius: 999px; }

/* Flag icons */
.flag { display: inline-block; vertical-align: middle; height: 14px; width: auto; border-radius: 2px; }
.flag--nav { height: 13px; margin-right: 4px; }
.menu-item__flag { padding: 3px 5px; display: flex; gap: 4px; align-items: center; }
.menu-item__flag .flag { display: block; height: 16px; border-radius: 3px; }
.brand-block__flag .flag { height: 22px; border-radius: 3px; }
.dish-figure__flag .flag { display: block; height: 26px; border-radius: 3px; }

/* Dish detail page */
.dish-hero { background: var(--cream); padding: clamp(36px, 6vw, 64px) 0 clamp(28px, 4vw, 48px); border-bottom: 1px solid rgba(17,17,17,.06); }
.dish-hero__grid { display: grid; grid-template-columns: 340px 1fr; gap: 36px; align-items: center; margin-top: 16px; }
.dish-figure { position: relative; margin: 0; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
    background: linear-gradient(140deg, color-mix(in srgb, var(--a, #ccc) 24%, #fff), #fff); display: grid; place-items: center; box-shadow: var(--shadow); }
.dish-figure img { width: 100%; height: 100%; object-fit: cover; }
.dish-figure__flag { top: 12px; left: 12px; font-size: 1.5rem; }
.dish-origin { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; color: var(--a, var(--red)); margin: 8px 0 2px; font-size: .95rem; }
.rec--lg { margin-top: 22px; }
.rec--lg .rec__btn { padding: 12px 20px; font-size: 1rem; }
@media (max-width: 680px) { .dish-hero__grid { grid-template-columns: 1fr; } .dish-figure { max-width: 280px; margin-inline: auto; } }
.dish-hero .dish-origin { color: var(--c, var(--a)); }
.dish-figure { box-shadow: 0 0 0 5px color-mix(in srgb, var(--c, #ccc) 22%, #fff), var(--shadow); }

/* Country motif backgrounds (faint, themed by --c) */
.motif { position: relative; background-color: var(--cream); }
.motif--dots { background-image: radial-gradient(color-mix(in srgb, var(--c, #999) 14%, transparent) 1.6px, transparent 1.7px); background-size: 18px 18px; }
.motif--tiles { background-image:
    repeating-linear-gradient(45deg, color-mix(in srgb, var(--c, #999) 10%, transparent) 0 2px, transparent 2px 15px),
    repeating-linear-gradient(-45deg, color-mix(in srgb, var(--c, #999) 10%, transparent) 0 2px, transparent 2px 15px); }
.motif--lattice { background-image:
    repeating-linear-gradient(0deg, color-mix(in srgb, var(--c, #999) 11%, transparent) 0 2px, transparent 2px 22px),
    repeating-linear-gradient(90deg, color-mix(in srgb, var(--c, #999) 11%, transparent) 0 2px, transparent 2px 22px); }
.motif--waves { background-image: radial-gradient(circle at 50% 100%, transparent 8px, color-mix(in srgb, var(--c, #999) 13%, transparent) 9px 10px, transparent 11px); background-size: 26px 13px; }
.motif--key { background-image:
    repeating-linear-gradient(0deg, color-mix(in srgb, var(--c, #999) 10%, transparent) 0 8px, transparent 8px 16px),
    repeating-linear-gradient(90deg, color-mix(in srgb, var(--c, #999) 10%, transparent) 0 8px, transparent 8px 16px); background-size: 16px 16px; }
.section.motif { background-color: #fff; }
.section.motif--dots, .section.motif--tiles, .section.motif--lattice, .section.motif--waves, .section.motif--key { background-color: var(--cream); }

/* Variant photo grid */
.variants { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 16px; position: relative; }
.variant { margin: 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease); }
.variant:hover { transform: translateY(-3px); }
.variant__img { aspect-ratio: 4/5; background: linear-gradient(140deg, color-mix(in srgb, var(--a, #ccc) 18%, #fff), #fff); display: grid; place-items: center; }
.variant__img img { width: 100%; height: 100%; object-fit: cover; }
.variant__ph { font-size: 1.9rem; opacity: .4; }
.variant figcaption { padding: 10px 12px; font-weight: 600; font-size: .9rem; text-align: center; color: var(--ink); }

/* Legal prose */
.prose { max-width: 800px; margin-inline: auto; }
.prose h2 { font-size: 1.5rem; margin: 32px 0 12px; }
.prose p { color: #4a443d; margin-bottom: 12px; }

/* ---- Ambassador & Culture Showcase ---- */
.culture-showcase {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    margin-bottom: 40px;
    padding: 32px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid color-mix(in srgb, var(--a, var(--red)) 15%, rgba(17, 17, 17, 0.05));
    box-shadow: var(--shadow-sm);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.culture-showcase:hover {
    box-shadow: var(--shadow);
    border-color: color-mix(in srgb, var(--a, var(--red)) 30%, rgba(17, 17, 17, 0.08));
}

.culture-showcase__ambassador {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.culture-showcase__avatar-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle, color-mix(in srgb, var(--a, var(--red)) 25%, transparent) 0%, transparent 70%);
    border: 4px solid var(--white);
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.1);
    transition: transform 0.4s var(--ease);
    will-change: transform;
}

.culture-showcase__avatar-wrap:hover {
    transform: scale(1.05) rotate(2deg);
}

.culture-showcase__avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.culture-showcase__quote-bubble {
    position: relative;
    background: var(--offwhite);
    border: 1px solid rgba(17, 17, 17, 0.06);
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(17, 17, 17, 0.02);
    transform: rotate(-1deg);
    max-width: 100%;
}

.culture-showcase__quote-bubble::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent rgba(17, 17, 17, 0.06) transparent;
}

.culture-showcase__quote {
    font-family: var(--font-hand);
    font-size: 1.15rem;
    line-height: 1.35;
    color: var(--a, var(--red-deep));
    margin-bottom: 6px;
}

.culture-showcase__signature {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #6a635a;
}

.culture-showcase__narrative {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    border-left: 1px solid rgba(17, 17, 17, 0.08);
    padding-left: 32px;
}

.culture-showcase__kicker {
    display: inline-block;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    color: var(--gold);
}

.culture-showcase__title {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--ink);
    line-height: 1.1;
    margin: 0;
}

.culture-showcase__history {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #4a443d;
}

/* Responsive Showcase adjustments */
@media (max-width: 768px) {
    .culture-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
        margin-bottom: 28px;
    }
    
    .culture-showcase__narrative {
        border-left: 0;
        border-top: 1px solid rgba(17, 17, 17, 0.08);
        padding-left: 0;
        padding-top: 24px;
        text-align: center;
    }
    
    .culture-showcase__avatar-wrap {
        width: 120px;
        height: 120px;
    }
    
    .culture-showcase__quote-bubble {
        max-width: 320px;
        margin-inline: auto;
    }
}

/* Multiple Ambassadors Showcase layout */
.culture-showcase--multiple {
    grid-template-columns: 1fr;
    gap: 32px;
}

.culture-showcase__ambassadors {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    width: 100%;
}

.culture-showcase--multiple .culture-showcase__ambassador {
    flex: 1 1 250px;
    max-width: 320px;
}

.culture-showcase--multiple .culture-showcase__narrative {
    border-left: 0;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    padding-left: 0;
    padding-top: 24px;
    text-align: center;
}

/* ===== Rich dish page (tagline, ritual, timeline, facts) ===== */
.dish-tagline-band { padding: 52px 0; text-align: center;
    background: linear-gradient(180deg, color-mix(in srgb, var(--c, var(--a)) 9%, #fff), #fff); }
.dish-tagline { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .015em;
    font-size: clamp(1.5rem, 4.6vw, 2.7rem); line-height: 1.12; max-width: 20ch; margin: 0 auto; color: var(--ink); }

.ritual { list-style: none; margin: 0 auto; padding: 0; display: grid; gap: 16px; max-width: 760px; }
.ritual__step { display: flex; gap: 18px; align-items: flex-start; background: #fff; border-radius: var(--radius-lg);
    padding: 20px 22px; box-shadow: var(--shadow-sm); }
.ritual__num { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
    background: var(--a, var(--red)); color: #fff; font-family: var(--font-display); font-size: 1.3rem; }
.ritual__text h3 { margin: 6px 0 5px; font-size: 1.1rem; }
.ritual__text p { color: #5a544c; font-size: .96rem; margin: 0; }

.timeline { list-style: none; margin: 0 auto; padding: 0; max-width: 760px; position: relative; }
.timeline::before { content: ""; position: absolute; left: 18px; top: 6px; bottom: 6px; width: 2px;
    background: color-mix(in srgb, var(--a, var(--red)) 35%, #e7e0d4); }
.timeline__item { position: relative; padding: 0 0 30px 58px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before { content: ""; position: absolute; left: 11px; top: 5px; width: 16px; height: 16px;
    border-radius: 50%; background: var(--a, var(--red)); box-shadow: 0 0 0 4px color-mix(in srgb, var(--a, var(--red)) 18%, #fff); }
.timeline__year { font-family: var(--font-display); color: var(--a, var(--red)); font-size: 1.35rem; letter-spacing: .02em; }
.timeline__card h3 { margin: 2px 0 5px; font-size: 1.12rem; }
.timeline__card p { color: #5a544c; font-size: .96rem; margin: 0; }

.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.fact { background: #fff; border-radius: var(--radius-lg); padding: 26px 22px; box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--a, var(--red)); text-align: center; }
.fact__icon { font-size: 2.3rem; display: block; margin-bottom: 8px; line-height: 1; }
.fact h3 { margin: 0 0 6px; font-size: 1.05rem; }
.fact p { color: #5a544c; font-size: .94rem; margin: 0; }

/* ===== Brand Logo Marquee Ticker Slider ===== */
.logo-ticker {
    display: flex;
    overflow: hidden;
    user-select: none;
    position: relative;
    width: 100%;
}
.logo-ticker::before, .logo-ticker::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.logo-ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--cream) 0%, transparent 100%);
}
.logo-ticker::after {
    right: 0;
    background: linear-gradient(270deg, var(--cream) 0%, transparent 100%);
}
.logo-ticker__track {
    display: flex;
    gap: 56px;
    width: max-content;
    animation: tickerMarquee 35s linear infinite;
}
.logo-ticker:hover .logo-ticker__track {
    animation-play-state: paused;
}
.logo-ticker__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 96px;
    width: 190px;
}
.logo-ticker__img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.65;
    transition: opacity .3s var(--ease), filter .3s var(--ease), transform .3s var(--ease);
}
.logo-ticker__item:hover .logo-ticker__img {
    opacity: 1;
    transform: scale(1.05);
}
.logo-ticker__img--invert {
    filter: invert(1) brightness(0.15);
}

/* Ottomańska Pokusa — a detailed, square-ish logo: render it bigger & bolder everywhere */
.menu-nav__logo.is-otto { height: 34px; max-width: 175px; }
.logo-ticker__img.is-otto { opacity: .95; }
.brand-logo--otto img { height: 74px; }
@media (max-width: 600px) { .brand-logo--otto img { height: 58px; } }

@keyframes tickerMarquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ===== Desktop Premium Floating & Animated Header Logo ===== */
@media (min-width: 981px) {
    .site-header__logo {
        grid-column: 3;
        grid-row: 1;
        justify-self: center;
        transition: transform .35s cubic-bezier(.16, 1, .3, 1);
    }
    .site-header__logo img {
        height: 66px !important;
        width: auto;
        display: block;
        transition: height .35s cubic-bezier(.16, 1, .3, 1);
    }
    .site-header__logo:hover {
        transform: scale(1.04);
    }
    .site-header.is-stuck .site-header__logo img {
        height: 50px !important;
    }
}

/* ---- Flavours of the world map ---- */
.section--map { background: linear-gradient(180deg, var(--offwhite), var(--cream)); }
.worldmap { max-width: 1000px; margin: 4px auto 0; }
.worldmap__stage { position: relative; aspect-ratio: 1000 / 500; border-radius: var(--radius-lg);
    background: radial-gradient(130% 120% at 50% 0%, #eef4f5, #e0ebee 55%, #d6e4ea); box-shadow: var(--shadow); }
.worldmap__svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.worldmap__land { fill: #c9b189; opacity: .6; }
.worldmap__arcs { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.worldmap__arcs path { fill: none; stroke: var(--red); stroke-width: 1.6; opacity: .4; stroke-linecap: round; }

.worldmap__hub { position: absolute; transform: translate(-50%, -50%); z-index: 3; color: var(--gold);
    font-size: 1rem; filter: drop-shadow(0 1px 2px rgba(17,17,17,.4)); pointer-events: none; }
.worldmap__hub::after { content: 'PL'; position: absolute; left: 50%; top: 130%; transform: translateX(-50%);
    font-family: var(--font-display); font-size: .6rem; letter-spacing: .08em; color: var(--ink); background: rgba(255,255,255,.85);
    padding: 1px 5px; border-radius: 6px; }

.worldmap__pin { position: absolute; transform: translate(-50%, -50%); width: 26px; height: 26px;
    padding: 0; border: 0; background: none; cursor: pointer; z-index: 2; }
.worldmap__ring { position: absolute; inset: 0; border-radius: 50%; background: var(--red); transition: transform .2s; }
.worldmap__ring::after { content: ''; position: absolute; inset: 0; border-radius: 50%;
    box-shadow: 0 0 0 2px var(--red); animation: wm-pulse 2.6s ease-out infinite; }
@keyframes wm-pulse { 0% { transform: scale(1); opacity: .65 } 70%, 100% { transform: scale(2.6); opacity: 0 } }
.worldmap__flag { position: absolute; inset: 3px; border-radius: 50%; overflow: hidden; display: grid; place-items: center; box-shadow: 0 1px 4px rgba(17,17,17,.25); }
.worldmap__flag .flag { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.worldmap__pin:hover, .worldmap__pin.is-active { z-index: 4; }
.worldmap__pin:hover .worldmap__ring, .worldmap__pin.is-active .worldmap__ring { transform: scale(1.3); }
.worldmap__pin:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; border-radius: 50%; }

.worldmap__pop { position: absolute; z-index: 6; width: 208px; transform: translate(-50%, calc(-100% - 20px));
    background: #fff; border-radius: 14px; box-shadow: 0 16px 44px rgba(17,17,17,.24); padding: 12px 14px;
    pointer-events: none; opacity: 0; transition: opacity .15s; text-align: left; }
.worldmap__pop.is-open { opacity: 1; pointer-events: auto; }
.worldmap__pop::after { content: ''; position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%) rotate(45deg);
    width: 13px; height: 13px; background: #fff; }
.worldmap__pop-char { position: absolute; top: -38px; right: 6px; width: 58px; height: 58px; object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(17,17,17,.25)); }
.worldmap__pop-flag .flag { width: 26px; height: 18px; border-radius: 3px; vertical-align: middle; box-shadow: 0 0 0 1px rgba(17,17,17,.1); }
.worldmap__pop-name { display: block; font-family: var(--font-display); font-size: 1.1rem; margin-top: 5px; color: var(--ink); }
.worldmap__pop-find { display: block; color: #6f6a62; font-size: .85rem; margin: 2px 0 9px; }
.worldmap__pop-link { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: .76rem; color: var(--red); }
.worldmap__pop-link:hover { color: var(--red-deep); }

.worldmap__hint { text-align: center; color: #9a938a; font-size: .82rem; margin-top: 14px; }
.worldmap__list { display: none; }

@media (max-width: 760px) {
    .worldmap__stage, .worldmap__hint { display: none; }
    .worldmap__list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; list-style: none; padding: 0; margin: 6px 0 0; }
    .worldmap__list a { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 12px;
        background: #fff; box-shadow: var(--shadow-sm); text-decoration: none; color: var(--ink); border-left: 4px solid var(--a, var(--red)); }
    .worldmap__list-flag .flag { width: 30px; height: 21px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(17,17,17,.1); }
    .worldmap__list-text strong { display: block; font-family: var(--font-display); font-size: .9rem; }
    .worldmap__list-text span { display: block; color: #6f6a62; font-size: .74rem; }
}
