  @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500;600&display=swap');

  :root{
    /* Default theme = Creme (light, warm) */
    --maroon-deep:#efe6d8;
    --maroon:#e3d6c1;
    --maroon-light:#d5c4a8;
    --cream:#2b2015;
    --gold:#8a6a35;
    --gold-soft:#6b5439;
    --ink:#efe6d8;
    --cream-rgb:43,32,21;
    --gold-rgb:138,106,53;
  }

  *{ box-sizing:border-box; }

  html,body{
    margin:0;
    padding:0;
    height:100%;
    background:var(--maroon-deep);
    font-family:'Jost', sans-serif;
    color:var(--cream);
    overflow-x:hidden;
  }

  body{
    display:flex;
    flex-direction:column;
    min-height:100vh;
    position:relative;
  }

  /* ambient texture */
  body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
      radial-gradient(circle at 15% 20%, rgba(var(--gold-rgb),0.08), transparent 45%),
      radial-gradient(circle at 85% 80%, rgba(var(--gold-rgb),0.06), transparent 50%),
      linear-gradient(160deg, var(--maroon-deep) 0%, var(--maroon) 55%, var(--maroon-deep) 100%);
    z-index:-2;
  }

  /* fine linen-like grain */
  body::after{
    content:"";
    position:fixed;
    inset:0;
    opacity:0.05;
    z-index:-1;
    background-image:
      repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 1px, transparent 3px);
  }

  header{
    display:flex;
    align-items:center;
    gap:14px;
    padding:28px 32px;
  }

  .logo-mark{
    display:block;
    width:52px;
    height:52px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    box-shadow:0 0 0 1px rgba(var(--gold-rgb),0.4), 0 6px 18px rgba(0,0,0,0.35);
    transition:transform 0.2s ease, box-shadow 0.2s ease;
  }
  a.logo-mark:hover, a.logo-mark:focus-visible{
    transform:scale(1.05);
    box-shadow:0 0 0 2px rgba(var(--gold-rgb),0.7), 0 6px 18px rgba(0,0,0,0.4);
  }
  .logo-mark img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }

  .brand-name{
    font-family:'Cormorant Garamond', serif;
    font-size:1.5rem;
    letter-spacing:0.06em;
    color:var(--gold-soft);
    line-height:1;
  }
  .brand-name span{
    display:block;
    font-family:'Jost', sans-serif;
    font-size:0.6rem;
    letter-spacing:0.35em;
    color:rgba(var(--cream-rgb),0.55);
    margin-top:5px;
    text-transform:uppercase;
  }

  main{
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:40px 24px;
  }

  .eyebrow{
    font-size:0.72rem;
    letter-spacing:0.4em;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:22px;
    opacity:0;
    animation:riseIn 1s ease forwards 0.15s;
  }

  h1{
    font-family:'Cormorant Garamond', serif;
    font-weight:500;
    font-size:clamp(2.6rem, 7vw, 5rem);
    line-height:1.05;
    margin:0 0 20px;
    color:var(--cream);
    opacity:0;
    animation:riseIn 1.1s ease forwards 0.35s;
  }
  h1 em{
    font-style:italic;
    color:var(--gold-soft);
  }

  .sub{
    max-width:520px;
    font-size:1rem;
    line-height:1.75;
    color:rgba(var(--cream-rgb),0.72);
    font-weight:300;
    margin-bottom:36px;
    opacity:0;
    animation:riseIn 1.1s ease forwards 0.55s;
  }

  /* signature: staircase-to-toast motif, echoing the logo's steps+glasses */
  .signature{
    display:flex;
    align-items:flex-end;
    gap:6px;
    height:34px;
    margin-bottom:40px;
    opacity:0;
    animation:riseIn 1.1s ease forwards 0.75s;
  }
  .signature i{
    display:block;
    width:8px;
    background:linear-gradient(180deg, var(--gold-soft), var(--gold));
    border-radius:2px 2px 0 0;
    animation:pour 2.6s ease-in-out infinite;
  }
  .signature i:nth-child(1){ height:10px; animation-delay:0s; }
  .signature i:nth-child(2){ height:16px; animation-delay:0.15s; }
  .signature i:nth-child(3){ height:24px; animation-delay:0.3s; }
  .signature i:nth-child(4){ height:34px; animation-delay:0.45s; }
  .signature i:nth-child(5){ height:24px; animation-delay:0.6s; }
  .signature i:nth-child(6){ height:16px; animation-delay:0.75s; }
  .signature i:nth-child(7){ height:10px; animation-delay:0.9s; }

  @keyframes pour{
    0%,100%{ opacity:0.55; transform:scaleY(0.9); }
    50%{ opacity:1; transform:scaleY(1); }
  }

  @keyframes riseIn{
    from{ opacity:0; transform:translateY(14px); }
    to{ opacity:1; transform:translateY(0); }
  }

  @media (prefers-reduced-motion: reduce){
    .eyebrow,h1,.sub,.signature{ animation:none; opacity:1; }
    .signature i{ animation:none; }
  }

  footer{
    padding:30px 24px 36px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;
    border-top:1px solid rgba(var(--gold-rgb),0.18);
  }

  .contact-row{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:14px 28px;
  }

  .contact-link{
    display:inline-flex;
    align-items:center;
    gap:9px;
    color:var(--gold-soft);
    text-decoration:none;
    font-size:0.92rem;
    font-weight:400;
    letter-spacing:0.02em;
    padding:10px 16px;
    border-radius:999px;
    border:1px solid rgba(var(--gold-rgb),0.35);
    transition:background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    -webkit-tap-highlight-color:transparent;
  }
  .contact-link:hover,
  .contact-link:focus-visible{
    background:var(--gold);
    color:var(--maroon-deep);
    border-color:var(--gold);
    transform:translateY(-1px);
  }
  .contact-link:focus-visible{
    outline:2px solid var(--gold-soft);
    outline-offset:3px;
  }
  .contact-link svg{
    width:16px;
    height:16px;
    flex-shrink:0;
  }

  .divider-dot{
    width:3px;
    height:3px;
    border-radius:50%;
    background:rgba(var(--gold-rgb),0.5);
  }

  /* manager reveal */
  .manager-reveal{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
  }

  .reveal-trigger{
    background:none;
    border:none;
    color:rgba(var(--cream-rgb),0.45);
    font-family:'Jost', sans-serif;
    font-size:0.72rem;
    letter-spacing:0.15em;
    text-transform:uppercase;
    cursor:pointer;
    padding:6px 10px;
    transition:color 0.2s ease;
  }
  .reveal-trigger:hover,
  .reveal-trigger:focus-visible{
    color:var(--gold-soft);
  }
  .reveal-trigger:focus-visible{
    outline:2px solid var(--gold-soft);
    outline-offset:2px;
    border-radius:4px;
  }

  #managerWrap{
    display:grid;
    grid-template-rows:0fr;
    transition:grid-template-rows 0.45s ease;
  }
  #managerWrap.open{
    grid-template-rows:1fr;
  }
  #managerWrap > div{
    overflow:hidden;
  }

  .tagline{
    margin-top:6px;
    font-size:0.7rem;
    letter-spacing:0.25em;
    text-transform:uppercase;
    color:rgba(var(--cream-rgb),0.35);
  }

  @media (max-width:480px){
    header{ padding:22px 20px; }
    .logo-mark{ width:44px; height:44px; }
    .brand-name{ font-size:1.2rem; }
    .contact-row{ flex-direction:column; gap:12px; }
    .divider-dot{ display:none; }
  }

  /* ===== Auth area (login button / user badge in header) ===== */
  .auth-area{
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:10px;
  }

  .auth-btn{
    background:none;
    border:1px solid rgba(var(--gold-rgb),0.4);
    color:var(--gold-soft);
    font-family:'Jost', sans-serif;
    font-size:0.82rem;
    letter-spacing:0.03em;
    padding:9px 16px;
    border-radius:999px;
    cursor:pointer;
    transition:background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  }
  .auth-btn:hover{
    background:var(--gold);
    color:var(--maroon-deep);
    border-color:var(--gold);
  }

  .user-badge{
    display:flex;
    align-items:center;
    gap:9px;
    background:rgba(var(--gold-rgb),0.08);
    border:1px solid rgba(var(--gold-rgb),0.3);
    border-radius:999px;
    padding:6px 14px 6px 6px;
    cursor:pointer;
  }
  .user-badge .avatar{
    width:26px;
    height:26px;
    border-radius:50%;
    background:var(--gold);
    color:var(--maroon-deep);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    font-size:0.78rem;
  }
  .user-badge .who{
    display:flex;
    flex-direction:column;
    line-height:1.15;
    text-align:left;
  }
  .user-badge .who .name{
    font-size:0.82rem;
    color:var(--cream);
  }
  .user-badge .who .role{
    font-size:0.62rem;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:var(--gold-soft);
  }

  /* ===== Modal ===== */
  .modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(20,4,7,0.72);
    backdrop-filter:blur(3px);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:100;
    padding:20px;
  }
  .modal-overlay.open{ display:flex; }

  .modal-card{
    width:100%;
    max-width:380px;
    max-height:88vh;
    overflow-y:auto;
    background:linear-gradient(165deg, var(--maroon) 0%, var(--maroon-deep) 100%);
    border:1px solid rgba(var(--gold-rgb),0.3);
    border-radius:18px;
    padding:28px 26px 26px;
    box-shadow:0 20px 60px rgba(0,0,0,0.5);
    position:relative;
  }

  .modal-close{
    position:absolute;
    top:14px;
    right:14px;
    background:none;
    border:none;
    color:rgba(var(--cream-rgb),0.5);
    font-size:1.3rem;
    line-height:1;
    cursor:pointer;
    padding:4px;
  }
  .modal-close:hover{ color:var(--gold-soft); }

  .modal-title{
    font-family:'Cormorant Garamond', serif;
    font-size:1.5rem;
    color:var(--gold-soft);
    margin:0 0 6px;
  }
  .modal-sub{
    font-size:0.82rem;
    color:rgba(var(--cream-rgb),0.6);
    margin:0 0 20px;
    line-height:1.5;
  }

  .field-label{
    display:block;
    font-size:0.68rem;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--gold-soft);
    margin-bottom:7px;
  }

  .field-input{
    width:100%;
    background:rgba(var(--cream-rgb),0.06);
    border:1px solid rgba(var(--gold-rgb),0.3);
    border-radius:10px;
    padding:12px 14px;
    color:var(--cream);
    font-family:'Jost', sans-serif;
    font-size:0.95rem;
    margin-bottom:16px;
    outline:none;
  }
  .field-input:focus{
    border-color:var(--gold);
  }
  .field-input::placeholder{ color:rgba(var(--cream-rgb),0.35); }

  .modal-btn{
    width:100%;
    background:var(--gold);
    color:var(--maroon-deep);
    border:none;
    border-radius:10px;
    padding:13px;
    font-family:'Jost', sans-serif;
    font-size:0.92rem;
    font-weight:500;
    letter-spacing:0.02em;
    cursor:pointer;
    transition:opacity 0.2s ease;
  }
  .modal-btn:hover{ opacity:0.9; }
  .modal-btn:disabled{ opacity:0.5; cursor:not-allowed; }

  .modal-btn-ghost{
    background:none;
    border:1px solid rgba(var(--gold-rgb),0.4);
    color:var(--gold-soft);
  }
  .modal-btn-ghost:hover{ opacity:1; background:rgba(var(--gold-rgb),0.1); }

  .modal-msg{
    font-size:0.78rem;
    margin-top:12px;
    text-align:center;
    min-height:16px;
  }
  .modal-msg.error{ color:#e58a8a; }
  .modal-msg.ok{ color:#9fd3a0; }

  .modal-step{ display:none; }
  .modal-step.active{ display:block; }

  .modal-switch{
    font-size:0.8rem;
    color:rgba(var(--cream-rgb),0.55);
    text-align:center;
    margin:16px 0 0;
  }
  .modal-switch a{
    color:var(--gold-soft);
    text-decoration:none;
    border-bottom:1px solid rgba(var(--gold-rgb),0.4);
  }
  .modal-switch a:hover{ color:var(--gold); }
/* ============================================
   MOBILE.CSS — phone-specific layout fixes
   Loaded only on narrow screens (see media query
   link in index.html <head>).
   Goal: everything (logo, heading, contact info,
   AND the manager number) fits without the user
   having to scroll on a standard phone screen.
   ============================================ */

@media (max-width: 480px){

  html, body{
    height:100%;
  }

  body{
    /* let content size itself instead of forcing
       a full 100vh main block that pushes the
       footer off-screen */
    min-height:100vh;
    justify-content:flex-start;
  }

  header{
    padding:14px 16px 6px;
  }

  .logo-mark{
    width:38px;
    height:38px;
  }

  .brand-name{
    font-size:1.02rem;
  }

  .brand-name span{
    font-size:0.5rem;
    letter-spacing:0.25em;
    margin-top:3px;
  }

  main{
    flex:none;           /* stop main from stretching to fill the viewport */
    padding:18px 18px 10px;
  }

  .eyebrow{
    font-size:0.6rem;
    letter-spacing:0.3em;
    margin-bottom:12px;
  }

  h1{
    font-size:clamp(1.65rem, 8vw, 2.3rem);
    margin:0 0 12px;
    line-height:1.12;
  }

  h1 br{
    display:none; /* let it wrap naturally, saves vertical space */
  }

  .sub{
    font-size:0.85rem;
    line-height:1.5;
    margin-bottom:16px;
  }

  .signature{
    height:22px;
    margin-bottom:16px;
    transform:scale(0.85);
  }

  footer{
    padding:14px 16px 20px;
    gap:8px;
  }

  .contact-row{
    flex-direction:column;
    gap:8px;
    width:100%;
  }

  .contact-link{
    width:100%;
    justify-content:center;
    font-size:0.82rem;
    padding:9px 12px;
  }

  .divider-dot{
    display:none;
  }

  .reveal-trigger{
    font-size:0.65rem;
    padding:4px 8px;
  }

  .tagline{
    font-size:0.6rem;
    margin-top:2px;
  }

  /* login trigger / badge in header on small screens */
  .auth-area{
    margin-left:auto;
  }

  .auth-btn{
    font-size:0.7rem;
    padding:7px 12px;
  }
}

/* Very short phones (landscape or small older devices) */
@media (max-width:480px) and (max-height:640px){
  .signature{ display:none; }
  main{ padding-top:10px; }
  h1{ margin-bottom:8px; }
  .sub{ margin-bottom:10px; }
}

/* ============================================================
   Shared across production.html / gallery.html / room.html
   (kept in style.css since these pages also load style.css for
   header/logo/modal/footer basics).
   ============================================================ */

/* "Log in for better rates" banner, shown once per visitor */
.login-nudge{
  position:fixed; left:50%; bottom:22px; transform:translateX(-50%) translateY(140%);
  z-index:150; display:flex; align-items:center; gap:14px;
  background:linear-gradient(165deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  border:1px solid rgba(var(--gold-rgb),0.4); border-radius:14px;
  padding:14px 18px; max-width:min(92vw,420px);
  box-shadow:0 16px 40px rgba(0,0,0,0.45);
  transition:transform 0.4s ease;
}
.login-nudge.show{ transform:translateX(-50%) translateY(0); }
.login-nudge p{ margin:0; font-size:0.85rem; line-height:1.4; color:rgba(var(--cream-rgb),0.85); flex:1; }
.login-nudge strong{ color:var(--gold-soft); }
.login-nudge .nudge-btns{ display:flex; flex-direction:column; gap:6px; flex-shrink:0; }
.login-nudge button{
  border:none; border-radius:8px; padding:8px 14px; font-family:'Jost',sans-serif; font-size:0.78rem; cursor:pointer;
}
.login-nudge .nudge-yes{ background:var(--gold); color:var(--maroon-deep); font-weight:500; }
.login-nudge .nudge-no{ background:none; color:rgba(var(--cream-rgb),0.55); }
@media (max-width:480px){
  .login-nudge{ flex-direction:column; align-items:stretch; bottom:14px; }
  .login-nudge .nudge-btns{ flex-direction:row; }
  .login-nudge .nudge-btns button{ flex:1; }
}

/* Simple top nav for gallery.html / room.html (no auth modal) */
.simple-nav{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; gap:14px;
  padding:16px 32px;
  background:rgba(var(--maroon-deep-rgb),0.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(var(--gold-rgb),0.18);
}
.simple-nav .brand{ font-family:'Cormorant Garamond',serif; font-size:1.2rem; color:var(--gold-soft); }
.simple-nav .back-link{
  margin-left:auto; color:var(--gold-soft); text-decoration:none; font-size:0.85rem;
  border:1px solid rgba(var(--gold-rgb),0.35); border-radius:999px; padding:8px 16px;
}
.simple-nav .back-link:hover{ background:var(--gold); color:var(--maroon-deep); }

/* Editable-content admin affordance (small pencil badge shown to Admins) */
.admin-edit-badge{
  position:fixed; right:18px; bottom:18px; z-index:120;
  background:var(--gold); color:var(--maroon-deep); text-decoration:none;
  font-family:'Jost',sans-serif; font-size:0.8rem; font-weight:500;
  padding:11px 18px; border-radius:999px; box-shadow:0 10px 30px rgba(0,0,0,0.4);
  display:none; align-items:center; gap:8px;
}
.admin-edit-badge.show{ display:inline-flex; }

/* Prevent iOS Safari auto-zooming the page when a form input is
   focused (it does this whenever a text input's font-size is under
   16px) — matches the same fix applied in site.css. */
@media (max-width:480px){
  .field-input, .modal-btn{ font-size:16px; }
  .modal-card{ padding:22px 18px 20px; max-height:92vh; }
}

/* ============================================================
   Below this point: former site.css content, merged in here so
   guest-facing pages only need to load one stylesheet. Its own
   :root block was dropped (style.css already defines the same
   variables above, and is always loaded first).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root{
  /* Default theme = Creme (light, warm) — kept in sync with the :root above */
  --maroon-deep:#efe6d8;
  --maroon:#e3d6c1;
  --maroon-light:#d5c4a8;
  --cream:#2b2015;
  --gold:#8a6a35;
  --gold-soft:#6b5439;
  --cream-rgb:43,32,21;
  --gold-rgb:138,106,53;
  --maroon-deep-rgb:239,230,216;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; padding:0; background:var(--maroon-deep); color:var(--cream);
  font-family:'Jost',sans-serif;
}

/* ---------- Nav ---------- */
.site-nav{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; gap:14px;
  padding:16px 32px;
  background:rgba(var(--maroon-deep-rgb),0.9);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(var(--gold-rgb),0.18);
}
.site-nav .logo-mark{ width:42px; height:42px; border-radius:50%; overflow:hidden; flex-shrink:0; }
.site-nav .logo-mark img{ width:100%; height:100%; object-fit:cover; display:block; }
.site-nav .brand{ font-family:'Cormorant Garamond',serif; font-size:1.25rem; color:var(--gold-soft); }
.site-nav .nav-links{ display:flex; gap:22px; margin-left:32px; }
.site-nav .nav-links a{
  color:rgba(var(--cream-rgb),0.75); text-decoration:none; font-size:0.88rem; letter-spacing:0.02em;
}
.site-nav .nav-links a:hover{ color:var(--gold-soft); }
.site-nav .spacer{ flex:1; }
.site-nav .nav-cta{
  background:var(--gold); color:var(--maroon-deep); border:none; border-radius:999px;
  padding:9px 20px; font-family:'Jost',sans-serif; font-weight:500; font-size:0.85rem; cursor:pointer; text-decoration:none;
}
.site-nav .nav-cta:hover{ opacity:0.9; }

@media (max-width:760px){
  .site-nav .nav-links{ display:none; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:86vh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  padding:60px 24px;
  overflow:hidden;
}
.hero::before{
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(circle at 20% 20%, rgba(var(--gold-rgb),0.1), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(var(--gold-rgb),0.08), transparent 50%),
    linear-gradient(160deg, var(--maroon-deep) 0%, var(--maroon) 55%, var(--maroon-deep) 100%);
}
.hero-eyebrow{
  font-size:0.75rem; letter-spacing:0.4em; text-transform:uppercase; color:var(--gold); margin-bottom:20px;
}
.hero h1{
  font-family:'Cormorant Garamond',serif; font-weight:500;
  font-size:clamp(2.4rem,6vw,4.4rem); line-height:1.08; margin:0 0 18px;
}
.hero h1 em{ font-style:italic; color:var(--gold-soft); }
.hero p{
  max-width:560px; font-size:1rem; line-height:1.7; color:rgba(var(--cream-rgb),0.75); font-weight:300; margin-bottom:34px;
}
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }
.btn-gold{
  background:var(--gold); color:var(--maroon-deep); border:none; border-radius:999px;
  padding:14px 30px; font-family:'Jost',sans-serif; font-weight:500; font-size:0.95rem; cursor:pointer; text-decoration:none;
}
.btn-gold:hover{ opacity:0.9; }
.btn-outline{
  background:none; color:var(--gold-soft); border:1px solid rgba(var(--gold-rgb),0.5); border-radius:999px;
  padding:14px 30px; font-family:'Jost',sans-serif; font-size:0.95rem; cursor:pointer; text-decoration:none;
}
.btn-outline:hover{ background:rgba(var(--gold-rgb),0.1); }

/* ---------- Section shell ---------- */
.section{ max-width:1100px; margin:0 auto; padding:80px 24px; }
.section-head{ text-align:center; max-width:600px; margin:0 auto 44px; }
.section-eyebrow{
  font-size:0.7rem; letter-spacing:0.35em; text-transform:uppercase; color:var(--gold); margin-bottom:14px;
}
.section-head h2{
  font-family:'Cormorant Garamond',serif; font-weight:500; font-size:clamp(1.8rem,4vw,2.6rem); margin:0 0 14px;
}
.section-head p{ color:rgba(var(--cream-rgb),0.65); line-height:1.7; font-size:0.95rem; }

/* ---------- Gallery placeholders ---------- */
.gallery-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px;
}
.gallery-grid .g-item:nth-child(1){ grid-column:span 2; grid-row:span 2; }
.photo-placeholder{
  position:relative;
  aspect-ratio:1/1;
  border-radius:14px;
  background:
    repeating-linear-gradient(45deg, rgba(var(--gold-rgb),0.06) 0, rgba(var(--gold-rgb),0.06) 10px, transparent 10px, transparent 20px),
    linear-gradient(160deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  border:1px dashed rgba(var(--gold-rgb),0.35);
  display:flex; align-items:center; justify-content:center;
  color:rgba(var(--cream-rgb),0.4);
  font-size:0.8rem;
  text-align:center;
  padding:10px;
}
.gallery-grid .g-item:nth-child(1) .photo-placeholder{ aspect-ratio:auto; height:100%; }

/* Category tiles (clickable, open gallery.html?cat=key) */
.g-item{ cursor:pointer; }
.category-tile{
  position:relative; aspect-ratio:1/1; border-radius:14px; overflow:hidden;
  border:1px solid rgba(var(--gold-rgb),0.3); background:var(--maroon);
}
.gallery-grid .g-item:nth-child(1) .category-tile{ aspect-ratio:auto; height:100%; }
.category-tile img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.35s ease; }
.category-tile:hover img{ transform:scale(1.06); }
.category-tile .tile-label{
  position:absolute; left:0; right:0; bottom:0;
  padding:14px 16px 12px;
  background:linear-gradient(0deg, rgba(20,4,7,0.88), transparent);
  font-size:0.92rem; color:var(--cream); letter-spacing:0.02em;
}
.category-tile .tile-count{ display:block; font-size:0.7rem; color:rgba(var(--cream-rgb),0.6); margin-top:2px; }

@media (max-width:700px){
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid .g-item:nth-child(1){ grid-column:span 2; grid-row:span 1; }
}

/* ---------- About ---------- */
.about-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:center;
}
.about-grid .photo-placeholder{ aspect-ratio:4/3; border-radius:16px; }
.about-grid .about-photo{
  width:100%; aspect-ratio:4/3; border-radius:16px;
  object-fit:cover; display:block;
  border:1px solid rgba(var(--gold-rgb),0.3);
}
.about-copy p{ color:rgba(var(--cream-rgb),0.7); line-height:1.8; font-size:0.95rem; margin-bottom:16px; }
.about-stats{ display:flex; gap:30px; margin-top:24px; }
.about-stats div{ text-align:left; }
.about-stats .num{ font-family:'Cormorant Garamond',serif; font-size:2rem; color:var(--gold-soft); display:block; }
.about-stats .label{ font-size:0.72rem; letter-spacing:0.08em; text-transform:uppercase; color:rgba(var(--cream-rgb),0.5); }

@media (max-width:760px){
  .about-grid{ grid-template-columns:1fr; }
}

/* ---------- Rooms / rates ---------- */
.rooms-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:22px;
}
.room-card{
  background:linear-gradient(165deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  border:1px solid rgba(var(--gold-rgb),0.22);
  border-radius:16px;
  overflow:hidden;
  display:flex; flex-direction:column;
  cursor:pointer;
  transition:transform 0.2s ease, border-color 0.2s ease;
}
.room-card:hover{ transform:translateY(-3px); border-color:rgba(var(--gold-rgb),0.5); }
.room-card{ position:relative; }
.room-badges{
  position:absolute; top:12px; left:12px; z-index:2;
  display:flex; flex-direction:column; gap:6px; align-items:flex-start;
}
.room-badge{
  font-family:'Jost',sans-serif; font-size:0.68rem; font-weight:500; letter-spacing:0.03em;
  padding:5px 12px; border-radius:999px; text-transform:uppercase;
  box-shadow:0 4px 12px rgba(0,0,0,0.35);
}
.room-badge-viewed{ background:var(--gold); color:var(--maroon-deep); }
.room-badge-booked{ background:var(--maroon-light); color:var(--cream); border:1px solid rgba(var(--cream-rgb),0.4); }
.room-card img.room-photo{ width:100%; height:100%; object-fit:cover; display:block; }
.room-card .photo-placeholder{ aspect-ratio:16/10; border-radius:0; border:none; border-bottom:1px solid rgba(var(--gold-rgb),0.22); }
.room-card-body{ padding:22px; display:flex; flex-direction:column; flex:1; }
.room-card h3{ font-family:'Cormorant Garamond',serif; font-size:1.3rem; color:var(--gold-soft); margin:0 0 6px; }
.room-card .meal-plan-tag{
  display:inline-block; font-size:0.68rem; letter-spacing:0.04em; text-transform:uppercase;
  color:var(--gold); border:1px solid rgba(var(--gold-rgb),0.4); border-radius:999px; padding:3px 10px; margin-bottom:8px;
}
.room-card .rate{ font-size:1.1rem; color:var(--cream); margin-bottom:12px; }
.room-card .rate span{ font-size:0.75rem; color:rgba(var(--cream-rgb),0.5); }
.room-card ul{ list-style:none; padding:0; margin:0 0 20px; flex:1; }
.room-card ul li{
  font-size:0.85rem; color:rgba(var(--cream-rgb),0.65); padding:5px 0 5px 20px; position:relative;
}
.room-card ul li::before{
  content:"—"; position:absolute; left:0; color:var(--gold);
}
.room-card .btn-gold{ width:100%; text-align:center; padding:12px; font-size:0.88rem; }

/* ---------- Contact / footer ---------- */
.site-footer{
  border-top:1px solid rgba(var(--gold-rgb),0.18);
  padding:50px 24px 34px;
  text-align:center;
}
.contact-row{
  display:flex; flex-wrap:wrap; justify-content:center; gap:14px 28px; margin-bottom:22px;
}
.contact-link{
  display:inline-flex; align-items:center; gap:9px; color:var(--gold-soft); text-decoration:none;
  font-size:0.92rem; padding:10px 16px; border-radius:999px; border:1px solid rgba(var(--gold-rgb),0.35);
}
.contact-link:hover{ background:var(--gold); color:var(--maroon-deep); }
.site-footer .tagline{ font-size:0.7rem; letter-spacing:0.2em; text-transform:uppercase; color:rgba(var(--cream-rgb),0.35); }

/* ---------- Toast (booking placeholder) ---------- */
.toast{
  position:fixed; bottom:26px; left:50%; transform:translateX(-50%) translateY(20px);
  background:var(--gold); color:var(--maroon-deep); padding:13px 22px; border-radius:999px;
  font-size:0.88rem; font-weight:500; box-shadow:0 10px 30px rgba(0,0,0,0.4);
  opacity:0; pointer-events:none; transition:opacity 0.25s ease, transform 0.25s ease; z-index:200;
}
.toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }

