  :root {
    --black: #050507;
    --blue: #0D3B6E;
    --blue-light: #1A5FA8;
    --gold: #E8619A;
    --gold-dim: #A03060;
    --cream: #F5F0E8;
    --white: #F5F0E8;
    --muted: #7A7570;
    --surface: #0C0C10;
    --surface2: #111118;
    --border: rgba(232,97,154,0.2);
    --border-b: rgba(13,59,110,0.4);
    --red: #E8619A;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Cormorant Garamond', Georgia, serif;
    overflow-x: hidden;
    cursor: none;
  }

  /* CURSOR */
  .cursor {
    position: fixed; width: 10px; height: 10px;
    background: var(--gold); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width 0.2s, height 0.2s;
  }
  .cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1px solid rgba(13,59,110,0.8);
    border-radius: 50%; pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: left 0.12s, top 0.12s, width 0.3s, height 0.3s;
  }

  /* GRAIN */
  body::before {
    content: '';
    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: 9000; opacity: 0.4;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 3rem;
    background: linear-gradient(180deg, rgba(5,5,7,0.97) 0%, transparent 100%);
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem; letter-spacing: 0.08em;
    color: var(--white); text-decoration: none;
    display: flex; flex-direction: column; line-height: 1;
  }
  .nav-logo img { max-height: 40px; height: auto; width: auto; display: block; align-self: flex-start; object-fit: contain; }
  .nav-logo .subtitle {
    font-family: 'Space Mono', monospace;
    font-size: 0.45rem; letter-spacing: 0.3em;
    color: var(--gold); margin-top: 2px;
  }
  .nav-links { display: flex; gap: 2rem; align-items: center; }
  .nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--muted); text-decoration: none; transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-back {
    display: flex; align-items: center; gap: 0.6rem;
    border: 1px solid var(--border) !important;
    color: var(--gold) !important; padding: 0.4rem 1rem;
    transition: background 0.3s !important;
  }
  .nav-back:hover { background: rgba(232,97,154,0.1) !important; }
  nav.scrolled { background: rgba(5,5,7,0.98); border-bottom: 1px solid var(--border); }

  /* HERO */
  #hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 70% at 80% 50%, rgba(13,59,110,0.2) 0%, transparent 60%),
      radial-gradient(ellipse 30% 40% at 20% 30%, rgba(232,97,154,0.06) 0%, transparent 50%),
      linear-gradient(180deg, #050507 0%, #080810 50%, #050507 100%);
  }
  .hero-grid {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: 
      linear-gradient(rgba(232,97,154,0.8) 1px, transparent 1px),
      linear-gradient(90deg, rgba(232,97,154,0.8) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 0 3rem; max-width: 1200px; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    margin-top: 5rem;
  }
  .hero-left { }
  .hero-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem; letter-spacing: 0.35em; color: var(--gold);
    margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem;
    animation: fadeUp 0.8s ease 0.2s both;
  }
  .hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: 0.92; color: var(--white);
    animation: fadeUp 0.8s ease 0.3s both;
  }
  .hero-title .accent { color: var(--gold); }
  .hero-title .line-b { color: transparent; -webkit-text-stroke: 1px rgba(232,97,154,0.4); }
  .hero-desc {
    font-size: 1.15rem; line-height: 1.8; color: rgba(245,240,232,0.7);
    margin-top: 2rem; animation: fadeUp 0.8s ease 0.5s both;
  }
  .hero-actions {
    display: flex; gap: 1rem; margin-top: 2.5rem;
    animation: fadeUp 0.8s ease 0.6s both;
  }
  .btn-primary {
    background: var(--blue); color: var(--white);
    padding: 0.9rem 2rem; text-decoration: none;
    font-family: 'Space Mono', monospace; font-size: 0.65rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    transition: background 0.3s; display: inline-block;
  }
  .btn-primary:hover { background: var(--blue-light); }
  .btn-ghost {
    border: 1px solid var(--border); color: var(--gold);
    padding: 0.9rem 2rem; text-decoration: none;
    font-family: 'Space Mono', monospace; font-size: 0.65rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    transition: background 0.3s; display: inline-block;
  }
  .btn-ghost:hover { background: rgba(232,97,154,0.1); }
  .hero-right { animation: fadeUp 0.8s ease 0.4s both; }
  .stats-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  .stat-card {
    background: var(--surface2); padding: 2rem 1.5rem;
  }
  .stat-card .num {
    font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem;
    color: var(--gold); line-height: 1;
  }
  .stat-card .lbl {
    font-family: 'Space Mono', monospace; font-size: 0.55rem;
    letter-spacing: 0.15em; color: var(--muted); margin-top: 0.5rem;
  }
  .stat-card .desc { font-size: 0.9rem; color: rgba(245,240,232,0.6); margin-top: 0.3rem; }

  /* SECTION STYLES */
  .section-wrap { padding: 7rem 3rem; }
  .section-wrap.alt { background: var(--surface2); }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem; letter-spacing: 0.35em; color: var(--gold);
    text-transform: uppercase; margin-bottom: 0.8rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .section-label::before { content: ''; width: 25px; height: 1px; background: var(--gold); }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1; color: var(--white); margin-bottom: 1rem;
  }
  .section-sub {
    font-size: 1.1rem; color: rgba(245,240,232,0.6); line-height: 1.7;
    max-width: 600px; margin-bottom: 3rem;
  }

  /* LISTINGS */
  .listings-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
  }
  .listing-card {
    background: var(--surface); border: 1px solid var(--border);
    overflow: hidden; transition: transform 0.3s, border-color 0.3s;
  }
  .listing-card:hover { transform: translateY(-6px); border-color: var(--gold); }
  .listing-img {
    height: 200px; background: var(--surface2);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 0.5rem; position: relative;
    overflow: hidden;
  }
  .listing-img-emoji { font-size: 3rem; opacity: 0.4; }
  .listing-img .status-badge {
    position: absolute; top: 1rem; right: 1rem;
    font-family: 'Space Mono', monospace; font-size: 0.55rem;
    letter-spacing: 0.15em; padding: 0.3rem 0.8rem;
  }
  .status-active { background: rgba(13,59,110,0.8); color: #7AB8F5; border: 1px solid rgba(13,59,110,0.8); }
  .status-pending { background: rgba(139,110,47,0.3); color: var(--gold); border: 1px solid var(--gold-dim); }
  .listing-body { padding: 1.5rem; }
  .listing-price {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem;
    color: var(--gold); margin-bottom: 0.3rem;
  }
  .listing-addr { font-size: 1rem; color: var(--white); margin-bottom: 0.5rem; }
  .listing-meta {
    font-family: 'Space Mono', monospace; font-size: 0.55rem;
    letter-spacing: 0.1em; color: var(--muted); margin-bottom: 1.2rem;
  }
  .listing-features {
    display: flex; gap: 1.5rem; margin-bottom: 1.5rem;
    padding-top: 1rem; border-top: 1px solid var(--border);
  }
  .feat-item {
    font-family: 'Space Mono', monospace; font-size: 0.55rem;
    letter-spacing: 0.1em; color: var(--muted); display: flex; flex-direction: column; gap: 2px;
  }
  .feat-item strong { color: var(--white); font-size: 0.75rem; }
  .listing-cta {
    display: block; text-align: center; padding: 0.8rem;
    background: transparent; border: 1px solid var(--border);
    color: var(--gold); text-decoration: none;
    font-family: 'Space Mono', monospace; font-size: 0.6rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    transition: background 0.3s;
  }
  .listing-cta:hover { background: rgba(232,97,154,0.1); }
  .listing-discount-btn {
    display: block; text-align: center; padding: 0.8rem;
    background: var(--gold); border: 1px solid var(--gold);
    color: var(--black); text-decoration: none;
    font-family: 'Space Mono', monospace; font-size: 0.6rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    transition: background 0.3s, color 0.3s; margin-top: 0.6rem;
  }
  .listing-discount-btn:hover { background: var(--gold-dim); border-color: var(--gold-dim); color: var(--white); }
  .airbnb-embed-frame { width: 100% !important; }

  /* EVENTS HOSTING */
  .events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
  .event-card {
    border: 1px solid var(--border); padding: 2.5rem;
    background: var(--surface); position: relative; overflow: hidden;
    transition: border-color 0.3s;
  }
  .event-card:hover { border-color: var(--blue-light); }
  .event-card-icon { font-size: 2.5rem; margin-bottom: 1.5rem; }
  .event-card-title {
    font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
    color: var(--white); margin-bottom: 1rem;
  }
  .event-card-desc { font-size: 1rem; line-height: 1.8; color: rgba(245,240,232,0.7); margin-bottom: 1.5rem; }
  .event-card-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .tag {
    font-family: 'Space Mono', monospace; font-size: 0.5rem;
    letter-spacing: 0.15em; padding: 0.3rem 0.7rem;
    border: 1px solid var(--border); color: var(--muted);
  }
  .event-card .corner-num {
    position: absolute; top: 1.5rem; right: 1.5rem;
    font-family: 'Bebas Neue', sans-serif; font-size: 4rem;
    color: rgba(232,97,154,0.06); line-height: 1;
  }

  /* SHOWING SCHEDULE */
  .showing-item {
    display: grid; grid-template-columns: 70px 1fr auto;
    gap: 2rem; align-items: center;
    padding: 1.5rem 0; border-bottom: 1px solid var(--border);
    transition: padding-left 0.2s;
  }
  .showing-item:first-child { border-top: 1px solid var(--border); }
  .showing-item:hover { padding-left: 0.5rem; }
  .showing-date { text-align: center; }
  .showing-date .mon {
    font-family: 'Space Mono', monospace; font-size: 0.5rem;
    letter-spacing: 0.2em; color: var(--gold); display: block;
  }
  .showing-date .day { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--white); line-height: 1; }
  .showing-addr { font-size: 1.2rem; color: var(--white); }
  .showing-time { font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.1em; color: var(--muted); margin-top: 0.3rem; }
  .showing-badge {
    font-family: 'Space Mono', monospace; font-size: 0.5rem;
    letter-spacing: 0.15em; padding: 0.3rem 0.8rem; white-space: nowrap;
  }
  .badge-confirmed { border: 1px solid rgba(13,59,110,0.8); color: #7AB8F5; }
  .badge-tentative { border: 1px solid var(--gold-dim); color: var(--gold); }

  /* CONTACT FORM */
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
  }
  .contact-info h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); margin-bottom: 1.5rem;
  }
  .contact-info p { font-size: 1.05rem; line-height: 1.8; color: rgba(245,240,232,0.7); margin-bottom: 1.2rem; }
  .contact-detail { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 1.5rem; }
  .detail-lbl { font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.2em; color: var(--gold); }
  .detail-val { font-size: 1rem; color: var(--white); }
  .detail-val a { color: var(--white); text-decoration: none; }
  .detail-val a:hover { color: var(--gold); }
  .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .form-field { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-field label {
    font-family: 'Space Mono', monospace; font-size: 0.5rem;
    letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase;
  }
  .form-field input, .form-field select, .form-field textarea {
    background: rgba(245,240,232,0.04); border: 1px solid var(--border);
    color: var(--white); padding: 0.9rem 1rem;
    font-family: 'Cormorant Garamond', serif; font-size: 1rem;
    outline: none; transition: border-color 0.3s; -webkit-appearance: none;
  }
  .form-field input:focus, .form-field textarea:focus { border-color: rgba(232,97,154,0.5); }
  .form-field select option { background: #111; }
  .form-field textarea { resize: vertical; min-height: 130px; }
  .form-submit {
    background: var(--blue); color: var(--white); border: none;
    padding: 1.1rem 2rem; font-family: 'Space Mono', monospace;
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    cursor: pointer; transition: background 0.3s; width: 100%;
  }
  .form-submit:hover { background: var(--blue-light); }
  .form-note {
    font-family: 'Space Mono', monospace; font-size: 0.55rem;
    letter-spacing: 0.05em; color: var(--muted);
    text-align: center; margin-top: 0.5rem;
  }

  /* COMMISSIONS */
  .comm-strip {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border); background: var(--surface);
  }
  .comm-item {
    padding: 2.5rem 2rem; border-right: 1px solid var(--border);
    text-align: center;
  }
  .comm-item:last-child { border-right: none; }
  .comm-num { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: var(--gold); line-height: 1; }
  .comm-lbl { font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.15em; color: var(--muted); margin-top: 0.5rem; }
  .comm-trend { font-size: 0.85rem; color: #5FC87A; margin-top: 0.3rem; }

  /* PAGE SWITCH */
  .page-switch {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  }
  .page-switch a {
    display: flex; align-items: center; gap: 0.8rem;
    background: var(--surface); border: 1px solid var(--red);
    color: var(--red); padding: 0.8rem 1.4rem; text-decoration: none;
    font-family: 'Space Mono', monospace; font-size: 0.6rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    transition: background 0.3s; box-shadow: 0 4px 30px rgba(0,0,0,0.8);
  }
  .page-switch a:hover { background: rgba(232,97,154,0.1); }
  .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.3} }

  /* FOOTER */
  footer {
    background: var(--surface); border-top: 1px solid var(--border);
    padding: 3rem; display: flex; align-items: center; justify-content: space-between;
  }
  .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--white); }
  .footer-logo .sub { font-family: 'Space Mono', monospace; font-size: 0.45rem; letter-spacing: 0.25em; color: var(--gold); display: block; }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.15em; color: var(--muted); text-decoration: none; transition: color 0.3s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-copy { font-family: 'Space Mono', monospace; font-size: 0.5rem; letter-spacing: 0.1em; color: var(--muted); }

  /* ANIM */
  @keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

  .toast {
    position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: var(--black);
    padding: 1rem 2rem; font-family: 'Space Mono', monospace;
    font-size: 0.7rem; letter-spacing: 0.1em;
    z-index: 9999; opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .toast.show { opacity: 1; }

  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-logo img { max-height: 28px !important; height: auto !important; width: auto !important; }
    .nav-logo .subtitle { font-size: 0.38rem; letter-spacing: 0.2em; }
    .hero-content { grid-template-columns: 1fr; padding: 0 1.5rem; margin-top: 6rem; }
    .section-wrap { padding: 5rem 1.5rem; }
    .events-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .comm-strip { grid-template-columns: 1fr 1fr; }
    .comm-item { border-right: none; border-bottom: 1px solid var(--border); }
    .showing-item { grid-template-columns: 55px 1fr; }
    .showing-badge { display: none; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* EXTRA MOBILE FIXES */
  @media (max-width: 900px) {
    .mobile-menu-btn { display: block; position: fixed; top: 1.1rem; right: 1.5rem; z-index: 101; font-size: 1.5rem; color: var(--white); background: none; border: none; cursor: pointer; padding: 0.5rem; }
    .mobile-menu { display: none; position: fixed; inset: 0; z-index: 99; background: rgba(5,5,7,0.98); padding: 6rem 2rem 2rem; flex-direction: column; gap: 1.5rem; }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-family: 'Space Mono', monospace; font-size: 0.85rem; letter-spacing: 0.2em; color: var(--white); text-decoration: none; text-transform: uppercase; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
    .nav-back { border: 1px solid var(--border) !important; color: var(--gold) !important; padding: 0.75rem 1rem !important; text-align: center; margin-top: 0.5rem; }
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none !important; }
  }
  @media (min-width: 901px) { .mobile-menu-btn, .mobile-menu { display: none !important; } }

/* Added for SvelteKit port — description text + video tile */
.listing-desc {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.listing-img img { width: 100%; height: 100%; object-fit: cover; }
.listing-img video { width: 100%; height: 100%; object-fit: contain; }

.subsection-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gold);
  margin: 2rem 0 1.2rem;
  letter-spacing: 0.05em;
}

.listing-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 1.2rem;
}
.listing-photo {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--surface2);
  display: block;
  transition: transform 0.3s, border-color 0.3s;
}
.listing-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.listing-photo:hover img { transform: scale(1.08); }
