
  :root{
    --bg:#15110D;
    --bg-2:#1C1712;
    --glass: rgba(243,234,208,.055);
    --glass-strong: rgba(243,234,208,.10);
    --glass-border: rgba(243,234,208,.14);
    --birch: #F3EAD4;
    --birch-dim: #CBBFA2;
    --muted: #8C8270;
    --neon: #D6FF3F;
    --neon-dim: #A9CB2F;
    --neon-soft: rgba(214,255,63,.35);
    --neon2: #FF3FA0;
    --neon2-soft: rgba(255,63,160,.32);
    --shadow: 0 24px 50px -22px rgba(0,0,0,.7);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 10px;
    --grain: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxNDAnIGhlaWdodD0nMTQwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC44NScgbnVtT2N0YXZlcz0nMicgc3RpdGNoVGlsZXM9J3N0aXRjaCcvPjxmZUNvbG9yTWF0cml4IHR5cGU9J3NhdHVyYXRlJyB2YWx1ZXM9JzAnLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0nMTAwJScgaGVpZ2h0PScxMDAlJyBmaWx0ZXI9J3VybCgjbiknIG9wYWNpdHk9JzAuNTUnLz48L3N2Zz4K");
  }

  *{box-sizing:border-box;}
  html,body{margin:0;padding:0;}
  body{
    background: var(--bg);
    color: var(--birch);
    font-family:'Manrope', sans-serif;
    -webkit-font-smoothing:antialiased;
    min-height:100vh;
    display:flex;
    justify-content:center;
  }
  a{color:inherit;}
  button{font-family:inherit;}
  ::selection{background:var(--neon); color:#181307;}

  :focus-visible{
    outline: 2px solid var(--neon);
    outline-offset: 3px;
    border-radius: 6px;
  }

  .app{
    width:100%;
    max-width:460px;
    min-height:100vh;
    background:
      radial-gradient(ellipse 90% 50% at 50% 0%, rgba(214,255,63,.05), transparent 60%),
      var(--bg);
    position:relative;
    padding-bottom: 104px;
    overflow-x:hidden;
  }

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    height: 58vh;
    min-height: 400px;
    max-height: 520px;
    overflow:hidden;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    background: linear-gradient(180deg, #1A1510 0%, #14100C 60%, #100C09 100%);
  }
  .hero-svg{ position:absolute; inset:0; width:100%; height:100%; }
  .ember{ fill: var(--neon); opacity:0; }
  @media (prefers-reduced-motion: no-preference){ .ember{ animation: emberFloat 6s ease-in infinite; } }
  @media (prefers-reduced-motion: reduce){ .ember{ opacity:.5; } }
  @keyframes emberFloat{
    0%{ transform: translateY(0); opacity:0; }
    12%{ opacity:.85; }
    85%{ opacity:.2; }
    100%{ transform: translateY(-70px); opacity:0; }
  }
  .cabin-line{
    fill:none; stroke: var(--neon); stroke-width: 2.4;
    stroke-linecap: round; stroke-linejoin: round;
    filter: drop-shadow(0 0 3px var(--neon)) drop-shadow(0 0 10px var(--neon-soft));
    stroke-dasharray: 620; stroke-dashoffset: 620;
  }
  .cabin-window{ fill: var(--neon); opacity:0; filter: drop-shadow(0 0 6px var(--neon)); }
  @media (prefers-reduced-motion: no-preference){
    .cabin-line{ animation: drawCabin 2.1s cubic-bezier(.3,.7,.2,1) .3s forwards, glowPulse 3.6s ease-in-out 2.4s infinite; }
    .cabin-window{ animation: winkIn .6s ease-out 2s forwards, glowPulse 3.6s ease-in-out 2.6s infinite; }
  }
  @media (prefers-reduced-motion: reduce){ .cabin-line{ stroke-dashoffset:0; } .cabin-window{ opacity:.9; } }
  @keyframes drawCabin{ to{ stroke-dashoffset:0; } }
  @keyframes winkIn{ to{ opacity:.95; } }
  @keyframes glowPulse{
    0%,100%{ filter: drop-shadow(0 0 3px var(--neon)) drop-shadow(0 0 10px var(--neon-soft)); }
    50%{ filter: drop-shadow(0 0 5px var(--neon)) drop-shadow(0 0 20px var(--neon-soft)); }
  }
  .trunk{ fill: rgba(243,234,208,.5); }
  .trunk-mark{ fill: rgba(21,17,13,.6); }
  .trees-back{ opacity:.35; }

  .hero-content{ position:absolute; left:0; right:0; bottom:0; padding: 24px 22px 22px; z-index:2; }
  .hero-eyebrow{ display:flex; align-items:center; gap:8px; font-size:13px; color:var(--birch-dim); margin-bottom:10px; opacity:0; transform: translateY(8px); }
  .hero-eyebrow svg{width:14px; height:14px; flex-shrink:0; stroke:var(--neon);}
  .hero-title{ font-family:'Fraunces', serif; font-weight:500; font-size: 42px; line-height: 1.02; margin:0 0 8px; letter-spacing:-0.01em; opacity:0; transform: translateY(14px); }
  .hero-title em{ font-style: italic; font-weight: 500; color: var(--neon); text-shadow: 0 0 14px var(--neon-soft), 0 0 30px rgba(214,255,63,.2); }
  .hero-sub{ font-size:15px; color: var(--birch-dim); margin:0; max-width: 30ch; opacity:0; transform: translateY(10px); }

  @media (prefers-reduced-motion: no-preference){
    .hero-eyebrow{ animation: riseIn .7s cubic-bezier(.2,.7,.2,1) .55s forwards; }
    .hero-title{ animation: riseIn .8s cubic-bezier(.2,.7,.2,1) .68s forwards; }
    .hero-sub{ animation: riseIn .8s cubic-bezier(.2,.7,.2,1) .82s forwards; }
  }
  @media (prefers-reduced-motion: reduce){ .hero-eyebrow, .hero-title, .hero-sub{ opacity:1; transform:none; } }
  @keyframes riseIn{ to{ transform:translateY(0); opacity:1; } }

  /* ---------- LIVE BADGE ---------- */
  .live-strip{ display:flex; align-items:center; justify-content:space-between; padding: 14px 22px 4px; font-size: 13px; color: var(--muted); }
  .live-badge{ display:flex; align-items:center; gap:7px; }
  .live-dot{ width:7px; height:7px; border-radius:50%; background: var(--neon); box-shadow: 0 0 6px var(--neon); }
  @media (prefers-reduced-motion: no-preference){ .live-dot{ animation: pulseDot 2.4s ease-out infinite; } }
  @keyframes pulseDot{
    0%{ box-shadow: 0 0 0 0 rgba(214,255,63,.55), 0 0 6px var(--neon); }
    70%{ box-shadow: 0 0 0 8px rgba(214,255,63,0), 0 0 6px var(--neon); }
    100%{ box-shadow: 0 0 0 0 rgba(214,255,63,0), 0 0 6px var(--neon); }
  }
  .rating{ display:flex; align-items:center; gap:5px; color: var(--birch-dim); }
  .rating svg{width:13px; height:13px; fill:var(--neon);}

  /* ---------- SECTION SHELL ---------- */
  .section{ padding: 22px 22px 0; }
  .section-head{ display:flex; align-items:baseline; justify-content:space-between; margin-bottom:14px; }
  .section-title{ font-family:'Fraunces', serif; font-weight:500; font-size:22px; margin:0; }
  .section-note{ font-size:12.5px; color:var(--muted); }

  /* ---------- GALLERY: fake photo cards (pure CSS, no external images) ---------- */
  .gallery-scroll{
    display:flex; gap:10px; overflow-x:auto; scroll-snap-type: x mandatory;
    padding-bottom:2px; margin: 0 -22px; padding-left:22px; padding-right:22px;
    -ms-overflow-style:none; scrollbar-width:none;
  }
  .gallery-scroll::-webkit-scrollbar{ display:none; }
  .photo-card{
    flex: 0 0 72%;
    scroll-snap-align:start;
    border-radius: var(--radius-md);
    overflow:hidden;
    height: 210px;
    position:relative;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
  }
  .photo-card::before{
    content:"";
    position:absolute; inset:0;
    background-image: var(--grain);
    background-size: 140px 140px;
    mix-blend-mode: overlay;
    opacity:.22;
    pointer-events:none;
    z-index:1;
  }
  .photo-card::after{
    content:"";
    position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(10,8,6,0) 45%, rgba(10,8,6,.85) 100%);
    pointer-events:none;
  }
  .photo-scene{ position:absolute; inset:0; }
  .gallery-cap{
    position:absolute; left:12px; bottom:10px; z-index:2;
    font-size:12.5px; color:var(--birch);
    background: rgba(21,17,13,.5);
    backdrop-filter: blur(6px);
    padding: 5px 10px; border-radius: 999px;
    border: 1px solid rgba(243,234,208,.16);
  }

  /* real photo cards: cover image + slow ambient zoom + light grain for cohesion */
  .photo-img{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit: cover;
    transform: scale(1.06);
  }
  @media (prefers-reduced-motion: no-preference){
    .photo-img{ animation: kenBurns 16s ease-in-out infinite alternate; }
  }
  @keyframes kenBurns{ 0%{ transform: scale(1.06) translateY(0); } 100%{ transform: scale(1.14) translateY(-2%); } }

  .gallery-dots{ display:flex; gap:6px; justify-content:center; margin-top:12px; }
  .gdot{ width:6px; height:6px; border-radius:50%; background: rgba(243,234,208,.2); transition: background .25s, width .25s, box-shadow .25s; }
  .gdot.active{ background: var(--neon); width:16px; border-radius:4px; box-shadow:0 0 6px var(--neon); }

  /* ---------- ABOUT ---------- */
  .about-text{ font-size:15px; line-height:1.6; color: var(--birch-dim); margin:0; }

  /* ---------- AMENITIES ---------- */
  .amenity-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap:10px; }
  .amenity{
    display:flex; align-items:center; gap:10px;
    background: var(--glass); border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm); padding: 12px 12px; font-size:13.5px; color: var(--birch-dim);
  }
  .amenity svg{ width:18px; height:18px; flex-shrink:0; stroke:var(--neon); filter: drop-shadow(0 0 4px rgba(214,255,63,.4)); }

  /* ---------- CALENDAR CARD (glass / transparent) ---------- */
  .cal-card{
    background: var(--glass); border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-radius: var(--radius-lg); padding: 18px 16px 16px;
    box-shadow: inset 0 1px 0 rgba(243,234,208,.06);
  }
  .cal-nav{ display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
  .cal-month{ font-family:'Fraunces', serif; font-size:18px; font-weight:500; text-transform:capitalize; }
  .cal-arrow{
    width:32px; height:32px; border-radius:50%; border:1px solid var(--glass-border);
    background: rgba(243,234,208,.05); color: var(--birch);
    display:flex; align-items:center; justify-content:center; cursor:pointer;
    transition: border-color .15s, background .15s;
  }
  .cal-arrow:hover{ border-color: var(--neon-dim); }
  .cal-arrow:disabled{ opacity:.3; cursor:not-allowed; }
  .cal-arrow svg{ width:14px; height:14px; }

  .cal-weekdays{ display:grid; grid-template-columns: repeat(7,1fr); margin-bottom:6px; }
  .cal-weekdays span{ text-align:center; font-size:11px; color:var(--muted); padding-bottom:6px; }
  .cal-grid{ display:grid; grid-template-columns: repeat(7,1fr); gap:4px; }
  .cal-day{
    position:relative; aspect-ratio:1;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    border-radius: 10px; font-size:13px; background: transparent; color: var(--birch-dim);
    border:1px solid transparent; cursor:pointer;
    transition: background .15s, color .15s, border-color .15s, box-shadow .2s;
  }
  .cal-day .p{ font-size:8.5px; color:var(--muted); margin-top:1px; }
  .cal-day.empty{ cursor:default; }
  .cal-day.past{ color:rgba(140,130,112,.45); cursor:not-allowed; }
  .cal-day.past .p{ visibility:hidden; }
  .cal-day.available:hover{ background: rgba(214,255,63,.08); border-color: var(--neon-soft); }
  .cal-day.booked{ color: rgba(255,63,160,.55); text-decoration: line-through; text-decoration-color: rgba(255,63,160,.4); cursor:not-allowed; }
  .cal-day.booked .p{ visibility:hidden; }
  .cal-day.today.available:not(.single){ box-shadow: inset 0 0 0 1.5px rgba(214,255,63,.55); }
  .cal-day.single{ background: var(--neon); color:#181307; border-radius:10px; font-weight:700; box-shadow: 0 0 16px rgba(214,255,63,.5); animation: selectPop .32s cubic-bezier(.3,.9,.3,1); }
  .cal-day.single .p{ color:#3B4308; }
  @keyframes selectPop{ 0%{ transform: scale(.82); } 60%{ transform: scale(1.08); } 100%{ transform: scale(1); } }

  .cal-legend{ display:flex; gap:16px; margin-top:14px; font-size:11.5px; color: var(--muted); }
  .cal-legend span{ display:flex; align-items:center; gap:6px; }
  .lg-dot{ width:8px; height:8px; border-radius:3px; display:inline-block; }
  .lg-dot.free{ background: rgba(243,234,208,.08); border:1px solid var(--glass-border); }
  .lg-dot.busy{ background: var(--neon2); box-shadow:0 0 5px var(--neon2); }
  .lg-dot.sel{ background: var(--neon); box-shadow:0 0 5px var(--neon); }

  /* ---------- GUESTS ---------- */
  .guest-row{
    display:flex; align-items:center; justify-content:space-between;
    background: var(--glass); border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px); border-radius: var(--radius-md); padding: 14px 16px;
  }
  .guest-label{ font-size:14px; }
  .guest-label small{ display:block; color:var(--muted); font-size:12px; margin-top:2px; }
  .stepper{ display:flex; align-items:center; gap:14px; }
  .step-btn{
    width:32px; height:32px; border-radius:50%; border:1px solid var(--glass-border);
    background: rgba(243,234,208,.05); color:var(--birch); font-size:17px;
    display:flex; align-items:center; justify-content:center; cursor:pointer; transition: border-color .15s;
  }
  .step-btn:hover{ border-color:var(--neon-dim); }
  .step-btn:active{ transform: scale(.92); }
  .step-val{ font-family:'Fraunces', serif; font-size:19px; min-width:20px; text-align:center; }

  /* ---------- PRICE BREAKDOWN ---------- */
  .price-card{
    background: var(--glass); border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px); border-radius: var(--radius-md); padding: 16px; font-size:13.5px;
  }
  .price-row{ display:flex; justify-content:space-between; padding: 7px 0; color: var(--birch-dim); }
  .price-row.total{ border-top:1px solid var(--glass-border); margin-top:6px; padding-top:12px; color: var(--birch); font-size:16px; font-family:'Fraunces', serif; }
  .price-row.discount{ color: var(--neon); }
  .price-empty{ text-align:center; color:var(--muted); font-size:13.5px; padding: 6px 0; }

  /* ---------- CONTACTS ---------- */
  .contact-card{
    background: var(--glass); border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px); border-radius: var(--radius-md); overflow:hidden;
  }
  .contact-row{
    display:flex; align-items:center; gap:12px; padding:14px 16px;
    border-bottom:1px solid var(--glass-border);
    color:var(--birch-dim); text-decoration:none;
    transition: background .15s;
  }
  .contact-row:last-child{ border-bottom:none; }
  a.contact-row:hover, a.contact-row:active{ background: rgba(214,255,63,.06); }
  .contact-icon{
    width:34px; height:34px; border-radius:50%;
    background: rgba(214,255,63,.08); border:1px solid var(--glass-border);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .contact-icon svg{ width:16px; height:16px; stroke:var(--neon); fill:none; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
  .contact-text{ font-size:13.5px; color:var(--birch); display:flex; flex-direction:column; gap:2px; }
  .contact-text small{ font-size:11.5px; color:var(--muted); font-weight:400; }

  /* ---------- Inline booking CTA (replaces floating FAB) ---------- */
  .book-cta{
    width:100%; margin-top:12px;
    background: linear-gradient(135deg, #E4FF6E, var(--neon));
    color:#181307; border:none; border-radius: 999px;
    padding:16px; font-size:14.5px; font-weight:700; cursor:pointer;
    box-shadow: 0 0 20px rgba(214,255,63,.35);
    transition: transform .12s, box-shadow .2s, background .2s, filter .2s;
  }
  .book-cta:active{ transform: scale(.98); }
  .book-cta:disabled{
    background: rgba(243,234,208,.08); color: var(--muted);
    box-shadow:none; cursor:not-allowed;
  }
  .book-cta.nudge{ animation: nudge .5s ease; }
  @keyframes nudge{ 0%,100%{ transform: translateX(0); } 25%{ transform: translateX(-6px); } 75%{ transform: translateX(6px); } }

  /* ---------- BOTTOM NAV — simplified, responsive ---------- */
  .bottom-nav{
    position:fixed; bottom:0; left:50%; transform:translateX(-50%);
    width:100%; max-width:460px;
    background: rgba(20,16,12,.78);
    backdrop-filter: blur(22px) saturate(150%); -webkit-backdrop-filter: blur(22px) saturate(150%);
    border-top: 1px solid var(--glass-border);
    z-index:20;
    padding: 8px clamp(10px, 4vw, 20px) calc(8px + env(safe-area-inset-bottom));
  }
  .nav-row{
    position:relative;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    align-items:stretch;
    gap: 6px;
  }
  .nav-indicator{
    position:absolute; top:2px; bottom:2px;
    border-radius: 16px;
    background: rgba(214,255,63,.10);
    border: 1px solid rgba(214,255,63,.28);
    transition: left .38s cubic-bezier(.3,.9,.2,1), width .38s cubic-bezier(.3,.9,.2,1);
    pointer-events:none;
    opacity:0;
  }
  .nav-indicator.ready{ opacity:1; }
  .nav-item{
    position:relative; z-index:1;
    background:none; border:none; color:var(--muted);
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px;
    padding: 9px 4px;
    min-height:52px;
    cursor:pointer;
    font-size: clamp(10px, 2.6vw, 11px);
    line-height:1.1;
    white-space:nowrap;
    transition: color .25s, transform .15s;
  }
  .nav-item svg{ width: clamp(17px, 5vw, 20px); height: clamp(17px, 5vw, 20px); stroke:currentColor; fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; transition: filter .25s; }
  .nav-item.active{ color: var(--neon); }
  .nav-item.active svg{ filter: drop-shadow(0 0 5px rgba(214,255,63,.7)); }
  .nav-item:active{ transform: scale(.94); }
  .nav-item .nav-price{
    font-size: clamp(9px, 2.3vw, 10px);
    color: var(--neon);
    opacity:0; max-height:0; overflow:hidden;
    transition: opacity .25s, max-height .25s;
  }
  .nav-item .nav-price.show{ opacity:1; max-height:14px; }

  /* ---------- SHEET ---------- */
  .sheet-backdrop{
    position:fixed; inset:0; background: rgba(8,6,4,.6); backdrop-filter: blur(3px);
    opacity:0; pointer-events:none; transition: opacity .25s; z-index:30;
  }
  .sheet-backdrop.show{ opacity:1; pointer-events:auto; }
  .sheet{
    position:fixed; left:50%; bottom:0; transform: translate(-50%, 100%);
    width:100%; max-width:460px; background: #1C1712;
    border-radius: 26px 26px 0 0; padding: 10px 22px calc(24px + env(safe-area-inset-bottom));
    z-index:31; transition: transform .38s cubic-bezier(.2,.8,.2,1);
    border: 1px solid var(--glass-border); border-bottom:none;
  }
  .sheet.show{ transform: translate(-50%, 0); }
  .sheet-handle{ width:36px; height:4px; border-radius:2px; background: var(--glass-border); margin: 6px auto 16px; }
  .sheet-title{ font-family:'Fraunces', serif; font-size:20px; margin: 0 0 4px; }
  .sheet-sub{ font-size:13px; color:var(--muted); margin:0 0 18px; }
  .sheet-row{ display:flex; justify-content:space-between; font-size:14px; padding:9px 0; border-bottom: 1px dashed var(--glass-border); color: var(--birch-dim); }
  .sheet-row b{ color:var(--birch); font-weight:600; }
  .sheet-cta{
    width:100%; margin-top:18px;
    background: linear-gradient(135deg, #E4FF6E, var(--neon));
    color:#181307; border:none; border-radius: 999px; padding:16px; font-size:15px; font-weight:700;
    cursor:pointer; box-shadow: 0 0 20px rgba(214,255,63,.4);
  }
  .sheet-cta:active{ transform: scale(.98); }
  .sheet-note{ text-align:center; font-size:11.5px; color:var(--muted); margin-top:10px; }

  /* ---------- TOAST ---------- */
  .toast{
    position:fixed; left:50%; top:22px; transform: translate(-50%,-140%);
    background: var(--neon); color:#181307; padding: 13px 20px; border-radius: 14px;
    font-size:13.5px; font-weight:700; box-shadow: 0 0 24px rgba(214,255,63,.5), var(--shadow);
    z-index:40; display:flex; align-items:center; gap:8px;
    transition: transform .35s cubic-bezier(.2,.8,.2,1); max-width: 86%;
  }
  .toast.show{ transform: translate(-50%, 0); }

  .footer-note{ text-align:center; font-size:11.5px; color: var(--muted); padding: 26px 22px 4px; }