/* ---------- Map / location section (production.html) ---------- */
.map-grid{ display:grid; grid-template-columns:1.1fr 1fr; gap:34px; align-items:start; }
.map-embed{ width:100%; aspect-ratio:4/3; border-radius:16px; overflow:hidden; border:1px solid rgba(var(--gold-rgb),0.25); }
.map-embed iframe{ width:100%; height:100%; border:0; display:block; }
.nearby-list{ list-style:none; margin:0; padding:0; }
.nearby-list li{
  display:flex; justify-content:space-between; gap:12px;
  padding:13px 4px; border-bottom:1px solid rgba(var(--cream-rgb),0.08);
  font-size:0.9rem; color:rgba(var(--cream-rgb),0.8);
}
.nearby-list li:last-child{ border-bottom:none; }
.nearby-list .dist{ color:var(--gold-soft); font-size:0.78rem; white-space:nowrap; }
@media (max-width:760px){ .map-grid{ grid-template-columns:1fr; } }

/* ---------- Gallery page (gallery.html) ---------- */
.gallery-page-grid{
  display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:16px;
  max-width:1100px; margin:0 auto; padding:0 24px 70px;
}
.gallery-page-grid .media-item{
  border-radius:14px; overflow:hidden; border:1px solid rgba(var(--gold-rgb),0.22);
  aspect-ratio:4/3; background:var(--maroon); position:relative; cursor:pointer;
}
.gallery-page-grid img, .gallery-page-grid video{
  width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.35s ease;
}
.gallery-page-grid .media-item:hover img, .gallery-page-grid .media-item:hover video{ transform:scale(1.05); }
.gallery-page-grid .caption{
  position:absolute; left:0; right:0; bottom:0; padding:8px 10px;
  font-size:0.72rem; color:rgba(var(--cream-rgb),0.85);
  background:linear-gradient(0deg, rgba(20,4,7,0.85), transparent);
}
.gallery-empty{ text-align:center; padding:60px 20px; color:rgba(var(--cream-rgb),0.5); }

