/* Hristi Accommodation — homepage styles (builds on colors_and_type.css)
   Booking-focused concept: dark glass header, warm-paper body, amber accents.
   Stack unchanged: CDN React + Babel, no build step. */

:root {
  /* Concept palette (warm paper + deep navy + amber) */
  --paper:    #FBF6EF;   /* main background */
  --sand:     #EFE2D1;   /* rooms section */
  --deep:     #142436;   /* header / hero / reviews */
  --deep-2:   #253B54;   /* hover on deep */
  --ink:      #172536;   /* primary text */
  --amber:    #D4945A;   /* primary CTA */
  --amber-d:  #C78348;   /* CTA hover */
  --amber-l:  #F2BE83;   /* accents on dark */
  --amber-ll: #F1C58D;   /* eyebrow on dark */
  --label:    #B57945;   /* labels / eyebrows on light */
  --muted:    #59697A;   /* secondary text */
  --muted-2:  #66717D;   /* tertiary text */
  --line:     #EADBC9;   /* warm hairline */
  --line-2:   #E0CBB4;   /* warm border */
  --field:    #E6D6C5;   /* input border */

  --r-md:  1.5rem;
  --r-lg:  2rem;
  --r-xl:  2.25rem;
  --maxw:  1180px;
}

html, body { background: var(--paper); color: var(--ink); }
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--amber); color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; }

/* Section label / eyebrow */
.elabel {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--label); margin-bottom: 1rem;
}
.elabel.light { color: var(--amber-ll); }

/* Generic photo block (gradient placeholder until real photos drop in) */
.photo {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background-size: cover; background-position: center;
}
.photo::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.30), transparent 50%);
}
/* The bright glare belongs only on the stand-in gradients, not real photos. */
.photo.is-gradient::after {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.45), transparent 28%),
    linear-gradient(to top, rgba(0,0,0,0.32), transparent 55%);
}
.photo.is-gradient { filter: saturate(0.72); }

