/*
Theme Name: Elysioom
Theme URI: https://elysioom.sopee.net
Description: Custom bilingual theme designed to match the Elysioom Canva layouts.
Author: Sopee
Version: 2.0.1
Text Domain: elysioom
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;500&family=Space+Grotesk:wght@300;400;500;600&display=swap');

:root {
  --bg-dark: #1f2933;
  --bg-soft: #e8e8e8;
  --text-main: #252c33;
  --text-muted: #4e565e;
  --line-light: rgba(255, 255, 255, 0.65);
  --line-dark: rgba(37, 44, 51, 0.3);
  --radius-pill: 999px;
  --site-width: 1720px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: 'Space Grotesk', sans-serif; background: #fff; color: var(--text-main); line-height: 1.75; }
a { color: inherit; text-decoration: none; }
.site-shell { min-height: 100vh; }
.site-main { display: block; }
.site-limit { width: min(100%, var(--site-width)); margin: 0 auto; padding: 0 34px; }

#wpadminbar {
  background: rgba(20, 24, 29, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

body.admin-bar .site-header { top: 32px; }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 40; border-bottom: 1px solid var(--line-light); overflow: visible; }
.site-header::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(12,12,12,.45), rgba(12,12,12,.1)); backdrop-filter: blur(1px); }
.site-header__inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 22px; position: relative; overflow: visible; }
.site-brand { display: inline-flex; align-items: center; }
.site-logo { width: 220px; max-width: 100%; height: auto; display: block; }
.site-header__nav { display: flex; align-items: center; gap: 16px; }
.site-nav ul { list-style: none; display: flex; align-items: center; gap: 16px; margin: 0; padding: 0; }
.site-nav .menu { position: relative; }
.site-nav a { color: #fff; font-family: 'Roboto Mono', monospace; font-size: 13px; letter-spacing: .07em; text-transform: uppercase; }
.site-nav li { position: relative; }
.language-switcher { display: flex; gap: 6px; }
.lang-pill {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.lang-pill:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.78); transform: translateY(-1px); }
.lang-pill.is-active { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.88); color: #fff; }
.site-nav li::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 1px; background: transparent; transition: background .25s ease; }
.site-nav li:hover::after, .site-nav li.current-menu-item::after, .site-nav li.current-menu-ancestor::after { background: var(--line-light); }
.site-nav .menu > li { padding-bottom: 0; margin-bottom: 0; }
.site-nav .menu > .menu-item-has-children > a { padding-right: 14px; }
.site-nav .menu > .menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.85);
  transform: translateY(-60%) rotate(45deg);
}
.site-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: none;
  width: max-content;
  min-width: 0;
  max-width: min(520px, calc(100vw - 56px));
  display: none;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(196, 170, 142, .24);
  border-radius: 8px;
  background: rgba(74, 59, 47, .74);
  backdrop-filter: blur(5px);
  z-index: 60;
}
.site-nav .sub-menu li { width: auto; display: inline-flex; align-items: center; gap: 8px; }
.site-nav .sub-menu li::before {
  content: "·";
  color: rgba(255,255,255,.8);
  font-size: 14px;
  line-height: 1;
}
.site-nav .sub-menu li::after { display: none; }
.site-nav .sub-menu a {
  display: inline-flex;
  width: auto;
  padding: 0;
  font-size: 12px;
  letter-spacing: .075em;
  line-height: 1.35;
  text-align: left;
  border: 0;
  border-radius: 0;
  white-space: nowrap;
  opacity: .9;
}
.site-nav .sub-menu a:hover,
.site-nav .sub-menu .current-menu-item > a {
  background: transparent;
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.site-nav .menu > li.menu-item-has-children:hover > .sub-menu,
.site-nav .menu > li.menu-item-has-children:focus-within > .sub-menu {
  display: flex;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(20,24,30,.45);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}
.menu-toggle span {
  width: 18px;
  height: 1.5px;
  background: #fff;
  display: block;
}

.hero { min-height: 100vh; position: relative; background-color: #2a2f35; background-image: var(--hero-image); background-size: cover; background-position: center; display: flex; align-items: flex-end; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.38), rgba(0,0,0,.53)); }
.hero-content { position: relative; z-index: 2; color: #fff; width: 100%; padding-bottom: 78px; }
.hero h1 { margin: 0; font-weight: 400; letter-spacing: .09em; line-height: 1.2; font-size: clamp(36px, 3.2vw, 70px); max-width: 980px; text-transform: none; }
.hero-subline { margin-top: 18px; max-width: 980px; color: rgba(255,255,255,.95); font-family: 'Roboto Mono', monospace; font-size: clamp(13px,.88vw,17px); letter-spacing: .2em; text-transform: uppercase; }

.hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 30px;
}

.hero-row__left {
  border-bottom: 1px solid rgba(255,255,255,.62);
  padding-bottom: 20px;
}

.hero-row__right {
  padding-bottom: 8px;
}

.outline-button { margin-top: 28px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border: 1px solid rgba(255,255,255,.85); border-radius: var(--radius-pill); color: #fff; padding: 14px 40px; text-transform: uppercase; letter-spacing: .18em; font-family: 'Roboto Mono', monospace; font-size: clamp(13px, .92vw, 17px); transition: background .25s ease, transform .25s ease; }
.outline-button:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.outline-button.is-small { padding: 12px 24px; width: 100%; }
.button-arrow { font-size: 1.42em; line-height: 1; }

.dark-grid { background: var(--bg-dark); padding: 74px 0; }
.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.feature-card { min-height: 620px; border: 1px solid rgba(255,255,255,.28); position: relative; overflow: hidden; display: flex; align-items: flex-end; background: #1b1f25; }
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--card-image);
  background-size: cover;
  background-position: center;
  filter: grayscale(1) saturate(.8);
  transition: transform .45s ease, filter .45s ease;
}
.feature-card:hover::before,
.feature-card:focus-within::before {
  transform: scale(1.04);
  filter: grayscale(0) saturate(1);
}
.feature-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.18) 55%); }
.feature-card__body { position: relative; z-index: 2; color: #fff; width: 100%; padding: 28px; }
.feature-card h3 { margin: 0 0 14px; font-size: clamp(28px, 2vw, 42px); line-height: 1.2; font-weight: 400; letter-spacing: .03em; }
.feature-card p { margin: 0 0 20px; color: rgba(255,255,255,.9); font-family: 'Roboto Mono', monospace; letter-spacing: .05em; font-size: 15px; }

.split { padding: 0; }
.split__inner { display: grid; grid-template-columns: 1fr 1fr; min-height: min(48vw, 900px); }
.split__inner--reverse .split__copy { order: 2; }
.split__inner--reverse .split__media { order: 1; }
.split__copy { background: var(--bg-soft); padding: clamp(44px, 5vw, 118px); display: flex; flex-direction: column; justify-content: center; }
.split__copy--wide { grid-column: 1 / -1; }
.split__copy h2 { margin: 0 0 30px; font-size: clamp(34px, 3vw, 56px); font-weight: 400; line-height: 1.3; letter-spacing: .12em; }
.split__copy p { margin: 0; color: var(--text-muted); font-family: 'Roboto Mono', monospace; font-size: clamp(14px, .95vw, 19px); line-height: 1.95; letter-spacing: .08em; }
.copy-list { margin: 30px 0 0; padding: 0; list-style: none; }
.copy-list li { position: relative; padding-left: 20px; margin-top: 12px; font-family: 'Roboto Mono', monospace; letter-spacing: .08em; color: var(--text-main); }
.copy-list li::before { content: "-"; position: absolute; left: 0; }
.split__media { min-height: 400px; }
.split__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-dark .split__copy { background: var(--bg-dark); }
.split-dark .split__copy h2 { color: rgba(255,255,255,.95); }
.split-dark .split__copy p, .split-dark .copy-list li { color: rgba(255,255,255,.86); }
.inline-cta { margin-top: 42px; text-align: right; }
.inline-cta a { font-family: 'Roboto Mono', monospace; text-transform: uppercase; letter-spacing: .2em; font-size: 13px; color: var(--text-main); }
.inline-cta span { font-size: 1.4em; position: relative; top: 2px; }
.split-dark .inline-cta a { color: rgba(255,255,255,.92); }
.section-title { margin: 0 0 28px; letter-spacing: .06em; font-size: clamp(34px, 2.8vw, 56px); font-weight: 400; }
.section-title--light { color: #fff; }
.entry-content p { margin-top: 14px; }

/* Optional page templates */
.layout-immersive .hero-inner { min-height: 92vh; }
.layout-immersive .hero-overlay { background: linear-gradient(to bottom, rgba(5,8,12,.2), rgba(5,8,12,.62)); }
.layout-immersive .split__copy { background: rgba(232,232,232,.96); }

