/* ===========================================================
   PALM BAY HOTEL — Shared Stylesheet
   Theme switching: <body class="theme-bise"> or <body class="theme-araha">
   =========================================================== */

:root{
  --white:#FFFFFF;
  --sand:#F5F1E9;
  --ink:#2A2A28;
  --muted:#5a5a56;
  --line:#E4E0D6;

  /* Bise (navy) is default */
  --accent:#1B3A6B;
  --accent-light:#3E5C8C;
  --accent-soft:rgba(27,58,107,0.1);
}

body.theme-araha{
  --accent:#E14B4B;
  --accent-light:#EB7373;
  --accent-soft:rgba(225,75,75,0.1);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Noto Sans JP',sans-serif;
  background:var(--white);
  color:var(--ink);
  line-height:1.7;
  overflow-x:hidden;
}
img{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
.en{font-family:'Poppins',sans-serif;}

/* ===== HEADER ===== */
header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 32px;
  background:rgba(255,255,255,0);
  transition:background 0.3s ease, box-shadow 0.3s ease;
}
header.scrolled{
  background:rgba(255,255,255,0.96);
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
}
.logo-header{
  font-family:'Poppins',sans-serif;
  font-weight:600;
  font-size:15px;
  letter-spacing:0.18em;
  color:var(--ink);
  display:flex;
  align-items:center;
  gap:10px;
}
.logo-header img.header-logo-img{
  height:32px;
  width:auto;
  display:block;
}
.logo-header .property-tag{
  font-size:10px;
  letter-spacing:0.15em;
  padding:3px 10px;
  border-radius:999px;
  background:var(--accent);
  color:var(--white);
  font-weight:500;
}
nav{display:flex;gap:32px;}
nav a{
  font-family:'Poppins',sans-serif;
  font-size:12px;
  font-weight:500;
  letter-spacing:0.1em;
  color:var(--ink);
  position:relative;
  padding-bottom:4px;
}
nav a::after{
  content:"";
  position:absolute;
  bottom:0;left:0;
  width:0;height:1px;
  background:var(--ink);
  transition:width 0.25s ease;
}
nav a:hover::after, nav a.active::after{width:100%;}
nav a.active{color:var(--accent);}
.menu-btn{display:none;}

@media (max-width:860px){
  nav{display:none;}
  .menu-btn{display:block;font-family:'Poppins',sans-serif;font-size:11px;letter-spacing:0.1em;}
}

/* ===== PAGE HERO (for sub-pages, shorter than home hero) ===== */
.page-hero{
  position:relative;
  width:100%;
  height:46vh;
  min-height:320px;
  overflow:hidden;
  margin-top:0;
  padding:0;
}
.page-hero img{
  width:100%;height:100%;
  object-fit:cover;
}
.page-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(20,20,18,0.32) 0%, rgba(20,20,18,0.45) 100%);
}
.page-hero-content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--white);
  z-index:2;
  padding:0 24px;
}
.page-hero-eyebrow{
  font-family:'Poppins',sans-serif;
  font-size:11px;
  letter-spacing:0.3em;
  font-weight:300;
  margin-bottom:14px;
  opacity:0.9;
}
.page-hero-title{
  font-family:'Poppins',sans-serif;
  font-weight:500;
  font-size:clamp(28px,5vw,48px);
  letter-spacing:0.04em;
}
.breadcrumb{
  margin-top:18px;
  font-size:11px;
  letter-spacing:0.08em;
  opacity:0.85;
  display:flex;
  gap:8px;
  align-items:center;
}

