 /* CURSOR */
    .cursor,
    .cursor-ring {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
    }

    .cursor {
      width: 8px;
      height: 8px;
      background: var(--white);
    }

    .cursor-ring {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(245, 242, 236, 0.3);
      z-index: 9998;
      transition: all 0.15s ease;
    }

    .cursor.h {
      transform: translate(-50%, -50%) scale(0.3);
      opacity: 0.4;
    }

    .cursor-ring.h {
      transform: translate(-50%, -50%) scale(2);
      opacity: 0.1;
    }

    @media(hover:none) {

      .cursor,
      .cursor-ring {
        display: none;
      }

      body {
        cursor: auto;
      }
    }
 :root {
      --navy: #050A30;
      --white: #FFFFFF;
      --text-muted: #7A8FA0;
      --text-muted-lt: #999;
      --accent: #0d66b5;
      --border: rgba(28, 43, 58, 0.12);
      --panel-w: 600px;

    }
    /* NAV */
    imd-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 52px;
    }
nav {
    width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    @media(max-width:768px) {
      imd-menu {
        padding: 20px 24px;
      }
    }

    .nav-logo {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
      z-index: 600;
      position: relative;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 24px;
      z-index: 600;
      position: relative;
    }

    .nav-icon {
      background: none;
      border: none;
      color: var(--white);
      display: flex;
      cursor: none;
    }

    @media(hover:none) {
      .nav-icon {
        cursor: pointer;
      }
    }

    .hamburger {
      background: none;
      border: none;
      cursor: none;
      display: flex;
      flex-direction: column;
      gap: 5px;
      padding: 5px;
      z-index: 600;
    }

    @media(hover:none) {
      .hamburger {
        cursor: pointer;
      }
    }

    .hamburger span {
      display: block;
      width: 26px;
      height: 1.5px;
      background: var(--white);
      transition: all 0.5s cubic-bezier(0.77, 0, 0.18, 1);
      transform-origin: center;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }

    /* OVERLAY */
    .menu-overlay {
      position: fixed;
      inset: 0;
      z-index: 400;
      background: var(--navy);
      clip-path: inset(0 0 100% 0);
      transition: clip-path 0.85s cubic-bezier(0.77, 0, 0.18, 1);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      padding-top: 120px;
    }

    .menu-overlay.open {
      clip-path: inset(0 0 0% 0);
    }

    .menu-top {
      flex-shrink: 0;
      opacity: 0;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding: 100px 52px 24px;
      border-bottom: 1px solid var(--border);
    }

    @media(max-width:768px) {
      .menu-top {
        padding: 86px 24px 18px;
      }
    }

    .menu-label,
    .menu-count {
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* =====================================================
       PANEL SYSTEM
       Desktop: panels slide in from right, stacking side by side
       The container uses flex so panels line up horizontally.
       Active panels get width; inactive get 0.
       Mobile: each panel is a full-screen overlay stacked by z-index
    ===================================================== */
    .menu-body {
      flex: 1;
      display: flex;
      overflow: hidden;
      min-height: 0;
      position: relative;
    }

    /* L1 — always visible, fills remaining space */
    .panel-l1 {
      flex: 1;
      min-width: 0;
      padding: 0 52px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow-y: auto;
      position: relative;
    }

    @media(max-width:768px) {
      .panel-l1 {
        padding: 0 24px;
      }
    }

    /* Deep panels — slide in from right on desktop */
    .panel-deep {
      width: 0;
      overflow: hidden;
      flex-shrink: 0;
      border-left: 1px solid transparent;
      transition: width 0.45s cubic-bezier(0.77, 0, 0.18, 1), border-color 0.45s;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .panel-deep.open {
      width: var(--panel-w);
      border-left-color: var(--border);
    }

    /* Mobile: full overlay */
    @media(max-width:900px) {
      .panel-deep {
        position: fixed;
        top: 120px;
        right: 0;
        bottom: 0;
        width: min(420px, 90vw) !important;
        /* always full width on mobile */
        background: var(--navy);
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
        border-left: 1px solid var(--border);
        overflow-y: auto;
        z-index: 450;
      }

      .panel-deep.open {
        transform: translateX(0);

      }

      /* Stack deeper panels on top */
      .panel-deep:nth-child(2) {
        z-index: 451;
      }

      .panel-deep:nth-child(3) {
        z-index: 452;
      }

      .panel-deep:nth-child(4) {
        z-index: 453;
      }
    }

    /* Inner scroll wrapper keeps content from clipping during width transition */
    .panel-inner {
      width: var(--panel-w);
      min-width: var(--panel-w);
      height: 100%;
      display: flex;
      flex-direction: column;
      overflow-y: auto;
      padding: 32px 32px 24px;
    }

    @media(max-width:900px) {
      .panel-inner {
        width: 100%;
        min-width: 0;
        padding: 24px;
      }
    }

    /* Back button */
    .panel-back {
      display: none;
      align-items: center;
      gap: 8px;
      margin: -32px -32px 24px;
      padding: 18px 32px;
      border-bottom: 1px solid var(--border);
      background: none;
      border-top: none;
      border-right: none;
      border-left: none;
      color: var(--text-muted-lt);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      flex-shrink: 0;
      transition: color 0.3s;
    }

    .panel-back:hover {
      color: var(--white);
    }

    @media(max-width:900px) {
      .panel-back {
        display: flex;
      }
    }

    @media(hover:none) {
      .panel-back {
        cursor: pointer;
      }
    }

    /* Breadcrumb trail at top of each panel */
    .panel-breadcrumb {
      font-size: 9px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 18px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .panel-breadcrumb span {
      color: var(--accent);
    }

    .panel-breadcrumb::before {
      content: '';
      width: 14px;
      height: 1px;
      background: var(--text-muted);
      flex-shrink: 0;
    }

    /* Panel image */
    .panel-img {
      width: 100%;
      height: 140px;
      overflow: hidden;
      margin-bottom: 20px;
      flex-shrink: 0;
      border-radius: 1px;
    }

    .panel-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.55s ease;
      transform: scale(1.06);
    }

    .panel-deep.open .panel-img img {
      transform: scale(1);
    }

    /* Items list */
    .panel-items {
      list-style: none;
      flex: 1;
    }

    .panel-item {
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .panel-item:first-child {
      border-top: 1px solid var(--border);
    }

    .panel-item>a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 11px 0;
      text-decoration: none;
      font-size: 22px;
      letter-spacing: 0.04em;
      transition: color 0.22s, padding-left 0.22s;
    }

    /* L1 items get big serif treatment */
    .l1-item>a {
      padding: 14px 0;
      color: var(--white);
    }

    .l1-item>a:hover,
    .l1-item>a.active {
      color: var(--accent);
    }

    .l1-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 4vw, 60px);
      font-weight: 300;
      line-height: 1;
      letter-spacing: -0.01em;
      display: inline-block;
      transform: translateY(110%);
      transition: color 0.3s;
    }

    .l1-name em {
      font-style: italic;
    }

    .l1-num {
      font-size: 10px;
      color: var(--text-muted);
      letter-spacing: 0.1em;
      margin-right: 14px;
    }

    .l1-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .l1-count {
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      opacity: 0;
      transform: translateX(6px);
      transition: opacity 0.3s, transform 0.3s, color 0.3s;
    }

    @media(max-width:768px) {
      .l1-count {
        display: none;
      }
    }

    .l1-item>a:hover .l1-count,
    .l1-item>a.active .l1-count {
      opacity: 1;
      transform: translateX(0);
      color: var(--accent);
    }

    .l1-arrow {
      font-size: 14px;
      color: var(--accent);
      opacity: 0;
      transform: translateX(-5px);
      transition: opacity 0.3s, transform 0.3s;
    }

    .l1-item>a:hover .l1-arrow,
    .l1-item>a.active .l1-arrow {
      opacity: 1;
      transform: translateX(0);
    }

    @media(max-width:900px) {
      .has-children .l1-arrow {
        opacity: 0.3;
        transform: translateX(0);
      }
    }

    /* Deep level items */
    .panel-item>a {
      color: rgba(245, 242, 236, 0.6);
    }

    .panel-item>a:hover,
    .panel-item>a.active {
      color: var(--white);
      padding-left: 5px;
    }

    .item-label {
      flex: 1;
    }

    .item-count {
      font-size: 9px;
      color: var(--text-muted);
      letter-spacing: 0.1em;
      flex-shrink: 0;
      transition: color 0.22s;
    }

    .panel-item>a:hover .item-count,
    .panel-item>a.active .item-count {
      color: var(--accent);
    }

    .item-chevron {
      font-size: 12px;
      color: rgba(245, 242, 236, 0.25);
      margin-left: 8px;
      flex-shrink: 0;
      transition: color 0.22s, transform 0.22s;
    }

    .panel-item>a:hover .item-chevron,
    .panel-item>a.active .item-chevron {
      color: var(--accent);
      transform: translateX(3px);
    }

    /* Has-children dot */
    .has-children .l1-name::after,
    .has-children>a .item-label::after {
      content: '';
      display: inline-block;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--accent);
      margin-left: 10px;
      vertical-align: middle;
      opacity: 0.5;
    }

    /* Panel tag / shop-all link */
    .panel-tag {
      margin-top: 16px;
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
      transition: color 0.3s;
    }

    .panel-tag:hover {
      color: var(--white);
      cursor: none;
    }

    .panel-tag::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    /* Marquee */
    .marquee-wrap {
      position: absolute;
      bottom: 20px;
      left: 0;
      right: 0;
      overflow: hidden;
      white-space: nowrap;
      pointer-events: none;
    }

    @media(max-width:900px) {
      .marquee-wrap {
        display: none;
      }
    }

    .marquee-inner {
      display: inline-flex;
      animation: mar 18s linear infinite;
    }

    .marquee-item {
      padding: 0 36px;
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(245, 242, 236, 0.11);
    }

    @keyframes mar {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    /* BOTTOM */
    .menu-bottom {
      flex-shrink: 0;
      opacity: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 52px;
      border-top: 1px solid var(--border);
      flex-wrap: wrap;
      gap: 12px;
    }

    @media(max-width:768px) {
      .menu-bottom {
        padding: 14px 24px;
      }
    }

    .menu-secondary,
    .menu-social {
      display: flex;
      gap: 22px;
      list-style: none;
      flex-wrap: wrap;
    }

    .menu-secondary a,
    .menu-social a {
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
      transition: color 0.3s;
    }

    .menu-secondary a:hover,
    .menu-social a:hover {
      color: var(--white);
    }

    /* PAGE BG */
    .page-bg {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 10px;
      text-align: center;
      padding: 40px 24px;
    }

    .page-bg h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(56px, 12vw, 140px);
      font-weight: 300;
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .page-bg h1 em {
      font-style: italic;
      color: var(--accent);
    }

    .page-bg p {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 8px;
    }

    .hint {
      margin-top: 44px;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hint::before {
      content: '';
      width: 16px;
      height: 1px;
      background: var(--text-muted);
    }