:root{
  --bg:#0F0F11;
  --surface:#18181B;
  --surface-2:#202024;
  --accent:#D4AF37;
  --accent-soft:#E8C766;
  --text:#F3EFE8;
  --text-muted:#A39C8E;
  --border:rgba(243,239,232,0.10);
  --font-display:'Bodoni Moda', Georgia, serif;
  --font-body:'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{margin:0;background:var(--bg);color:var(--text);font-family:var(--font-body);}
a{color:var(--accent);text-decoration:none;}
a:hover{color:var(--accent-soft);}
h1,h2,h3{font-family:var(--font-display);font-weight:500;margin:0;letter-spacing:0.01em;}
p{margin:0;line-height:1.65;}
img{max-width:100%;}
.eyebrow{font-family:var(--font-body);font-size:12px;font-weight:600;letter-spacing:0.22em;text-transform:uppercase;color:var(--accent);}
.wrap{max-width:1180px;margin:0 auto;padding:0 40px;}
.section{padding:96px 0;}

/* All landing-page sections share one background (--bg) now instead of
   alternating --bg / --surface bands; hairline borders provide the only
   section separation. */
.section, body{background:var(--bg);}

.btn-primary{display:inline-flex;align-items:center;justify-content:center;gap:8px;background:var(--accent);color:#17150E;font-family:var(--font-body);font-weight:700;font-size:14px;letter-spacing:0.03em;padding:15px 28px;border-radius:2px;border:1px solid var(--accent);cursor:pointer;white-space:nowrap;}
.btn-primary:hover{background:var(--accent-soft);border-color:var(--accent-soft);}
.btn-primary:disabled{background:var(--surface-2);border-color:var(--border);color:var(--text-muted);cursor:not-allowed;}
.btn-ghost{display:inline-flex;align-items:center;gap:8px;background:transparent;color:var(--text);font-family:var(--font-body);font-weight:600;font-size:14px;letter-spacing:0.03em;padding:14px 26px;border-radius:2px;border:1px solid var(--border);cursor:pointer;white-space:nowrap;}
.btn-ghost:hover{border-color:var(--accent);color:var(--accent-soft);}

input.field{width:100%;background:var(--bg);border:1px solid var(--border);border-radius:2px;padding:12px 13px;color:var(--text);font-family:var(--font-body);font-size:13.5px;margin-bottom:10px;}
input.field:focus{outline:none;border-color:var(--accent);}
input.field::placeholder{color:var(--text-muted);}

/* ===================== HEADER (transparent -> glassmorphed on scroll) =====================
   Fixed (not sticky) so it overlays the hero image directly instead of
   sitting in normal document flow above it -- sticky would just reveal the
   page's own dark background behind a "transparent" header, which reads as
   solid black since --bg is dark too. Fixed lets the hero photo show
   through until the glass state kicks in on scroll. */
#site-header{
  position:fixed;top:0;left:0;right:0;width:100%;z-index:40;
  background:transparent;
  border-bottom:1px solid transparent;
  transition:background-color 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
}
#site-header.is-scrolled{
  background:rgba(15,15,17,0.55);
  backdrop-filter:blur(16px) saturate(140%);
  -webkit-backdrop-filter:blur(16px) saturate(140%);
  border-bottom-color:var(--border);
  box-shadow:0 8px 30px rgba(0,0,0,0.25);
}

/* Simple sub-page top bar (Back to Home) gets the same transparent/glass treatment */
.subpage-topbar{
  position:sticky;top:0;z-index:40;
  background:transparent;
  border-bottom:1px solid transparent;
  padding:22px 0;
  transition:background-color 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
}
.subpage-topbar.is-scrolled{
  background:rgba(15,15,17,0.55);
  backdrop-filter:blur(16px) saturate(140%);
  -webkit-backdrop-filter:blur(16px) saturate(140%);
  border-bottom-color:var(--border);
}

@media (max-width: 860px){
  .wrap{padding:0 24px;}
  .section{padding:64px 0;}
  .nav-desktop{display:none !important;}
  .nav-toggle{display:flex !important;}
}

/* Mobile nav dropdown needs its own solid/glass background -- the header
   itself is intentionally transparent to show the hero photo through it,
   so without this the menu links would float unreadably over the image. */
#mobile-nav{
  background:rgba(15,15,17,0.96);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}

/* Anchor targets (e.g. #about) would otherwise scroll to sit right under
   the fixed header and get their top clipped. */
[id]{scroll-margin-top:96px;}

/* Booking-page summary/aside cards: sticky on desktop where they sit next
   to a taller column, but on narrow screens the layout stacks to a single
   column and the sticky card would fight the sticky "Back to Home" bar
   above it for the same scroll position. Disable sticky once stacked. */
@media (max-width: 860px){
  .summary-panel{position:static !important;top:auto !important;}
}

/* Admin dashboard tables: don't squish 4 columns into a narrow screen --
   let the row scroll horizontally instead of becoming illegible. */
.table-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch;}
.table-scroll .row-grid{min-width:560px;}
@media (max-width: 860px){
  #tab-bar{overflow-x:auto;-webkit-overflow-scrolling:touch;flex-wrap:nowrap;}
  #tab-bar .tab-btn{white-space:nowrap;}
}