/* ===== HOME HERO (full screen, index pages) ===== */
.hero{
  position:relative;
  width:100%;
  height:100vh;
  min-height:560px;
  overflow:hidden;
  padding:0;
}
/* --- No-photo placeholder (used until final photos arrive) --- */
.photo-tbd{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(160deg, #f4f1ec 0%, #e9e4dc 100%);
  color:#b6ada0;
  font-family:'Poppins',sans-serif;
  font-size:11px;
  letter-spacing:0.22em;
}
.hero img{
  width:100%;height:100%;
  object-fit:cover;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(20,20,18,0.18) 0%, rgba(20,20,18,0.08) 40%, rgba(20,20,18,0.55) 100%);
}
.hero-content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--white);
  z-index:2;
  padding:0 24px;
}
.hero-eyebrow{
  font-family:'Poppins',sans-serif;
  font-size:12px;
  letter-spacing:0.35em;
  font-weight:300;
  margin-bottom:18px;
  opacity:0.9;
}
.hero-title{
  font-family:'Poppins',sans-serif;
  font-weight:500;
  font-size:clamp(34px,7vw,76px);
  letter-spacing:0.04em;
  line-height:1.05;
}
.hero-sub{
  margin-top:18px;
  font-size:14px;
  letter-spacing:0.1em;
  font-weight:300;
}
.hero-locations{
  margin-top:46px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  justify-content:center;
}
.loc-pill{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 26px;
  border:1px solid rgba(255,255,255,0.55);
  border-radius:999px;
  font-family:'Poppins',sans-serif;
  font-size:12px;
  letter-spacing:0.15em;
  transition:all 0.3s ease;
  backdrop-filter:blur(2px);
}
.loc-pill:hover{background:rgba(255,255,255,0.95);color:var(--ink);}
.loc-dot{width:8px;height:8px;border-radius:50%;}
.loc-dot.bise{background:#3E5C8C;}
.loc-dot.araha{background:#EB7373;}

.scroll-cue{
  position:absolute;
  bottom:28px;left:50%;
  transform:translateX(-50%);
  z-index:2;
  color:var(--white);
  font-family:'Poppins',sans-serif;
  font-size:10px;
  letter-spacing:0.25em;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}
.scroll-line{width:1px;height:34px;background:rgba(255,255,255,0.6);animation:scrolldown 1.8s ease-in-out infinite;}
@keyframes scrolldown{
  0%{transform:scaleY(0);transform-origin:top;}
  50%{transform:scaleY(1);transform-origin:top;}
  51%{transform-origin:bottom;}
  100%{transform:scaleY(0);transform-origin:bottom;}
}

/* ===== SECTION GENERAL ===== */
section{padding:120px 6vw;}
.section-head{
  text-align:center;
  margin-bottom:64px;
}
.section-eyebrow{
  font-family:'Poppins',sans-serif;
  font-size:12px;
  letter-spacing:0.3em;
  color:var(--accent);
  margin-bottom:14px;
  font-weight:500;
}
.section-title{
  font-family:'Poppins',sans-serif;
  font-weight:500;
  font-size:clamp(26px,4vw,40px);
  letter-spacing:0.04em;
}
.section-desc{
  margin-top:18px;
  max-width:560px;
  margin-left:auto;
  margin-right:auto;
  font-size:14px;
  color:var(--muted);
}

/* ===== INTRO (concept) ===== */
.intro{
  background:var(--sand);
  text-align:center;
}
.intro-lead{
  font-family:'Poppins',sans-serif;
  font-weight:300;
  font-size:clamp(20px,2.6vw,30px);
  line-height:1.6;
  max-width:720px;
  margin:0 auto 28px;
}
.intro-body{
  max-width:600px;
  margin:0 auto;
  font-size:14.5px;
  color:var(--muted);
}

/* ===== PROPERTY SPLIT (home page cards) ===== */
.properties{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
}
.property-card{
  position:relative;
  height:560px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
}
.property-card img{
  position:absolute;
  inset:0;
  width:100%;height:100%;
  object-fit:cover;
  transition:transform 0.7s ease;
}
.property-card:hover img{transform:scale(1.05);}
.property-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(20,20,18,0) 40%, rgba(20,20,18,0.72) 100%);
}
.property-card .pc-body{
  position:relative;
  z-index:2;
  color:var(--white);
  padding:40px;
  width:100%;
}
.pc-tag{
  font-family:'Poppins',sans-serif;
  font-size:11px;
  letter-spacing:0.25em;
  display:inline-block;
  padding:5px 14px;
  border-radius:999px;
  margin-bottom:14px;
}
.pc-tag.bise{background:#1B3A6B;}
.pc-tag.araha{background:#E14B4B;}
.pc-name{
  font-family:'Poppins',sans-serif;
  font-weight:500;
  font-size:30px;
  letter-spacing:0.03em;
  margin-bottom:6px;
}
.pc-jp{font-size:13px;letter-spacing:0.1em;opacity:0.9;margin-bottom:16px;}

@media (max-width:768px){
  .properties{grid-template-columns:1fr;}
  .property-card{height:420px;}
}

/* ===== SUB-NAV (within a property: Room/Facility/Access/News tabs) ===== */
.subnav{
  position:sticky;
  top:64px;
  z-index:50;
  background:rgba(255,255,255,0.97);
  border-bottom:1px solid var(--line);
  display:flex;
  justify-content:center;
  gap:36px;
  padding:16px 6vw;
  overflow-x:auto;
}
.subnav a{
  font-family:'Poppins',sans-serif;
  font-size:12px;
  letter-spacing:0.12em;
  white-space:nowrap;
  color:var(--muted);
  padding-bottom:4px;
  border-bottom:2px solid transparent;
}
.subnav a.active{color:var(--accent);border-color:var(--accent);}
.subnav a:hover{color:var(--ink);}

/* ===== ROOM GRID (unit thumbnails) ===== */
.room-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}
.ph-box{position:relative;overflow:hidden;border-radius:4px;background:#eee;}
.ph-box.fill{height:100%;}
.room-unit{
  position:relative;
  border-radius:4px;
  overflow:hidden;
  aspect-ratio:3/4;
  background:#eee;
}
.room-unit img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform 0.5s ease;
}
.room-unit:hover img{transform:scale(1.08);}
.room-unit a{display:block;height:100%;}
.room-unit .unit-label{
  position:absolute;
  bottom:0;left:0;right:0;
  padding:14px 12px;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,0.65));
  color:var(--white);
  font-family:'Poppins',sans-serif;
  font-size:13px;
  letter-spacing:0.08em;
}
.room-unit.placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--sand);
  color:#999;
  font-family:'Poppins',sans-serif;
  font-size:12px;
  letter-spacing:0.1em;
  text-align:center;
}
@media (max-width:900px){
  .room-grid{grid-template-columns:repeat(3,1fr);}
}
@media (max-width:560px){
  .room-grid{grid-template-columns:repeat(2,1fr);}
}