/* ---------- Lightbox (browse a whole category, full quality) ---------- */
.lightbox-overlay{
  position:fixed; inset:0; background:rgba(10,3,4,0.94); z-index:1000;
  display:none; align-items:center; justify-content:center; padding:40px 70px;
}
.lightbox-overlay.open{ display:flex; }
.lightbox-stage{ max-width:min(1100px,100%); max-height:78vh; display:flex; align-items:center; justify-content:center; }
.lightbox-stage img, .lightbox-stage video{
  max-width:100%; max-height:78vh; object-fit:contain; border-radius:8px;
  box-shadow:0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close{
  position:absolute; top:18px; right:22px; background:none; border:none;
  color:var(--cream); font-size:2rem; line-height:1; cursor:pointer; z-index:2;
}
.lightbox-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(var(--gold-rgb),0.15); border:1px solid rgba(var(--gold-rgb),0.35);
  color:var(--cream); width:46px; height:46px; border-radius:50%;
  font-size:1.1rem; cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:background 0.2s ease;
}
.lightbox-nav:hover{ background:rgba(var(--gold-rgb),0.3); }
.lightbox-prev{ left:16px; }
.lightbox-next{ right:16px; }
.lightbox-footer{
  position:absolute; left:0; right:0; bottom:18px; text-align:center; padding:0 70px;
}
.lightbox-caption{ color:rgba(var(--cream-rgb),0.85); font-size:0.9rem; margin-bottom:4px; }
.lightbox-counter{ color:rgba(var(--cream-rgb),0.5); font-size:0.75rem; letter-spacing:0.04em; }
@media (max-width:700px){
  .lightbox-overlay{ padding:70px 16px; }
  .lightbox-nav{ width:38px; height:38px; }
  .lightbox-prev{ left:6px; } .lightbox-next{ right:6px; }
  .lightbox-footer{ padding:0 16px; bottom:10px; }
}

