    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

    :root {
      --yellow: #E8E000;
      --yellow-light: #F5F24A;
      --lime: #A8D85A;
      --green: #7BBF3A;
      --black: #000000;
      --dark: #F5F5F0;
      --dark-surface: #EEEEE8;
      --dark-card: rgba(0,0,0,0.03);
      --dark-card-hover: rgba(0,0,0,0.05);
      --glass: rgba(0,0,0,0.03);
      --glass-border: rgba(0,0,0,0.1);
      --glass-border-hover: rgba(0,0,0,0.18);
      --white: #FFFFFF;
      --text: #000000;
      --text-secondary: rgba(0,0,0,0.55);
      --text-muted: rgba(0,0,0,0.35);
      --gradient: linear-gradient(135deg, #E8E000 0%, #A8D85A 100%);
      --gradient-text: linear-gradient(135deg, #C8C800 0%, #8AB840 50%, #6EA030 100%);
      --nav-h: 80px;
      --r-sm: 6px;
      --r-md: 10px;
      --r-lg: 14px;
      --r-xl: 20px;
      --r-full: 50px;
      --mono: 'Inconsolata', 'JetBrains Mono', monospace;
      --serif: 'Inconsolata', 'Instrument Serif', Georgia, serif;
      --body: 'Outfit', system-ui, sans-serif;
      --title: 'Inconsolata', monospace;
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
    }

    html { scroll-behavior: smooth; overflow-x: hidden; overscroll-behavior: none; }
    body {
      font-family: var(--body); background: var(--white); color: var(--text);
      overflow-x: hidden; line-height: 1.6; overscroll-behavior-x: none;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
    ul { list-style: none; }
    .container { max-width: 1340px; margin: 0 auto; padding: 0 40px; }

    /* ===== NAV (glass) ===== */
    .nav {
      position: fixed; top: 0; left: 0; right: 0;
      height: var(--nav-h); z-index: 1000;
      display: flex; align-items: center;
      padding: 0 40px;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(16px) saturate(120%);
      -webkit-backdrop-filter: blur(16px) saturate(120%);
      border-bottom: 1px solid transparent;
      transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    }
    .nav.scrolled {
      background: rgba(255,255,255,0.95);
      border-bottom: 1px solid var(--glass-border);
      box-shadow: 0 1px 20px rgba(0,0,0,0.04);
    }
    .nav__inner {
      display: flex; align-items: center; justify-content: space-between;
      width: 100%; max-width: 1340px; margin: 0 auto;
    }
    .nav__logo { display: flex; align-items: center; flex-shrink: 0; }
    .nav__logo img { height: 15px; width: auto; }
    .nav__links { display: flex; gap: 36px; align-items: center; }
    .nav__links a {
      font-family: var(--mono); font-size: 0.7rem; font-weight: 500;
      color: var(--text-secondary); transition: color 0.3s;
      letter-spacing: 0.06em; text-transform: uppercase;
    }
    .nav__links a:hover { color: var(--text); }
    .nav__dropdown { position: relative; display: inline-flex; align-items: center; }
    .nav__dropdown::after {
      content: ''; position: absolute; top: 100%; left: 0; right: 0;
      height: 20px;
    }
    .nav__dropdown-trigger { cursor: pointer; line-height: 1; }
    .nav__dropdown-menu {
      display: none; position: absolute; top: 100%; right: 0;
      margin-top: 0; padding-top: 12px; min-width: 220px;
      background: #fff; border: 1px solid var(--glass-border);
      border-radius: var(--r-md); box-shadow: 0 12px 40px rgba(0,0,0,0.1);
      padding: 8px 0; z-index: 1001;
    }
    .nav__dropdown-menu a {
      display: block; padding: 10px 20px;
      font-family: var(--mono); font-size: 0.7rem; font-weight: 500;
      color: var(--text-secondary); letter-spacing: 0.04em;
      transition: background 0.2s, color 0.2s;
    }
    .nav__dropdown-menu a:hover { background: var(--dark); color: var(--text); }
    .nav__dropdown:hover .nav__dropdown-menu { display: block; }
    .nav__dropdown.open .nav__dropdown-menu { display: block; }
    .nav__actions { display: flex; gap: 10px; }

    /* Glass buttons */
    .btn-glass {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--mono); font-size: 0.75rem; font-weight: 600;
      padding: 11px 22px; border-radius: var(--r-md);
      background: #ffffff; border: 1px solid rgba(0,0,0,0.15);
      color: var(--text); position: relative; z-index: 2;
      transition: background 0.2s, border-color 0.2s; letter-spacing: 0.02em;
      text-transform: uppercase; white-space: nowrap;
    }
    .btn-glass:hover {
      background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.3);
    }
    .btn-glass--accent {
      background: var(--black); border-color: var(--black);
      color: #fff;
    }
    .btn-glass--accent:hover {
      background: #222; border-color: #222;
    }
    .btn-glass--lg { padding: 16px 36px; font-size: 0.8125rem; }
    .btn-glass .arr { transition: transform 0.3s var(--ease); font-size: 0.9em; }
    .btn-glass:hover .arr { transform: translateX(3px); }

    .nav__burger { display: none; width: 36px; height: 36px; align-items: center; justify-content: center; z-index: 1002; }
    .nav__burger span { display: block; width: 20px; height: 1.5px; background: #000; position: relative; transition: background 0.3s; }
    .nav__burger span::before, .nav__burger span::after { content: ''; position: absolute; width: 20px; height: 1.5px; background: #000; left: 0; transition: transform 0.3s var(--ease), top 0.3s var(--ease); }
    .nav__burger span::before { top: -6px; } .nav__burger span::after { top: 6px; }
    .nav__burger.open span { background: transparent; }
    .nav__burger.open span::before { top: 0; transform: rotate(45deg); }
    .nav__burger.open span::after { top: 0; transform: rotate(-45deg); }

    /* Mobile menu overlay */
    .nav__mobile {
      display: none; position: fixed; inset: 0; z-index: 1001;
      background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
      flex-direction: column; align-items: center; justify-content: flex-start; gap: 24px;
      opacity: 0; transition: opacity 0.35s var(--ease);
      overflow-y: auto; -webkit-overflow-scrolling: touch;
      padding: 0 24px 40px;
    }
    .nav__mobile.open { display: flex; opacity: 1; }
    .nav__mobile-header {
      display: flex; align-items: center; justify-content: space-between;
      width: 100%; max-width: 400px; padding: 18px 0; margin-bottom: 8px;
      position: sticky; top: 0; background: rgba(255,255,255,0.97); z-index: 2;
    }
    .nav__mobile-header img { height: 28px; }
    .nav__mobile-close {
      background: none; border: none; font-size: 1.5rem; cursor: pointer;
      color: var(--text); padding: 8px; line-height: 1;
      transition: opacity 0.2s;
    }
    .nav__mobile-close:hover { opacity: 0.5; }
    .nav__mobile a {
      font-family: var(--body); font-weight: 600; font-size: 1.5rem;
      color: var(--text); transition: color 0.2s;
    }
    .nav__mobile a:hover { color: var(--text-secondary); }
    .nav__mobile .nav__mobile-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; width: 80%; max-width: 320px; }
    .nav__mobile .nav__mobile-actions .btn-glass { width: 100%; justify-content: center; text-align: center; font-size: 0.75rem; padding: 12px 16px; }
    .nav__mobile .nav__mobile-actions .btn-glass--accent { color: #fff !important; }

    /* ===== SECTION ===== */
    .section { padding: 140px 0; }
    .section__eyebrow {
      font-family: var(--mono); font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--green); margin-bottom: 20px;
    }
    .section__title {
      font-family: var(--title); font-size: clamp(2rem, 4.5vw, 3.75rem); line-height: 1.05; letter-spacing: -0.03em; font-weight: 700;
    }
    .section__title .sans { font-family: var(--title); font-weight: 700; }
    .section__title .it { font-family: var(--title); font-style: normal; font-weight: 400; color: var(--text-secondary); }
    .section__desc { font-family: var(--mono); font-size: 0.9rem; color: var(--text-secondary); margin-top: 20px; max-width: 520px; line-height: 1.9; letter-spacing: -0.01em; }

    /* Mono for descriptive text (tech feel) */
    .card__desc, .zone__desc, .about__cols p, .news__excerpt,
    .tkt__note, .tkt__feat, .footer__brand-desc,
    .why-lux__desc, .practical__item p, .rh-card__desc { font-family: var(--mono); font-size: 0.82rem; line-height: 1.85; letter-spacing: -0.01em; }

    /* ===== ABOUT ===== */
    .about { border-top: 1px solid var(--glass-border); background: #F5F5F0; }
    .about__header { margin-bottom: 56px; }
    .about__header-top {
      display: flex; align-items: center; gap: 16px; margin-bottom: 40px;
    }
    .about__header-top .section__eyebrow { margin: 0; }
    .about__header-top::after {
      content: ''; flex: 1; height: 1px; background: var(--glass-border);
    }
    .about__cols {
      display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    }
    .about__cols p {
      font-size: 1.05rem; line-height: 1.8; color: var(--text-secondary);
    }

    /* Video wrapper */
    .about__visual {
      aspect-ratio: 2.2/1; border-radius: var(--r-md);
      overflow: hidden; position: relative;
      background: #111;
    }
    .about__visual iframe,
    .about__visual .about__thumb {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; object-fit: cover;
      transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
    }
    .about__visual:hover .about__thumb { transform: scale(1.03); filter: brightness(0.8); }
    .about__visual .about__play {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      border: none; cursor: pointer; z-index: 2;
      width: 96px; height: 96px; border-radius: 50%;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      border: 1.5px solid rgba(255,255,255,0.3);
      display: flex; align-items: center; justify-content: center;
      transition: all 0.4s var(--ease);
      box-shadow: 0 8px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
    }
    .about__visual .about__play::before {
      content: ''; position: absolute; inset: -8px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
      animation: playPulse 2.6s ease-in-out infinite;
    }
    @keyframes playPulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.2); opacity: 0; }
    }
    .about__visual .about__play svg { margin-left: 4px; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3)); }
    .about__visual .about__play:hover {
      transform: translate(-50%, -50%) scale(1.1);
      background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.5);
      box-shadow: 0 12px 48px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
    }
    .about__visual .about__label {
      position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
      font-family: var(--mono); font-size: 0.65rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.14em; color: #fff;
      background: rgba(0,0,0,0.4); backdrop-filter: blur(10px);
      padding: 8px 20px; border-radius: var(--r-md);
      border: 1px solid rgba(255,255,255,0.1);
      white-space: nowrap; z-index: 2;
      transition: opacity 0.3s;
    }
    .about__visual[data-playing] .about__thumb,
    .about__visual[data-playing] .about__play,
    .about__visual[data-playing] .about__label { display: none; }
    .about__visual { cursor: pointer; }

    /* Stats bar overlapping bottom of video */
    .about__stats-bar {
      display: grid; grid-template-columns: repeat(5, 1fr);
      max-width: 960px; margin: -40px auto 0; position: relative; z-index: 3;
      background: #fff; border-radius: var(--r-md);
      border: 1px solid var(--glass-border);
      box-shadow: 0 8px 40px rgba(0,0,0,0.06);
      padding: 40px 0 32px;
    }
    .about__stats-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      font-family: var(--mono); font-size: 0.6rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.15em;
      background: var(--black); color: #fff;
      padding: 6px 20px; border-radius: var(--r-md);
      white-space: nowrap;
    }
    .about__stat {
      text-align: center; padding: 0 20px;
      position: relative;
    }
    .about__stat:not(:last-child)::after {
      content: ''; position: absolute; right: 0; top: 15%; height: 70%;
      width: 1px; background: var(--glass-border);
    }
    .about__stat-val {
      font-family: var(--body); font-weight: 700; font-size: 1.65rem;
      line-height: 1.2;
    }
    .about__stat-val sup {
      font-family: var(--serif); font-style: italic; font-size: 0.55em;
      color: var(--yellow); vertical-align: super;
    }
    .about__stat-label {
      font-size: 0.75rem; color: var(--text-muted); margin-top: 6px;
      font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.06em;
    }

    /* ===== NEWS (used on homepage teaser + news.html listing) ===== */
    .news { background: #fff; }
    .news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .news__card {
      border-radius: var(--r-md); overflow: hidden; background: #fff;
      border: 1px solid var(--glass-border); transition: all 0.35s var(--ease);
      display: flex; flex-direction: column;
    }
    .news__card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
    .news__img { height: 180px; background-size: cover; background-position: center; }
    .news__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
    .news__date { font-family: var(--mono); font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
    .news__title { font-family: var(--body); font-weight: 700; font-size: 1.1rem; line-height: 1.4; margin-bottom: 8px; }
    .news__excerpt { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

    /* ===== FOOTER ===== */
    .footer { border-top: 1px solid rgba(255,255,255,0.08); padding: 80px 0 48px; background: #000; color: #fff; }
    .footer__grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 48px; margin-bottom: 64px; }
    .footer__brand-name { font-family: var(--mono); font-weight: 800; font-size: 1.1rem; margin-bottom: 16px; text-align: left; }
    .footer__brand-name img { height: 12px !important; width: auto !important; display: block; }
    .footer__brand-desc { font-size: 0.9375rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
    .footer__social { display: flex; gap: 10px; }
    .footer__social a {
      width: 36px; height: 36px; border-radius: var(--r-md);
      border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.45); transition: all 0.3s;
    }
    .footer__social a svg { width: 18px; height: 18px; fill: currentColor; }
    .footer__social a:hover { border-color: var(--yellow); color: var(--yellow); }
    .footer__col-title { font-family: var(--mono); font-weight: 700; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
    .footer__col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer__col li a { font-size: 0.9375rem; color: rgba(255,255,255,0.55); transition: color 0.25s; }
    .footer__col li a:hover { color: var(--yellow); }
    .footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); font-family: var(--mono); font-size: 0.65rem; color: rgba(255,255,255,0.3); letter-spacing: 0.02em; }
    .footer__bottom-links { display: flex; gap: 24px; }
    .footer__bottom-links a { color: rgba(255,255,255,0.3); transition: color 0.25s; }
    .footer__bottom-links a:hover { color: var(--yellow); }

    /* ===== REVEAL ANIMATIONS ===== */
    .rv {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    }
    .rv.visible { opacity: 1; transform: translateY(0); }
    .rv-d1 { transition-delay: 0.1s; }
    .rv-d2 { transition-delay: 0.2s; }
    .rv-d3 { transition-delay: 0.3s; }
    .rv-d4 { transition-delay: 0.4s; }
    .rv-d5 { transition-delay: 0.5s; }

    /* Section title slide-from-left animation */
    .rv-left {
      opacity: 0; transform: translateX(-40px);
      transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    }
    .rv-left.visible { opacity: 1; transform: translateX(0); }

    /* Programme timeline slide-from-left */
    .rv-slide {
      opacity: 0; transform: translateX(-30px);
      transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    }
    .rv-slide.visible { opacity: 1; transform: translateX(0); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .nav__links { display: none; }
      .nav__actions { display: none; }
      .nav__burger { display: flex; }
      .hero__visual { width: 100%; }
      .hero__motion { width: clamp(280px, 60vw, 500px); }
      .hero__logo-svg { width: clamp(220px, 45vw, 400px); }
      .about__cols { grid-template-columns: 1fr; gap: 24px; }
      .about__stats-bar { grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: -30px; padding: 20px 0; }
      .about__stat { padding: 0 12px; }
      .about__stat-val { font-size: 1.3rem; }
      .about__stat-label { font-size: 0.6rem; }
      .prog-grid { grid-template-columns: 60px repeat(5, 1fr); font-size: 0.85em; }
      .prog-grid__header { padding: 10px 6px; font-size: 0.5rem; }
      .prog-cell { padding: 8px 6px; }
      .prog-cell__title { font-size: 0.7rem; }
      .prog-cell__speaker { font-size: 0.55rem; }
      .prog-cell__format { font-size: 0.45rem; padding: 2px 5px; }
      /* show all speakers */
      .cards__grid { grid-template-columns: 1fr 1fr; }
      .news__grid { grid-template-columns: 1fr 1fr; }
      .practical__grid { grid-template-columns: 1fr; }
      .why-lux__grid { grid-template-columns: 1fr 1fr; }
      .zones__grid { grid-template-columns: 1fr; }
      .zone__visual { width: 80px; height: 80px; }
      .awards__layout { grid-template-columns: 1fr; }
      .footer__grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 1024px) {
      .side-cta, .side-cta__toggle { display: none !important; }
    }
    @media (max-width: 768px) {
      .container { padding: 0 16px; } .nav { padding: 0 16px; }
      .nav__logo img { height: 12px; }
      .section { padding: 60px 0; }
      .section__title { font-size: clamp(1.6rem, 5vw, 2.5rem); }
      .section__desc { font-size: 0.95rem; margin-top: 12px; }
      .section__eyebrow { font-size: 0.6rem; }
      /* Hero */
      .hero { padding: calc(var(--nav-h) + 10px) 16px 32px; min-height: auto; }
      .hero__visual { width: 100%; }
      .hero__motion { width: 65%; margin-left: 35%; }
      .hero__logo-svg { position: absolute; top: 15%; left: 0; width: 55%; }
      .hero__tagline { font-size: 0.9rem; line-height: 1.6; }
      .hero__bottom { flex-direction: column; gap: 16px; align-items: flex-start; margin-top: 24px; padding-top: 20px; }
      .hero__bottom-right { text-align: left; }
      .hero__bottom-date { font-size: 1.2rem; }
      .hero__bottom-loc { font-size: 1rem; }
      .hero__ctas { flex-direction: column; width: 100%; gap: 8px; }
      .hero__ctas .btn-glass { width: 100%; justify-content: center; padding: 14px 20px; border: 2px solid #000; color: #000; background: #ffffff; }
      .hero__ctas .btn-glass--accent { background: #000; color: #fff; }
      .hero__cd-val { font-size: 1.8rem; }
      /* Stats */
      .stats { padding: 48px 0; }
      .stats__grid { grid-template-columns: repeat(2, 1fr); }
      .stats__item { padding: 28px 16px; }
      .stats__num { font-size: clamp(1.8rem, 7vw, 2.5rem); }
      /* Speakers */
      .speakers-stack-wrapper { flex-direction: column; align-items: center; gap: 24px; }
      /* show all speakers on mobile */
      .tinder-stack { width: min(300px, 85vw); height: min(420px, 110vw); }
      .tinder-card__name { font-size: 1.1rem; }
      .tinder-card__info { padding: 16px 20px; }
      .tinder-card__role { font-size: 0.85rem; }
      .tinder-card__company { font-size: 0.6rem; }
      .speakers-grid { grid-template-columns: 1fr; gap: 8px; }
      .spk-row { padding: 12px 14px; }
      .spk-row__photo { width: 48px; height: 48px; }
      /* News */
      .news__grid { grid-template-columns: 1fr; gap: 16px; }
      .news__img { height: 160px; }
      .news__body { padding: 18px; }
      .news__title { font-size: 1rem; }
      /* Cards */
      .cards__grid, .tickets__grid, .awards__cats { grid-template-columns: 1fr; }
      .card { padding: 28px 24px; }
      /* Tickets */
      .tkt { padding: 28px 24px; }
      .tkt__price .amt { font-size: 2rem; }
      /* Awards */
      .awards__layout { gap: 32px; }
      .awards__prize-tag { font-size: 0.85rem; }
      .acat { padding: 14px 16px; }
      /* Partners */
      .partners__inst-row { grid-template-columns: repeat(3, 1fr); gap: 12px; }
      .partners__inst-cell { padding: 14px 12px; }
      .partners__inst-logo { height: 22px; }
      /* Footer */
      .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
      .footer__grid > div:first-child { grid-column: span 2; }
      .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
      .footer__brand-desc { max-width: 100%; }
      /* Keep in touch */
      .keep-in-touch__inner { grid-template-columns: 1fr; gap: 24px; }
      .keep-in-touch__form { flex-direction: column; }
      .keep-in-touch { padding: 48px 0; }
      .keep-in-touch__social { gap: 10px; }
      /* CTA */
      .cta { padding: 80px 0; }
      .cta__title { font-size: clamp(1.8rem, 6vw, 3rem); }
      .cta__actions { flex-direction: column; gap: 10px; }
      .cta__actions .btn-glass--lg { width: 100%; justify-content: center; }
      /* Buttons */
      .btn-glass { font-size: 0.7rem; padding: 10px 18px; }
      .btn-glass--lg { padding: 13px 24px; font-size: 0.75rem; }
      /* Side CTA */
      .side-cta { display: none; }
      /* Hero partners */
      .hero__partners { margin-top: 32px; padding: 20px 0; }
      .hero__partners-label { font-size: 0.5rem; margin-bottom: 12px; }
      .hero__partners-logos { gap: 40px; }
      .hero__partners-logos img { height: 22px; }
      /* Card images */
      .card__img { height: 140px; }
    }

    /* ===== WHY LUXEMBOURG ===== */
    .why-lux { background: #000; color: #fff; }
    .why-lux .section__eyebrow { color: var(--yellow); }
    .why-lux .section__title .sans { color: #fff; }
    .why-lux .section__title .it { color: rgba(255,255,255,0.5); }
    .why-lux .section__desc { color: rgba(255,255,255,0.5); }
    .why-lux__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .why-lux__card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--r-md); padding: 32px 28px;
      transition: all 0.35s var(--ease);
    }
    .why-lux__card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }
    .why-lux__num {
      font-family: var(--mono); font-size: 0.7rem; font-weight: 800;
      color: var(--yellow); margin-bottom: 16px; letter-spacing: 0.05em;
    }
    .why-lux__title { font-family: var(--body); font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; }
    .why-lux__desc { font-size: 0.9rem; line-height: 1.65; color: rgba(255,255,255,0.55); }

    /* ===== PRACTICAL ===== */
    .practical { background: #F5F5F0; }
    .practical__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
    .practical__h3 { font-family: var(--body); font-weight: 700; font-size: 1.3rem; margin-bottom: 16px; }
    .practical__h4 { font-family: var(--mono); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; color: var(--text); }
    .practical__address { font-size: 1.05rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 24px; }
    .practical__map { border-radius: var(--r-md); overflow: hidden; }
    .practical__item { margin-bottom: 24px; }
    .practical__item p { font-size: 0.95rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 8px; }
    .practical__visa { background: #fff; padding: 40px; border-radius: var(--r-md); border: 1px solid var(--glass-border); }
    .practical__visa p { font-size: 0.95rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 12px; }

    /* ===== RESPONSIVE ADDITIONS (for sections defined after main media queries) ===== */
    @media (max-width: 1024px) {
      .news__grid { grid-template-columns: 1fr 1fr; }
      .why-lux__grid { grid-template-columns: 1fr 1fr; }
      .practical__grid { grid-template-columns: 1fr; gap: 40px; }
      .keep-in-touch__inner { grid-template-columns: 1fr; gap: 40px; }
    }
    @media (max-width: 768px) {
      .news__grid { grid-template-columns: 1fr; gap: 14px; }
      .news__img { height: 150px; }
      .news__body { padding: 16px; }
      .news__title { font-size: 0.95rem; }
      .news__excerpt { font-size: 0.8rem; }
      .why-lux__grid { grid-template-columns: 1fr; gap: 10px; }
      .why-lux__card { padding: 20px 18px; }
      .why-lux__title { font-size: 0.95rem; }
      .why-lux__desc { font-size: 0.8rem; }
      .why-lux__num { font-size: 0.6rem; margin-bottom: 10px; }
      .practical__grid { grid-template-columns: 1fr; gap: 28px; }
      .practical__visa { padding: 20px; }
      .practical__map iframe { height: 220px; }
      .practical__h3 { font-size: 1.1rem; }
      .practical__item p { font-size: 0.85rem; }
    }
    @media (max-width: 480px) {
      .hero { padding: calc(var(--nav-h) + 5px) 12px 24px; }
      .hero__motion { width: 70%; margin-left: 30%; }
      .hero__logo-svg { width: 60%; top: 10%; }
      .hero__tagline { font-size: 0.85rem; }
      .hero__cd-val { font-size: 1.1rem; }
      .hero__cd-label { font-size: 0.5rem; }
      .tinder-stack { width: min(280px, 80vw); height: min(380px, 100vw); }
      .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
      .stats__item { padding: 24px 10px; }
      .stats__num { font-size: 1.6rem; }
      .section__title { font-size: 1.5rem; }
      .footer__grid { grid-template-columns: 1fr; gap: 20px; }
      .footer__grid > div:first-child { grid-column: span 1; }
      .nav__mobile a { font-size: 1.2rem; }
      .cta__title { font-size: 1.5rem; }
    }

/* ===== BACK TO TOP ===== */
    .back-to-top {
      position: fixed; bottom: 32px; right: 32px; z-index: 999;
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--text); color: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; line-height: 1;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      opacity: 0; visibility: hidden;
      transform: translateY(12px);
      transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
      cursor: pointer; border: none;
    }
    .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
    .back-to-top:hover { background: var(--green); }