.room-gallery{
  margin-top:36px;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:14px;
}
.room-gallery img{
  width:100%;height:100%;
  object-fit:cover;
  border-radius:4px;
  aspect-ratio:4/3;
}
.room-gallery .tall{grid-row:span 2;aspect-ratio:auto;height:100%;}
@media (max-width:768px){
  .room-gallery{grid-template-columns:1fr 1fr;}
  .room-gallery .tall{grid-row:auto;aspect-ratio:4/3;height:auto;}
}

/* ===== ROOM DETAIL (single room page) ===== */
.room-detail-hero{
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:14px;
  margin-bottom:60px;
}
.room-detail-hero img{
  width:100%;height:100%;
  object-fit:cover;
  border-radius:4px;
}
.room-detail-hero .main-shot{aspect-ratio:4/3;}
.room-detail-hero .side-shots{
  display:grid;
  grid-template-rows:1fr 1fr;
  gap:14px;
}
.room-detail-hero .side-shots img{aspect-ratio:auto;height:100%;}
@media (max-width:768px){
  .room-detail-hero{grid-template-columns:1fr;}
}

.spec-table{
  width:100%;
  border-collapse:collapse;
  font-size:13.5px;
  max-width:560px;
  margin:0 auto;
}
.spec-table td{
  padding:14px 0;
  border-bottom:1px solid var(--line);
  vertical-align:top;
}
.spec-table td:first-child{
  width:120px;
  color:#888;
  font-family:'Poppins',sans-serif;
  font-size:11px;
  letter-spacing:0.08em;
}

