:root {
  --orange: #f36f25;
  --orange-dark: #d45a14;
  --navy: #303e8d;
  --navy-deep: #1b2458;
  --navy-mid: #3d4ca3;
  --ink: #1c1c1c;
  --muted: #5a5a5a;
  --paper: #fffdf9;
  --cream: #f7f0e6;
  --line: #e5d6c4;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(12, 16, 40, 0.45);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  background: #12162b;
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a { color: inherit; }

.chrome-bar,
.chrome-foot {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: #0e1224;
  color: #fff;
  z-index: 20;
}

.chrome-bar { justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.08); }
.chrome-foot { justify-content: center; border-top: 1px solid rgba(255,255,255,.08); gap: 8px; flex-wrap: wrap; }

.brand-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mini img { width: 42px; height: 42px; }

.brand-mini strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  letter-spacing: .08em;
  font-weight: 700;
}

.brand-mini strong span { color: var(--orange); }

.chrome-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 3px;
  font: 600 13px/1 "Source Sans 3", sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  background: var(--navy);
}

.btn:hover { background: var(--navy-mid); }
.btn-orange { background: var(--orange); }
.btn-orange:hover { background: var(--orange-dark); }
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-icon { min-width: 38px; padding: 0 10px; }

.stage {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px 8px;
  background:
    radial-gradient(1200px 500px at 50% 0%, rgba(243,111,37,.16), transparent 55%),
    linear-gradient(180deg, #171b32 0%, #0c1020 100%);
}

#book {
  margin: 0 auto;
  width: min(1100px, 100%);
  height: 100%;
}

.stf__parent {
  width: 100% !important;
  height: 100% !important;
}

.page {
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.sheet {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 6px;
  flex: 0 0 auto;
}

.sheet-header img { height: 28px; width: auto; }

.kicker {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
}

.sheet-body {
  flex: 1;
  padding: 0 18px 8px;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.sheet-body h2 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.05;
  color: var(--navy-deep);
  font-weight: 700;
}

.sheet-body h2.orange { color: var(--orange); }

.lede, .copy, .fine {
  margin: 0 0 8px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--muted);
}

.lede { color: var(--ink); font-size: 13.5px; }

.fine { font-size: 11px; }

.photo {
  width: 100%;
  object-fit: cover;
  background: #ddd;
}

.photo-block {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  margin: 6px 0 8px;
}

.photo-block img,
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-grid {
  display: grid;
  gap: 6px;
  flex: 1;
  min-height: 0;
}

.g2 { grid-template-columns: 1fr 1fr; }
.g2-rows { grid-template-rows: 1fr 1fr; }
.span2 { grid-column: 1 / -1; }

.page-no {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.rule {
  height: 3px;
  width: 54px;
  background: var(--orange);
  margin: 0 0 10px;
}

.list {
  margin: 0;
  padding: 0 0 0 16px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink);
}

.list li { margin: 0 0 4px; }

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 6px 0 8px;
}

.pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 4px 8px;
  color: var(--navy);
  background: #fff;
}

.cta-row { display: flex; gap: 6px; margin-top: auto; padding-bottom: 22px; }

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cta.navy { background: var(--navy); }
.cta:hover { filter: brightness(1.05); }

.price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  color: var(--orange);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 2px;
}

.price small {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .04em;
  margin-top: 3px;
}

.room-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
}

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

.room-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 8px 8px 6px;
  background: linear-gradient(transparent, rgba(12,16,40,.88));
  color: #fff;
  font-size: 12px;
}

.room-card strong { display: block; font-size: 13px; }
.room-card span { color: #ffd2b3; font-weight: 700; }

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
  margin: 0 0 10px;
}

.table th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 6px 7px;
}

.table td {
  border: 1px solid #d9e0f4;
  padding: 5px 7px;
}

.table tr:nth-child(even) td { background: #f3f5fb; }

.table .pkg { color: var(--orange); font-weight: 700; }

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin: 0 0 10px;
}

.stat {
  background: var(--navy);
  color: #fff;
  padding: 8px 8px 7px;
  text-align: center;
}

.stat b {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  line-height: 1;
}

.stat span {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
}

.toc {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  background: none;
  border: 0;
  border-bottom: 1px dotted var(--line);
  padding: 5px 0;
  font: 600 12.5px/1.2 "Source Sans 3", sans-serif;
  color: var(--navy-deep);
  cursor: pointer;
  text-align: left;
}

.toc button:hover { color: var(--orange); }
.toc em { font-style: normal; color: var(--orange); }

.cover, .back {
  background: #141828;
  color: #fff;
}

.cover-photo, .back-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,24,40,.15) 0%, rgba(20,24,40,.2) 38%, rgba(16,20,40,.92) 72%);
}

.cover-inner, .back-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 22px 26px;
}

.cover-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.cover-brand img { width: 58px; height: 58px; }

.cover-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  letter-spacing: .12em;
  font-weight: 700;
  line-height: .95;
}

.cover-name span { color: var(--orange); display: block; font-size: 22px; letter-spacing: .28em; }

.script {
  font-family: "Great Vibes", cursive;
  font-size: 28px;
  color: #ffd7b8;
  margin: 4px 0 8px;
  line-height: 1.1;
}

.cover-meta {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #d7dcef;
}

.hint {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
  margin: 0 0 8px;
  font-size: 12px;
}

.amenity-grid div { padding: 5px 0; border-bottom: 1px solid var(--line); }

.quote-box {
  background: var(--orange);
  color: #fff;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.4;
  margin: 6px 0 8px;
}

.contact-list {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  font-size: 13px;
}

.contact-list li { margin: 0 0 7px; }
.contact-list a { color: var(--navy); font-weight: 600; text-decoration: none; }
.contact-list a:hover { color: var(--orange); }
.contact-list small { display: block; color: var(--muted); font-size: 11px; }

.socials { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0 16px; }
.socials a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  border: 1px solid var(--line);
  padding: 5px 8px;
}

.thumb-panel {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 58px;
  background: #0e1224;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 10px;
  z-index: 30;
  overflow-x: auto;
}

.thumb-panel.open { display: block; }

.thumbs {
  display: flex;
  gap: 8px;
  min-width: max-content;
}

.thumbs button {
  width: 86px;
  height: 54px;
  border: 2px solid transparent;
  background: #1c2240;
  color: #fff;
  font-size: 10px;
  cursor: pointer;
  text-align: left;
  padding: 6px;
  line-height: 1.2;
}

.thumbs button.on,
.thumbs button:hover { border-color: var(--orange); }

.page-label {
  min-width: 88px;
  text-align: center;
  font-size: 12px;
  color: #d7dcef;
  font-weight: 600;
}

body.embed .chrome-bar .brand-mini span,
body.embed .chrome-bar .hide-embed { display: none; }

.stf__parent { margin: 0 auto; }
.stf__item { background: var(--paper); box-shadow: 0 0 0 1px rgba(0,0,0,.04); }
.stf__outerShadow, .stf__innerShadow { pointer-events: none; }

@media (max-width: 720px) {
  .chrome-bar { padding: 8px 10px; }
  .brand-mini strong { font-size: 15px; }
  .stage { padding: 8px 4px; overflow: hidden; }
  .btn { min-height: 34px; font-size: 11px; padding: 0 10px; }
  .chrome-actions a[href^="tel"] { display: none; }
  .page-label { min-width: 72px; font-size: 11px; }
}

@media print {
  .chrome-bar, .chrome-foot, .thumb-panel { display: none !important; }
  body, html { background: #fff; }
}