/* Clickable photos — cursor, hover zoom-in cue, focus ring */
.photo.clickable { cursor: pointer; }
.photo.clickable:focus-visible { outline: 2px solid var(--accent, #F58A1F); outline-offset: 3px; }
.photo-zoom {
  position: absolute; top: 0.7rem; right: 0.7rem; z-index: 3;
  width: 32px; height: 32px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(20, 36, 54, 0.55); color: #fff;
  opacity: 0; transform: translateY(-4px) scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.photo-zoom svg { width: 15px; height: 15px; }
.photo.clickable:hover .photo-zoom,
.photo.clickable:focus-visible .photo-zoom { opacity: 1; transform: translateY(0) scale(1); }
.photo.clickable:hover { filter: brightness(1.04); }

/* Lightbox */
.lb {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 18, 28, 0.92);
  display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  animation: lb-in 0.2s ease;
}
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.lb-stage {
  margin: 0; max-width: min(1100px, 92vw); max-height: 88vh;
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
}
.lb-img {
  max-width: 100%; max-height: 80vh; object-fit: contain;
  border-radius: 8px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lb-cap { display: flex; align-items: center; gap: 1rem; color: #fff; }
.lb-label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.lb-count { font-size: 0.78rem; color: rgba(255, 255, 255, 0.6); }
.lb-close, .lb-nav {
  position: absolute; border: none; cursor: pointer;
  background: rgba(255, 255, 255, 0.1); color: #fff; border-radius: 50%;
  line-height: 1; display: grid; place-items: center;
  transition: background 0.2s ease;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255, 255, 255, 0.22); }
.lb-close { top: 1.1rem; right: 1.3rem; width: 44px; height: 44px; font-size: 1.7rem; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; }
.lb-prev { left: clamp(0.6rem, 2vw, 1.6rem); }
.lb-next { right: clamp(0.6rem, 2vw, 1.6rem); }
@media (max-width: 640px) {
  .lb-nav { width: 42px; height: 42px; font-size: 1.6rem; }
  .lb-close { width: 40px; height: 40px; }
}

/* ============================ Header ============================ */
.hd {
  position: fixed; left: 0; right: 0; top: 0; z-index: 50;
  background: rgba(20, 36, 54, 0.75);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: transform 0.35s var(--ease-out, ease), opacity 0.35s var(--ease-out, ease);
}
/* Slides up out of view once scrolled past the hero (reveals on scroll-up) */
.hd.hd-hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.hd-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.9rem clamp(1.25rem, 4vw, 2rem);
  max-width: var(--maxw); margin: 0 auto;
}
.hd-logo { display: flex; align-items: center; gap: 0.75rem; color: #fff; background: none; border: none; cursor: pointer; padding: 0; text-align: left; }
.hd-mark {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 1rem; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.10);
  font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem; color: #fff;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.25);
}
.hd-mark img { width: 26px; height: 26px; object-fit: contain; }
.hd-name { font-weight: 600; letter-spacing: 0.02em; line-height: 1.15; }
.hd-name small { display: block; font-weight: 500; font-size: 0.72rem; color: rgba(255,255,255,0.65); letter-spacing: 0.02em; }

.hd-nav { display: flex; align-items: center; gap: 2rem; }
.hd-link {
  position: relative; background: none; border: none; cursor: pointer; font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.75);
  transition: color 0.2s; padding-bottom: 2px;
}
.hd-link:hover { color: #fff; }
.hd-link.active { color: #fff; }
.hd-link.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  border-radius: 2px; background: var(--amber);
}

.hd-right { display: flex; align-items: center; gap: 0.75rem; }
.hd-lang {
  display: flex; padding: 3px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05);
}
.hd-lang button {
  border: none; cursor: pointer; background: transparent; color: rgba(255,255,255,0.75);
  font-family: var(--font-body); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.04em;
  padding: 4px 12px; border-radius: 999px; transition: background 0.2s, color 0.2s;
}
.hd-lang button.active { background: #fff; color: var(--ink); }
.btn-amber {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--amber); color: #fff; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  padding: 0.65rem 1.25rem; border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.btn-amber:hover { background: var(--amber-d); transform: translateY(-1px); }
.btn-amber svg { width: 1rem; height: 1rem; }

.hd-burger { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 4px; }
.hd-burger svg { width: 26px; height: 26px; }

.hd-mobile { display: none; }
.hd-mobile.open {
  display: grid; gap: 1rem; padding: 1.25rem clamp(1.25rem, 4vw, 2rem);
  background: var(--deep); border-top: 1px solid rgba(255,255,255,0.10); color: #fff;
}
.hd-mobile button {
  background: none; border: none; color: #fff; text-align: left; cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
}
.hd-mobile .btn-amber { justify-content: center; padding: 0.85rem; margin-top: 0.25rem; }

@media (max-width: 900px) {
  .hd-nav, .hd-right .hd-lang, .hd-right .btn-amber { display: none; }
  .hd-burger { display: block; }
}

/* ============================ Hero ============================ */
.hero {
  position: relative; overflow: hidden; background: var(--deep); color: #fff;
  padding-top: 7rem;
}
.hero-blob { position: absolute; border-radius: 999px; filter: blur(80px); pointer-events: none; }
.hero-blob.b1 { left: -14rem; top: -12rem; width: 520px; height: 520px; background: rgba(95,167,200,0.45); }
.hero-blob.b2 { right: -12rem; bottom: -18rem; width: 620px; height: 620px; background: rgba(212,148,90,0.35); }
/* Bottom fade between hero and About — disabled for now (hard edge). */
.hero-fade { display: none; }

.hero-grid {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 3.5rem; align-items: center;
  min-height: 760px; padding: 0 clamp(1.25rem, 4vw, 2rem) 6rem;
}
.hero-copy { animation: rise 0.7s var(--ease-out, ease) both; }
.hero h1 {
  font-family: var(--font-heading); font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 0.98; letter-spacing: -0.04em;
  margin: 0; max-width: 16ch; color: #fff;
}
.hero-sub { margin: 1.75rem 0 0; max-width: 36ch; font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,0.75); }
.hero-cta { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-cta .btn-amber { padding: 0.95rem 1.75rem; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 1.75rem; border-radius: 999px;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20); color: #fff;
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; cursor: pointer;
  backdrop-filter: blur(8px); transition: background 0.2s, transform 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.16); transform: translateY(-1px); }