/* ===== FACILITY ===== */
.facility-bg{background:var(--sand);}
.facility-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}
.facility-item{text-align:center;}
.facility-item .ficon{
  width:48px;height:48px;
  margin:0 auto 18px;
  display:flex;align-items:center;justify-content:center;
}
.facility-item h4{
  font-family:'Poppins',sans-serif;
  font-weight:500;
  font-size:16px;
  letter-spacing:0.05em;
  margin-bottom:10px;
}
.facility-item p{font-size:13px;color:var(--muted);}
@media (max-width:768px){
  .facility-grid{grid-template-columns:1fr;gap:48px;}
}

.facility-gallery{
  margin-top:80px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.facility-gallery img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:4px;
}
@media (max-width:768px){
  .facility-gallery{grid-template-columns:1fr 1fr;}
}

/* ===== ACCESS ===== */
.access-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}
.access-card h3{
  font-family:'Poppins',sans-serif;
  font-weight:500;
  font-size:20px;
  margin-bottom:14px;
  display:flex;
  align-items:center;
  gap:10px;
}
.access-card .dot{width:9px;height:9px;border-radius:50%;background:var(--accent);}
.access-card table{width:100%;font-size:13.5px;border-collapse:collapse;}
.access-card table td{
  padding:10px 0;
  border-bottom:1px solid var(--line);
  vertical-align:top;
}
.access-card table td:first-child{
  width:90px;
  color:#888;
  font-family:'Poppins',sans-serif;
  font-size:11px;
  letter-spacing:0.08em;
}
.access-map-frame{
  width:100%;
  aspect-ratio:16/10;
  border-radius:4px;
  overflow:hidden;
  background:var(--sand);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#999;
  font-family:'Poppins',sans-serif;
  font-size:12px;
  letter-spacing:0.1em;
  margin-top:24px;
}
@media (max-width:768px){
  .access-grid{grid-template-columns:1fr;gap:48px;}
}

/* ===== NEWS ===== */
.news-list{
  max-width:760px;
  margin:0 auto;
}
.news-item{
  display:flex;
  gap:28px;
  padding:24px 0;
  border-bottom:1px solid var(--line);
  align-items:baseline;
}
.news-item a.news-item{display:flex;}
.news-date{
  font-family:'Poppins',sans-serif;
  font-size:12px;
  letter-spacing:0.05em;
  color:#999;
  flex-shrink:0;
  width:96px;
}
.news-tag{
  font-size:11px;
  letter-spacing:0.05em;
  padding:3px 10px;
  border-radius:999px;
  flex-shrink:0;
  font-family:'Poppins',sans-serif;
  background:var(--accent-soft);
  color:var(--accent);
}
.news-tag.info{background:#eee;color:#777;}
.news-text{font-size:14px;}

.news-detail-body{
  max-width:680px;
  margin:0 auto;
  font-size:15px;
}
.news-detail-body p{margin-bottom:1.4em;}
.news-detail-meta{
  text-align:center;
  margin-bottom:48px;
  padding-bottom:32px;
  border-bottom:1px solid var(--line);
}

/* ===== CONTACT / FOOTER CTA ===== */
.cta{
  background:var(--ink);
  color:var(--white);
  text-align:center;
}
.cta .section-title{color:var(--white);}
.cta-buttons{
  display:flex;
  gap:18px;
  justify-content:center;
  margin-top:36px;
  flex-wrap:wrap;
}
.cta-btn{
  padding:16px 38px;
  border:1px solid rgba(255,255,255,0.4);
  border-radius:999px;
  font-family:'Poppins',sans-serif;
  font-size:12px;
  letter-spacing:0.15em;
  transition:all 0.3s ease;
}
.cta-btn:hover{background:var(--white);color:var(--ink);}
.cta-btn.filled{background:var(--white);color:var(--ink);}
.cta-btn.filled:hover{background:transparent;color:var(--white);}

footer{
  background:var(--ink);
  color:rgba(255,255,255,0.6);
  text-align:center;
  padding:32px 6vw 48px;
  font-size:11px;
  letter-spacing:0.05em;
}
footer a{opacity:0.85;}
footer a:hover{opacity:1;text-decoration:underline;}

@media (max-width:768px){
  section{padding:80px 6vw;}
}

/* ===== UTILITY ===== */
.btn-outline{
  display:inline-block;
  padding:14px 34px;
  border:1px solid var(--accent);
  color:var(--accent);
  border-radius:999px;
  font-family:'Poppins',sans-serif;
  font-size:12px;
  letter-spacing:0.12em;
  transition:all 0.3s ease;
}
.btn-outline:hover{background:var(--accent);color:var(--white);}

/* ===========================================================
   MOTION SYSTEM — elegant, restrained
   Principles: slow easing, small distances, no bounce/overshoot,
   everything respects prefers-reduced-motion.
   =========================================================== */

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration:0.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.001ms !important;
    scroll-behavior:auto !important;
  }
}