/* ---------- Room detail page (room.html) ---------- */
.room-hero{ max-width:1100px; margin:0 auto; padding:40px 24px 10px; }
.room-hero-grid{ display:grid; grid-template-columns:1.4fr 1fr; gap:30px; }
.room-hero-main{ aspect-ratio:16/10; border-radius:16px; overflow:hidden; border:1px solid rgba(var(--gold-rgb),0.25); }
.room-hero-main img{ width:100%; height:100%; object-fit:cover; display:block; }
.room-thumb-strip{ display:grid; grid-template-columns:repeat(2,1fr); gap:10px; }
.room-thumb-strip .thumb{ aspect-ratio:1/1; border-radius:10px; overflow:hidden; border:1px solid rgba(var(--gold-rgb),0.22); }
.room-thumb-strip img{ width:100%; height:100%; object-fit:cover; display:block; }
.room-detail-body{ max-width:1100px; margin:0 auto; padding:30px 24px 80px; display:grid; grid-template-columns:1.5fr 1fr; gap:40px; }
.room-detail-body h1{ font-family:'Cormorant Garamond',serif; font-weight:500; font-size:clamp(1.9rem,4vw,2.6rem); margin:0 0 14px; }
.room-detail-body .desc{ color:rgba(var(--cream-rgb),0.75); line-height:1.8; font-size:0.95rem; margin-bottom:22px; }
.amenity-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:10px 16px; }
.amenity-grid li{ list-style:none; font-size:0.88rem; color:rgba(var(--cream-rgb),0.7); padding-left:18px; position:relative; }
.amenity-grid li::before{ content:"—"; position:absolute; left:0; color:var(--gold); }
.booking-card{
  background:linear-gradient(165deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  border:1px solid rgba(var(--gold-rgb),0.25); border-radius:16px; padding:24px; height:fit-content;
}
.booking-card .rate{ font-family:'Cormorant Garamond',serif; font-size:1.9rem; color:var(--gold-soft); margin-bottom:4px; }
.booking-card .rate span{ font-size:0.78rem; color:rgba(var(--cream-rgb),0.55); font-family:'Jost',sans-serif; }
.booking-card .btn-gold{ width:100%; text-align:center; margin-top:16px; }
@media (max-width:760px){
  .room-hero-grid{ grid-template-columns:1fr; }
  .room-detail-body{ grid-template-columns:1fr; }
}

/* ---------- Mobile polish ---------- */
@media (max-width:480px){
  .site-nav{ padding:12px 16px; gap:10px; }
  .site-nav .brand{ font-size:1.05rem; }
  .site-nav .nav-cta{ padding:8px 14px; font-size:0.8rem; }
  .hero{ padding:44px 18px; min-height:76vh; }
  .hero-ctas{ flex-direction:column; align-items:stretch; }
  .hero-ctas a{ text-align:center; }
  .section{ padding:52px 16px; }
  .booking-form-grid{ grid-template-columns:1fr; }
  .modal-card{ padding:20px; max-height:90vh; }
  .booking-modal-card{ max-width:100%; }
  .room-detail-body{ padding:22px 16px 60px; }
  .room-hero{ padding:22px 16px 6px; }
  .gallery-page-grid{ grid-template-columns:repeat(2,1fr); gap:10px; padding:0 16px 50px; }
}

/* ---------- Booking modal ---------- */
.booking-modal-card{ max-width:520px; }
.booking-step{ display:none; }
.booking-step.active{ display:block; }
.booking-form-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:4px;
}
.policy-box{
  margin:20px 0; padding:16px; border:1px solid rgba(var(--gold-rgb),0.25); border-radius:12px;
  background:rgba(var(--cream-rgb),0.04);
}
.policy-box h4{
  margin:0 0 10px; font-family:'Cormorant Garamond',serif; color:var(--gold-soft); font-size:1.05rem;
}
.policy-times{ display:flex; gap:24px; flex-wrap:wrap; font-size:0.85rem; color:rgba(var(--cream-rgb),0.85); margin-bottom:10px; }
.policy-box p{ font-size:0.82rem; color:rgba(var(--cream-rgb),0.6); line-height:1.6; margin:0; }
.booking-est{
  font-size:0.92rem; color:var(--gold-soft); margin:16px 0 6px; min-height:20px;
}

