:root{
  --bg:#12060b;
  --text:#fdf5f1;
  --muted:#d6c5c4;
  --rose:#f25d8e;
  --rose-deep:#7d1838;
  --gold:#f0cf8d;
  --panel:rgba(45,12,22,.68);
  --panel-strong:rgba(68,18,31,.8);
  --line:rgba(255,255,255,.1);
  --shadow:0 28px 80px rgba(0,0,0,.42);
  --shell:min(1240px, calc(100% - 32px));
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  color:var(--text);
  font-family:"Manrope","Segoe UI",sans-serif;
  background:
    radial-gradient(circle at 14% 12%, rgba(242,93,142,.22), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(240,207,141,.16), transparent 22%),
    radial-gradient(circle at 50% 70%, rgba(130,22,60,.18), transparent 30%),
    linear-gradient(180deg, #1a0910 0%, #0c0307 46%, #050103 100%);
  min-height:100vh;
  overflow-x:hidden;
}

body.menu-open{
  overflow:hidden;
}

body.age-gate-open{
  overflow:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  display:block;
  width:100%;
}

.page-glow{
  position:fixed;
  width:32rem;
  height:32rem;
  border-radius:50%;
  filter:blur(60px);
  pointer-events:none;
  opacity:.56;
  z-index:0;
}

.page-glow-left{
  left:-10rem;
  top:-8rem;
  background:radial-gradient(circle, rgba(242,93,142,.32), transparent 65%);
}

.page-glow-right{
  right:-10rem;
  top:8rem;
  background:radial-gradient(circle, rgba(240,207,141,.16), transparent 65%);
}

.shell{
  width:var(--shell);
  margin:0 auto;
  position:relative;
  z-index:1;
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  padding:14px 0;
  background:linear-gradient(180deg, rgba(8,2,4,.92), rgba(8,2,4,.48));
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.nav-shell{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:20px;
  min-height:74px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand img{
  width:56px;
  height:56px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 10px 24px rgba(0,0,0,.28);
}

.brand strong{
  display:block;
  font-size:1rem;
  letter-spacing:.02em;
}

.brand small{
  color:var(--muted);
}

.site-nav{
  display:flex;
  justify-content:center;
  gap:26px;
}

.site-nav a{
  position:relative;
  font-weight:700;
  color:#f7eaea;
}

.site-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:2px;
  background:linear-gradient(90deg, var(--rose), var(--gold));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .24s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after{
  transform:scaleX(1);
}

.menu-toggle{
  display:none;
  width:52px;
  height:52px;
  border:none;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.menu-toggle span{
  width:20px;
  height:2px;
  border-radius:999px;
  background:#fff;
}

.nav-cta,
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:800;
  letter-spacing:.02em;
  transition:transform .24s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease;
}

.nav-cta,
.btn-primary{
  color:#fff8f4;
  background:linear-gradient(135deg, #cb2f63 0%, #7b1839 52%, #d3a24a 100%);
  box-shadow:
    0 14px 30px rgba(203,47,99,.28),
    0 0 36px rgba(240,207,141,.08);
}

.btn-secondary{
  color:#fff;
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.1);
  backdrop-filter:blur(10px);
}

.nav-cta:hover,
.btn:hover{
  transform:translateY(-2px);
}

.hero,
.page-hero{
  padding:34px 0 28px;
}

.hero-shell{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  align-items:stretch;
}

.hero-copy,
.hero-card,
.intro-panel,
.feature-card,
.profile-card,
.room-card,
.news-panel,
.contact-card{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}

.hero-copy,
.intro-panel,
.feature-card,
.profile-card,
.news-panel,
.contact-card{
  background:
    linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(54,14,25,.78), rgba(13,4,8,.94));
}

.hero-copy{
  padding:48px;
  min-height:760px;
}

.page-hero-card{
  padding:42px;
  min-height:420px;
  background:
    linear-gradient(110deg, rgba(10,3,5,.72), rgba(10,3,5,.56)),
    var(--hero-image) center/cover;
}

.eyebrow,
.section-kicker,
.tag{
  display:inline-flex;
  align-items:center;
  width:fit-content;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  color:#f7d9e0;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.72rem;
  font-weight:800;
}

h1,
h2,
h3{
  margin:0;
  font-family:"Cormorant Garamond",Georgia,serif;
  line-height:.94;
}

h1{
  margin-top:22px;
  max-width:11ch;
  font-size:clamp(4rem, 9vw, 7rem);
}

h2{
  font-size:clamp(2.6rem, 5vw, 4.2rem);
}

h3{
  font-size:2rem;
}

.hero-text,
.intro-panel p,
.section-head p,
.feature-card p,
.profile-copy p,
.news-panel p,
.contact-copy p,
.contact-row strong{
  color:var(--muted);
  line-height:1.8;
}

.hero-text{
  margin:24px 0 0;
  max-width:58ch;
}

.hero-actions,
.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.hero-simple .page-hero-card{
  min-height:78vh;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.info-strip{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:30px;
}

.info-pill{
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
}

.info-pill strong{
  display:block;
  margin-bottom:8px;
}

.info-pill span{
  color:#ead9d7;
  line-height:1.6;
}

.hero-notes{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:34px;
}

.hero-notes div{
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}

.hero-notes strong{
  display:block;
  margin-bottom:8px;
}

.hero-visual{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  min-height:760px;
}

.hero-card{
  background:#230911;
}

.hero-card img,
.profile-card img,
.room-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-card-main{
  grid-column:1 / -1;
  min-height:480px;
}

.hero-card-main::after,
.profile-card::after,
.room-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 22%),
    linear-gradient(180deg, transparent 45%, rgba(10,3,5,.76));
  pointer-events:none;
}

.hero-card-copy,
.room-copy,
.profile-copy{
  position:absolute;
  left:22px;
  right:22px;
  bottom:20px;
  z-index:1;
}

.hero-card-copy span,
.room-copy span{
  display:block;
  margin-bottom:10px;
  color:#f0cf8d;
  font-size:.82rem;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.hero-card-copy strong,
.room-copy strong{
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:2.2rem;
  line-height:1;
}

.hero-card-side{
  min-height:260px;
}

.section{
  padding:42px 0;
}

.intro-panel,
.news-panel{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  padding:34px;
}

.section-head{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  align-items:end;
  margin-bottom:24px;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.feature-card{
  padding:24px;
}

.feature-card span{
  display:inline-block;
  margin-bottom:18px;
  color:#f0cf8d;
  font-weight:800;
}

.feature-card p{
  margin:14px 0 18px;
}

.feature-card a,
.profile-copy a{
  color:#f0cf8d;
  font-weight:700;
}

.profiles-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.profile-card{
  min-height:520px;
  background:#290b14;
}

.profile-card-link{
  display:block;
  color:inherit;
  cursor:pointer;
  transition:transform .24s ease, box-shadow .24s ease;
}

.profile-card-link:hover{
  transform:translateY(-4px);
}

.profile-copy .tag{
  margin-bottom:12px;
}

.profile-copy p{
  margin:12px 0 16px;
}

.profile-phone{
  color:#f6cf7a;
  font-weight:800;
}

.profile-action,
.profile-note{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.06);
  color:#f0cf8d;
  font-weight:700;
}

.rooms-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:18px;
}

.room-card{
  min-height:280px;
  background:#230911;
}

.room-card.room-large{
  grid-row:span 2;
  min-height:578px;
}

.news-copy{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.text-panel{
  margin-top:22px;
  padding:24px 28px;
  border-radius:26px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(54,14,25,.72), rgba(13,4,8,.9));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}

.text-panel p{
  margin:0;
  color:var(--muted);
  line-height:1.9;
}

.section-tight{
  padding-top:0;
}

.bar-gallery{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.bar-shot{
  overflow:hidden;
  min-height:260px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  background:#230911;
}

.bar-shot img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.admin-login,
.admin-panel{
  position:relative;
  z-index:1;
}

.admin-card{
  padding:32px;
  border-radius:32px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(54,14,25,.78), rgba(13,4,8,.94));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}

.admin-layout{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:22px;
}

.admin-sidebar,
.admin-editor{
  min-width:0;
}

.admin-actions{
  display:grid;
  gap:12px;
  margin-bottom:18px;
}

.admin-profile-list{
  display:grid;
  gap:10px;
}

.admin-profile-btn{
  width:100%;
  text-align:left;
  min-height:50px;
  padding:0 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.05);
  color:#fff;
  font:inherit;
  cursor:pointer;
}