/* --- Scroll reveal: fade + small rise, staggered by data-delay --- */
.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity 1.1s cubic-bezier(.16,.84,.44,1), transform 1.1s cubic-bezier(.16,.84,.44,1);
  transition-delay:var(--reveal-delay, 0s);
  will-change:opacity, transform;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* Stagger helper for grids/lists: children fade in slightly offset */
.reveal-group > *{
  opacity:0;
  transform:translateY(18px);
  transition:opacity 0.9s cubic-bezier(.16,.84,.44,1), transform 0.9s cubic-bezier(.16,.84,.44,1);
}
.reveal-group.is-visible > *{opacity:1;transform:translateY(0);}
.reveal-group.is-visible > *:nth-child(1){transition-delay:0.02s;}
.reveal-group.is-visible > *:nth-child(2){transition-delay:0.10s;}
.reveal-group.is-visible > *:nth-child(3){transition-delay:0.18s;}
.reveal-group.is-visible > *:nth-child(4){transition-delay:0.26s;}
.reveal-group.is-visible > *:nth-child(5){transition-delay:0.34s;}
.reveal-group.is-visible > *:nth-child(6){transition-delay:0.42s;}

/* --- Hero entrance (on load, not scroll) --- */
.hero-eyebrow, .hero-title, .hero-sub, .hero-locations,
.split-logo, .split-tagline, .split-buttons,
.page-hero-eyebrow, .page-hero-title, .breadcrumb{
  opacity:0;
  animation:riseIn 1.2s cubic-bezier(.16,.84,.44,1) forwards;
}
.hero-eyebrow, .page-hero-eyebrow{animation-delay:0.15s;}
.hero-title, .page-hero-title{animation-delay:0.32s;}
.hero-sub{animation-delay:0.52s;}
.hero-locations{animation-delay:0.7s;}
.split-logo{animation-delay:0.2s;}
.split-tagline{animation-delay:0.45s;}
.split-buttons{animation-delay:0.65s;}
.breadcrumb{animation-delay:0.55s;}

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

/* --- Hero photo: slow ambient zoom, never loops jarringly --- */
.hero img, .page-hero img, .split-side img.bg-photo{
  animation:slowZoom 26s ease-in-out infinite alternate;
}
@keyframes slowZoom{
  from{transform:scale(1);}
  to{transform:scale(1.045);}
}

/* --- Logo gentle float (ambient, very small amplitude) --- */
.split-logo{
  animation:riseIn 1.2s cubic-bezier(.16,.84,.44,1) forwards, floatY 7s ease-in-out 1.4s infinite;
}
@keyframes floatY{
  0%, 100%{transform:translateY(0);}
  50%{transform:translateY(-6px);}
}

/* --- Header: soft fade-in of the bar itself, not just contents --- */
header{
  animation:headerFade 0.9s ease-out 0.1s both;
}
@keyframes headerFade{
  from{opacity:0;transform:translateY(-6px);}
  to{opacity:1;transform:translateY(0);}
}

/* --- Links / nav: refined underline sweep (already has width transition; add ease) --- */
nav a::after{
  transition:width 0.4s cubic-bezier(.16,.84,.44,1);
}

