/* ===========================================================
   Escape The Space — clean, light & airy theme
   =========================================================== */

:root {
  --bg: #fbfaf7;
  --bg-soft: #f3f1ea;
  --surface: #ffffff;
  --ink: #0a0a0a;          /* brand black */
  --ink-soft: #4a4a44;
  --line: #e6e4da;
  --accent: #faec17;       /* brand yellow */
  --accent-dark: #e0d200;  /* darker yellow (hover) */
  --accent-soft: #fdf7b0;  /* soft yellow highlight */
  --gold: #f2d800;
  --radius: 16px;
  --radius-lg: 26px;
  --shadow: 0 10px 40px rgba(28, 28, 26, 0.07);
  --shadow-soft: 0 4px 18px rgba(28, 28, 26, 0.05);
  --maxw: 1120px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  font-weight: 800;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-color: var(--accent); }
p a, .info-list a, .addon-list a, details.faq p a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  text-decoration-color: var(--accent);
  font-weight: 600;
}

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

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

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--accent);
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 56ch; }

.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #0a0a0a; box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16); }
.btn-primary:hover { background: #0a0a0a; color: var(--accent); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.12rem;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: #0a0a0a;
  color: var(--accent);
  display: grid; place-items: center;
  font-weight: 800; font-size: 1rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}
.brand .brand-logo {
  width: 40px; height: 40px;
  display: block;
  flex: 0 0 auto;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.96rem;
}
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-links a.active { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; font-size: 1.5rem; color: var(--ink);
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 16px;
    box-shadow: var(--shadow-soft);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav .nav-cta .btn-ghost { display: none; }
  .nav .nav-cta .btn-primary { padding: 9px 17px; font-size: 0.85rem; box-shadow: none; }
  .nav-cta { gap: 6px; }
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }
.section-tight { padding: 56px 0; }

/* ---------- Hero ---------- */
.hero {
  padding: 26px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
  align-items: center;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.chip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-art {
  background:
    radial-gradient(120% 120% at 100% 0%, #fff8c9 0%, var(--bg-soft) 55%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
}
.hero-art .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.stat .num { font-size: 2rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.stat .label { font-size: 0.82rem; color: var(--ink-soft); font-weight: 600; }
.hero-note {
  margin-top: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* brand splash band — logo links home; CLICK ME toggles light/dark */
.brand-splash { background: #0a0a0a; padding: 22px 20px 20px; }
.brand-splash-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.brand-splash-logo { display: block; }
.brand-splash-img { width: 100%; max-width: 640px; height: auto; display: block; transition: transform 0.15s ease; }
.brand-splash-logo:hover .brand-splash-img { transform: scale(1.015); }
.brand-splash-cta {
  background: var(--accent); color: #0a0a0a; font-weight: 800; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 18px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(250, 236, 23, 0.25); transition: background 0.15s ease, transform 0.15s ease;
  border: none; cursor: pointer; font-family: inherit;
}
.brand-splash-cta:hover { background: #fff; transform: translateY(-1px); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: 0.97rem; }
.card .tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--accent-soft);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 14px;
}

/* room card */
.room-card { padding: 0; overflow: hidden; }
.room-card .room-body { padding: 24px 26px 28px; }
.room-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.room-card .room-emoji {
  font-size: 2rem;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: var(--bg-soft);
  border-radius: 14px;
  margin-bottom: 16px;
}
.room-meta { display: flex; gap: 16px; margin-top: 16px; font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }
.room-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Pricing ---------- */
.price-card { text-align: center; position: relative; }
.price-card.featured { border-color: var(--ink); border-width: 2px; box-shadow: var(--shadow); }
.price-card .ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #0a0a0a;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
}
.price-card .amount { font-size: 3rem; font-weight: 800; letter-spacing: -0.03em; margin: 6px 0 2px; }
.price-card .amount small { font-size: 1rem; color: var(--ink-soft); font-weight: 600; }
.price-card .sub { font-size: 0.92rem; color: var(--ink-soft); }
.addon-list { list-style: none; padding: 0; margin: 0; }
.addon-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.addon-list li:last-child { border-bottom: none; }
.addon-list .name { font-weight: 700; color: var(--ink); }
.addon-list .desc { font-size: 0.9rem; color: var(--ink-soft); }
.addon-list .cost { font-weight: 800; color: #0a0a0a; background: var(--accent-soft); padding: 2px 9px; border-radius: 6px; white-space: nowrap; }

/* ---------- Info rows ---------- */
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.info-list li:last-child { border-bottom: none; }
.info-list .ico { font-size: 1.2rem; line-height: 1.5; }
.info-list strong { color: var(--ink); }

/* ---------- FAQ ---------- */
details.faq {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 22px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
}
details.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink);
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--ink); font-weight: 400; }
details.faq[open] summary::after { content: "\2013"; }
details.faq p { padding-bottom: 16px; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: #050505;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.74); max-width: 52ch; margin-left: auto; margin-right: auto; }

/* ---------- Booking embed ---------- */
.book-frame-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 10px;
  overflow: hidden;
}
.book-frame-wrap iframe {
  width: 100%;
  min-height: 760px;
  border: 0;
  border-radius: var(--radius);
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-grid h4 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-soft); margin-bottom: 14px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: var(--ink-soft); font-weight: 500; font-size: 0.95rem; }
.footer-grid a:hover { color: var(--ink); }
.footer-about p { font-size: 0.95rem; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.86rem; color: var(--ink-soft);
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
}

/* ---------- Page header ---------- */
.page-head {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 64px 0 56px;
}
.page-head .lead { margin-top: 6px; }

/* ---------- Lightbulb toggle + Dark mode ---------- */
.brand-logo { cursor: pointer; transition: filter 0.3s ease, transform 0.2s ease; }
.brand-logo:hover { transform: scale(1.06); }

body, .site-header, .card, .chip, .hero-art, .hero-note, .stat,
.book-frame-wrap, details.faq, .page-head, section, .site-footer {
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

html.dark {
  --bg: #0b0b0b;
  --bg-soft: #151514;
  --surface: #1b1b19;
  --ink: #f4f3ee;
  --ink-soft: #b6b5ac;
  --line: #2c2c28;
  --accent-soft: #4a4520;
}
html.dark body { background: var(--bg); }
html.dark .site-header { background: rgba(11, 11, 11, 0.82); }
html.dark .hero-art {
  background: radial-gradient(120% 120% at 100% 0%, #2a2710 0%, var(--bg-soft) 55%);
}
html.dark .brand-logo { filter: drop-shadow(0 0 8px rgba(250, 236, 23, 0.6)); }
html.dark .cta-band { border: 1px solid var(--line); }
html.dark .card .tag { color: var(--accent); }
html.dark .addon-list .cost { color: var(--accent); }
html.dark .chip { box-shadow: none; }

/* utilities */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--ink-soft); }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