.hero-photos { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; animation: fade 0.9s ease 0.1s both; }
.hero-photos .hp-main { grid-column: span 7; height: 520px; }
.hero-photos .hp-col { grid-column: span 5; display: grid; gap: 1rem; padding-top: 2.5rem; }
.hero-photos .hp-col .photo { height: 230px; }

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; min-height: 0; padding-bottom: 4rem; }
  .hero-photos { order: -1; }
  .hero-photos .hp-main { height: 320px; }
  .hero-photos .hp-col { padding-top: 0; }
  .hero-photos .hp-col .photo { height: 150px; }
}

/* ============================ Sections ============================ */
.sec { padding: clamp(4rem, 9vw, 6rem) clamp(1.25rem, 4vw, 2rem); }
.sec-head h2, .about-h, .rooms-h, .gal-h, .rev-h, .book-h {
  font-family: var(--font-heading); font-weight: 500; letter-spacing: -0.035em;
  font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.05; margin: 0; color: var(--ink);
}

/* ---------- About ---------- */
.about-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; }
.about-h { max-width: 16ch; }
.about-body { display: grid; gap: 1.75rem; }
.about-lede { font-size: 1.15rem; line-height: 1.75; color: var(--muted); margin: 0; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-card {
  border: 1px solid var(--line); background: #fff; border-radius: 1.75rem; padding: 1.5rem;
}
.about-card .ic { color: var(--label); width: 1.5rem; height: 1.5rem; margin-bottom: 1.25rem; }
.about-card h3 { font-family: var(--font-heading); font-weight: 600; font-size: 1.25rem; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
.about-card p { margin: 0.5rem 0 0; font-size: 0.98rem; line-height: 1.6; color: var(--muted-2); }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } .about-cards { grid-template-columns: 1fr; } }

/* ---------- Rooms ---------- */
.rooms { background: var(--sand); }
.rooms-top { max-width: var(--maxw); margin: 0 auto 3rem; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2rem; align-items: end; }
.rooms-h { max-width: 20ch; }
.rooms-sub { font-size: 1.15rem; line-height: 1.7; color: var(--muted); margin: 0; justify-self: end; max-width: 34ch; }
.rooms-body { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 1.5rem; align-items: start; }