/* --- Buttons: soften existing hover transitions, add subtle lift --- */
.cta-btn, .split-btn, .btn-outline, .loc-pill{
  transition:all 0.45s cubic-bezier(.16,.84,.44,1);
}
.cta-btn:hover, .split-btn:hover, .btn-outline:hover, .loc-pill:hover{
  transform:translateY(-2px);
}

/* --- Property / room cards: refined hover lift + shadow bloom --- */
.property-card, .room-unit{
  transition:transform 0.6s cubic-bezier(.16,.84,.44,1);
}
.property-card:hover, .room-unit:hover{
  transform:translateY(-4px);
}
.property-card img, .room-unit img{
  transition:transform 0.9s cubic-bezier(.16,.84,.44,1);
}

/* --- Facility icons: faint draw-in feel via opacity/scale on reveal --- */
.facility-item .ficon svg{
  transition:transform 0.6s cubic-bezier(.16,.84,.44,1);
}
.facility-item:hover .ficon svg{
  transform:scale(1.08);
}

/* --- News rows: gentle slide-right on hover, refined --- */
.news-item{
  transition:transform 0.45s cubic-bezier(.16,.84,.44,1), border-color 0.45s ease;
}
.news-item:hover{
  transform:translateX(6px);
}

/* --- Section dividers / dots: soft pulse for active state only --- */
.subnav a.active{
  position:relative;
}
.subnav a.active::after{
  content:"";
  position:absolute;
  bottom:-1px;left:0;right:0;
  height:2px;
  background:var(--accent);
  animation:underlineGrow 0.5s cubic-bezier(.16,.84,.44,1);
}
@keyframes underlineGrow{
  from{transform:scaleX(0);}
  to{transform:scaleX(1);}
}

/* --- Page transition overlay (fade to white/ink on navigation) --- */
.page-transition{
  position:fixed;
  inset:0;
  background:var(--ink);
  z-index:9999;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.5s ease;
}
.page-transition.active{
  opacity:1;
  pointer-events:all;
}

/* --- Scroll cue: refined breathing dot instead of hard reset --- */
.scroll-line{
  animation:scrolldown 2.2s cubic-bezier(.45,0,.55,1) infinite;
}

/* ===========================================================
   STYLISH MAP EMBED
   =========================================================== */
.map-frame{
  position:relative;
  width:100%;
  aspect-ratio:16/10;
  border-radius:6px;
  overflow:hidden;
  margin-top:24px;
  background:var(--sand);
  box-shadow:0 18px 50px -22px rgba(0,0,0,0.28);
}
.map-frame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
  filter:grayscale(0.45) contrast(1.04) saturate(0.85);
  transition:filter 0.6s ease;
}
.map-frame:hover iframe{
  filter:grayscale(0.1) contrast(1.02) saturate(1);
}
.map-frame::after{
  content:"";
  position:absolute;
  inset:0;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:6px;
  pointer-events:none;
}
.map-pin-label{
  position:absolute;
  top:14px;left:14px;
  z-index:5;
  background:rgba(255,255,255,0.92);
  color:var(--ink);
  font-family:'Poppins',sans-serif;
  font-size:11px;
  letter-spacing:0.1em;
  padding:8px 14px;
  border-radius:999px;
  display:flex;
  align-items:center;
  gap:6px;
  box-shadow:0 6px 18px -8px rgba(0,0,0,0.3);
  pointer-events:none;
}
.map-pin-label .pin-dot{
  width:7px;height:7px;border-radius:50%;
  background:var(--accent);
  flex-shrink:0;
}
.map-open-link{
  position:absolute;
  bottom:14px;right:14px;
  z-index:5;
  background:rgba(20,20,18,0.78);
  color:var(--white);
  font-family:'Poppins',sans-serif;
  font-size:10.5px;
  letter-spacing:0.1em;
  padding:9px 16px;
  border-radius:999px;
  backdrop-filter:blur(3px);
  transition:background 0.3s ease;
}
.map-open-link:hover{background:var(--accent);}