.layout-showcase .split__inner { min-height: min(42vw, 760px); }
.layout-showcase .split__copy h2 { letter-spacing: .08em; }
.layout-showcase .split-dark .split__copy { background: #1a232d; }

.layout-atelier .hero-inner { min-height: 88vh; background-position: center 25%; }
.layout-atelier .hero-overlay { background: linear-gradient(to bottom, rgba(10,12,15,.4), rgba(10,12,15,.78)); }
.layout-atelier .split__copy { background: #202a34; color: rgba(255,255,255,.92); }
.layout-atelier .split__copy p,
.layout-atelier .copy-list li { color: rgba(255,255,255,.84); }

.checker-intro { padding: 96px 0 54px; background: #f1efeb; }
.checker-intro__inner { max-width: 980px; }
.checker-intro__eyebrow { margin: 0 0 14px; font-family: 'Roboto Mono', monospace; letter-spacing: .22em; text-transform: uppercase; font-size: 12px; color: var(--text-muted); }
.checker-intro__title { margin: 0 0 18px; font-size: clamp(36px, 3.4vw, 66px); line-height: 1.08; font-weight: 400; letter-spacing: .06em; }
.checker-intro__text { margin: 0; font-family: 'Roboto Mono', monospace; font-size: clamp(14px, 1vw, 18px); line-height: 1.9; letter-spacing: .06em; color: var(--text-muted); }

.checkerboard-story { padding: 0 0 94px; background: #f1efeb; }
.checkerboard-story__stack { width: 100%; padding: 0; }
.checkerboard-story--contrast { background: #111920; }
.checker-story-block { display: grid; grid-template-columns: 1fr 1fr; min-height: clamp(620px, 52vw, 980px); }
.checker-story-block + .checker-story-block { margin-top: 0; }
.checker-story-block.is-reverse { grid-template-columns: 1fr 1fr; }
.checker-story-block.is-reverse .checker-story-block__media { order: 2; }
.checker-story-block.is-reverse .checker-story-block__copy { order: 1; }
.checker-story-block__media { min-height: 100%; }
.checker-story-block__media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.checker-story-block__copy { padding: clamp(46px, 5.1vw, 110px) clamp(40px, 4.4vw, 96px); display: flex; flex-direction: column; justify-content: flex-start; background: #e7e8ec; }
.checker-story-block__copy--light { background: #e7e8ec; color: var(--text-main); }
.checker-story-block__copy--dark { background: #19242d; color: rgba(255,255,255,.94); }
.checker-story-block__index { margin: 0 0 18px; font-family: 'Roboto Mono', monospace; letter-spacing: .24em; font-size: 12px; color: #6e7680; }
.checker-story-block__copy--dark .checker-story-block__index { color: rgba(255,255,255,.58); }
.checker-story-block__copy h2 { margin: 0 0 34px; font-size: clamp(40px, 3vw, 66px); line-height: 1.26; font-weight: 400; letter-spacing: .11em; text-wrap: balance; }
.checker-story-block__copy p { margin: 0; font-family: 'Roboto Mono', monospace; font-size: clamp(15px, .95vw, 19px); line-height: 2.02; letter-spacing: .055em; color: #3e444b; }
.checker-story-block__copy--dark p { color: rgba(255,255,255,.84); }
.checker-story-block__cta { margin-top: auto; padding-top: 48px; text-align: center; }
.checker-story-block__cta a { font-family: 'Roboto Mono', monospace; text-transform: uppercase; letter-spacing: .26em; font-size: clamp(11px, .72vw, 14px); color: inherit; }
.checker-story-block__cta span { margin-left: 10px; font-size: 1.4em; position: relative; top: 2px; }
.layout-checkerboard-story .entry-content { background: #fff; }

.editorial-panels { padding: 0 0 110px; background: #f4f1ed; }
.editorial-panels__stack { width: 100%; display: grid; gap: 0; }
.editorial-panel { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 0; align-items: stretch; }
.editorial-panel.is-reverse { grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr); }
.editorial-panel.is-reverse .editorial-panel__media { order: 2; }
.editorial-panel.is-reverse .editorial-panel__copy { order: 1; }
.editorial-panel__media img { width: 100%; height: 100%; display: block; object-fit: cover; min-height: 620px; }
.editorial-panel__copy { background: #fff; padding: clamp(40px, 4.2vw, 82px); display: flex; flex-direction: column; justify-content: center; }
.editorial-panel__meta { margin: 0 0 18px; font-family: 'Roboto Mono', monospace; letter-spacing: .24em; text-transform: uppercase; font-size: 11px; color: #7a828b; }
.editorial-panel__copy h2 { margin: 0 0 26px; font-size: clamp(34px, 2.8vw, 58px); line-height: 1.08; font-weight: 400; letter-spacing: .03em; }
.editorial-panel__copy p { margin: 0; font-family: 'Roboto Mono', monospace; color: #4b5560; font-size: clamp(14px, .92vw, 17px); line-height: 1.95; letter-spacing: .045em; }
.editorial-panel__cta { margin-top: 34px; }
.editorial-panel__cta a { font-family: 'Roboto Mono', monospace; text-transform: uppercase; letter-spacing: .22em; font-size: 12px; color: var(--text-main); }
.editorial-panel__cta span { margin-left: 10px; font-size: 1.3em; position: relative; top: 2px; }

.page-key-cinema-halls .hero-inner { min-height: 86vh; background-position: center 56%; }
.page-key-cinema-halls .hero-overlay { background: linear-gradient(to bottom, rgba(0,0,0,.28), rgba(0,0,0,.46)); }
.page-key-cinema-halls .hero-content { padding-bottom: 64px; }
.page-key-cinema-halls .hero h1 { font-size: clamp(44px, 4.3vw, 82px); letter-spacing: .1em; }
.page-key-cinema-halls .hero-subline { display: none; }
.page-key-cinema-halls .hero-row__left { border-bottom-color: rgba(255,255,255,.74); }
.page-key-cinema-halls .hero-row__right .outline-button { min-width: clamp(290px, 27vw, 520px); justify-content: space-between; }

.page-key-cinema-halls .split .site-limit { width: min(100%, 1760px); padding: 0 20px; }
.page-key-cinema-halls .split__inner { min-height: clamp(620px, 52vw, 980px); }
.page-key-cinema-halls .split__copy { padding: clamp(54px, 5.4vw, 124px) clamp(48px, 4.7vw, 116px); justify-content: flex-start; }
.page-key-cinema-halls .split__copy h2 {
  margin: 0 0 34px;
  padding-bottom: 0;
  border-bottom: 0;
  font-size: clamp(38px, 3vw, 66px);
  line-height: 1.26;
  letter-spacing: .11em;
  text-wrap: balance;
}
.page-key-cinema-halls .split__copy p {
  font-size: clamp(15px, .95vw, 19px);
  line-height: 2.02;
  letter-spacing: .055em;
  max-width: 90%;
}
.page-key-cinema-halls .split-dark .split__copy { background: #1d2933; }
.page-key-cinema-halls .split-light .split__copy { background: #e5e5e8; }
.page-key-cinema-halls .split-light .split__copy p { color: #3e444b; }
.page-key-cinema-halls .split__media img { object-position: center; }
.page-key-cinema-halls .inline-cta { margin-top: auto; padding-top: 48px; text-align: center; }
.page-key-cinema-halls .inline-cta a { letter-spacing: .26em; font-size: clamp(11px, .72vw, 14px); }
.page-key-cinema-halls .inline-cta span { margin-left: 10px; }

.page-key-home .hero-home { min-height: 100vh; background-position: center 32%; }
.page-key-home .hero-overlay { background: linear-gradient(to bottom, rgba(6, 8, 10, .24), rgba(6, 8, 10, .5)); }
.page-key-home .hero-content { padding-bottom: 58px; }
.page-key-home .hero-row__left { border-bottom-color: rgba(255, 255, 255, .72); }
.page-key-home .hero h1 { max-width: 1100px; font-size: clamp(42px, 3.75vw, 74px); letter-spacing: .12em; line-height: 1.52; }
.page-key-home .hero-subline { display: none; }
.page-key-home .hero-row__right .outline-button { min-width: clamp(300px, 30vw, 480px); justify-content: space-between; }

.page-key-home .dark-grid { background: #1f2a34; padding: 90px 0; }
.page-key-home .cards-grid { gap: 26px; }
.page-key-home .feature-card { min-height: clamp(460px, 35vw, 660px); border-color: rgba(255,255,255,.16); }
.page-key-home .feature-card__overlay { background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.26) 50%, rgba(0,0,0,.06)); }
.page-key-home .feature-card__body { padding: 30px 26px 24px; }
.page-key-home .feature-card h3 { margin: 0 0 12px; font-size: clamp(28px, 2.1vw, 44px); letter-spacing: .08em; }
.page-key-home .feature-card .outline-button.is-small { width: auto; padding: 11px 20px; letter-spacing: .22em; font-size: 12px; }

.page-key-cinema .hero-inner,
.page-key-living-room-cinema .hero-inner,
.page-key-audio .hero-inner,
.page-key-soundwall .hero-inner,
.page-key-knowledge .hero-inner,
.page-key-about .hero-inner,
.page-key-projects .hero-inner,
.page-key-contact .hero-inner {
  min-height: 84vh;
  background-position: center 38%;
}

.page-key-cinema .hero h1,
.page-key-living-room-cinema .hero h1,
.page-key-audio .hero h1,
.page-key-soundwall .hero h1,
.page-key-knowledge .hero h1,
.page-key-about .hero h1,
.page-key-projects .hero h1,
.page-key-contact .hero h1 {
  font-size: clamp(40px, 3.7vw, 72px);
  letter-spacing: .1em;
}

.page-key-cinema .split__copy h2,
.page-key-living-room-cinema .split__copy h2,
.page-key-audio .split__copy h2,
.page-key-soundwall .split__copy h2,
.page-key-knowledge .split__copy h2,
.page-key-about .split__copy h2,
.page-key-projects .split__copy h2,
.page-key-contact .split__copy h2 {
  border-bottom: 0;
  padding-bottom: 0;
}

.site-footer { background: #f7f6f2; color: var(--text-main); border-top: 1px solid rgba(37, 44, 51, 0.08); }
.site-footer__cta { padding-top: 86px; padding-bottom: 70px; display: grid; grid-template-columns: minmax(0, 1.2fr) auto; gap: 40px; align-items: start; }
.site-footer__cta-copy p { margin: 0; max-width: 820px; font-family: 'Roboto Mono', monospace; font-size: clamp(19px, 1.35vw, 24px); line-height: 1.9; letter-spacing: .055em; color: #384048; }
.site-footer__cta-link { display: flex; align-items: center; justify-content: flex-start; padding-top: 8px; }
.site-footer__cta-link a { display: inline-flex; align-items: center; gap: 18px; font-family: 'Roboto Mono', monospace; font-size: 13px; text-transform: uppercase; letter-spacing: .22em; color: var(--text-main); }
.site-footer__cta-link span { font-size: 2.1em; line-height: 1; }
.site-footer__main { padding-top: 40px; padding-bottom: 56px; }
.site-footer__heading { margin-bottom: 54px; padding-bottom: 34px; border-bottom: 1px solid rgba(92, 131, 160, 0.6); }
.site-footer__heading h2 { margin: 0; color: #708ea5; font-weight: 400; font-size: clamp(46px, 4vw, 74px); letter-spacing: .18em; text-transform: none; }
.site-footer__grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1fr; gap: 44px; align-items: start; }
.site-footer__column h3 { margin: 0 0 24px; font-family: 'Roboto Mono', monospace; font-size: clamp(15px, 1vw, 20px); letter-spacing: .22em; text-transform: uppercase; color: #1f2a34; font-weight: 400; }
.site-footer__column p,
.site-footer__column a { margin: 0 0 18px; font-family: 'Space Grotesk', sans-serif; font-size: clamp(18px, 1.15vw, 22px); line-height: 1.65; color: #2d353d; }
.site-footer__column--contact p,
.site-footer__column--contact a { font-size: clamp(20px, 1.2vw, 24px); }
.site-footer__languages { margin-top: 26px; }
.site-footer__languages .language-switcher { margin-top: 0; }
.site-footer__languages .lang-pill { border-color: rgba(37,44,51,.18); background: rgba(37,44,51,.03); color: var(--text-main); }
.site-footer__languages .lang-pill:hover { background: rgba(37,44,51,.08); border-color: rgba(37,44,51,.3); }
.site-footer__languages .lang-pill.is-active { background: rgba(112,142,165,.14); border-color: rgba(112,142,165,.38); }
.site-footer__legal { padding-top: 0; padding-bottom: 24px; display: flex; gap: 16px; justify-content: space-between; align-items: center; border-top: 1px solid rgba(37,44,51,.08); }
.site-footer__legal-links { display: flex; gap: 20px; flex-wrap: wrap; padding-top: 18px; }
.site-footer__legal-credit { padding-top: 18px; }
.site-footer__legal a, .site-footer__legal-credit a { font-family: 'Roboto Mono', monospace; font-size: 12px; letter-spacing: .06em; color: rgba(37,44,51,.72); text-decoration: underline; text-underline-offset: 4px; }
.site-footer__legal-credit a { opacity: .9; transition: opacity .2s ease; }
.site-footer__legal-credit a:hover { opacity: 1; }
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(17,23,30,.95);
  color: #fff;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { margin: 0; font-size: 13px; letter-spacing: .03em; }
.cookie-banner__actions { display: flex; align-items: center; gap: 10px; }
.cookie-banner__actions a,
.cookie-banner__actions button {
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  letter-spacing: .05em;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  padding: 8px 10px;
  cursor: pointer;
}

@media (max-width: 1280px) {
  .site-header__inner { min-height: 92px; }
  .site-nav ul { gap: 18px; }
  .site-nav a { font-size: 13px; }
}

@media (max-width: 1024px) {
  .site-limit { padding: 0 16px; }
  body.admin-bar .site-header { top: 46px; }
  .site-header__inner { min-height: 74px; flex-direction: row; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 0; }
  .site-logo { width: 200px; }
  .menu-toggle { display: inline-flex; }
  .site-header__nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    width: 100%;
    padding: 10px 16px 14px;
    background: rgba(15,20,26,.96);
    border-top: 1px solid rgba(255,255,255,.15);
  }
  .nav-open .site-header__nav { display: block; }
  .site-nav { width: 100%; }
  .site-nav ul { width: 100%; gap: 0; overflow: visible; padding-bottom: 0; white-space: normal; }
  .site-nav .menu { flex-direction: column; align-items: stretch; }
  .site-nav .menu > li { width: 100%; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .site-nav .menu > li > a { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; font-size: 14px; }
  .site-nav .sub-menu {
    position: static;
    display: none;
    width: auto;
    min-width: 0;
    max-width: none;
    margin-top: 0;
    padding: 0 0 8px 14px;
    border: 0;
    background: transparent;
    transform: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .site-nav .menu-item-has-children.is-open > .sub-menu { display: flex; }
  .site-nav .sub-menu li::before { display: none; }
  .site-nav .sub-menu a {
    padding: 0;
    font-size: 12px;
    color: rgba(255,255,255,.85);
    border: 0;
    border-radius: 0;
  }
  .site-nav .sub-menu a:hover,
  .site-nav .sub-menu .current-menu-item > a {
    background: transparent;
    color: #fff;
  }
  .language-switcher { display: flex; margin-top: 10px; }
  .lang-pill { width: 28px; height: 28px; font-size: 15px; }
  .hero { min-height: 88vh; }
  .hero-content { padding-bottom: 42px; }
  .hero-row { grid-template-columns: 1fr; gap: 10px; }
  .hero-row__right { padding-bottom: 0; }
  .outline-button { width: 100%; }
  .page-key-home .hero h1 { line-height: 1.34; letter-spacing: .08em; }
  .page-key-home .hero-row__right .outline-button { min-width: 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 560px; }
  .page-key-home .dark-grid { padding: 64px 0; }
  .checker-intro { padding: 72px 0 34px; }
  .checker-story-block,
  .checker-story-block.is-reverse { grid-template-columns: 1fr; }
  .checker-story-block.is-reverse .checker-story-block__media,
  .checker-story-block.is-reverse .checker-story-block__copy { order: initial; }
  .checker-story-block__copy { padding: 46px 26px; }
  .checker-story-block__copy h2 { font-size: clamp(34px, 9vw, 52px); letter-spacing: .08em; }
  .checker-story-block__copy p { max-width: 100%; line-height: 1.9; font-size: 15px; }
  .checker-story-block__cta { text-align: left; padding-top: 34px; }
  .editorial-panel,
  .editorial-panel.is-reverse { grid-template-columns: 1fr; gap: 0; }
  .editorial-panel.is-reverse .editorial-panel__media,
  .editorial-panel.is-reverse .editorial-panel__copy { order: initial; }
  .editorial-panel__media img { min-height: 380px; }
  .split__inner { grid-template-columns: 1fr; min-height: auto; }
  .split__inner--reverse .split__copy, .split__inner--reverse .split__media { order: initial; }
  .split__media { min-height: 350px; }
  .page-key-cinema-halls .split .site-limit { padding: 0; }
  .page-key-cinema-halls .split__copy { padding: 46px 26px; }
  .page-key-cinema-halls .split__copy h2 { font-size: clamp(34px, 9vw, 52px); letter-spacing: .08em; }
  .page-key-cinema-halls .split__copy p { max-width: 100%; line-height: 1.9; font-size: 15px; }
  .page-key-cinema-halls .inline-cta { text-align: left; padding-top: 34px; }
  .page-key-cinema-halls .hero-row__right .outline-button { min-width: 0; }
  .site-footer__cta { padding-top: 58px; padding-bottom: 42px; grid-template-columns: 1fr; gap: 28px; }
  .site-footer__main { padding-top: 26px; padding-bottom: 34px; }
  .site-footer__heading { margin-bottom: 34px; padding-bottom: 24px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 18px; }
  .site-footer__column h3 { margin-bottom: 12px; }
  .site-footer__column p, .site-footer__column a { margin-bottom: 10px; font-size: 18px; }
  .site-footer__languages { margin-top: 14px; }
  .site-footer__legal { padding-bottom: 24px; flex-wrap: wrap; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; flex-direction: column; align-items: flex-start; }
}
