/* ==========================================================================
   Hotel Tsa Siliguri — Premium Design System
   Custom, framework-free CSS. Plain HTML/CSS/JS only.
   ========================================================================== */

:root{
  /* -- Color tokens --------------------------------------------------- */
  --ink:            #14201C;
  --primary:        #1B4B43;
  --primary-light:  #2F6B5E;
  --primary-dark:   #0E2E29;
  --accent:         #C99A4B;
  --accent-light:   #E3BE81;
  --bg:             #FAF8F3;
  --surface:        #FFFFFF;
  --surface-alt:    #F1EEE5;
  --text:           #1B2420;
  --muted:          #5C6863;
  --border:         #E5E0D2;
  --success:        #2F8F5B;
  --cta:            #C99A4B;

  /* -- Type ------------------------------------------------------------ */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* -- Scale ------------------------------------------------------------ */
  --container: 1200px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(20,32,28,.06), 0 1px 1px rgba(20,32,28,.04);
  --shadow-md: 0 8px 24px -8px rgba(20,32,28,.18);
  --shadow-lg: 0 24px 60px -16px rgba(20,32,28,.28);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body.premium{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.pm-container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight: 600; line-height: 1.12; margin: 0; color: var(--ink); }
p{ margin: 0; }
button{ font-family: inherit; }

::selection{ background: var(--accent-light); color: var(--ink); }

/* -- Focus states ---------------------------------------------------- */
a:focus-visible, button:focus-visible, input:focus-visible{
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   Utility
   ========================================================================== */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before{
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section{ padding: 108px 0; }
.section-tight{ padding: 72px 0; }
.section-dark{ background: var(--ink); color: #EDEAE1; }
.section-dark h2, .section-dark h3{ color: #fff; }
.section-alt{ background: var(--surface-alt); }
.section-head{ max-width: 640px; margin-bottom: 56px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ font-size: clamp(30px, 4vw, 44px); margin-top: 14px; }
.section-head p{ margin-top: 16px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.section-dark .section-head p{ color: #B9C2BD; }

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg{ width: 16px; height: 16px; transition: transform .35s var(--ease); }
.btn:hover svg{ transform: translateX(4px); }
.btn-primary{ background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent{ background: var(--accent); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-accent:hover{ background: var(--accent-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost{ background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover{ border-color: var(--primary); background: rgba(27,75,67,.06); }
.btn-ghost-light{ background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost-light:hover{ border-color: #fff; background: rgba(255,255,255,.08); }
.btn-block{ width: 100%; justify-content: center; }

.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity: 1; transform: none; }
.reveal-scale{ opacity: 0; transform: scale(.94); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-scale.is-visible{ opacity: 1; transform: none; }
.stagger > *{ transition-delay: calc(var(--i, 0) * 90ms); }
@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-scale{ opacity: 1; transform: none; }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.pm-nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0;
  transition: padding .35s var(--ease);
}
/* Background/blur lives on a pseudo-element, not on .pm-nav itself, because
   backdrop-filter on an ancestor turns it into the containing block for any
   position:fixed descendant — which broke .pm-mobile-panel's full-viewport
   overlay (it was sizing to the nav bar instead of the screen). */
.pm-nav::before{
  content: "";
  position: absolute; inset: 0; z-index: -1;
  border-bottom: 1px solid var(--border);
  background: rgba(250,248,243,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}
.pm-nav.is-scrolled{
  padding: 12px 0;
}
.pm-nav.is-scrolled::before{
  background: rgba(250,248,243,.96);
  box-shadow: 0 1px 0 rgba(20,32,28,.06);
}
.pm-nav-inner{ display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.pm-logo{ display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--ink); }
.pm-logo img{ height: 70px; width: auto; transition: height .35s var(--ease); }
.pm-nav.is-scrolled .pm-logo img{ height: 52px; }
.pm-links{ display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.pm-links a{
  padding: 10px 16px; border-radius: 999px; font-size: 14.5px; font-weight: 600; color: var(--text);
  transition: background-color .25s ease, color .25s ease;
  position: relative;
}
.pm-links a:hover{ background: rgba(27,75,67,.08); color: var(--primary); }
.pm-links a.is-active{ color: var(--primary); }
.pm-nav-actions{ display: flex; align-items: center; gap: 14px; }
.pm-nav-actions .btn{ padding: 11px 22px; font-size: 14px; }
.pm-nav-phone{ display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text); }
.pm-nav-phone svg{ width: 16px; height: 16px; color: var(--primary); }

.pm-burger{ display: none; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: var(--surface); align-items: center; justify-content: center; cursor: pointer; }
.pm-burger span{ display: block; width: 18px; height: 2px; background: var(--ink); position: relative; transition: transform .3s ease, opacity .3s ease; }
.pm-burger span::before, .pm-burger span::after{ content:""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); transition: transform .3s ease, top .3s ease; }
.pm-burger span::before{ top: -6px; }
.pm-burger span::after{ top: 6px; }
.pm-nav.is-open .pm-burger span{ background: transparent; }
.pm-nav.is-open .pm-burger span::before{ top: 0; transform: rotate(45deg); }
.pm-nav.is-open .pm-burger span::after{ top: 0; transform: rotate(-45deg); }

.pm-mobile-panel{
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  padding: 100px 24px 40px;
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
  overflow-y: auto;
}
.pm-nav.is-open .pm-mobile-panel{ opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition-delay: 0s; }
.pm-mobile-panel a{ display: block; padding: 16px 4px; font-size: 21px; font-weight: 600; font-family: var(--font-display); border-bottom: 1px solid var(--border); }
.pm-mobile-panel .btn{ margin-top: 28px; }
.pm-mobile-contact{ margin-top: 28px; display: flex; flex-direction: column; gap: 10px; color: var(--muted); font-size: 15px; }

@media (max-width: 980px){
  .pm-links, .pm-nav-actions .btn-ghost, .pm-nav-phone{ display: none; }
  .pm-burger{ display: flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.pm-hero{
  position: relative;
  padding: 150px 0 60px;
  background: radial-gradient(1100px 620px at 82% -10%, rgba(201,154,75,.16), transparent 60%),
              radial-gradient(900px 520px at -10% 20%, rgba(27,75,67,.10), transparent 55%),
              var(--bg);
  overflow: hidden;
}
.pm-hero-grid{ position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(20,32,28,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(20,32,28,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(700px 500px at 70% 20%, black, transparent);
}
.pm-hero-inner{ position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.pm-hero-copy .eyebrow{ margin-bottom: 22px; }
.pm-hero h1{ font-size: clamp(38px, 5.4vw, 62px); letter-spacing: -.01em; }
.pm-hero h1 em{ font-style: italic; color: var(--primary); }
.pm-hero-sub{ margin-top: 22px; font-size: 18px; line-height: 1.75; color: var(--muted); max-width: 520px; }
.pm-hero-cta{ display: flex; align-items: center; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.pm-hero-fact{ margin-top: 40px; display: inline-flex; align-items: center; gap: 12px; padding: 10px 10px 10px 14px; border: 1px solid var(--border); border-radius: 999px; background: var(--surface); font-size: 13.5px; font-weight: 600; color: var(--text); box-shadow: var(--shadow-sm); }
.pm-hero-fact .dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(47,143,91,.16); flex: none; }

.pm-hero-visual{ position: relative; }
.pm-hero-card{
  position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.pm-hero-card img{ width: 100%; height: 100%; object-fit: cover; }
.pm-hero-card::after{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(14,20,17,0) 45%, rgba(14,20,17,.55) 100%); }

.pm-float{
  position: absolute; z-index: 3; background: var(--surface); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 18px 20px; animation: pmFloat 7s ease-in-out infinite;
}
.pm-float-rooms{ right: -30px; top: 14%; display: flex; align-items: center; gap: 12px; animation-delay: 1.4s; }
.pm-float-rooms .pm-float-icon{ width: 42px; height: 42px; border-radius: 50%; background: rgba(27,75,67,.1); display: flex; align-items: center; justify-content: center; color: var(--primary); flex: none; }
.pm-float-rooms .pm-float-icon svg{ width: 20px; height: 20px; }
.pm-float-rooms b{ display: block; font-size: 20px; font-family: var(--font-display); color: var(--ink); }
.pm-float-rooms span{ font-size: 12.5px; color: var(--muted); }

@keyframes pmFloat{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce){ .pm-float{ animation: none; } }

@media (max-width: 1080px){
  .pm-hero-inner{ grid-template-columns: 1fr; }
  .pm-hero-visual{ max-width: 460px; margin: 0 auto; order: -1; }
  .pm-hero-copy{ text-align: center; }
  .pm-hero-copy .eyebrow{ justify-content: center; }
  .pm-hero-sub{ margin-left: auto; margin-right: auto; }
  .pm-hero-cta{ justify-content: center; }
  .pm-float-rooms{ display: none; }
}
@media (max-width: 560px){
  .pm-hero{ padding: 138px 0 90px; }
}

/* ==========================================================================
   Full-width booking bar
   ========================================================================== */
.pm-book-bar-wrap{ position: relative; z-index: 6; margin-top: -36px; padding-bottom: 48px; }
.pm-book-bar-wrap.reveal-scale.is-visible{ transform: none; }
.pm-book-bar{
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 30px 36px; display: flex; align-items: stretch; gap: 0;
}
.pm-book-bar-field{ flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 0 28px; }
.pm-book-bar-field:first-child{ padding-left: 0; }
.pm-book-bar-label{ display: flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.pm-book-bar-label svg{ width: 15px; height: 15px; color: var(--primary); flex: none; }
.pm-book-bar-field input{ border: none; background: none; padding: 2px 0 0; font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--ink); width: 100%; cursor: pointer; }
.pm-book-bar-field input:focus{ outline: none; }
.pm-book-bar-field input::placeholder{ color: #9AA69F; font-weight: 500; }
.pm-book-bar-divider{ width: 1px; align-self: stretch; background: var(--border); flex: none; }
.pm-book-bar-stay{ flex: 1.5; }
.pm-book-bar-stay .pm-book-bar-value{ font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--ink); margin-top: 2px; }
.pm-book-bar-btn{ flex: none; padding: 17px 36px; white-space: nowrap; margin-left: 8px; }

@media (max-width: 900px){
  .pm-book-bar-wrap{ margin-top: -24px; padding-bottom: 36px; }
  .pm-book-bar{ flex-direction: column; align-items: stretch; gap: 18px; padding: 26px; }
  .pm-book-bar-field{ padding: 0; }
  .pm-book-bar-divider{ display: none; }
  .pm-book-bar-btn{ width: 100%; justify-content: center; margin-left: 0; }
}

/* Booking widget (re-skinned, same form fields/IDs — functionality untouched) */
.pm-booking-form{ display: flex; flex-direction: column; gap: 12px; }
.pm-booking-row{ display: flex; gap: 10px; }
.pm-field{ flex: 1; display: flex; flex-direction: column; gap: 6px; }
.pm-field label{ font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.pm-field input{
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 11px 12px; font-size: 14px;
  font-family: var(--font-body); color: var(--text); background: var(--surface-alt); width: 100%;
  transition: border-color .2s ease, background-color .2s ease;
}
.pm-field input:focus{ border-color: var(--primary); background: #fff; outline: none; }
.pm-booking-form .btn{ margin-top: 4px; }

/* ==========================================================================
   Feature strip
   ========================================================================== */
.pm-strip{ background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pm-strip-inner{ display: flex; flex-wrap: wrap; justify-content: space-between; gap: 28px; padding: 34px 0; }
.pm-strip-item{ display: flex; align-items: center; gap: 12px; flex: 1 1 200px; }
.pm-strip-item svg{ width: 26px; height: 26px; color: var(--primary); flex: none; }
.pm-strip-item span{ font-size: 14.5px; font-weight: 600; color: var(--text); }

/* ==========================================================================
   Story section
   ========================================================================== */
.pm-story{ display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.pm-story-media{ position: relative; }
.pm-story-media img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.pm-story-media .pm-float{ animation-delay: .6s; }
.pm-story-copy p{ color: var(--muted); font-size: 17px; line-height: 1.8; margin-top: 20px; }
.pm-story-copy p + p{ margin-top: 16px; }
@media (max-width: 980px){
  .pm-story{ grid-template-columns: 1fr; gap: 40px; }
  .pm-story-media{ max-width: 420px; margin: 0 auto; }
}

/* ==========================================================================
   Bento grids (rooms / facilities)
   ========================================================================== */
.pm-bento{ display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.pm-card{
  position: relative; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--border);
  overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.pm-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(27,75,67,.35); }

.pm-room-grid{ display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.pm-room-card{ flex: 1 1 300px; max-width: calc(33.333% - 14px); display: flex; flex-direction: column; }
.pm-room-media{ position: relative; aspect-ratio: 16/11; overflow: hidden; }
.pm-room-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.pm-card:hover .pm-room-media img{ transform: scale(1.06); }
.pm-room-tag{ position: absolute; top: 14px; left: 14px; background: rgba(20,32,28,.72); backdrop-filter: blur(6px); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.pm-room-body{ padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.pm-room-body h3{ font-size: 19px; }
.pm-room-body .pm-room-link{ margin-top: 14px; display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--primary); }
.pm-room-body .pm-room-link svg{ width: 14px; height: 14px; transition: transform .3s var(--ease); }
.pm-card:hover .pm-room-link svg{ transform: translateX(4px); }

.pm-fac-card{ grid-column: span 2; padding: 26px 22px; display: flex; flex-direction: column; gap: 14px; }
.pm-fac-icon{ width: 46px; height: 46px; border-radius: 12px; background: rgba(27,75,67,.08); display: flex; align-items: center; justify-content: center; color: var(--primary); transition: background-color .3s ease, color .3s ease, transform .3s ease; }
.pm-fac-icon svg{ width: 22px; height: 22px; }
.pm-card:hover .pm-fac-icon{ background: var(--primary); color: #fff; transform: scale(1.08) rotate(-4deg); }
.pm-fac-card h4{ font-size: 16.5px; font-family: var(--font-body); font-weight: 700; }
.pm-fac-card p{ font-size: 14px; color: var(--muted); line-height: 1.6; }

@media (max-width: 900px){
  .pm-bento{ grid-template-columns: repeat(2, 1fr); }
  .pm-room-card{ max-width: calc(50% - 10px); }
  .pm-fac-card{ grid-column: span 1; }
}
@media (max-width: 560px){
  .pm-bento{ grid-template-columns: 1fr; }
  .pm-room-card{ max-width: 100%; }
  .pm-fac-card{ grid-column: span 1; }
}

/* ==========================================================================
   Stats
   ========================================================================== */
.pm-stats{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.12); border-radius: var(--radius-lg); overflow: hidden; }
.pm-stat{ background: var(--ink); padding: 40px 28px; text-align: center; }
.pm-stat b{ display: block; font-family: var(--font-display); font-size: clamp(32px, 4vw, 46px); color: var(--accent-light); }
.pm-stat span{ display: block; margin-top: 8px; font-size: 13.5px; color: #B9C2BD; }
@media (max-width: 760px){ .pm-stats{ grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Gallery preview
   ========================================================================== */
.pm-gallery-grid{ display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; gap: 14px; }
.pm-gallery-grid a{ position: relative; border-radius: var(--radius-sm); overflow: hidden; display: block; }
.pm-gallery-grid a:nth-child(1){ grid-column: span 2; grid-row: span 2; }
.pm-gallery-grid a:nth-child(4){ grid-row: span 2; }
.pm-gallery-grid img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.pm-gallery-grid a:hover img{ transform: scale(1.08); }
.pm-gallery-grid a::after{ content:""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(14,20,17,.45)); opacity: 0; transition: opacity .3s ease; }
.pm-gallery-grid a:hover::after{ opacity: 1; }
@media (max-width: 760px){
  .pm-gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .pm-gallery-grid a:nth-child(1){ grid-column: span 2; }
}

/* ==========================================================================
   Location teaser
   ========================================================================== */
.pm-location{ display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.pm-location-copy{ background: var(--surface); padding: 56px; display: flex; flex-direction: column; justify-content: center; }
.pm-location-map{ min-height: 340px; background: var(--surface-alt); position: relative; }
.pm-location-map iframe{ width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(.15) contrast(1.02); }
.pm-location-list{ margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.pm-location-list li{ display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--muted); list-style: none; }
.pm-location-list svg{ width: 18px; height: 18px; color: var(--primary); flex: none; margin-top: 2px; }
@media (max-width: 900px){ .pm-location{ grid-template-columns: 1fr; } .pm-location-copy{ padding: 36px 28px; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.pm-faq{ max-width: 780px; margin: 0 auto; }
.pm-faq-item{ border-bottom: 1px solid var(--border); }
.pm-faq-q{ width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; background: none; border: none; text-align: left; font-family: var(--font-display); font-size: 18px; color: var(--ink); cursor: pointer; }
.pm-faq-q .pm-plus{ position: relative; width: 20px; height: 20px; flex: none; }
.pm-faq-q .pm-plus::before, .pm-faq-q .pm-plus::after{ content:""; position: absolute; background: var(--primary); border-radius: 2px; transition: transform .35s var(--ease); }
.pm-faq-q .pm-plus::before{ left: 0; top: 9px; width: 20px; height: 2px; }
.pm-faq-q .pm-plus::after{ left: 9px; top: 0; width: 2px; height: 20px; }
.pm-faq-item.is-open .pm-plus::after{ transform: rotate(90deg); opacity: 0; }
.pm-faq-a{ max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.pm-faq-a p{ padding: 0 4px 24px; color: var(--muted); font-size: 15.5px; line-height: 1.75; max-width: 640px; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.pm-cta-band{
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: radial-gradient(900px 420px at 15% 0%, rgba(201,154,75,.28), transparent 60%),
              linear-gradient(135deg, var(--ink), var(--primary-dark));
  padding: 76px 56px; text-align: center;
}
.pm-cta-band h2{ color: #fff; font-size: clamp(28px, 4vw, 42px); }
.pm-cta-band p{ color: #C7D0CB; max-width: 560px; margin: 18px auto 0; font-size: 17px; }
.pm-cta-actions{ margin-top: 34px; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.pm-cta-grid{ position: absolute; inset: 0; opacity: .35;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(600px 400px at 50% 0%, black, transparent);
}
@media (max-width: 640px){ .pm-cta-band{ padding: 52px 24px; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.pm-footer{ background: var(--ink); color: #C7D0CB; padding-top: 88px; }
.pm-footer-top{ display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1); }
.pm-footer-brand{ font-family: var(--font-display); color: #fff; font-size: 22px; }
.pm-footer-brand p{ margin-top: 14px; color: #9AA6A0; font-size: 14.5px; line-height: 1.7; max-width: 280px; }
.pm-footer-col h5{ color: #fff; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.pm-footer-col ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.pm-footer-col a{ font-size: 14.5px; color: #B9C2BD; transition: color .2s ease; }
.pm-footer-col a:hover{ color: var(--accent-light); }
.pm-footer-social{ display: flex; gap: 10px; margin-top: 18px; }
.pm-footer-social a{ width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; }
.pm-footer-social svg{ width: 16px; height: 16px; }
.pm-footer-bottom{ display: flex; justify-content: space-between; align-items: center; padding: 26px 0; font-size: 13px; color: #7E8A85; flex-wrap: wrap; gap: 10px; }
.pm-footer-bottom a{ color: #9AA6A0; }
@media (max-width: 900px){ .pm-footer-top{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .pm-footer-top{ grid-template-columns: 1fr; } }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.pm-page-hero{ position: relative; padding: 168px 0 90px; background: var(--ink); overflow: hidden; }
.pm-page-hero .pm-hero-grid{ opacity: .18; }
.pm-page-hero-inner{ position: relative; max-width: 720px; }
.pm-page-hero .eyebrow{ color: var(--accent-light); }
.pm-page-hero .eyebrow::before{ background: var(--accent-light); }
.pm-page-hero h1{ color: #fff; font-size: clamp(34px, 5vw, 52px); margin-top: 14px; }
.pm-page-hero p{ color: #B9C2BD; font-size: 17px; margin-top: 18px; max-width: 560px; line-height: 1.75; }
.pm-breadcrumb{ display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #92A199; }
.pm-breadcrumb a{ color: #92A199; }
.pm-breadcrumb a:hover{ color: #fff; }

/* Room detail layout */
.pm-detail{ display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: start; }
.pm-detail-gallery{ display: grid; gap: 14px; }
.pm-detail-gallery img{ border-radius: var(--radius-lg); width: 100%; aspect-ratio: 16/9; object-fit: cover; box-shadow: var(--shadow-md); }
.pm-amenity-list{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.pm-amenity-list li{ list-style: none; display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text); }
.pm-amenity-list svg{ width: 18px; height: 18px; color: var(--success); flex: none; }
.pm-booking-panel{ position: sticky; top: 120px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md); }
.pm-booking-panel h3{ font-size: 20px; }
@media (max-width: 980px){ .pm-detail{ grid-template-columns: 1fr; } .pm-booking-panel{ position: static; } }

/* Simple content page (facilities / contact) helpers */
.pm-two-col{ display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 900px){ .pm-two-col{ grid-template-columns: 1fr; gap: 36px; } }

.pm-contact-card{ background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.pm-contact-card + .pm-contact-card{ margin-top: 20px; }
.pm-contact-row{ display: flex; gap: 14px; align-items: flex-start; }
.pm-contact-row + .pm-contact-row{ margin-top: 18px; }
.pm-contact-row svg{ width: 20px; height: 20px; color: var(--primary); flex: none; margin-top: 2px; }
.pm-contact-row a, .pm-contact-row span{ font-size: 15px; color: var(--text); line-height: 1.6; }

.pm-form input, .pm-form textarea{
  width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 13px 14px; font-family: var(--font-body); font-size: 14.5px; color: var(--text); background: var(--surface-alt); transition: border-color .2s ease, background-color .2s ease;
}
.pm-form input:focus, .pm-form textarea:focus{ border-color: var(--primary); background: #fff; outline: none; }
.pm-form label{ display: block; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 8px; }
.pm-form .pm-field{ margin-bottom: 18px; }

/* Gallery page masonry-ish grid */
.pm-full-gallery{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pm-full-gallery a{ position: relative; border-radius: var(--radius-md); overflow: hidden; display: block; aspect-ratio: 4/3; }
.pm-full-gallery img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pm-full-gallery a:hover img{ transform: scale(1.07); }
@media (max-width: 760px){ .pm-full-gallery{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .pm-full-gallery{ grid-template-columns: 1fr; } }