.admin-profile-btn.active{
  background:linear-gradient(135deg, #cb2f63 0%, #7b1839 52%, #d3a24a 100%);
}

.admin-form{
  display:grid;
  gap:16px;
}

.admin-form label{
  display:grid;
  gap:8px;
}

.admin-form span{
  color:#f2ddde;
  font-weight:700;
}

.admin-form input,
.admin-form textarea{
  width:100%;
  border:none;
  border-radius:16px;
  padding:14px 16px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font:inherit;
  border:1px solid rgba(255,255,255,.08);
}

.admin-form textarea{
  resize:vertical;
}

.admin-preview{
  overflow:hidden;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  min-height:220px;
  aspect-ratio: 4 / 5;
  background:rgba(255,255,255,.04);
}

.admin-preview img{
  width:100%;
  min-height:220px;
  height:100%;
  object-fit:cover;
}

.admin-editor-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.admin-status{
  min-height:20px;
  margin:0;
  color:#f0cf8d;
}

.admin-error{
  min-height:20px;
  margin:0;
  color:#ffb9cb;
}

.site-footer{
  padding:0 0 26px;
}

.footer-shell{
  display:grid;
  grid-template-columns:1fr 1fr auto;
  gap:18px;
  align-items:center;
  padding:24px 28px;
  border-radius:26px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(54,14,25,.72), rgba(13,4,8,.9));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  margin-bottom:10px;
}

