
    @font-face {
      font-family: "Nexa";
      src: url("../fonts/Nexa-ExtraLight.ttf") format("truetype");
      font-weight: 200;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Nexa";
      src: url("../fonts/Nexa-Heavy.ttf") format("truetype");
      font-weight: 800;
      font-style: normal;
      font-display: swap;
    }

    :root {
      --red: #ff0000;
      --blue: #0066ff;
      --dark: #1a1a1a;
      --bg: #fafaf9;
      --radius-full: 999px;
      --transition-fast: 0.25s ease;
      --transition-med: 0.4s ease;
      --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
      --shadow-strong: 0 18px 45px rgba(0,0,0,0.16);
      --font-main: "Nexa", system-ui, -apple-system, BlinkMacSystemFont, -system-ui,
        -apple-system, Segoe UI, sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html,
    body {
      height: 100%;
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-main);
      background-color: var(--bg);
      color: var(--dark);
    }

    p {
      font-weight: 600;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* HEADER */

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      transition: transform var(--transition-med), box-shadow var(--transition-fast),
        background-color var(--transition-fast), backdrop-filter var(--transition-fast);
      background-color: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(10px);
    }

    header.header-scrolled {
      background-color: rgba(255, 255, 255, 0.97);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(14px);
    }

    header.header-hidden {
      transform: translateY(-110%);
    }

    .nav-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      transition: transform var(--transition-fast);
    }

    .logo-wrap:hover {
      transform: scale(1.04);
    }

    .logo-wrap img {
      height: 48px;
      width: auto;
      display: block;
      filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
    }

    .logo-text {
      display: none;
    }

    .logo-text span {
      display: block;
      font-weight: 900;
      font-size: 18px;
      line-height: 1.1;
    }

    .logo-text span strong {
      color: var(--blue);
    }

    .logo-sub {
      font-size: 10px;
      color: #6b7280;
    }

    @media (min-width: 768px) {
      .logo-text {
        display: block;
      }
    }

    .nav-links {
      display: none;
      align-items: center;
      gap: 26px;
      font-weight: 600;
      font-size: 14px;
      color: #374151;
    }

    .header-social {
      display: none;
      align-items: center;
      gap: 8px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.86);
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow: 0 10px 24px -18px rgba(15, 23, 42, 0.6);
    }

    .header-social a {
      width: 30px;
      height: 30px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #0f172a;
      background: #fff;
      font-size: 14px;
      text-decoration: none;
      box-shadow: 0 8px 18px -14px rgba(15, 23, 42, 0.55);
      transition: color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    }

    .header-social a:hover {
      color: var(--red);
      transform: translateY(-1px);
      box-shadow: 0 14px 24px -14px rgba(15, 23, 42, 0.6);
    }

    .nav-link {
      position: relative;
      padding-bottom: 3px;
      cursor: pointer;
      transition: color var(--transition-fast), transform var(--transition-fast);
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 2px;
      transform-origin: left;
      transform: scaleX(0);
      background-color: var(--red);
      transition: transform var(--transition-fast);
    }

    .nav-link:hover {
      color: var(--red);
      transform: translateY(-1px);
    }

    .nav-link:hover::after {
      transform: scaleX(1);
    }

    .btn-visit {
      padding: 8px 20px;
      background-color: var(--red);
      color: #fff;
      border-radius: var(--radius-full);
      border: none;
      font-size: 13px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 10px 24px rgba(255, 0, 0, 0.35);
      cursor: pointer;
      transition: all var(--transition-fast);
      white-space: nowrap;
    }

    .btn-visit span.icon-eye {
      display: inline-block;
      width: 14px;
      height: 14px;
      border-radius: 999px;
      border: 2px solid #fff;
      box-sizing: border-box;
      position: relative;
    }

    .btn-visit span.icon-eye::after {
      content: "";
      position: absolute;
      inset: 3px;
      border-radius: 999px;
      background-color: #fff;
    }

    .btn-visit:hover {
      background-color: #cc0000;
      transform: translateY(-1px);
      box-shadow: var(--shadow-strong);
    }

    .btn-visit:active {
      transform: translateY(1px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    }

    @media (min-width: 768px) {
      .nav-inner {
        justify-content: flex-start;
      }

      .nav-links {
        display: flex;
        margin-left: auto;
        order: 2;
      }

      .header-social {
        display: flex;
        margin-left: 14px;
        order: 3;
      }
    }

    @media (max-width: 767px) {
      .header-social {
        display: flex;
      }
    }

    /* MOBILE MENU */

    .burger {
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      border: none;
      background-color: transparent;
      cursor: pointer;
      transition: background-color var(--transition-fast), transform var(--transition-fast);
    }

    .burger:hover {
      background-color: #f3f4f6;
      transform: translateY(-1px);
    }

    .burger span {
      display: block;
      width: 18px;
      height: 2px;
      background-color: #111827;
      border-radius: 999px;
      position: relative;
      transition: all var(--transition-fast);
    }

    .burger span::before,
    .burger span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 18px;
      height: 2px;
      background-color: #111827;
      border-radius: 999px;
      transition: all var(--transition-fast);
    }

    .burger span::before {
      top: -6px;
    }

    .burger span::after {
      top: 6px;
    }

    .burger.open span {
      background-color: transparent;
    }

    .burger.open span::before {
      top: 0;
      transform: rotate(45deg);
    }

    .burger.open span::after {
      top: 0;
      transform: rotate(-45deg);
    }

    .mobile-menu {
      display: none;
      background-color: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(14px);
      border-top: 1px solid #e5e7eb;
      box-shadow: 0 14px 35px rgba(0,0,0,0.12);
      overflow: hidden;
      transform-origin: top;
      animation: mobileOpen 0.25s ease forwards;
    }

    @keyframes mobileOpen {
      from {
        opacity: 0;
        transform: scaleY(0.9);
      }
      to {
        opacity: 1;
        transform: scaleY(1);
      }
    }

    .mobile-menu-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 10px 20px 14px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .mobile-link {
      padding: 7px 0;
      font-weight: 600;
      font-size: 14px;
      color: #374151;
      cursor: pointer;
      transition: color var(--transition-fast), transform var(--transition-fast);
    }

    .mobile-link:hover {
      color: var(--red);
      transform: translateX(4px);
    }

    .mobile-visit-btn {
      margin-top: 4px;
      width: 100%;
      text-align: start;
    }

    @media (min-width: 768px) {
      .burger {
        display: none;
      }
    }

    /* HERO SECTION CU ILLUZIE */

    .hero {
      position: relative;
      min-height: 100vh;
      padding-top: 78px; /* space for header */
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      isolation: isolate;
    }

    @media (max-width: 992px) {
      .hero {
        padding-top: 50px; /* space for header */
        min-height: 80vh;
      }
    }

    .hero {
      background: radial-gradient( circle at center, #ffffff 0%, #f8fafc 55%, #eef2f7 100%);
      background-size: cover;
      background-position: center;
    }
    
    

    /* .hero-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: 0;
      pointer-events: none;
    } */

    /* .hero-illusion-wrapper {
      position: absolute;
      inset: -18%;
      width: 136%;
      height: 136%;
      opacity: 0.96;
      will-change: transform;
    }

    .hero-illusion {
      width: 100%;
      height: 100%;
      display: block;
      overflow: visible;
    }

    .hero-illusion circle,
    .hero-illusion rect,
    .hero-illusion polygon,
    .hero-illusion ellipse,
    .hero-illusion line,
    .hero-illusion path {
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      transform-box: fill-box;
    }

    .swirl {
      transform-origin: 500px 500px;
      transform-box: fill-box;
      animation: swirl-spin var(--swirl-speed, 80s) linear infinite;
      will-change: transform;
    }

    .swirl.reverse {
      animation-direction: reverse;
    }

    .orbit-ring {
      stroke-width: 2;
      opacity: 0.22;
    }

    .orbit-ring.dashed {
      stroke-dasharray: var(--dash, 220 48);
      animation: dash-flow var(--dash-speed, 30s) linear infinite;
    }

    .ring-red {
      stroke: rgba(255, 0, 0, 0.42);
    }

    .ring-blue {
      stroke: rgba(0, 102, 255, 0.5);
    }

    .ring-gray {
      stroke: rgba(26, 26, 26, 0.2);
    }

    .hero-illusion-lines line {
      stroke: rgba(34, 34, 34, 0.1);
      stroke-width: 1.4;
    } */

    /* .hero-illusion-glow {
      fill: url(#heroGlow);
      opacity: 0.8;
      transform-origin: 500px 500px;
      transform-box: fill-box;
      animation: glowPulse 12s ease-in-out infinite;
    } */

    /* .hero-overlay {
      position: absolute;
      inset: 0;
     
      background: linear-gradient(to bottom, rgba(250, 250, 249, 0) 0%, rgba(250, 250, 249, 0.6) 45%, #fafaf9cb 100%);
      z-index: 1;
    } */

    /* @keyframes swirl-spin {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

    @keyframes dash-flow {
      from {
        stroke-dashoffset: 0;
      }
      to {
        stroke-dashoffset: -720;
      }
    }

    @keyframes glowPulse {
      0%,
      100% {
        opacity: 0.55;
        transform: scale(0.97);
      }
      50% {
        opacity: 0.9;
        transform: scale(1.05);
      }
    } */

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 20px 40px;
      padding-bottom: 0px;
      text-align: center;
    }

    .hero-logo-big {
      display: inline-flex;
      margin-bottom: 0px;
      transform-origin: center;
      animation: logo-pop 1.1s cubic-bezier(0.22, 0.9, 0.3, 1.3) forwards;
      opacity: 0;
    }

    @keyframes logo-pop {
      0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
      }
      60% {
        transform: scale(1.08) rotate(8deg);
        opacity: 1;
      }
      100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
      }
    }

    .hero-coverflow {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
      grid-template-areas:
        "viewport"
        "dots";
      align-items: center;
      justify-items: center;
      row-gap: 16px;
    }

    .hero-coverflow-viewport {
      grid-area: viewport;
      width: clamp(300px, 52vw, 640px);
      aspect-ratio: 4 / 3;
      position: relative;
      perspective: 1400px;
      overflow: visible;
      touch-action: pan-y;
      cursor: grab;
      user-select: none;
      -webkit-user-select: none;
    }

    .hero-coverflow-viewport.is-dragging {
      cursor: grabbing;
    }

    .hero-coverflow-slide {
      --shift: 0%;
      --scale: 0.7;
      --rotate: 0deg;
      --opacity: 0;
      position: absolute;
      top: 50%;
      left: 50%;
      width: 80%;

      height: 100%;
      transform: translate(-50%, -50%) translateX(var(--shift)) scale(var(--scale)) rotateY(var(--rotate));
      opacity: var(--opacity);
      border-radius: 28px;
      overflow: hidden;
      background: #f8fafc;
      box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
      transition: transform 0.7s ease, opacity 0.6s ease;
      pointer-events: none;
      backface-visibility: hidden;
    }

    .hero-coverflow-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      pointer-events: none;
      user-select: none;
      -webkit-user-select: none;
      -webkit-user-drag: none;
      aspect-ratio: 4 / 3;
    }

    .hero-coverflow-slide.is-active {
      --shift: 0%;
      --scale: 1;
      --rotate: 0deg;
      --opacity: 1;
      z-index: 3;
      pointer-events: auto;
      
    }
    @media (min-width: 992px) {
      .hero-coverflow-slide.is-active {
        width: 650px;
        height: 100%;
      }
    }
    .hero-coverflow-slide.is-left {
      --shift: -50%;
      --scale: 0.82;
      --rotate: 22deg;
      --opacity: 0.9;
      z-index: 2;
    }

    .hero-coverflow-slide.is-right {
      --shift: 50%;
      --scale: 0.82;
      --rotate: -22deg;
      --opacity: 0.9;
      z-index: 2;
    }

    .hero-coverflow-slide.is-far-left {
      --shift: -90%;
      --scale: 0.65;
      --rotate: 34deg;
      --opacity: 0.4;
      z-index: 1;
    }

    .hero-coverflow-slide.is-far-right {
      --shift: 90%;
      --scale: 0.65;
      --rotate: -34deg;
      --opacity: 0.4;
      z-index: 1;
    }

    .hero-coverflow-btn {
      width: 44px;
      height: 44px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.9);
      background: rgba(15, 23, 42, 0.8);
      color: #ffffff;
      font-size: 18px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: transform var(--transition-fast), background var(--transition-fast);
      box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
    }

    .hero-coverflow-btn--prev {
      grid-area: prev;
      justify-self: center;
    }

    .hero-coverflow-btn--next {
      grid-area: next;
      justify-self: center;
    }

    .hero-coverflow-btn:hover {
      transform: translateY(-2px);
      background: rgba(15, 23, 42, 0.95);
    }

    .hero-coverflow-dots {
      grid-area: dots;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .hero-coverflow-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      border: none;
      background: rgba(100, 116, 139, 0.45);
      cursor: pointer;
      transition: width var(--transition-fast), background var(--transition-fast);
    }

    .hero-coverflow-dot.is-active {
      width: 22px;
      background: var(--blue);
    }

    @media (max-width: 640px) {
      .hero-coverflow {
        grid-template-areas:
          "viewport"
          "dots";
        row-gap: 10px;
      }

      .hero-coverflow-viewport {
        width: min(90vw, 520px);
        aspect-ratio: 4 / 3;
      }

      .hero-coverflow-slide {
        width: 100%;
        border-radius: 20px;
      }

      .hero-coverflow-slide:not(.is-active) {
        opacity: 0;
      }

      .hero-coverflow-btn {
        width: 36px;
        height: 36px;
      }
    }

    .hero-title {
      font-size: clamp(32px, 5vw, 54px);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 14px;
      opacity: 0;
      transform: translateY(24px);
      animation: fadeUp 0.8s ease forwards;
      animation-delay: 0.45s;
    }

    .hero-title span.blue {
      color: var(--blue);
    }

    .hero-title span.red {
      color: var(--red);
    }

    .hero-sub {
      font-size: clamp(16px, 2.2vw, 20px);
      max-width: 640px;
      margin: 26px auto 26px;
      color: #4b5563;
      line-height: 1.6;
      opacity: 0;
      transform: translateY(18px);
      animation: fadeUp 0.8s ease forwards;
      animation-delay: 0.65s;
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      opacity: 0;
      transform: scale(0.95);
      animation: actionsIn 0.6s ease forwards;
      animation-delay: 0.85s;
    }

    @keyframes actionsIn {
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .btn-outline {
      padding: 8px 24px;
      border-radius: var(--radius-full);
      border: 2px solid var(--blue);
      background-color: transparent;
      color: var(--blue);
      font-weight: 600;
      font-size: 13px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      transition: all var(--transition-fast);
      box-shadow: 0 8px 18px rgba(0,0,0,0.06);
    }

    .btn-outline:hover {
      background-color: var(--blue);
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.16);
    }

    /* Scroll indicator */

    .scroll-indicator {
      position: absolute;
      left: 97%;
      bottom: 26px;
      transform: translateX(-50%);
      width: 26px;
      height: 44px;
      border-radius: 999px;
      border: 2px solid #9ca3af;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 6px;
      opacity: 0.9;
      animation: bob 1.4s ease-in-out infinite;
      z-index: 2;
    }

    @media (max-width: 992px) {
      .scroll-indicator {
        left: 95%;
      }
    }

    .scroll-indicator-dot {
      width: 6px;
      height: 8px;
      border-radius: 999px;
      background-color: var(--red);
      animation: dotMove 1.4s ease-in-out infinite;
    }

    @keyframes bob {
      0%,
      100% {
        transform: translate(-50%, 0);
      }
      50% {
        transform: translate(-50%, 6px);
      }
    }

    @keyframes dotMove {
      0% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(16px);
      }
      100% {
        transform: translateY(0);
      }
    }

    /* MAIN SECTIONS */

    .section-block {
      position: relative;
      padding: 110px 20px;
    }

    .section-block.section-light {
      background-color: #fff;
    }

    .section-block.section-muted {
      background-color: #f5f5f3;
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-heading {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-heading h2 {
      font-size: clamp(34px, 4vw, 64px);
      font-weight: 900;
      margin-bottom: 14px;
    }

    .section-heading p {
      color: #4b5563;
      font-size: 18px;
      max-width: 760px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
    }

    .feature-card {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 28px;
      padding: 36px 28px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 25px 50px -20px rgba(15, 23, 42, 0.25);
      transition: transform 0.45s ease, box-shadow 0.45s ease;
    }

    .feature-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(255, 0, 0, 0.08), rgba(0, 102, 255, 0.08));
      opacity: 0;
      transition: opacity 0.45s ease;
    }

    .feature-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 35px 60px -18px rgba(15, 23, 42, 0.35);
    }

    .feature-card:hover::after {
      opacity: 1;
    }

    .feature-card-content {
      position: relative;
    }

    .feature-icon {
      width: 64px;
      height: 64px;
      border-radius: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }

    .feature-icon svg {
      width: 32px;
      height: 32px;
    }

    .feature-icon.red {
      background: rgba(255, 0, 0, 0.12);
    }

    .feature-icon.blue {
      background: rgba(0, 102, 255, 0.12);
    }

    .feature-icon.dark {
      background: rgba(26, 26, 26, 0.12);
    }

    .feature-card h3 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .feature-card p {
      color: #4b5563;
      line-height: 1.6;
      font-size: 15px;
    }

    .exhibitions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }

    .exhibit-card {
      position: relative;
      border-radius: 32px;
      overflow: hidden;
      min-height: 320px;
      color: #fff;
    }

    .exhibit-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.2s ease;
    }

    .exhibit-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3) 45%, transparent);
    }

    .exhibit-card:hover img {
      transform: scale(1.08);
    }

    .exhibit-card-content {
      position: absolute;
      inset: 0;
      z-index: 1;
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .exhibit-pill {
      align-self: flex-start;
      padding: 6px 16px;
      border-radius: 999px;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: rgba(255, 255, 255, 0.2);
      margin-bottom: 10px;
    }

    .wave-illusion {
      position: absolute;
      inset: 0;
      opacity: 0.12;
      pointer-events: none;
    }

    .wave-illusion svg {
      width: 100%;
      height: 100%;
    }

    .wave-illusion path {
      opacity: 0.18;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
      position: relative;
      z-index: 1;
    }

    .gallery-card {
      border-radius: 28px;
      border: 1px solid #e5e7eb;
      overflow: hidden;
      box-shadow: 0 20px 50px -25px rgba(15, 23, 42, 0.5);
      transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
      background: #fff;
      cursor: pointer;
    }

    .gallery-card:hover {
      transform: translateY(-12px);
      border-color: rgba(255, 0, 0, 0.55);
      box-shadow: 0 35px 70px -35px rgba(15, 23, 42, 0.6);
    }

    .gallery-visual {
      aspect-ratio: 1 / 1;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 26px;
    }

    .gallery-visual svg {
      width: 100%;
      height: 100%;
    }

    .gallery-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 18px;
      box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.15);
    }

    .gallery-meta {
      padding: 20px 24px 24px;
      background: linear-gradient(180deg, #f9fafb, #fff);
    }

    .gallery-meta h3 {
      font-size: 18px;
      margin-bottom: 6px;
    }

    .gallery-meta p {
      font-size: 14px;
      color: #4b5563;
    }

    .gallery-visual svg {
      width: 100%;
      height: 100%;
    }

    .experience-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      align-items: center;
    }

    .experience-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .experience-list li {
      display: flex;
      gap: 12px;
      color: #4b5563;
      margin-bottom: 14px;
      line-height: 1.5;
      font-size: 16px;
    }

    .experience-list li span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--red);
      margin-top: 8px;
      flex-shrink: 0;
    }

    .experience-card {
      border-radius: 32px;
      /* background: #fff; */
      padding: 40px;
      /* box-shadow: 0 30px 80px -40px rgba(15, 23, 42, 0.55); */
      position: relative;
      overflow: hidden;
    }

    /* .experience-card::before {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 999px;
      background: rgba(0, 102, 255, 0.15);
      top: -60px;
      right: -40px;
    } */

    .experience-box {
      width: 220px;
      height: 220px;
      border-radius: 42px;
      border: 3px solid rgba(0, 102, 255, 0.2);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .experience-box::after {
      content: "";
      position: absolute;
      inset: 32px;
      border-radius: 30px;
      border: 2px dashed rgba(255, 0, 0, 0.5);
      animation: rotateDashed 12s linear infinite;
    }

    .experience-box svg {
      width: 120px;
      height: 120px;
      stroke: var(--blue);
      stroke-width: 2;
      fill: none;
    }

    @keyframes rotateDashed {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .contact-stack {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .contact-card {
      border: 1px solid #e5e7eb;
      border-radius: 28px;
      padding: 28px;
      background: #fff;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      box-shadow: 0 25px 60px -30px rgba(15, 23, 42, 0.55);
    }

    .contact-icon {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      background: rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-icon svg {
      width: 28px;
      height: 28px;
    }

    .contact-map {
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 40px 90px -30px rgba(15, 23, 42, 0.45);
      min-height: 360px;
    }

    .contact-section {
      /* background-image:
        repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.07) 0px, rgba(0, 0, 0, 0.07) 2px, transparent 2px, transparent 12px),
        repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.07) 0px, rgba(0, 0, 0, 0.07) 2px, transparent 2px, transparent 12px); */
      background-size: 100% 100%;
      background: radial-gradient(
    circle at center,
    #ffffff 0%,
    #f8fafc 55%,
    #eef2f7 100%
  );
    }

    /* FOOTER */

    .site-footer {
      background: linear-gradient(135deg, #05090f, #0f172a 55%, #030712);
      color: #f3f4f6;
      padding: 80px 20px 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .site-footer .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.4fr repeat(3, minmax(150px, 1fr));
      gap: 30px;
      margin-bottom: 50px;
    }

    .footer-brand img {
      height: 64px;
      margin-bottom: 14px;
      filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.4));
    }

    .footer-brand p {
      color: #cbd5f5;
      line-height: 1.7;
      font-size: 15px;
    }

    .footer-title {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      margin-bottom: 16px;
      color: #f87171;
    }

    .footer-list {
      list-style: none;
      padding: 0;
      margin: 0;
      color: #d1d5db;
      font-size: 14px;
    }

    .footer-list li {
      margin-bottom: 10px;
      cursor: pointer;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .footer-list li:hover {
      color: #fff;
      transform: translateX(3px);
    }

    .footer-newsletter input {
      width: 100%;
      padding: 12px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      margin-top: 10px;
      font-size: 14px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      padding-top: 18px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      font-size: 13px;
      color: #cbd5f5;
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .footer-social span {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      cursor: pointer;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .footer-social span:hover {
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
    }

    @media (max-width: 900px) {
      .footer-top {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .section-block {
        padding: 70px 16px;
      }

      .experience-grid {
        gap: 30px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }
