:root {
      --brand: #e83e33;
      --ink: #0f172a;
      --paper: #fff;
      --muted: #64748b;
      --bg-soft: #f8fafc;
      --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
      --nav-height: 72px;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      font-family: Inter, system-ui, sans-serif;
      color: var(--ink);
      background: var(--bg-soft);
    }
    .lang {
      display: inline-block;
    }
    body.nav-open {
      overflow: hidden;
    }
    .navbar {
      padding: 18px 6%;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 120;
      color: #fff;
      background: transparent;
    }
    .logo {
      width: 120px;
      height: auto;
    }
    .nav-left {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .nav-center {
      display: flex;
      justify-content: center;
      position: relative;
    }
    .nav-center-inner {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 32px;
      padding: 8px 30px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.1);
      box-shadow: 0 35px 70px rgba(2, 6, 18, 0.45);
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      z-index: 0;
    }
    @media (max-width: 820px) {
      .nav-center-inner {
        background: transparent;
        box-shadow: none;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0;
      }
    }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 14px;
      justify-content: flex-end;
    }
    .nav-links {
      display: flex;
      gap: 32px;
      align-items: center;
      justify-content: center;
    }
    .nav-links a {
      color: rgba(255,255,255,.82);
      text-decoration: none;
      font-weight: 500;
      font-size: .95rem;
      transition: color .2s;
    }
    .nav-links a:hover {
      color: #fff;
    }
    .nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.35);
      background: transparent;
      color: #fff;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border .2s ease, background .2s ease, color .2s ease;
    }
    .nav-toggle span {
      width: 18px;
      height: 2px;
      background: #fff;
      display: block;
      position: relative;
      transition: transform .3s ease, opacity .3s ease;
    }
    .nav-toggle span::before,
    .nav-toggle span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 18px;
      height: 2px;
      background: #fff;
      transition: transform .3s ease;
    }
    .nav-toggle span::before { top: -6px; }
    .nav-toggle span::after { top: 6px; }
    .nav-toggle.is-active span {
      background: transparent;
    }
    .nav-toggle.is-active span::before {
      transform: translateY(6px) rotate(45deg);
      background: #fff;
    }
    .nav-toggle.is-active span::after {
      transform: translateY(-6px) rotate(-45deg);
      background: #fff;
    }
    .language-switcher {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .lang-btn {
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 600;
      font-size: 0.875rem;
      cursor: pointer;
      padding: 4px 8px;
      border-radius: 12px;
      transition: all 0.3s ease;
    }
    .lang-btn:hover {
      color: rgba(255, 255, 255, 0.9);
      background: rgba(255, 255, 255, 0.1);
    }
    .lang-btn.active {
      color: #fff;
      background: var(--brand);
    }
    .lang-separator {
      color: rgba(255, 255, 255, 0.3);
      font-size: 0.875rem;
    }
    .navbar.navbar-dark .language-switcher {
      background: rgba(0, 0, 0, 0.05) !important;
      border: 1px solid rgba(0, 0, 0, 0.1) !important;
    }
    .navbar.navbar-dark .lang-btn {
      color: rgba(15, 23, 42, 0.7) !important;
    }
    .navbar.navbar-dark .lang-btn:hover {
      color: var(--ink) !important;
      background: rgba(0, 0, 0, 0.05) !important;
    }
    .navbar.navbar-dark .lang-btn.active {
      color: #fff !important;
      background: var(--brand) !important;
    }
    .navbar.navbar-dark .lang-separator {
      color: rgba(15, 23, 42, 0.3) !important;
    }
    .nav-cta-desktop,
    .nav-cta-mobile {
      white-space: nowrap;
    }
    .nav-cta-mobile {
      display: none;
    }
    .navbar.navbar-dark {
      color: var(--ink) !important;
      background: rgba(255, 255, 255, 0.024);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .navbar.navbar-dark .nav-center-inner {
      background: rgba(0, 0, 0, 0.15) !important;
      border: 1px solid rgba(0, 0, 0, 0.2) !important;
    }
    .navbar.navbar-dark .nav-links a {
      color: var(--ink) !important;
    }
    .navbar.navbar-dark .nav-links a:hover {
      color: var(--brand) !important;
    }
    .navbar.navbar-dark .nav-toggle {
      border-color: rgba(15,23,42,.35);
      color: var(--ink);
    }
    .navbar.navbar-dark .nav-toggle span,
    .navbar.navbar-dark .nav-toggle span::before,
    .navbar.navbar-dark .nav-toggle span::after {
      background: var(--ink);
    }
    .navbar.navbar-dark .nav-toggle.is-active span::before,
    .navbar.navbar-dark .nav-toggle.is-active span::after {
      background: var(--ink);
    }
    .navbar.navbar-light {
      color: #fff;
      background: rgba(255, 255, 255, 0.024);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .navbar.navbar-light .nav-links a {
      color: rgba(255, 255, 255, 0.82);
    }
    .navbar.navbar-light .nav-links a:hover {
      color: #fff;
    }
    .navbar.navbar-light .language-switcher {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .navbar.navbar-light .lang-btn {
      color: rgba(255, 255, 255, 0.7);
    }
    .navbar.navbar-light .lang-btn:hover {
      color: rgba(255, 255, 255, 0.9);
      background: rgba(255, 255, 255, 0.1);
    }
    .navbar.navbar-light .lang-btn.active {
      color: #fff;
      background: var(--brand);
    }
    .navbar.navbar-light .lang-separator {
      color: rgba(255, 255, 255, 0.3);
    }
    .navbar.navbar-light .nav-toggle {
      border-color: rgba(255, 255, 255, 0.35);
      color: #fff;
    }
    .navbar.navbar-light .nav-toggle span,
    .navbar.navbar-light .nav-toggle span::before,
    .navbar.navbar-light .nav-toggle span::after {
      background: #fff;
    }
    .navbar.navbar-light .nav-toggle.is-active span::before,
    .navbar.navbar-light .nav-toggle.is-active span::after {
      background: #fff;
    }
    .btn {
      border-radius: 999px;
      padding: 10px 22px;
      font-weight: 600;
      font-size: .9rem;
      border: none;
      cursor: pointer;
      transition: transform .2s, box-shadow .2s;
    }
    .btn-primary {
      background: var(--brand);
      color: #fff;
      box-shadow: 0 8px 20px rgba(232,62,51,.3);
    }
    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(232,62,51,.4);
    }
    .hero {
      position: relative;
      min-height: 100vh;
      height: 100vh;
      padding: calc(120px + var(--nav-height)) 5% 120px;
      margin-top: calc(-1 * var(--nav-height));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      color: #fff;
      background: #030614;
      isolation: isolate;
      scroll-margin-top: var(--nav-height);
    }
    .hero-backdrop {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      inset: 0;
      z-index: 1;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }
    .hero-backdrop::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      inset: 0;
      background: rgba(0, 0, 0, 0.096);
      pointer-events: none;
      z-index: 1;
      transition: opacity 0.6s ease;
    }
    .hero-backdrop.no-overlay::after {
      opacity: 1;
    }
    .hero-backdrop-img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      inset: 0;
      background-size: cover;
      background-position: center;
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 0;
      image-rendering: -webkit-optimize-contrast;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      will-change: transform;
    }
    .hero-backdrop-img[style*="url"] {
      -webkit-animation: heroZoom 18s ease-in-out forwards !important;
      animation: heroZoom 18s ease-in-out forwards !important;
      opacity: 1;
    }
    .hero-backdrop-img.is-zoom {
      -webkit-animation: heroZoom 18s ease-in-out forwards;
      animation: heroZoom 18s ease-in-out forwards;
    }
    @-webkit-keyframes heroZoom {
      0% { -webkit-transform: scale(1); transform: scale(1); will-change: transform; }
      100% { -webkit-transform: scale(1.08); transform: scale(1.08); will-change: transform; }
    }
    @keyframes heroZoom {
      0% { -webkit-transform: scale(1); transform: scale(1); will-change: transform; }
      100% { -webkit-transform: scale(1.08); transform: scale(1.08); will-change: transform; }
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      width: min(900px, 92%);
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
      -webkit-transition: opacity 0.8s ease, transform 0.8s ease;
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .hero-eyebrow {
      text-transform: uppercase;
      letter-spacing: .25em;
      font-size: 1.4rem;
      font-weight: 600;
      color: rgba(255,255,255,.75);
    }
    .letter {
      opacity: 0;
      font-size: 1.4rem;
      -webkit-transform: scale(0.5);
      transform: scale(0.5);
      -webkit-animation: fadeInLetter 0.4s ease forwards;
      animation: fadeInLetter 0.4s ease forwards;
      -webkit-animation-delay: calc(0.2s + var(--i) * 0.05s);
      animation-delay: calc(0.2s + var(--i) * 0.05s);
    }
    @-webkit-keyframes fadeInLetter {
      to { opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
    }
    @keyframes fadeInLetter {
      to { opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
    }
    .hero-title {
      font-family: Poppins, sans-serif;
      font-weight: 800;
      font-size: clamp(3.125rem, 8vw, 6.325rem);
      letter-spacing: .08em;
      text-transform: uppercase;
      text-shadow: 0 12px 30px rgba(0,0,0,.35);
    }
    .hero-title-accent {
      color: #F40009;
    }
    .hero-subtitle {
      max-width: 720px;
      font-size: 1.5rem;
      font-weight: 500;
      line-height: 1.6;
      color: rgba(255,255,255,.82);
      margin-top: -6px;
    }
    .hero-meta {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
      justify-content: center;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .hero-meta__item {
      min-width: 120px;
    }
    .hero-meta__item span {
      display: block;
      font-size: .7rem;
      color: rgba(255,255,255,.6);
    }
    .hero-meta__item strong {
      display: block;
      font-size: 1rem;
      margin-top: 6px;
    }
    .hero-cta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 16px;
    }
    .btn-hero {
      padding: 14px 32px;
      font-size: 1rem;
      font-weight: 600;
    }
    .btn-outline {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,.55);
      box-shadow: 0 8px 20px rgba(0,0,0,.1);
    }
    .btn-outline:hover {
      background: rgba(255,255,255,.15);
    }
    .hero-nav {
      position: absolute;
      bottom: clamp(16px, 4vw, 48px);
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 3;
      color: rgba(255,255,255,.8);
      text-transform: uppercase;
      letter-spacing: .3em;
      -webkit-transition: opacity 0.8s ease, transform 0.8s ease;
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .hero-nav--prev { left: clamp(16px, 5vw, 70px); }
    .hero-nav--next { right: clamp(16px, 5vw, 70px); flex-direction: row-reverse; text-align: right; }
    .hero-nav__btn {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.55);
      background: transparent;
      color: #fff;
      font-size: 1.3rem;
      display: grid;
      place-items: center;
      transition: background .3s ease, transform .3s ease;
    }
    .hero-nav__btn:hover {
      background: rgba(255,255,255,.18);
      transform: translateY(-3px);
    }
    .hero-nav__label span {
      display: block;
      font-size: .62rem;
      color: rgba(255,255,255,.6);
    }
    .hero-nav__label strong {
      display: block;
      margin-top: 6px;
      font-size: .85rem;
      letter-spacing: .08em;
      color: #fff;
    }
    @keyframes heroTextReveal {
      0% { opacity: .7; transform: scale(.92); }
      100% { opacity: 1; transform: scale(1); }
    }
    .hero-animate {
      opacity: 1;
      transform: scale(1);
    }
    .hero-cta.hero-animate {
      opacity: 0;
      transform: translateY(20px);
    }
    .hero-nav.hero-animate {
      opacity: 0;
    }
    .hero-nav--prev.hero-animate {
      opacity: 0;
    }
    .hero-nav--next.hero-animate {
      opacity: 0;
    }
    .hero-animate.is-active.hero-title {
      animation: heroTextReveal 4s ease forwards;
    }
    .hero-cta.hero-animate.is-active {
      animation: fadeInUp 1s ease forwards;
      animation-delay: 1s;
    }
    .hero-nav--prev.hero-animate.is-active {
      animation: fadeIn 1s ease forwards;
      animation-delay: 1s;
    }
    .hero-nav--next.hero-animate.is-active {
      animation: fadeIn 1s ease forwards;
      animation-delay: 1s;
    }
    @keyframes fadeIn {
      0% { opacity: 0; }
      100% { opacity: 1; }
    }
    @keyframes fadeInUp {
      0% { transform: translateY(20px); opacity: 0; }
      100% { transform: translateY(0); opacity: 1; }
    }
    @keyframes slideInLeft {
      0% { transform: translateX(-100%); opacity: 0; }
      1% { opacity: 1; }
      100% { transform: translateX(0); opacity: 1; }
    }
    @keyframes slideInRight {
      0% { transform: translateX(100%); opacity: 0; }
      1% { opacity: 1; }
      100% { transform: translateX(0); opacity: 1; }
    }
    body.intro-active {
      overflow: hidden;
    }
    body.intro-active .hero-inner,
    body.intro-active .hero-nav {
      opacity: 0 !important;
      transform: translateY(10px);
      pointer-events: none;
      visibility: hidden;
      transition: none;
    }
    body:not(.intro-active) .hero-nav {
      opacity: 1 !important;
      visibility: visible !important;
    }
    .intro-overlay {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      inset: 0;
      display: grid;
      place-items: center;
      z-index: 1;
      pointer-events: none;
      --intro-rise: clamp(260px, 65vh, 680px);
    }
    .intro-overlay::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      inset: 0;
      background: #000;
      z-index: -1;
      opacity: var(--bg-opacity, 1);
      -webkit-transition: opacity 1.2s ease;
      transition: opacity 1.2s ease;
    }
    .intro-overlay.is-exit {
      opacity: 1;
      transition: opacity .8s ease;
    }
    .intro-overlay.is-hidden {
      opacity: 0;
      pointer-events: none;
      display: none;
      visibility: hidden;
    }
    .intro-stage {
      position: relative;
      width: min(70vw, 640px);
      height: calc(min(70vw, 640px) * 9 / 16);
      perspective: 1400px;
    }
    .intro-stack {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      inset: 0;
    }
    .intro-stack {
      display: grid;
      place-items: center;
      transition: opacity .4s ease;
    }
    .intro-card {
      position: absolute;
      left: 50%;
      top: 50%;
      --card-width: min(70vw, 640px);
      --card-height: calc(var(--card-width) * 9 / 16);
      width: var(--card-width);
      height: var(--card-height);
      border-radius: 0;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      box-shadow: 0 18px 40px rgba(0,0,0,.45);
      opacity: 0;
      z-index: calc(10 + var(--i));
      --stack-offset: 0px;
      transform: translate(-50%, 100vh);
      transform-origin: center;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      will-change: transform, opacity;
      transition: transform .8s cubic-bezier(.16,.84,.44,1), opacity .6s ease, filter .6s ease;
      image-rendering: -webkit-optimize-contrast;
    }
    .intro-card::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      inset: 0;
      background: linear-gradient(120deg, rgba(3,5,15,.65) 0%, rgba(3,6,15,.2) 35%);
      opacity: var(--gradient-opacity, 0);
      pointer-events: none;
      z-index: 1;
      -webkit-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease;
    }
    .intro-overlay.is-running .intro-card.is-entering {
      animation: introCardEnter 0.6s cubic-bezier(.41,.69,.7,.81) forwards;
    }
    .intro-card.is-zoom-active {
      animation: introCardZoom 18s ease-in-out forwards !important;
    }
    .intro-card.is-exit-up {
      animation: introCardExitUp 1.0s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    .intro-overlay.is-panel .intro-card,
    .intro-overlay.is-panel .intro-card::after {
      animation: none !important;
    }
    .intro-overlay.is-panel .intro-card {
      box-shadow: 0 22px 48px rgba(0,0,0,.38);
    }
    .intro-card.is-panel-left {
      opacity: 1;
      transform: translate(calc(-50% - var(--card-width) * 0.5 - 5px), -50%);
      filter: saturate(1.03);
      z-index: 5;
      transition: transform 1s ease, opacity 1s ease, filter .6s ease, width 1s ease, height 1s ease;
    }
    .intro-card.is-panel-left-expand {
      opacity: 0;
      transform: translate(calc(-50% - 50vw - 100px), -50%);
      width: 100vw;
      height: 100vh;
    }
    .intro-card.is-panel-base {
      opacity: 1;
      transform: translate(-50%, -50%);
      filter: saturate(1);
      z-index: 10;
    }
    .intro-card.is-panel-center {
      opacity: 1;
      transform: translate(-50%, -50%);
      filter: saturate(1.05) brightness(1.02);
      z-index: 20;
    }
    .intro-card.is-panel-center-grow {
      width: 100vw;
      height: 100vh;
      transform: translate(-50%, -50%);
      opacity: 1;
      transition: width 1s ease, height 1s ease;
    }
    .intro-card.is-panel-right {
      opacity: 1;
      transform: translate(calc(-50% + var(--card-width) * 0.5 + 5px), -50%);
      filter: saturate(1.03);
      z-index: 5;
      transition: transform 1s ease, opacity 1s ease, filter .6s ease, width 1s ease, height 1s ease;
    }
    .intro-card.is-panel-right-expand {
      opacity: 0;
      transform: translate(calc(-50% + 50vw + 100px), -50%);
      width: 100vw;
      height: 100vh;
    }
    .intro-card.is-panel-dormant {
      opacity: 0;
      transform: translate(-50%, -50%) scale(.9);
      filter: blur(6px) saturate(.6);
    }
    @media (max-width: 820px) {
      .intro-card.is-panel-left { transform: translate(calc(-50% - 32vw), -50%) scale(.96); }
      .intro-card.is-panel-right { transform: translate(calc(-50% + 32vw), -50%) scale(.96); }
      .intro-card.is-panel-center { transform: translate(-50%, -50%) scale(1.02); }
    }
    @keyframes introCardZoom {
      0% { 
        transform: translate(-50%, calc(-50% + var(--stack-offset, 0px))) scale(1);
        opacity: 1;
      }
      100% { 
        transform: translate(-50%, calc(-50% + var(--stack-offset, 0px))) scale(1.08);
        opacity: 1;
      }
    }
    @keyframes introCardEnter {
      0% { transform: translate(-50%, 100vh) scale(2.4); opacity: 0; }
      100% { transform: translate(-50%, calc(-50% + var(--stack-offset, 0px))) scale(1); opacity: 1; }
    }
    @keyframes introCardExitUp {
      0% { transform: translate(-50%, calc(-50% + var(--stack-offset, 0px))); opacity: 1; }
      100% { transform: translate(-50%, -120vh); opacity: 0; }
    }
    @keyframes introCardBloom {
      0% { opacity: 0; transform: scale(0.96); filter: blur(22px) saturate(1.28); }
      55% { opacity: 0.55; transform: scale(1.08); filter: blur(30px) saturate(1.4); }
      100% { opacity: 0.18; transform: scale(1.02); filter: blur(24px) saturate(1.18); }
    }
    .intro-glow {
      position: absolute;
      left: 50%;
      top: 50%;
      width: min(72vw, 560px);
      aspect-ratio: 16 / 9;
      border-radius: 0;
      transform: translate(-50%, -50%);
      opacity: 0;
      pointer-events: none;
      box-shadow: 0 0 80px rgba(255,255,255,.25);
      z-index: 1;
    }
    .intro-overlay.is-glow .intro-glow {
      animation: introGlow .35s ease-out forwards;
    }
    @keyframes introGlow {
      0% { opacity: 0; }
      50% { opacity: .45; }
      100% { opacity: 0; }
    }
    @media (max-width: 820px) {
      .intro-stage { width: min(86vw, 520px); height: calc(min(86vw, 520px) * 9 / 16); }
      .intro-card { --card-width: min(86vw, 500px); width: var(--card-width); height: calc(var(--card-width) * 9 / 16); }
    }
    .word {
      opacity: 0;
      transform: translateY(10px);
      animation: fadeInWord 1s ease forwards;
      animation-delay: calc(0.5s + var(--i) * 0.08s);
    }
    @keyframes fadeInWord {
      0% { opacity: 0; transform: translateY(10px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @media (max-width: 820px) {
      .nav-right .nav-cta-desktop {
        display: none;
      }
      .language-switcher {
        padding: 4px 8px;
        gap: 6px;
      }
      .lang-btn {
        font-size: 0.8125rem;
        padding: 3px 6px;
      }
      .nav-toggle {
        display: flex;
      }
      .nav-links {
        position: fixed;
        top: calc(var(--nav-height) + 12px);
        right: 6%;
        left: 6%;
        background: rgba(248,250,252,.97);
        flex-direction: column;
        gap: 20px;
        padding: 28px;
        border-radius: 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        z-index: 200;
        transition: opacity .32s ease, transform .32s ease;
      }
      .nav-links.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }
      .nav-links a {
        font-size: 1.05rem;
        color: var(--ink);
      }
      .navbar.navbar-dark .nav-links a {
        color: var(--ink) !important;
      }
      .navbar.navbar-dark .nav-links {
        background: rgba(248,250,252,.97);
      }
      .navbar.navbar-dark .nav-center-inner {
        background: rgba(0, 0, 0, 0.15) !important;
        border: 1px solid rgba(0, 0, 0, 0.2) !important;
      }
      .nav-cta-mobile {
        display: block;
        width: 100%;
      }
      .nav-right {
        gap: 8px;
      }
      .hero {
        padding: calc(100px + var(--nav-height)) 6% 140px;
      }
      .hero-nav {
        display: flex !important;
        bottom: 20px;
        gap: 8px;
        opacity: 1 !important;
        visibility: visible !important;
      }
      .hero-nav.hero-animate {
        opacity: 1 !important;
        transform: translateX(0) !important;
      }
      body.intro-active .hero-nav {
        opacity: 0 !important;
        visibility: hidden !important;
      }
      .hero-nav--prev {
        left: 20px;
      }
      .hero-nav--next {
        right: 20px;
      }
      .hero-nav__label {
        display: none !important;
      }
      .hero-nav__btn {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
      }
      .bridge-side-image {
        width: 180px;
        height: 260px;
      }
      .bridge-side-left {
        left: -80px;
      }
      .bridge-side-right {
        right: -80px;
      }
      .bridge-side-left.show {
        transform: translate(-60px, -50%) scale(1.5);
      }
      .bridge-side-right.show {
        transform: translate(60px, -50%) scale(1.5);
      }
      .bridge-side-image.show {
        opacity: 0.12;
      }
      .bridge-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
      }
      .bridge-card img {
        height: 250px;
      }
      .bridge-img-0004,
      .bridge-img-0965 {
        object-position: center;
      }
    }
    .bridge {
      padding: 60px 5% 100px;
      background: var(--bg-soft);
      position: relative;
      overflow: hidden;
    }
    .bridge-side-image {
      position: absolute;
      width: 250px;
      height: 350px;
      opacity: 0;
      transform: scale(1.5);
      transition: opacity 1.2s ease, transform 1.2s ease;
      pointer-events: none;
      z-index: 1;
    }
    .bridge-side-left {
      left: -100px;
      top: 50%;
      transform: translate(0, -50%) scale(1.5);
    }
    .bridge-side-right {
      right: -100px;
      top: 50%;
      transform: translate(0, -50%) scale(1.5);
    }
    .bridge-side-image.show {
      opacity: 0.15;
    }
    .bridge-side-left.show {
      transform: translate(-150px, -50%) scale(2.2);
    }
    .bridge-side-right.show {
      transform: translate(150px, -50%) scale(2.2);
    }
    .bridge-side-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
      filter: grayscale(0.3) brightness(0.9);
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
    }
    .bridge-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
      position: relative;
      z-index: 1;
    }
    .bridge-header h2 {
      font-family: Poppins, sans-serif;
      font-weight: 700;
      font-size: clamp(2rem, 4vw, 3rem);
      margin: 0;
      color: var(--ink);
    }
    .bridge-title-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }
    .bridge-ornament {
      font-size: 26px;
      color: rgba(232, 62, 51, 0.6);
    }
    .bridge-header p {
      color: var(--muted);
      font-size: 1.1rem;
      line-height: 1.7;
    }
    .bridge-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
    }
    .bridge-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      transform: translateY(40px);
      opacity: 0;
      transition: transform .7s ease, opacity .7s ease, box-shadow .3s;
    }
    .bridge-card.show {
      transform: translateY(0);
      opacity: 1;
    }
    .bridge-card:hover {
      box-shadow: 0 24px 80px rgba(0,0,0,.18);
      transform: translateY(-4px);
    }
    .bridge-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .bridge-img-0004 {
      height: 240px;
      object-fit: cover !important;
      object-position: center 27% !important;
      background: transparent;
    }
    .bridge-img-0965 {
      object-position: center 30% !important;
    }
    .bridge-card-body {
      padding: 28px;
      position: relative;
    }
    .bridge-card h3 {
      font-family: Poppins, sans-serif;
      font-weight: 700;
      font-size: 1.35rem;
      margin-bottom: 12px;
      color: var(--ink);
    }
    .bridge-card p {
      color: var(--muted);
      font-size: .95rem;
      line-height: 1.7;
    }
    .bridge-card hr {
      border: none;
      border-top: 1px solid var(--muted);
      margin: 20px 0 30px;
    }
    .about-us-section {
      padding: 90px 6% 90px;
      background: #fefaf5;
      border-top: 1px solid rgba(15, 23, 42, 0.05);
      border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    }
    .about-us-container {
      max-width: 1150px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 48px;
    }
    .about-us-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      text-align: center;
      flex-wrap: wrap;
    }
    .about-us-header h2 {
      margin: 0;
      font-family: Poppins, sans-serif;
      font-weight: 700;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--ink);
    }
    .about-us-ornament {
      font-size: 26px;
      color: rgba(232, 62, 51, 0.6);
    }
    .about-us-intro {
      display: flex;
      flex-direction: column;
      gap: 18px;
      align-items: center;
      text-align: center;
    }
    .about-us-intro p {
      margin: 0;
      color: var(--muted);
      line-height: 1.8;
      font-size: 1.02rem;
    }
    .about-us-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--brand);
      background: rgba(232, 62, 51, 0.12);
      padding: 6px 14px;
      border-radius: 999px;
      width: fit-content;
    }
    .about-us-title {
      margin: 0;
      font-family: Poppins, sans-serif;
      font-weight: 700;
      font-size: clamp(2rem, 3.6vw, 2.7rem);
      color: var(--ink);
    }
    .about-us-lead {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--ink);
      max-width: 980px;
      margin: 0;
    }
    .about-us-lead + .about-us-lead {
      margin-top: 6px;
    }
    .about-us-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 28px;
    }
    .about-us-panel {
      background: #fff;
      border-radius: 28px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      padding: 28px 30px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    }
    .about-us-panel.about-us-audience {
      background: #fff;
    }
    .about-us-section-header {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .about-us-section-number {
      font-size: 0.8rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--brand);
      border: 1px solid rgba(232, 62, 51, 0.4);
      border-radius: 999px;
      padding: 4px 12px;
    }
    .about-us-section-title {
      margin: 0;
      font-family: Poppins, sans-serif;
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--ink);
    }
    .about-us-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 0.75rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--ink);
      background: rgba(15, 23, 42, 0.08);
      width: fit-content;
    }
    .about-us-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 0;
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: 0.98rem;
    }
    .about-us-list li {
      position: relative;
      padding-left: 24px;
    }
    .about-us-list li::before {
      content: "✦";
      position: absolute;
      left: 0;
      top: 2px;
      font-size: 0.85rem;
      color: var(--brand);
    }
    .about-us-note {
      background: rgba(232, 62, 51, 0.06);
      border-radius: 18px;
      padding: 20px 22px;
      line-height: 1.8;
      color: var(--ink);
      border: 1px solid rgba(232, 62, 51, 0.15);
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .about-us-note p {
      margin: 0;
    }
    .about-us-note p + p {
      margin-top: 8px;
    }
    .about-us-checklist {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 0;
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: 0.98rem;
    }
    .about-us-checklist li {
      position: relative;
      padding-left: 24px;
    }
    .about-us-checklist li::before {
      content: "✦";
      position: absolute;
      left: 0;
      top: 2px;
      font-size: 0.85rem;
      color: var(--brand);
    }
    .about-us-closing {
      color: var(--muted);
      line-height: 1.8;
      font-size: 1rem;
      margin-top: 10px;
    }
    @media (max-width: 900px) {
      .about-us-section {
        padding: 80px 6% 80px;
      }
      .about-us-content {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 640px) {
      .about-us-section {
        padding: 60px 6% 60px;
      }
      .about-us-panel {
        padding: 22px;
      }
      .about-us-lead {
        font-size: 1rem;
      }
    }
    .gallery-section {
      padding: 110px 20px 55px 20px;
      background: linear-gradient(135deg, #f5f1ed 0%, #faf7f5 50%, #f5f1ed 100%);
      position: relative;
      overflow: hidden;
    }
    .gallery-section::before {
      content: '❋';
      position: absolute;
      top: 50px;
      left: 6%;
      font-size: 70px;
      color: rgba(232, 62, 51, 0.06);
      transform: rotate(-20deg);
    }
    .gallery-section::after {
      content: '✦';
      position: absolute;
      bottom: 80px;
      right: 7%;
      font-size: 90px;
      color: rgba(232, 62, 51, 0.05);
      transform: rotate(15deg);
    }
    .gallery-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 48px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
    .gallery-title-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
    .gallery-title-row h2 {
      margin: 0;
      font-family: Poppins, sans-serif;
      font-weight: 700;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--ink);
    }
    .gallery-ornament {
      font-size: 28px;
      opacity: 0.8;
    }
    .gallery-header p {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.7;
    }
    .gallery-item {
      background: #fff;
      border-radius: 0;
      overflow: hidden;
      box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
      border: 1px solid rgba(15, 23, 42, 0.05);
      cursor: pointer;
      transition: transform .35s ease, box-shadow .35s ease;
      width: 100%;
      aspect-ratio: 1 / 1;
      margin: 1.5px;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(1.05);
    }
    .gallery-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
    }
    .gallery-container {
      position: relative;
    }
    .gallery-gradient-overlay {
      position: absolute;
      bottom: -110px;
      left: 0;
      right: 0;
      width: 100%;
      height: 550px;
      background: linear-gradient(to top, 
        #f5f1ed 0%, 
        #f5f1ed 20%,
        rgba(245, 241, 237, 0.95) 30%,
        rgba(245, 241, 237, 0.85) 40%,
        rgba(245, 241, 237, 0.65) 55%,
        rgba(245, 241, 237, 0.35) 70%,
        rgba(245, 241, 237, 0.1) 85%,
        rgba(245, 241, 237, 0) 100%
      );
      pointer-events: none;
      z-index: 5;
    }
    @media (min-width: 992px) {
      .gallery-hidden-item {
        display: none;
      }
      .gallery-hidden-item:nth-child(-n+12) {
        display: block;
      }
      .gallery-hidden-item.show {
        display: block;
        animation: fadeIn 0.5s ease forwards;
      }
      .gallery-gradient-overlay {
        display: block;
      }
      .gallery-hidden-item.show:nth-child(1) { animation-delay: 0s; }
      .gallery-hidden-item.show:nth-child(2) { animation-delay: 0.05s; }
      .gallery-hidden-item.show:nth-child(3) { animation-delay: 0.1s; }
      .gallery-hidden-item.show:nth-child(4) { animation-delay: 0.15s; }
      .gallery-hidden-item.show:nth-child(5) { animation-delay: 0.2s; }
      .gallery-hidden-item.show:nth-child(6) { animation-delay: 0.25s; }
      .gallery-hidden-item.show:nth-child(7) { animation-delay: 0.3s; }
      .gallery-hidden-item.show:nth-child(8) { animation-delay: 0.35s; }
      .gallery-hidden-item.show:nth-child(9) { animation-delay: 0.4s; }
      .gallery-hidden-item.show:nth-child(10) { animation-delay: 0.45s; }
      .gallery-hidden-item.show:nth-child(11) { animation-delay: 0.5s; }
      .gallery-hidden-item.show:nth-child(12) { animation-delay: 0.55s; }
      .gallery-hidden-item.show:nth-child(13) { animation-delay: 0.6s; }
    }
    @media (min-width: 768px) and (max-width: 991px) {
      .gallery-hidden-item {
        display: none;
      }
      .gallery-hidden-item:nth-child(-n+12) {
        display: block;
      }
      .gallery-hidden-item.show {
        display: block;
        animation: fadeIn 0.5s ease forwards;
      }
      .gallery-gradient-overlay {
        display: block;
      }
      .gallery-hidden-item.show:nth-child(13) { animation-delay: 0s; }
      .gallery-hidden-item.show:nth-child(14) { animation-delay: 0.05s; }
      .gallery-hidden-item.show:nth-child(15) { animation-delay: 0.1s; }
      .gallery-hidden-item.show:nth-child(16) { animation-delay: 0.15s; }
      .gallery-hidden-item.show:nth-child(17) { animation-delay: 0.2s; }
      .gallery-hidden-item.show:nth-child(18) { animation-delay: 0.25s; }
      .gallery-hidden-item.show:nth-child(19) { animation-delay: 0.3s; }
      .gallery-hidden-item.show:nth-child(20) { animation-delay: 0.35s; }
      .gallery-hidden-item.show:nth-child(21) { animation-delay: 0.4s; }
      .gallery-hidden-item.show:nth-child(22) { animation-delay: 0.45s; }
      .gallery-hidden-item.show:nth-child(23) { animation-delay: 0.5s; }
      .gallery-hidden-item.show:nth-child(24) { animation-delay: 0.55s; }
    }
    @media (min-width: 576px) and (max-width: 767px) {
      .gallery-hidden-item {
        display: none;
      }
      .gallery-hidden-item:nth-child(-n+8) {
        display: block;
      }
      .gallery-hidden-item.show {
        display: block;
        animation: fadeIn 0.5s ease forwards;
      }
      .gallery-gradient-overlay {
        display: block;
      }
      .gallery-hidden-item.show:nth-child(9) { animation-delay: 0s; }
      .gallery-hidden-item.show:nth-child(10) { animation-delay: 0.05s; }
      .gallery-hidden-item.show:nth-child(11) { animation-delay: 0.1s; }
      .gallery-hidden-item.show:nth-child(12) { animation-delay: 0.15s; }
      .gallery-hidden-item.show:nth-child(13) { animation-delay: 0.2s; }
      .gallery-hidden-item.show:nth-child(14) { animation-delay: 0.25s; }
      .gallery-hidden-item.show:nth-child(15) { animation-delay: 0.3s; }
      .gallery-hidden-item.show:nth-child(16) { animation-delay: 0.35s; }
    }
    @media (max-width: 575px) {
      .gallery-hidden-item {
        display: none;
      }
      .gallery-hidden-item:nth-child(-n+4) {
        display: block;
      }
      .gallery-hidden-item.show {
        display: block;
        animation: fadeIn 0.5s ease forwards;
      }
      .gallery-gradient-overlay {
        display: none;
      }
      .gallery-hidden-item.show:nth-child(5) { animation-delay: 0s; }
      .gallery-hidden-item.show:nth-child(6) { animation-delay: 0.05s; }
      .gallery-hidden-item.show:nth-child(7) { animation-delay: 0.1s; }
      .gallery-hidden-item.show:nth-child(8) { animation-delay: 0.15s; }
    }
    .gallery-container.gallery-expanded .gallery-gradient-overlay {
      display: none;
    }
    .gallery-load-more-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 40px;
      position: relative;
      z-index: 20;
    }
    .gallery-load-more-hidden {
      display: none !important;
    }
    .gallery-load-more-btn {
      display: inline-block;
      padding: 16px 48px;
      font-size: 1.05rem;
      font-weight: 600;
      border-radius: 999px;
      transition: all 0.3s ease;
      background-color: var(--brand);
      border: none;
      color: white;
      cursor: pointer;
      position: relative;
      z-index: 20;
      box-shadow: 0 8px 20px rgba(232, 62, 51, 0.3);
    }
    .gallery-load-more-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 32px rgba(232, 62, 51, 0.3);
      background-color: #d63529;
    }
    .gallery-load-more-btn:active {
      transform: translateY(-1px);
    }
    .gallery-lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .lightbox-content {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 40px;
      box-sizing: border-box;
      overflow: auto;
    }
    #lightboxImage {
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: calc(100vh - 120px);
      object-fit: contain;
      animation: fadeIn 0.3s ease;
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    .lightbox-close {
      position: absolute;
      top: 30px;
      right: 30px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: none;
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
      font-size: 28px;
      cursor: pointer;
      transition: background 0.3s ease;
      z-index: 1001;
    }
    .lightbox-close:hover {
      background: rgba(255, 255, 255, 0.25);
    }
    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border: none;
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
      cursor: pointer;
      border-radius: 8px;
      font-size: 24px;
      transition: background 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1001;
    }
    .lightbox-prev {
      left: 30px;
    }
    .lightbox-next {
      right: 30px;
    }
    .lightbox-nav:hover {
      background: rgba(255, 255, 255, 0.25);
    }
    .lightbox-counter {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255, 255, 255, 0.8);
      font-size: 16px;
      background: rgba(0, 0, 0, 0.5);
      padding: 8px 16px;
      border-radius: 20px;
      z-index: 1001;
    }
    @media (max-width: 768px) {
      .lightbox-close {
        top: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
        font-size: 24px;
      }
      .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
      }
      .lightbox-prev {
        left: 12px;
      }
      .lightbox-next {
        right: 12px;
      }
      .lightbox-counter {
        bottom: 20px;
        font-size: 14px;
      }
    }
    .row {
      margin-top: 0 !important;
    }
    @media (max-width: 820px) {
      .gallery-section {
        padding: 90px 16px;
      }
    }
    .faq-section {
      padding: 120px 20px;
      background: linear-gradient(135deg, #f8f4f0 0%, #fff 50%, #f8f4f0 100%);
      position: relative;
      overflow: hidden;
    }
    .faq-section::before {
      content: '❋';
      position: absolute;
      top: 40px;
      left: 5%;
      font-size: 80px;
      color: rgba(232, 62, 51, 0.05);
      transform: rotate(-15deg);
    }
    .faq-section::after {
      content: '✦';
      position: absolute;
      bottom: 60px;
      right: 8%;
      font-size: 100px;
      color: rgba(222, 50, 60, 0.06);
      transform: rotate(25deg);
    }
    .faq-container {
      max-width: 1400px;
      margin: 0 auto;
    }
    .faq-header {
      text-align: center;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
    }
    .faq-header h2 {
      font-size: 2.5rem;
      color: var(--text);
      font-weight: 700;
      letter-spacing: -0.5px;
      margin: 0;
    }
    .faq-ornament {
      font-size: 32px;
      color: var(--brand);
      animation: pulse 3s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1.1); }
    }
    .faq-subtitle {
      text-align: center;
      font-size: 1.1rem;
      color: rgba(0,0,0,0.6);
      margin-bottom: 60px;
      font-style: italic;
    }
    .faq-subtitle.lang {
      display: block;
    }
    .faq-grid {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 60px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }
    .faq-item {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
    }
    .faq-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(232, 62, 51, 0.12);
    }
    .faq-question {
      width: 100%;
      padding: 20px 24px;
      background: white;
      border: none;
      text-align: left;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      transition: background-color 0.3s ease;
      position: relative;
    }
    .faq-question:hover {
      background: rgba(232, 62, 51, 0.03);
    }
    .faq-item.active .faq-question {
      background: linear-gradient(135deg, rgba(232, 62, 51, 0.08), rgba(222, 50, 60, 0.05));
    }
    .faq-icon {
      font-size: 22px;
      flex-shrink: 0;
      color: var(--brand);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
    }
    .faq-icon i {
      opacity: 0.85;
    }
    .faq-question .lang {
      flex: 1;
      line-height: 1.4;
    }
    .faq-toggle {
      font-size: 28px;
      font-weight: 400;
      color: var(--brand);
      flex-shrink: 0;
      transition: transform 0.3s ease;
      line-height: 1;
      margin-left: auto;
    }
    .faq-item.active .faq-toggle {
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
      padding: 0 24px;
      background: rgba(248, 244, 240, 0.5);
      opacity: 0;
    }
    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 20px 24px 24px;
      opacity: 1;
    }
    .faq-answer p {
      margin: 0 0 12px 0;
      line-height: 1.7;
      color: rgba(0,0,0,0.75);
      font-size: 0.95rem;
    }
    .faq-answer p:last-child {
      margin-bottom: 0;
    }
    .faq-answer ul {
      margin: 12px 0 0 0;
      padding-left: 20px;
      list-style: none;
    }
    .faq-answer li {
      position: relative;
      padding-left: 24px;
      margin-bottom: 10px;
      line-height: 1.6;
      color: rgba(0,0,0,0.75);
      font-size: 0.95rem;
    }
    .faq-answer li::before {
      content: '✦';
      position: absolute;
      left: 0;
      color: var(--brand);
      font-size: 12px;
      top: 4px;
    }
    .faq-answer strong {
      color: var(--text);
      font-weight: 600;
    }
    .faq-footer {
      text-align: center;
      padding: 40px 20px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
    .faq-footer p {
      margin: 0;
      font-size: 1.1rem;
      color: rgba(0,0,0,0.7);
    }
    .faq-link {
      color: var(--brand);
      font-weight: 600;
      text-decoration: none;
      border-bottom: 2px solid transparent;
      transition: border-color 0.3s ease;
    }
    .faq-link:hover {
      border-bottom-color: var(--brand);
    }
    .faq-ornament-small {
      font-size: 20px;
      color: var(--brand);
    }
    .horizontal-gallery {
      position: relative;
      overflow: hidden;
      overflow-y: auto;
      background: #0a0a0a;
      min-height: 100vh;
    }
    body:has(.horizontal-gallery) {
      overflow-x: hidden;
    }
    .horizontal-gallery::before {
      content: '';
      position: absolute;
      inset: 0;
      background: #0a0a0a;
      z-index: 1;
    }
    .gallery-intro-hero {
      position: relative;
      width: 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      pointer-events: none;
      overflow: hidden;
    }
    .intro-hero-image {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 70vw;
      height: 70vh;
      transform: translate(-50%, -50%);
      background-size: cover;
      background-position: center;
      border-radius: 24px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.7);
      will-change: width, height, border-radius;
    }
    .intro-hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.5) 100%);
    }
    .intro-hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: white;
      padding: 40px;
      max-width: 800px;
    }
    .intro-hero-content .gallery-ornament {
      font-size: 48px;
      color: var(--brand);
      display: block;
      margin-bottom: 24px;
      animation: pulse 3s ease-in-out infinite;
    }
    .intro-hero-content h2 {
      font-size: 3.5rem;
      font-weight: 700;
      margin: 0 0 20px 0;
      letter-spacing: -1px;
      text-shadow: 0 4px 20px rgba(0,0,0,0.7);
      line-height: 1.2;
    }
    .intro-hero-content p {
      font-size: 1.5rem;
      margin: 0 0 24px 0;
      font-style: italic;
      opacity: 0.95;
      text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    }
    .intro-hero-content .gallery-ornament-small {
      display: block;
      font-size: 32px;
      color: var(--brand);
      margin-top: 20px;
    }
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: none;
  align-items: flex-start; 
  justify-content: center;
  overflow-y: auto;
  padding: 80px 0; 
}
.gallery-modal-content {
  max-width: 90%;
  margin: auto;
}
.gallery-modal .gallery-item {
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 0;
  border-radius: 0;
}
    .everest-overlay-content {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      z-index: 15;
      opacity: 0;
      pointer-events: none;
    }
    .everest-overlay-content * {
      visibility: visible !important;
    }
    .everest-overlay-content .lang {
      display: block !important;
    }
    body[data-lang="hu"] .everest-overlay-content .lang-en {
      display: none !important;
    }
    body[data-lang="en"] .everest-overlay-content .lang-hu {
      display: none !important;
    }
    .everest-overlay-content .slide-number {
      display: inline-block;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--brand);
      background: rgba(255,255,255,0.1);
      padding: 6px 14px;
      border-radius: 20px;
      margin-bottom: 16px;
      backdrop-filter: blur(10px);
    }
    .everest-overlay-content h3 {
      font-size: 3.5rem;
      font-weight: 700;
      margin: 0 0 16px 0;
      letter-spacing: -1px;
      text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    }
    .everest-overlay-content p {
      font-size: 1.5rem;
      margin: 0;
      font-style: italic;
      opacity: 0.95;
      text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    }
    .gallery-pin-wrap {
      position: relative;
      width: 100%;
      min-height: 100vh;
      overflow: visible;
      z-index: 5;
      opacity: 1;
      visibility: visible;
    }
    .gallery-track {
      display: flex;
      flex-direction: column;
      width: 100%;
      will-change: transform;
    }
    .gallery-slide {
      min-width: 100vw;
      width: 100vw;
      min-height: 100vh;
      height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .gallery-slide-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .gallery-slide-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
    }
    .gallery-slide-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: white;
      padding: 40px;
      max-width: 800px;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .gallery-slide.active .gallery-slide-content {
      opacity: 1;
      transform: translateY(0);
    }
    .slide-number {
      display: block;
      font-size: 1rem;
      font-weight: 600;
      color: var(--brand);
      letter-spacing: 3px;
      margin-bottom: 20px;
    }
    .gallery-slide-content h3 {
      font-size: 4rem;
      font-weight: 700;
      margin: 0 0 16px 0;
      letter-spacing: -1px;
      text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    }
    .gallery-slide-content h3.lang {
      display: block;
    }
    .gallery-slide-content p {
      font-size: 1.5rem;
      margin: 0;
      font-style: italic;
      opacity: 0.9;
      text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }
    .gallery-slide-content p.lang {
      display: block;
    }
    .gallery-scroll-indicator {
      position: fixed;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 100;
      display: flex;
      align-items: center;
      gap: 12px;
      color: white;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 1px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .gallery-scroll-indicator.show {
      opacity: 1;
    }
    .scroll-arrow {
      font-size: 1.5rem;
      animation: slideRight 1.5s ease-in-out infinite;
    }
    @keyframes slideRight {
      0%, 100% { transform: translateX(0); opacity: 1; }
      50% { transform: translateX(10px); opacity: 0.5; }
    }
    @media (max-width: 900px) {
      .intro-hero-image {
        width: 85vw;
        height: 60vh;
      }
      .intro-hero-content h2 {
        font-size: 2.2rem;
      }
      .intro-hero-content p {
        font-size: 1.1rem;
      }
      .gallery-slide-content h3 {
        font-size: 2.5rem;
      }
      .gallery-slide-content p {
        font-size: 1.1rem;
      }
      .gallery-scroll-indicator {
        bottom: 20px;
        font-size: 0.8rem;
      }
    }
    .content {
      padding: 80px 5% 120px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .content-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 48px;
      align-items: start;
    }
    .content h2 {
      font-family: Poppins, sans-serif;
      font-weight: 700;
      font-size: 2.2rem;
      margin-bottom: 16px;
      color: var(--ink);
    }
    .content p {
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.8;
    }
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .fade-in.show {
      opacity: 1;
      transform: translateY(0);
    }
    footer {
      padding: 32px 5% 40px;
      background: var(--ink);
      color: rgba(255,255,255,.7);
      font-size: .9rem;
    }
    footer .footer-meta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      text-align: center;
    }
    footer .footer-logo {
      width: 82px;
      height: auto;
      display: block;
      filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
    }
    footer .footer-copy {
      max-width: 540px;
    }
    footer .footer-copy p {
      margin-bottom: 6px;
    }
    footer a {
      color: rgba(255,255,255,.9);
      text-decoration: none;
    }
    footer a:hover {
      color: #fff;
    }
    .card-btn {
      background-color: white;
      color: black;
      border-radius: 10em;
      font-size: 17px;
      font-weight: 600;
      padding: 1em 2em;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
      border: 1px solid black;
      box-shadow: 0 0 0 0 black;
      width: 80%;
      margin: 30px auto 0;
      display: block;
      text-align: center;
    }
    .card-btn:hover {
      transform: translateY(-4px) translateX(-2px);
      box-shadow: 2px 5px 0 0 black;
    }
    .card-btn:active {
      transform: translateY(2px) translateX(1px);
      box-shadow: 0 0 0 0 black;
    }
    .modal-backdrop {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      inset: 0;
      background: rgba(0,0,0,0.6);
      display: none;
      align-items: flex-start;
      justify-content: center;
      z-index: 9999;
      padding: 36px 20px;
      overflow-y: auto;
    }
    .modal-backdrop.show {
      display: flex;
      opacity: 1;
    }
    .modal {
      background: #fff;
      color: var(--ink);
      width: min(1400px, calc(100vw - 32px));
      max-height: calc(100vh - 72px);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,0.35);
      position: relative;
      padding: 36px 40px 30px;
      display: flex;
      flex-direction: column;
    }
    .modal .modal-close {
      position: absolute;
      right: 18px;
      top: 14px;
      background: transparent;
      border: none;
      font-size: 20px;
      cursor: pointer;
    }
    .modal h3 {
      margin-top: 0;
      font-family: Poppins, sans-serif;
      font-size: 2.1rem;
      letter-spacing: -.5px;
      margin: 0 0 28px;
    }
    .modal .modal-body {
      margin-top: 8px;
      line-height: 1.6;
      overflow-y: auto;
      overflow-x: hidden;
      flex: 1;
      padding-right: clamp(32px, 8vw, 120px);
      min-height: 0;
      scrollbar-width: thin;
      scrollbar-color: rgba(222, 50, 60, 0.3) transparent;
    }
    .modal .modal-body::-webkit-scrollbar {
      width: 6px;
    }
    .modal .modal-body::-webkit-scrollbar-track {
      background: transparent;
    }
    .modal .modal-body::-webkit-scrollbar-thumb {
      background: rgba(222, 50, 60, 0.3);
      border-radius: 3px;
      transition: background 0.3s ease;
    }
    .modal .modal-body::-webkit-scrollbar-thumb:hover {
      background: rgba(222, 50, 60, 0.5);
    }
    .modal-longlist {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
      gap: 40px;
    }
    @media (max-width: 900px) {
      .modal-longlist {
        grid-template-columns: 1fr;
      }
      .modal {
        padding: 28px 22px 24px;
        width: calc(100vw - 24px);
        max-height: calc(100vh - 48px);
      }
      .modal .modal-body {
        padding-right: 24px;
      }
    }
    .modal-card {
      position: relative;
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(15,23,42,.06);
      display: flex;
      flex-direction: column;
      box-shadow: 0 10px 28px -4px rgba(15,23,42,.18), 0 2px 6px rgba(15,23,42,.08);
      transition: transform .4s cubic-bezier(.16,.84,.44,1), box-shadow .4s;
    }
    .modal-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 44px -6px rgba(15,23,42,.22), 0 4px 12px rgba(15,23,42,.1);
    }
    .modal-card .media {
      position: relative;
    }
    .modal-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block;
      filter: saturate(1.2);
    }
    .modal-card .media::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      inset: 0;
      background: linear-gradient(180deg, rgba(15,23,42,0) 0%, rgba(15,23,42,0.55) 100%);
      pointer-events: none;
    }
    .modal-card .meta {
      padding: 22px 28px 10px;
    }
    .modal-card h4 {
      margin: 0 0 14px;
      font-size: 1.35rem;
      font-family: Poppins, sans-serif;
      letter-spacing: -.5px;
      background: linear-gradient(90deg,var(--ink),#334155);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }
    .modal-card p {
      margin: 0 0 14px;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.7;
    }
    .modal-card ul {
      margin: 0 0 12px 22px;
      color: var(--muted);
      padding: 0;
    }
    .modal-card li {
      margin: 6px 0;
    }
    .modal-card li::marker {
      color: var(--brand);
    }
    .modal-card .pill {
      display: inline-block;
      background: rgba(232,62,51,.08);
      color: var(--brand);
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .08em;
      padding: 6px 10px;
      border-radius: 999px;
      margin-bottom: 12px;
      text-transform: uppercase;
    }
    .modal-card .card-actions {
      padding: 6px 28px 26px;
      display: flex;
      justify-content: center;
    }
    .modal-card .card-btn {
      width: 80%;
      max-width: 260px;
      background-color: white;
      color: var(--ink);
      border-radius: 10em;
      font-size: 15px;
      font-weight: 600;
      padding: 0.85em 1.6em;
      cursor: pointer;
      transition: all 0.35s cubic-bezier(.16,.84,.44,1);
      border: 1px solid rgba(15,23,42,.22);
      box-shadow: 0 0 0 0 rgba(15,23,42,.35);
      text-align: center;
    }
    .modal-card .card-btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 22px -4px rgba(15,23,42,.35);
      border-color: var(--ink);
    }
    .modal-card .card-btn:active {
      transform: translateY(1px);
      box-shadow: 0 2px 8px rgba(15,23,42,.28);
    }
    @media (max-width: 820px){
      .modal-longlist { grid-template-columns: 1fr; }
      .modal-card img { height: 200px; }
    }
    .modal-section { margin: 18px 0 26px; }
    .modal-section .section-title { font-family: Poppins, sans-serif; font-weight: 700; font-size: 1.2rem; margin: 0 0 12px; letter-spacing: -.2px; color: var(--ink); }
    .hcards { display: flex; flex-wrap: wrap; gap: 14px; }
    .hcard { flex: 1 1 300px; display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid rgba(15,23,42,.08); border-radius: 16px; padding: 12px 14px; box-shadow: 0 6px 18px rgba(15,23,42,.08); transition: transform .2s ease, box-shadow .2s ease; }
    .hcard:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(15,23,42,.12); }
    .hcard-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(232,62,51,.08); color: var(--brand); display: grid; place-items: center; font-size: 18px; flex: 0 0 36px; }
    .hcard-body { flex: 1; }
    .hcard-title { margin: 0 0 4px; font-weight: 700; color: var(--ink); font-size: .98rem; }
    .hcard-text { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.55; text-align: justify; text-justify: inter-word; }
    .culture-lead { position: relative; text-align: center; margin-bottom: 24px; }
    .culture-lead h4 { margin: 10px 0 8px; font-size: 2.2rem; letter-spacing: -.3px; font-family: Poppins, sans-serif; text-align: center; }
    .culture-lead .modal-close { position: absolute; right: 0; top: 10px; background: none; border: none; font-size: 1.2em; cursor: pointer; color: var(--ink); padding: 0; }
    .culture-lead p { color: var(--muted); max-width: 800px; margin: 0 auto; line-height: 1.7; }
    .culture-flow { display: flex; flex-direction: column; gap: 20px; position: relative; }
    .culture-flow::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, rgba(232,62,51,.12), rgba(15,23,42,.1)); transform: translateX(-50%); opacity: .6; pointer-events: none; }
    .culture-row { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; padding: 24px 26px; border-radius: 22px; background: radial-gradient(circle at 16% 20%, rgba(232,62,51,.08), transparent 32%), linear-gradient(120deg, rgba(255,255,255,.9), rgba(248,250,252,.95)); border: 1px solid rgba(15,23,42,.08); box-shadow: 0 12px 32px rgba(15,23,42,.08); overflow: hidden; isolation: isolate; opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
    .culture-row.is-visible { opacity: 1; transform: translateY(0); }
    .culture-media { position: relative; z-index: 1; min-height: 230px; }
    .culture-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
    .culture-tag { position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 999px; background: rgba(3,6,15,.85); color: #fff; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; box-shadow: 0 8px 20px rgba(3,6,15,.28); }
    .culture-tag i { font-style: normal; color: var(--brand); }
    .culture-copy { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; }
    .culture-eyebrow { text-transform: uppercase; letter-spacing: .22em; font-size: .82rem; color: var(--muted); }
    .culture-copy h5 { margin: 0; font-size: 1.35rem; font-family: Poppins, sans-serif; letter-spacing: -.2px; color: var(--ink); }
    .culture-copy p { margin: 0; color: var(--muted); line-height: 1.65; text-align: justify; }
    .culture-copy p.important { color: var(--ink); font-weight: 500; text-align: justify; }
    .culture-list { margin: 0 0 6px 18px; color: var(--muted); padding: 0; line-height: 1.6; }
    .culture-list li { margin: 6px 0; text-align: justify; }
    .culture-list strong { color: var(--ink); }
    .culture-meta { display: flex; flex-wrap: wrap; gap: 10px; }
    .culture-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: rgba(15,23,42,.06); color: var(--ink); font-weight: 600; font-size: .88rem; }
    .culture-chip i { font-style: normal; color: var(--brand); }
    @media (max-width: 720px) {
      .culture-flow::before { display: none; }
      .culture-row { 
        grid-template-columns: 1fr;
        padding: 18px 16px; 
        gap: 16px;
      }
      .culture-tag { font-size: .78rem; }
      .culture-media { min-height: 180px; }
    }
.mandala-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, 
    transparent 20%, 
    rgba(232,62,51,0.03) 30%,
    transparent 40%,
    rgba(232,62,51,0.02) 50%,
    transparent 60%
  );
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  animation: mandalaRotate 60s linear infinite;
}
@keyframes mandalaRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.spiritual-progress {
  position: absolute;
  top: 120px;
  right: 25px;
  bottom: 40px;
  width: 80px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 25px 15px;
  border-radius: 50px;
  box-shadow: 0 8px 40px rgba(232, 62, 51, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(232, 62, 51, 0.1);
  pointer-events: auto;
}
.modal-backdrop:not(.show) .spiritual-progress {
  display: none;
}
.progress-line {
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, rgba(232, 62, 51, 0.15) 0%, rgba(232, 62, 51, 0.25) 100%);
  transform: translateX(-50%);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  --progress-height: 0%;
}
.progress-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: linear-gradient(180deg, var(--brand) 0%, #ff6b5e 50%, #ff8f7e 100%);
  height: var(--progress-height, 0%);
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(232, 62, 51, 0.4), 0 0 20px rgba(232, 62, 51, 0.2);
}
.progress-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--progress-height, 0%);
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
  border-radius: 10px;
  pointer-events: none;
}
.progress-dot {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  border: 3px solid rgba(232, 62, 51, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.progress-dot i {
  font-size: 20px;
  color: var(--brand);
  transition: all 0.3s ease;
}
.progress-dot span {
  position: absolute;
  right: 70px;
  left: auto;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  border: 1px solid rgba(232, 62, 51, 0.15);
}
.progress-dot:hover {
  transform: scale(1.15);
  border-color: var(--brand);
  box-shadow: 0 4px 20px rgba(232, 62, 51, 0.3);
}
.progress-dot:hover i {
  color: var(--brand);
  transform: scale(1.1);
}
.progress-dot:hover span {
  opacity: 1;
  transform: translateX(0);
}
.progress-dot.active {
  border-color: var(--brand);
  background: linear-gradient(135deg, var(--brand) 0%, #ff6b5e 100%);
  box-shadow: 0 4px 24px rgba(232, 62, 51, 0.5), 0 0 30px rgba(232, 62, 51, 0.3);
  transform: scale(1.1);
}
.progress-dot.active i {
  color: white;
  transform: scale(1.05);
}
.progress-dot.active span {
  opacity: 1;
  transform: translateX(0);
  color: var(--brand);
  font-weight: 700;
  border-color: var(--brand);
  box-shadow: 0 6px 20px rgba(232, 62, 51, 0.2);
}
@media (max-width: 900px) {
  .spiritual-progress,
  .nature-progress,
  .culture-progress {
    display: none !important;
  }
  .modal .modal-body {
    padding-right: 20px;
  }
}
.culture-hero {
  text-align: center;
  padding: 30px 20px 40px;
  position: relative;
  z-index: 1;
}
.culture-hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.culture-hero-ornament {
  font-size: 32px;
  color: var(--brand);
  margin-bottom: 20px;
  opacity: 0.6;
  animation: ornamentPulse 3s ease-in-out infinite;
}
@keyframes ornamentPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.8; }
}
.culture-hero h4 {
  font-family: Poppins, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--ink) 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.culture-hero p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 20px;
}
.culture-timeline {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}
.timeline-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.timeline-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-card[data-align="right"] {
  direction: rtl;
}
.timeline-card[data-align="right"] > * {
  direction: ltr;
}
.timeline-card-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.image-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0;
  background: transparent;
}
.gallery-main {
  grid-column: span 2;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  background: #000;
}
.gallery-img-main {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column: span 2;
  gap: 12px;
}
.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: slideInGallery 0.6s ease forwards;
}
.gallery-img-kathmandu {
  object-position: center 10%;
}
.gallery-img-spirit3 {
  object-position: center 18%;
}
.gallery-grid .gallery-img:nth-child(1) {
  animation-delay: 0.2s;
}
.gallery-grid .gallery-img:nth-child(2) {
  animation-delay: 0.4s;
}
@keyframes slideInGallery {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.location-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 10;
}
.location-badge i {
  color: var(--brand);
  font-size: 18px;
}
.timeline-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  position: relative;
}
.card-number {
  position: absolute;
  top: -20px;
  right: 0;
  font-family: Poppins, sans-serif;
  font-size: 120px;
  font-weight: 800;
  color: rgba(232,62,51,0.15);
  line-height: 1;
  pointer-events: none;
  z-index: -1;
}
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 8px;
}
.timeline-card-content h5 {
  font-family: Poppins, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
  color: var(--ink);
}
.card-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 24px;
}
.expandable-section {
  margin-top: 20px;
}
.expandable-section h6 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Poppins, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 24px 0 16px;
}
.expandable-section h6 i {
  color: var(--brand);
  font-size: 20px;
}
.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.highlight-list li {
  padding: 16px;
  margin-bottom: 12px;
  background: rgba(232,62,51,0.04);
  border-left: 3px solid var(--brand);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.highlight-list li:hover {
  background: rgba(232,62,51,0.08);
  transform: translateX(4px);
}
.highlight-list strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.highlight-list span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.season-card {
  padding: 20px;
  background: white;
  border: 2px solid rgba(232,62,51,0.1);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}
.season-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(232,62,51,0.15);
}
.season-icon {
  font-size: 48px;
  margin-bottom: 12px;
}
.season-card strong {
  display: block;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.season-card span {
  display: block;
  font-size: 0.85rem;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 12px;
}
.season-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.info-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(15,23,42,0.06);
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--ink);
  margin-top: 12px;
}
.info-chip i {
  color: var(--brand);
  font-size: 18px;
}
.dual-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.content-block h6 {
  margin-top: 0;
}
.content-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}
.highlight-box {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(232,62,51,0.08), rgba(232,62,51,0.04));
  border-radius: 16px;
  border: 1px solid rgba(232,62,51,0.2);
  margin-bottom: 20px;
}
.highlight-box i {
  font-size: 32px;
  color: var(--brand);
  flex-shrink: 0;
}
.highlight-box strong {
  display: block;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.highlight-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.experience-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: white;
  border: 1px solid rgba(232,62,51,0.2);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.3s ease;
}
.experience-tag:hover {
  background: rgba(232,62,51,0.06);
  border-color: var(--brand);
}
.experience-tag i {
  color: var(--brand);
}
.attraction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.attraction-item {
  padding: 16px;
  background: white;
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}
.attraction-item:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.attraction-item i {
  font-size: 32px;
  color: var(--brand);
  margin-bottom: 8px;
}
.attraction-item strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.attraction-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}
.culture-cta {
  text-align: center;
  padding: 10px 20px 10px 20px;
  margin-top: 5px;
  position: relative;
  z-index: 1;
}
.cta-ornament {
  font-size: 24px;
  color: var(--brand);
  margin-bottom: 8px;
  opacity: 0.6;
  animation: ornamentPulse 3s ease-in-out infinite;
  margin-top: 0;
}
.culture-cta h4 {
  font-family: Poppins, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
  color: var(--ink);
}
.culture-cta h4.lang {
  display: block;
}
.culture-cta p {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 32px;
}
.culture-cta p.lang {
  display: block;
}
@media (max-width: 900px) {
  .timeline-card {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .timeline-card[data-align="right"] {
    direction: ltr;
  }
  .image-gallery {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .gallery-main {
    grid-row: span 1;
  }
  .gallery-img-main {
    min-height: 200px;
  }
  .gallery-grid {
    flex-direction: row;
  }
  .gallery-img {
    height: 120px;
  }
  .card-number {
    font-size: 60px;
    top: -10px;
  }
  .timeline-card-content h5 {
    font-size: 1.4rem;
  }
  .timeline-card-content {
    padding: 15px;
  }
  .culture-hero h4 {
    font-size: 1.8rem;
  }
  .culture-hero {
    padding: 30px 20px 35px;
  }
  .expandable-section {
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .dual-content,
  .season-grid,
  .attraction-grid {
    grid-template-columns: 1fr;
  }
  .timeline-card-content {
    padding: 10px;
  }
  .card-intro {
    font-size: 1rem;
  }
  .culture-hero {
    padding: 25px 20px 30px;
  }
  .culture-hero h4 {
    font-size: 1.75rem;
  }
  .culture-hero p {
    font-size: 1rem;
  }
}
.intro-overlay.is-exit {
  animation: introOverlayExit .75s ease forwards;
  pointer-events: none;
}
@keyframes introOverlayExit {
  from { opacity: 1; }
  to { opacity: 0; }
}
.intro-card {
  cursor: pointer;
}
.intro-card:focus {
  outline: 2px solid rgba(255,255,255,.55);
  outline-offset: 6px;
}
.intro-card.is-panel-center-zoom {
  transform: translate(-50%, -50%) scale(1.18);
  filter: saturate(1.08) brightness(1.05);
  transition: transform .7s ease, filter .7s ease, opacity .5s ease;
}
@media (max-width: 900px) {
  .faq-section {
    padding: 80px 20px;
  }
  .faq-header h2 {
    font-size: 1.8rem;
  }
  .faq-ornament {
    font-size: 24px;
  }
  .faq-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .faq-grid {
    gap: 12px;
  }
  .faq-question {
    padding: 16px 20px;
    font-size: 0.95rem;
  }
  .faq-icon {
    font-size: 20px;
  }
  .faq-toggle {
    font-size: 24px;
  }
  .faq-item.active .faq-answer {
    max-height: 600px;
    padding: 16px 20px 20px;
  }
  .faq-answer p,
  .faq-answer li {
    font-size: 0.9rem;
  }
  .faq-section::before,
  .faq-section::after {
    opacity: 0.5;
    font-size: 60px;
  }
  .faq-footer {
    flex-direction: column;
    gap: 12px;
    padding: 30px 20px 10px;
  }
  .faq-footer p {
    font-size: 1rem;
  }
}
.journey-map-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.journey-map-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.journey-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.journey-map .leaflet-container {
  background: #0a0e1a;
}
.journey-map .leaflet-control-attribution {
  display: none; 
}
.journey-map .leaflet-control-zoom {
  display: none; 
}
.journey-info-panel {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  z-index: 10;
  width: 420px;
  max-width: calc(100vw - 160px);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 40px;
  color: white;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.journey-info-panel.active {
  opacity: 1;
}
.info-panel-toggle {
  display: none; 
}
.info-panel-content {
  position: relative;
}
.location-number {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 3px;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.location-name {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 8px 0;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  line-height: 1.1;
}
.location-altitude {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.location-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 28px 0;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.location-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.highlight-item i {
  font-size: 1.2rem;
  color: var(--brand);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}
.journey-progress {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px 40px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.progress-step:hover {
  transform: translateY(-4px);
}
.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.progress-step.active .step-dot {
  width: 16px;
  height: 16px;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 0 20px rgba(232, 62, 51, 0.8);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 20px rgba(232, 62, 51, 0.8);
  }
  50% {
    box-shadow: 0 0 30px rgba(232, 62, 51, 1);
  }
}
.step-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  transition: color 0.3s ease;
}
.progress-step.active .step-label {
  color: white;
}
@media (max-width: 820px) {
  .journey-info-panel {
    left: 20px;
    right: 20px;
    width: auto;
    max-width: none;
    padding: 16px 20px;
    top: 100px;
    bottom: auto;
    transform: none;
    transition: all 0.3s ease;
  }
  .info-panel-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  .info-panel-toggle:hover {
    background: rgba(255, 255, 255, 0.35);
  }
  .info-panel-toggle i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
  }
  .journey-info-panel.expanded .info-panel-toggle i {
    transform: rotate(180deg);
  }
  .info-panel-content {
    transition: all 0.3s ease;
    padding-right: 45px;
  }
  .location-description,
  .location-highlights {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
  }
  .journey-info-panel.expanded .location-description,
  .journey-info-panel.expanded .location-highlights {
    max-height: 500px;
    opacity: 1;
    margin-top: 12px;
  }
  .journey-info-panel.expanded {
    padding: 20px;
  }
  .location-number {
    font-size: 0.7rem;
    margin-bottom: 4px;
  }
  .location-name {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
  .location-altitude {
    font-size: 0.85rem;
    margin-bottom: 0;
  }
  .location-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  .location-highlights {
    gap: 8px;
  }
  .highlight-item {
    font-size: 0.8rem;
  }
  .highlight-item i {
    font-size: 0.95rem;
  }
  .journey-progress {
    bottom: 30px;
    padding: 14px 24px;
    gap: 24px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .progress-step {
    gap: 6px;
    flex-shrink: 0;
  }
  .step-dot {
    width: 10px;
    height: 10px;
  }
  .progress-step.active .step-dot {
    width: 14px;
    height: 14px;
  }
  .step-label {
    font-size: 0.7rem;
  }
}
@media (max-width: 480px) {
  .journey-info-panel {
    padding: 14px 18px;
    top: 90px;
  }
  .info-panel-toggle {
    width: 32px;
    height: 32px;
    right: 14px;
    top: 18px;
  }
  .info-panel-toggle i {
    font-size: 1rem;
  }
  .journey-info-panel.expanded {
    padding: 18px;
  }
  .info-panel-content {
    padding-right: 40px;
  }
  .location-number {
    font-size: 0.65rem;
    margin-bottom: 3px;
  }
  .location-name {
    font-size: 1.4rem;
    margin-bottom: 3px;
  }
  .location-altitude {
    font-size: 0.8rem;
  }
  .location-description {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .location-highlights {
    gap: 6px;
  }
  .highlight-item {
    font-size: 0.75rem;
  }
  .highlight-item i {
    font-size: 0.9rem;
  }
  .journey-progress {
    gap: 16px;
    padding: 10px 16px;
    bottom: 20px;
  }
  .step-label {
    font-size: 0.65rem;
  }
}
.contact-section {
  padding: 120px 6% 100px;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 62, 51, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(100, 116, 139, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-container {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: clamp(40px, 4vw, 64px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.25);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.contact-header {
  text-align: center;
  margin-bottom: 60px;
}
.contact-ornament {
  display: block;
  font-size: 1.5rem;
  color: var(--brand);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInDown 0.8s ease forwards;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 16px 0;
  letter-spacing: -1px;
  line-height: 1.1;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}
.contact-form {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: white;
  transition: all 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(232, 62, 51, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #cbd5e1;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.btn-contact {
  width: 100%;
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  transition: all 0.3s ease;
}
.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 62, 51, 0.3);
}
.btn-contact i {
  transition: transform 0.3s ease;
}
.btn-contact:hover i {
  transform: translateX(4px);
}
.contact-social {
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}
.social-label {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--ink);
  border-radius: 50%;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}
.social-icon:hover {
  background: var(--brand);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(232, 62, 51, 0.3);
}
@media (max-width: 820px) {
  .contact-section {
    padding: 80px 6% 60px;
  }
  .contact-title {
    font-size: 2.5rem;
  }
  .contact-subtitle {
    font-size: 1rem;
  }
  .contact-form {
    padding: 32px 24px;
  }
  .form-row {
    gap: 20px;
  }
  .social-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}
@media (max-width: 540px) {
  .contact-container {
    padding: 28px 20px;
    border-radius: 24px;
  }
  .contact-title {
    font-size: 2.1rem;
  }
  .contact-subtitle {
    font-size: 0.95rem;
  }
  .contact-form {
    padding: 24px 20px;
    border-radius: 18px;
  }
  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  .btn-contact {
    padding: 14px 24px;
    font-size: 1rem;
  }
  .social-icons {
    gap: 12px;
  }
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}
.gallery-slide-content[style*="position: fixed"] {
  display: block !important;
  visibility: visible !important;
}
.gallery-slide-content[style*="position: fixed"] * {
  visibility: visible !important;
}
.gallery-slide-content[style*="position: fixed"] .lang {
  display: block !important;
}
body[data-lang="hu"] .gallery-slide-content[style*="position: fixed"] .lang-en {
  display: none !important;
}
body[data-lang="en"] .gallery-slide-content[style*="position: fixed"] .lang-hu {
  display: none !important;
}