/* ===========================================================
   EXPERIENCES (things to do nearby)
   =========================================================== */
.experience-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.experience-card{
  position:relative;
  border-radius:6px;
  overflow:hidden;
  aspect-ratio:3/4;
  background:#eee;
}
.experience-card img{
  position:absolute;
  inset:0;
  width:100%;height:100%;
  object-fit:cover;
  transition:transform 0.8s cubic-bezier(.16,.84,.44,1);
}
.experience-card:hover img{transform:scale(1.06);}
.experience-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.05) 45%, rgba(10,10,10,0.82) 100%);
}
.experience-body{
  position:absolute;
  bottom:0;left:0;right:0;
  z-index:2;
  padding:22px;
  color:var(--white);
}
.experience-tag{
  font-family:'Poppins',sans-serif;
  font-size:10px;
  letter-spacing:0.18em;
  opacity:0.85;
  margin-bottom:8px;
  display:block;
}
.experience-title{
  font-family:'Poppins',sans-serif;
  font-weight:500;
  font-size:17px;
  letter-spacing:0.02em;
  margin-bottom:8px;
}
.experience-desc{
  font-size:12px;
  line-height:1.7;
  opacity:0.9;
  max-width:240px;
}
@media (max-width:900px){
  .experience-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:560px){
  .experience-grid{grid-template-columns:1fr;}
  .experience-card{aspect-ratio:4/3;}
}

/* ===========================================================
   BOOK HERE BUTTON (room cards)
   =========================================================== */
.book-here-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:28px;
  padding:14px 32px;
  background:var(--accent);
  color:var(--white);
  border-radius:999px;
  font-family:'Poppins',sans-serif;
  font-size:12px;
  letter-spacing:0.14em;
  transition:all 0.45s cubic-bezier(.16,.84,.44,1);
}
.book-here-btn:hover{
  background:var(--ink);
  transform:translateY(-2px);
  box-shadow:0 10px 24px -10px rgba(0,0,0,0.4);
}
.book-here-btn svg{width:14px;height:14px;flex-shrink:0;}

/* ===========================================================
   SITE FOOTER (full link list, replaces simple footer on inner pages)
   =========================================================== */
.site-footer{
  background:var(--ink);
  color:rgba(255,255,255,0.65);
  padding:64px 6vw 28px;
}
.site-footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:48px;
  max-width:1100px;
  margin:0 auto 40px;
}
.site-footer-brand{
  font-family:'Poppins',sans-serif;
  font-weight:600;
  font-size:15px;
  letter-spacing:0.16em;
  color:var(--white);
  margin-bottom:14px;
}
.site-footer-brand .property-tag{
  font-size:10px;
  letter-spacing:0.15em;
  padding:3px 10px;
  border-radius:999px;
  background:var(--accent);
  color:var(--white);
  font-weight:500;
  margin-left:8px;
}
.site-footer-desc{
  font-size:12.5px;
  line-height:1.9;
  max-width:280px;
  color:rgba(255,255,255,0.55);
}
.site-footer-col h5{
  font-family:'Poppins',sans-serif;
  font-size:11px;
  letter-spacing:0.16em;
  color:rgba(255,255,255,0.45);
  margin-bottom:18px;
}
.site-footer-col ul{list-style:none;}
.site-footer-col li{margin-bottom:11px;}
.site-footer-col a{
  font-size:13px;
  color:rgba(255,255,255,0.75);
  transition:color 0.3s ease, padding-left 0.3s ease;
  display:inline-block;
}
.site-footer-col a:hover{color:var(--white);padding-left:4px;}
.site-footer-bottom{
  border-top:1px solid rgba(255,255,255,0.12);
  padding-top:24px;
  max-width:1100px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  font-size:11px;
  letter-spacing:0.04em;
  color:rgba(255,255,255,0.4);
}
.site-footer-bottom a{color:rgba(255,255,255,0.6);}
.site-footer-bottom a:hover{color:var(--white);}
@media (max-width:768px){
  .site-footer-grid{grid-template-columns:1fr;gap:32px;}
}