.room-pick { display: grid; gap: 0.75rem; }
.room-tab {
  border: 1px solid var(--line-2); background: rgba(255,255,255,0.55); border-radius: var(--r-md);
  padding: 1.25rem; text-align: left; cursor: pointer; font-family: var(--font-body);
  transition: background 0.2s, border-color 0.2s;
}
.room-tab:hover { background: #fff; }
.room-tab.active { border-color: var(--amber); background: #fff; }
.room-tab-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.5rem; }
.room-tab-for { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--label); }
.room-tab-chev { color: #8B7864; width: 1.25rem; height: 1.25rem; }
.room-tab.active .room-tab-chev { color: var(--label); }
.room-tab-name { font-family: var(--font-heading); font-weight: 600; font-size: 1.5rem; letter-spacing: -0.03em; color: var(--ink); }
.room-tab-meta { margin-top: 0.5rem; font-size: 0.88rem; color: var(--muted-2); }

.room-card2 { overflow: hidden; border: 1px solid var(--line-2); background: #fff; border-radius: var(--r-xl); }
.room-card2 .photo { border-radius: 0; height: 360px; }
.room-card2-tag {
  position: absolute; left: 1.5rem; top: 1.5rem; z-index: 2;
  background: rgba(255,255,255,0.92); color: var(--ink);
  padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.85rem; font-weight: 700;
}
.room-card2-body { display: grid; grid-template-columns: 1fr 0.8fr; gap: 2rem; padding: 2.25rem; }
.room-tone { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--label); margin-bottom: 0.75rem; }
.room-card2 h3 { font-family: var(--font-heading); font-weight: 500; font-size: 2rem; letter-spacing: -0.04em; margin: 0; color: var(--ink); }
.room-desc { margin: 1rem 0 0; font-size: 1.05rem; line-height: 1.7; color: var(--muted); }
.room-req {
  margin-top: 1.75rem; display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--ink); color: #fff; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  padding: 0.8rem 1.5rem; border-radius: 999px; transition: background 0.2s;
}
.room-req:hover { background: var(--deep-2); }
.room-req svg { width: 1rem; height: 1rem; }
.room-incl { border-radius: var(--r-md); background: var(--paper); padding: 1.25rem; }
.room-incl-h { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--label); margin-bottom: 1rem; }
.room-incl ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.room-incl li { display: flex; align-items: center; gap: 0.75rem; color: #31445A; font-size: 0.95rem; }
.room-incl .tick { display: grid; place-items: center; width: 1.5rem; height: 1.5rem; border-radius: 999px; background: var(--amber); color: #fff; flex: 0 0 auto; }
.room-incl .tick svg { width: 0.85rem; height: 0.85rem; }
.room-view {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.25rem;
  background: none; border: none; cursor: pointer; font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--label);
}
@media (max-width: 900px) {
  .rooms-top { grid-template-columns: 1fr; }
  .rooms-sub { justify-self: start; }
  .rooms-body { grid-template-columns: 1fr; }
  .room-card2-body { grid-template-columns: 1fr; }
}

/* ---------- Gallery ---------- */
.gal-top { max-width: var(--maxw); margin: 0 auto 3rem; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 1.5rem; }
.gal-h { max-width: 16ch; }
.gal-sub { max-width: 30ch; font-size: 1.1rem; line-height: 1.7; color: var(--muted); margin: 0; }
.gal-stage { max-width: var(--maxw); margin: 0 auto; }
.gal-main {
  aspect-ratio: 16 / 9; border: 1px solid var(--line); border-radius: var(--r-lg);
  /* Fill the 16:9 frame; photos are cropped to cover (centered). */
  background-size: cover; background-position: center; background-color: var(--ink);
}
.gal-main-cap { position: absolute; left: 1.5rem; right: 1.5rem; bottom: 1.5rem; z-index: 2; color: #fff; }
.gal-main-cap .k { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.gal-main-cap .t { margin-top: 0.25rem; font-family: var(--font-heading); font-weight: 600; font-size: 1.75rem; letter-spacing: -0.03em; }
.gal-film { display: flex; gap: 1rem; overflow-x: auto; padding: 1.25rem 0 0.5rem; scrollbar-width: none; }
.gal-film::-webkit-scrollbar { display: none; }
.gal-thumb {
  position: relative; flex: 0 0 auto; width: 210px; height: 120px;
  border: 2px solid var(--line); border-radius: var(--r-md); overflow: hidden;
  cursor: pointer; padding: 0; background: none;
}
.gal-thumb.active { border-color: var(--amber); }
.gal-thumb .photo { border-radius: 0; height: 100%; width: 100%; }
.gal-thumb-dim { position: absolute; inset: 0; background: rgba(0,0,0,0.2); z-index: 1; }
.gal-thumb-cap { position: absolute; left: 0.75rem; right: 0.75rem; bottom: 0.75rem; z-index: 2; text-align: left; color: #fff; }
.gal-thumb-cap .t { font-size: 0.85rem; font-weight: 600; line-height: 1.2; }

/* ---------- Reviews ---------- */
.reviews { position: relative; overflow: hidden; background: var(--deep); color: #fff; }
.reviews .rev-blob { position: absolute; right: -12rem; top: -14rem; width: 520px; height: 520px; border-radius: 999px; background: rgba(212,148,90,0.20); filter: blur(80px); pointer-events: none; }
.rev-inner { position: relative; max-width: var(--maxw); margin: 0 auto; }
.rev-h { color: #fff; max-width: 22ch; margin-bottom: 3rem; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.rev-card {
  border: 1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.10);
  border-radius: var(--r-lg); padding: 1.75rem; backdrop-filter: blur(8px);
}
.rev-stars { display: flex; gap: 0.25rem; color: var(--amber-l); margin-bottom: 1.25rem; }
.rev-stars svg { width: 1rem; height: 1rem; }
.rev-quote { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.88); margin: 0; }
.rev-foot { margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: space-between; }
.rev-foot .nm { font-weight: 700; }
.rev-foot .or { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.rev-foot svg { width: 1.25rem; height: 1.25rem; color: var(--amber-l); }
.rev-card { opacity: 0; animation: revIn 0.6s var(--ease-out, ease) both; }
@keyframes revIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.rev-dots { display: flex; justify-content: center; gap: 0.6rem; margin-top: 2.5rem; }
.rev-dot {
  width: 28px; height: 4px; border-radius: 999px; border: none; padding: 0; cursor: pointer;
  background: rgba(255,255,255,0.25); transition: background 0.3s, width 0.3s;
}
.rev-dot:hover { background: rgba(255,255,255,0.45); }
.rev-dot.active { background: var(--amber-l); width: 40px; }
@media (max-width: 900px) {
  .rev-grid { grid-template-columns: 1fr; }
  .rev-card:nth-child(2), .rev-card:nth-child(3) { display: none; }
}
@media (prefers-reduced-motion: reduce) { .rev-card { animation: none; opacity: 1; } }

/* ---------- Book ---------- */
.book { background: var(--paper); }
/* ----- Things we can arrange (inside The place) ----- */
.about-arrange { margin-top: 2rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.about-arrange-label { display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--label); margin-bottom: 1.1rem; }
.about-arrange-items { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.about-arrange-item { display: flex; align-items: flex-start; gap: 0.85rem; }
.about-arrange-item .ix { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 999px; background: rgba(212,148,90,0.14); color: var(--amber); display: grid; place-items: center; }
.about-arrange-item .ix svg { width: 1.25rem; height: 1.25rem; }
.about-arrange-item strong { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; color: var(--ink); margin-bottom: 0.15rem; }
.about-arrange-item span { color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
@media (max-width: 560px) { .about-arrange-items { grid-template-columns: 1fr; gap: 1.1rem; } }

/* ----- Arrange note on the room page ----- */
.rd-arrange { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem; background: rgba(212,148,90,0.08); border: 1px solid var(--line); border-radius: var(--r-md); }
.rd-arrange .ix { flex: 0 0 auto; color: var(--amber); display: grid; place-items: center; }
.rd-arrange .ix svg { width: 1.25rem; height: 1.25rem; }
.rd-arrange p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.55; }

/* ----- Good to know (house essentials) ----- */
.book-know { margin-top: 1.75rem; }
.book-know-h { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--label); margin-bottom: 0.85rem; }
.book-know ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.book-know li { display: flex; align-items: center; gap: 0.65rem; color: var(--muted); font-size: 0.95rem; }
.book-know li svg { width: 1.1rem; height: 1.1rem; color: var(--amber); flex: 0 0 auto; }

/* ----- Map ----- */
.book-map { max-width: var(--maxw); margin: 3.25rem auto 0; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: #fff; }
.book-map-bar { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.5rem; padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--line); font-size: 0.9rem; color: var(--muted); }
.book-map-bar span { display: inline-flex; align-items: center; gap: 0.5rem; }
.book-map-bar svg { width: 1.05rem; height: 1.05rem; color: var(--amber); }
.book-map-bar a { color: var(--label); font-weight: 700; text-decoration: none; }
.book-map-bar a:hover { text-decoration: underline; text-underline-offset: 3px; }
.book-map iframe { display: block; width: 100%; height: 380px; border: 0; }
@media (max-width: 640px) { .book-map iframe { height: 300px; } }

.book-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2.5rem; align-items: start; }
.book-left { position: sticky; top: 7rem; }
.book-h { max-width: 18ch; }
.book-sub { margin: 1.5rem 0 0; max-width: 40ch; font-size: 1.1rem; line-height: 1.7; color: var(--muted); }
.book-info { margin-top: 2rem; display: grid; gap: 1rem; border: 1px solid var(--line); background: #fff; border-radius: var(--r-lg); padding: 1.5rem; }
.book-info a, .book-info div { display: flex; align-items: center; gap: 0.75rem; color: #4F5F70; font-size: 1rem; }
.book-info a:hover { color: var(--label); opacity: 1; }
.book-info svg { width: 1.25rem; height: 1.25rem; color: var(--label); flex: 0 0 auto; }
.book-socials { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.book-socials a {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.55rem 1.1rem; border: 1px solid var(--line-2); border-radius: 999px; color: var(--ink);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.book-socials a:hover { background: var(--amber); border-color: var(--amber); color: #fff; opacity: 1; }

.book-card { border: 1px solid var(--line); background: #fff; border-radius: var(--r-xl); padding: clamp(1.5rem, 3vw, 2rem); }
.book-card-kick {
  margin-bottom: 1.25rem; border-radius: var(--r-md); background: var(--ink); color: #fff; padding: 1rem 1.25rem;
}
.book-card-kick .k { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber-l); }
.book-card-kick .t { margin-top: 0.35rem; font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; line-height: 1.25; letter-spacing: -0.02em; }

.book-form2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.book-form2 label { display: grid; gap: 0.5rem; font-size: 0.85rem; font-weight: 700; color: #31445A; }
.book-form2 label.full { grid-column: 1 / -1; }
.book-form2 input, .book-form2 select, .book-form2 textarea {
  font-family: var(--font-body); font-weight: 400; font-size: 1rem; color: var(--ink);
  padding: 0.75rem 1rem; border: 1px solid var(--field); border-radius: var(--r-md);
  background: #fff; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.book-form2 input::placeholder, .book-form2 textarea::placeholder { color: #9aa6b2; }
.book-form2 input:focus, .book-form2 select:focus, .book-form2 textarea:focus {
  border-color: var(--amber); box-shadow: 0 0 0 4px rgba(212,148,90,0.10);
}
.book-form2 textarea { resize: vertical; min-height: 96px; }
.book-actions { grid-column: 1 / -1; margin-top: 0.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.book-form2 .submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  color: #fff; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  padding: 1rem; border-radius: 999px; transition: background 0.2s, transform 0.2s;
}
.book-form2 .submit:hover { transform: translateY(-1px); }
.book-form2 .submit svg { width: 1.15rem; height: 1.15rem; }
.book-form2 .submit.wa { background: #25D366; }
.book-form2 .submit.wa:hover { background: #1FB855; }
.book-form2 .submit.ig { background: #C13584; }
.book-form2 .submit.ig:hover { background: #A92C73; }
@media (max-width: 480px) { .book-actions { grid-template-columns: 1fr; } }
.book-note { grid-column: 1 / -1; margin: 0.75rem 0 0; text-align: center; font-size: 0.88rem; color: #7B8794; }
.book-note.book-error { color: #B4452F; }

.book-success { text-align: center; padding: 2.5rem 1rem; }
.book-success .ic { width: 64px; height: 64px; margin: 0 auto 1.25rem; border-radius: 999px; background: rgba(212,148,90,0.16); border: 1px solid rgba(212,148,90,0.5); display: grid; place-items: center; color: var(--amber); font-size: 1.75rem; }
.book-success h3 { font-family: var(--font-heading); font-weight: 600; font-size: 1.5rem; margin: 0 0 0.5rem; color: var(--ink); }
.book-success p { color: var(--muted); margin: 0 0 1.5rem; }
.book-again { background: none; border: 1px solid var(--line-2); border-radius: 999px; padding: 0.6rem 1.4rem; font-family: var(--font-body); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; color: var(--ink); transition: border-color 0.2s, color 0.2s; }
.book-again:hover { border-color: var(--amber); color: var(--label); }
.ig-actions { display: grid; gap: 0.65rem; max-width: 300px; margin: 0 auto 1.5rem; }
.ig-open { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; color: #fff; background: #C13584; border: none; cursor: pointer; font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; padding: 1rem; border-radius: 999px; transition: background 0.2s, transform 0.2s; }
.ig-open:hover { background: #A92C73; transform: translateY(-1px); }
.ig-open svg { width: 1.15rem; height: 1.15rem; }
.copy-again { background: none; border: none; cursor: pointer; color: var(--label); font-family: var(--font-body); font-weight: 700; font-size: 0.85rem; text-decoration: underline; text-underline-offset: 3px; }

.footer { max-width: var(--maxw); margin: 3.5rem auto 0; padding-top: 1.75rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem; font-size: 0.85rem; color: var(--muted-2); }
@media (max-width: 900px) {
  .book-grid { grid-template-columns: 1fr; }
  .book-left { position: static; }
  .book-form2 { grid-template-columns: 1fr; }
}

/* ============================ Room detail ============================ */
.rd-wrap { padding: 8rem clamp(1.25rem, 4vw, 2rem) 4rem; max-width: var(--maxw); margin: 0 auto; }
.rd-back {
  display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  color: var(--muted); background: none; border: none; cursor: pointer; font-family: var(--font-body);
  padding: 0; margin-bottom: 2.5rem; transition: color 0.2s;
}
.rd-back:hover { color: var(--label); }
.rd-back .arrow { transition: transform 0.2s; display: inline-block; }
.rd-back:hover .arrow { transform: translateX(-4px); }

.rd-hero { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: end; margin-bottom: 2.5rem; }
.rd-num { font-family: var(--font-heading); font-size: 0.9rem; color: var(--label); font-weight: 600; letter-spacing: 0.1em; margin-bottom: 0.6rem; }
.rd-name { font-family: var(--font-heading); font-weight: 500; font-size: clamp(2.2rem, 5.5vw, 4rem); line-height: 1; letter-spacing: -0.04em; margin: 0 0 1rem; color: var(--ink); }
.rd-name em { font-style: italic; }
.rd-teaser { font-size: 1.05rem; color: var(--muted); }

.rd-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 1.5rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 2.5rem; }
.rd-fact .k { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.rd-fact .v { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 500; margin-top: 0.4rem; letter-spacing: -0.01em; color: var(--ink); }
@media (max-width: 700px) { .rd-facts { grid-template-columns: repeat(2, 1fr); } }

.rd-gallery { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 160px; gap: 0.75rem; margin-bottom: 3rem; }
.rd-gallery > *:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.rd-gallery > *:nth-child(2) { grid-column: span 2; }
.rd-gallery > *:nth-child(3) { grid-column: span 2; }
.rd-gallery > *:nth-child(4) { grid-column: span 3; }
.rd-gallery > *:nth-child(5) { grid-column: span 3; }
.rd-gallery > * { position: relative; border-radius: var(--r-md); overflow: hidden; }
.rd-gallery .lbl { position: absolute; left: 0.9rem; bottom: 0.75rem; z-index: 2; color: #fff; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }
@media (max-width: 800px) {
  .rd-gallery { grid-template-columns: repeat(2, 1fr); }
  .rd-gallery > *:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .rd-gallery > *:nth-child(1) { grid-column: 1 / -1; grid-row: span 2; }
}

.rd-body { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 4rem); margin-bottom: 3rem; }
@media (max-width: 800px) { .rd-body { grid-template-columns: 1fr; } }
.rd-section-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 1rem; color: var(--ink); }
.rd-description { font-size: 1.1rem; line-height: 1.75; color: var(--muted); }
.rd-amen { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 1.5rem; }
.rd-amen li { font-size: 0.95rem; display: flex; align-items: center; gap: 0.65rem; color: var(--ink); }
.rd-amen-ic { flex: 0 0 auto; width: 1.15rem; height: 1.15rem; color: var(--amber); }
.rd-cta-row { display: flex; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.rd-cta { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--ink); color: #fff; border: none; border-radius: 999px; padding: 0.85rem 1.75rem; font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: background 0.2s; }
.rd-cta:hover { background: var(--amber); }

/* ============================ Reveal ============================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease-out, ease), transform 0.8s var(--ease-out, ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01s !important; transition-duration: 0.01s !important; }
  .reveal { opacity: 1; transform: none; }
}
