  * { margin: 0; padding: 0; box-sizing: border-box; }

    nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 16px 24px;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .nav-logo {
    margin-left: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.18em;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
  }
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: static;
    margin-left: auto;
  }
  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 4px 0;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  nav.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  nav.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  nav.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav-links li {
    margin: 0;
  }
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: color 0.25s ease, transform 0.25s ease;
    padding: 8px 0;
  }
  .nav-links a:hover {
    color: #d4c194;
    transform: translateY(-1px);
  }
  .logo-inner-img img { max-width: 100%; height: auto; }
  @media (max-width: 768px) {
    nav {
      flex-direction: column;
      align-items: flex-start;
      position: relative;
      padding: 12px 16px;
    }
    .nav-header { width: 100%; }
    .menu-toggle { display: block; }
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      margin-top: 12px;
      background: rgba(0, 0, 0, 0.8);
      padding: 14px 16px;
      border-radius: 14px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    }
    nav.nav-open .nav-links { display: flex; }
    .nav-links li { margin: 8px 0; }
    .nav-links a { display: block; width: 100%; padding: 10px 0; }
  }
  
  :root {
    --black: #0a0a0a;
    --white: #f0ede8;
    --accent: #c8b89a;
    --dim: rgba(240,237,232,0.35);
  }

  html, body {
    width: 100%; height: 100%;
    background: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    cursor: none;
  }

  #cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--white);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, background 0.2s;
    transform: translate(-50%, -50%);
  }
  #cursor-ring {
    position: fixed;
    width: 32px; height: 32px;
    border: 1px solid var(--dim);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
  }

  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-logo {
    font-family: 'Montserrat Bols', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    opacity: 0;
    animation: fadeIn 1.2s 0.4s forwards;
  }
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    opacity: 0;
    animation: fadeIn 1.2s 0.6s forwards;
  }
  .nav-links a {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 300;
  }
  .nav-links a:hover { color: var(--white); }

  .hero {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .logo-container {
    position: relative;
    width: 320px; height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: logoReveal 1.8s 0.2s cubic-bezier(0.16,1,0.3,1) forwards;
  }

  .geo-logo {
    position: relative;
    width: 220px; height: 220px;
  }

  .geo-logo svg {
    width: 100%; height: 100%;
    animation: rotateSlow 18s linear infinite;
  }

  .logo-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .logo-inner-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1;
    color: var(--white);
    text-align: center;
  }
  
    .logo-inner-img {
    width: 150px; 
    height: 90px; 
}

  .logo-inner-sub {
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    margin-top: 0.5rem;
  }

  .pulse-ring {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(200,184,154,0.2);
    animation: pulse 3s ease-in-out infinite;
  }
  .pulse-ring:nth-child(2) { inset: -40px; animation-delay: 0.8s; opacity: 0.5; }
  .pulse-ring:nth-child(3) { inset: -65px; animation-delay: 1.6s; opacity: 0.25; }

  .tagline {
    margin-top: 3rem;
    text-align: center;
    opacity: 0;
    animation: fadeUp 1s 1.2s forwards;
  }
  .tagline p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--dim);
    letter-spacing: 0.08em;
    font-weight: 300;
  }

  .enter-btn {
    margin-top: 2.5rem;
    opacity: 0;
    animation: fadeUp 1s 1.6s forwards;
  }
  .enter-btn a {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    padding: 0.9rem 2.5rem;
    border: 1px solid rgba(240,237,232,0.25);
    display: inline-block;
    transition: border-color 0.4s, background 0.4s, color 0.4s;
    font-weight: 300;
  }
  .enter-btn a:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--black);
  }

  footer {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    animation: fadeIn 1.2s 1.8s forwards;
    pointer-events: none;
  }
  footer span {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--dim);
    font-weight: 200;
  }

  .noise {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 200;
    opacity: 0.4;
  }

  .ambient {
    position: fixed;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,184,154,0.04) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: breathe 6s ease-in-out infinite;
  }

  @keyframes fadeIn { to { opacity: 1; } }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes logoReveal { from { opacity: 0; transform: scale(0.88); } to { opacity: 1; transform: scale(1); } }
  @keyframes rotateSlow { to { transform: rotate(360deg); } }
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.04); opacity: 0.2; }
  }
  @keyframes breathe {
    0%, 100% { transform: translate(-50%,-50%) scale(1); }
    50% { transform: translate(-50%,-50%) scale(1.15); }
  }