/* ---------- Appearance / color themes ----------
   Default palette lives in :root above — Creme (light, warm), the
   default theme. These override the same custom properties on
   <html data-theme="...">, which has higher specificity than :root,
   so every existing var(--maroon-deep) etc. across this stylesheet
   (and admin.css) picks up the new values automatically. Set via
   MansaroverAuth.setTheme() in common.js, persisted in localStorage.
   Every theme also defines --cream-rgb / --gold-rgb / --maroon-deep-rgb
   (the rgb components of --cream / --gold / --maroon-deep) so that
   translucent overlays (rgba(var(--x-rgb), alpha)) stay legible
   instead of hardcoding a colour that only worked on the old dark
   default. */
html[data-theme="cream"]{
  --maroon-deep:#efe6d8;
  --maroon:#e3d6c1;
  --maroon-light:#d5c4a8;
  --cream:#2b2015;
  --gold:#8a6a35;
  --gold-soft:#6b5439;
  --ink:#efe6d8;
  --cream-rgb:43,32,21;
  --gold-rgb:138,106,53;
  --maroon-deep-rgb:239,230,216;
}
html[data-theme="light-beige"]{
  --maroon-deep:#e6d9bf;
  --maroon:#d9c7a3;
  --maroon-light:#c7ae83;
  --cream:#2b2015;
  --gold:#96702e;
  --gold-soft:#7a5c2c;
  --ink:#e6d9bf;
  --cream-rgb:43,32,21;
  --gold-rgb:150,112,46;
  --maroon-deep-rgb:230,217,191;
}
html[data-theme="beige"]{
  --maroon-deep:#3d3324;
  --maroon:#5a4d38;
  --maroon-light:#7a6b4f;
  --cream:#f6ede2;
  --gold:#c8a15c;
  --gold-soft:#e3cd9d;
  --ink:#3d3324;
  --cream-rgb:246,237,226;
  --gold-rgb:200,161,92;
  --maroon-deep-rgb:61,51,36;
}
html[data-theme="maroon"]{
  --maroon-deep:#3a0f14;
  --maroon:#5c1a1f;
  --maroon-light:#7a2b2f;
  --cream:#f6ede2;
  --gold:#c8a15c;
  --gold-soft:#e3cd9d;
  --ink:#3a0f14;
  --cream-rgb:246,237,226;
  --gold-rgb:200,161,92;
  --maroon-deep-rgb:58,15,20;
}

/* ---------- Appearance picker UI ---------- */
.theme-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:6px;
}
.theme-option{
  display:flex; flex-direction:column; align-items:center; gap:8px;
  padding:14px 10px; border-radius:12px; cursor:pointer;
  background:rgba(var(--cream-rgb),0.04); border:1px solid rgba(var(--gold-rgb),0.25);
  font-family:'Jost',sans-serif; color:var(--cream); transition:border-color 0.15s, background 0.15s;
}
.theme-option:hover{ border-color:rgba(var(--gold-rgb),0.55); }
.theme-option.selected{
  border-color:var(--gold); background:rgba(var(--gold-rgb),0.12);
}
.theme-option-label{ font-size:0.85rem; }
.theme-swatch{
  width:40px; height:40px; border-radius:50%; border:2px solid rgba(var(--cream-rgb),0.35);
}
.theme-swatch-beige{ background:#3d3324; }
.theme-swatch-light-beige{ background:#e6d9bf; }
.theme-swatch-cream{ background:#efe6d8; }
.theme-swatch-maroon{ background:#3a0f14; }