.footer-shell strong{
  display:block;
  margin-bottom:8px;
}

.footer-shell p{
  margin:4px 0;
  color:var(--muted);
  line-height:1.6;
}

.footer-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:flex-end;
}

.footer-actions a{
  color:#f0cf8d;
  font-weight:700;
}

.news-box{
  padding:28px;
  border-radius:28px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(95,30,49,.82), rgba(15,4,8,.94));
  border:1px solid rgba(255,255,255,.08);
}

.news-box strong{
  display:block;
  margin:12px 0;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:2.4rem;
}

.contact-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
}

.contact-copy{
  padding:18px 0;
}

.contact-card{
  padding:28px;
}

.contact-row + .contact-row{
  margin-top:22px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.08);
}

.contact-row span{
  display:block;
  margin-bottom:8px;
  color:#e4bec1;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.78rem;
  font-weight:800;
}

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

.age-gate{
  position:fixed;
  inset:0;
  display:grid;
  place-items:center;
  padding:20px;
  background:rgba(5,1,3,.8);
  backdrop-filter:blur(18px);
  z-index:300;
}

.age-gate[hidden]{
  display:none;
}

.age-gate-card{
  position:relative;
  width:min(560px, 100%);
  padding:34px 30px;
  border-radius:32px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(54,14,25,.88), rgba(13,4,8,.96));
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 28px 80px rgba(0,0,0,.5);
  text-align:center;
}

.age-gate-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(135deg, rgba(242,93,142,.5), rgba(240,207,141,.4), rgba(255,255,255,.08));
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}

.age-gate-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:74px;
  height:74px;
  margin:0 auto 18px;
  border-radius:50%;
  background:linear-gradient(135deg, rgba(203,47,99,.9), rgba(211,162,74,.95));
  color:#fff9f4;
  font-size:1.35rem;
  font-weight:800;
  box-shadow:0 14px 30px rgba(203,47,99,.28);
}

.age-gate-card h2{
  margin-bottom:14px;
}

.age-gate-card p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

.age-gate-actions{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}

.age-gate-note{
  margin-top:18px;
  color:#f2d2d8;
  font-size:.92rem;
}

@media (max-width: 1100px){
  .hero-shell,
  .intro-panel,
  .section-head,
  .feature-grid,
  .profiles-grid,
  .news-panel,
  .contact-grid{
    grid-template-columns:1fr 1fr;
  }

  .hero-shell,
  .section-head,
  .intro-panel,
  .news-panel,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .hero-copy,
  .hero-visual{
    min-height:auto;
  }

  .feature-grid,
  .profiles-grid,
  .rooms-grid,
  .hero-notes{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .room-card.room-large{
    grid-row:auto;
    grid-column:1 / -1;
    min-height:420px;
  }
}

@media (max-width: 760px){
  .site-header{
    padding:12px 0;
  }

  .nav-shell{
    grid-template-columns:auto auto;
    justify-content:space-between;
  }

  .menu-toggle{
    display:flex;
    justify-self:end;
  }

  .nav-cta{
    display:none;
  }

  .site-nav{
    position:absolute;
    top:calc(100% + 10px);
    left:16px;
    right:16px;
    display:grid;
    gap:8px;
    padding:14px;
    border-radius:24px;
    background:rgba(20,6,10,.96);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:var(--shadow);
    opacity:0;
    pointer-events:none;
    transform:translateY(-10px);
    transition:opacity .24s ease, transform .24s ease;
  }

  .site-nav.is-open{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
  }

  .site-nav a{
    padding:12px 10px;
    border-radius:14px;
    background:rgba(255,255,255,.03);
  }

  .hero-copy,
  .page-hero-card{
    padding:28px 22px;
    min-height:auto;
  }

  h1{
    max-width:none;
    font-size:3.45rem;
  }

  h2{
    font-size:2.45rem;
  }

  .hero-notes,
  .info-strip,
  .feature-grid,
  .profiles-grid,
  .rooms-grid,
  .bar-gallery{
    grid-template-columns:1fr;
  }

  .admin-layout{
    grid-template-columns:1fr;
  }

  .hero-card-main,
  .profile-card,
  .room-card.room-large{
    min-height:320px;
  }

  .hero-card-side,
  .room-card{
    min-height:240px;
  }

  .footer-shell{
    grid-template-columns:1fr;
  }

  .footer-actions{
    justify-content:flex-start;
  }

  .age-gate-card{
    padding:28px 22px;
  }
}
