/* =========================================================
   HOTEL REVIEW PAGE — extends styles.css
   ========================================================= */

/* Top utility strip */
.utility-bar {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  font-size: 12px;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.utility-bar .live::before {
  content: ""; display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--warm);
  margin-right: 8px; vertical-align: 1px;
}

/* Breadcrumb */
.crumbs {
  padding: 24px 0 8px;
  font-size: 13px;
  color: var(--muted);
}
.crumbs a { color: var(--muted); transition: color 160ms; }
.crumbs a:hover { color: var(--teal); }
.crumbs .sep { margin: 0 10px; opacity: 0.5; }
.crumbs .here { color: var(--ink); font-weight: 500; }

/* =========================================================
   REVIEW HERO
   ========================================================= */
.review-hero {
  padding: 24px 0 56px;
}
.review-hero .lockup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.review-hero .lead {
  display: flex; flex-direction: column;
  padding-top: 24px;
  padding-bottom: 12px;
}
.review-hero .award {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--warm-soft);
  color: var(--ink-2);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  align-self: flex-start;
  margin-bottom: 22px;
}
.review-hero .award .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--warm); }
.review-hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 5.4vw, 76px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
  text-wrap: balance;
}
.review-hero h1 em { font-style: italic; color: var(--teal); font-weight: 500; }
.review-hero .deck {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.4;
  color: var(--ink-2);
  margin: 0 0 28px;
  max-width: 540px;
}
.review-hero .meta-row {
  display: flex; gap: 20px; align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}
.review-hero .meta-row .dot { width: 3px; height: 3px; background: var(--muted-2); border-radius: 50%; }
.review-hero .meta-row svg { color: var(--teal); }
.review-hero .author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
  margin-top: auto;
  font-size: 14px;
}
.review-hero .author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.review-hero .author .name { color: var(--ink); font-weight: 600; }
.review-hero .author .role { color: var(--muted); font-size: 13px; }

.hero-photo-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream);
}
.hero-photo-wrap .photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-photo-wrap .score-bubble {
  position: absolute;
  top: 22px; left: 22px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
}
.score-bubble .num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.score-bubble .num small {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 2px;
}
.score-bubble .word {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}
.score-bubble .stars {
  font-size: 12px;
  color: var(--warm);
  letter-spacing: 0.05em;
}
.hero-photo-wrap .gallery-btn {
  position: absolute;
  bottom: 22px; right: 22px;
  background: rgba(255,255,255,0.95);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.gallery-strip .thumb {
  aspect-ratio: 4 / 3;
  border-radius: var(--r);
  background-size: cover; background-position: center;
  background-color: var(--cream);
  cursor: pointer;
  transition: transform 200ms;
}
.gallery-strip .thumb:hover { transform: translateY(-2px); }
.gallery-strip .thumb.more {
  display: grid; place-items: center;
  background: var(--teal);
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
}

/* =========================================================
   AT-A-GLANCE FACT STRIP
   ========================================================= */
.facts-strip {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.fact .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.fact .val {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.fact .val small { font-family: var(--sans); font-size: 13px; color: var(--muted); font-weight: 500; }
.fact .val .stars { color: var(--warm); }

/* =========================================================
   TWO-COLUMN BODY
   ========================================================= */
.review-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  padding-bottom: 96px;
}

/* Sticky booking card */
.book-card {
  position: sticky;
  top: 100px;
  align-self: start;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: 0 12px 36px -24px rgba(20,36,44,0.18);
}
.book-card .head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 4px;
}
.book-card .head .from { font-size: 12px; color: var(--muted); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.book-card .head .nights { font-size: 12px; color: var(--muted); }
.book-card .price {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.book-card .price small { font-family: var(--sans); font-size: 14px; color: var(--muted); margin-left: 4px; font-weight: 500; }
.book-card .price-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
}
.book-card .price-note .ind {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); margin-right: 6px;
}

.book-card .partners {
  display: flex; flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.partner-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: var(--r);
  transition: border-color 160ms ease, background 160ms ease;
  cursor: pointer;
}
.partner-row:hover { border-color: var(--teal); background: var(--teal-soft); }
.partner-row.best { border-color: var(--teal); background: var(--teal-soft); }
.partner-row .name { font-size: 14px; font-weight: 600; color: var(--ink); }
.partner-row .name .badge {
  background: var(--teal);
  color: var(--paper);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: var(--r-pill);
  margin-left: 6px;
  text-transform: uppercase;
  vertical-align: 1px;
}
.partner-row .price-mini { font-family: var(--serif); font-size: 17px; font-weight: 600; }
.partner-row .arrow { color: var(--teal); }

.book-card .anchors {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
  gap: 2px;
}
.book-card .anchors .head-h {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 4px;
}
.book-card .anchors a {
  font-size: 14px;
  color: var(--ink-2);
  padding: 6px 0;
  display: flex; justify-content: space-between;
  border-bottom: 1px dashed var(--rule);
  transition: color 160ms;
}
.book-card .anchors a:last-child { border-bottom: 0; }
.book-card .anchors a:hover { color: var(--teal); }
.book-card .anchors a .pg { color: var(--muted); font-family: var(--serif); font-style: italic; }

.book-card .disclaim {
  font-size: 11px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.5;
  border-top: 1px solid var(--rule);
  padding-top: 12px;
}

/* =========================================================
   ARTICLE CONTENT
   ========================================================= */
.article-col { min-width: 0; }

.verdict-box {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: 36px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.verdict-box::before {
  content: "“";
  position: absolute;
  top: -10px; left: 28px;
  font-family: var(--serif);
  font-size: 140px;
  color: var(--warm);
  line-height: 1;
}
.verdict-box .label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--warm);
  margin-bottom: 12px;
  margin-left: 56px;
}
.verdict-box p {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: var(--paper);
  margin: 0 0 18px;
  font-weight: 400;
  margin-left: 56px;
}
.verdict-box .signoff {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  margin-left: 56px;
}

/* Score breakdown */
.scores {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 56px;
}
.scores .head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 16px;
}
.scores h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}
.scores .total {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -0.02em;
  line-height: 1;
}
.scores .total small { font-family: var(--sans); font-size: 14px; color: var(--muted); margin-left: 2px; font-weight: 500; }
.scores ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
.scores li {
  display: grid; grid-template-columns: 110px 1fr 36px; gap: 12px; align-items: center;
}
.scores .row-label { font-size: 14px; font-weight: 500; color: var(--ink-2); }
.scores .bar { height: 6px; border-radius: 3px; background: var(--cream-2); overflow: hidden; }
.scores .bar .fill { height: 100%; background: var(--teal); border-radius: 3px; }
.scores .row-num { font-family: var(--serif); font-weight: 600; font-size: 16px; color: var(--ink); text-align: right; }

/* Pros / cons */
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
.pc-card {
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 24px;
  background: var(--paper);
}
.pc-card.pro { border-color: rgba(46,139,87,0.3); background: rgba(46,139,87,0.04); }
.pc-card.con { border-color: rgba(196,76,61,0.25); background: rgba(196,76,61,0.04); }
.pc-card h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 14px;
  display: flex; align-items: center; gap: 8px;
}
.pc-card.pro h4 { color: var(--green); }
.pc-card.con h4 { color: var(--red); }
.pc-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pc-card li { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; display: flex; gap: 10px; }
.pc-card li svg { flex-shrink: 0; margin-top: 4px; }
.pc-card.pro li svg { color: var(--green); }
.pc-card.con li svg { color: var(--red); }

/* Long-form review sections */
.review-section { margin-bottom: 56px; }
.review-section .anchor-id {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.review-section .anchor-id .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--warm);
  letter-spacing: 0.04em;
}
.review-section h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--ink);
  text-wrap: balance;
}
.review-section p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.review-section p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4em;
  float: left;
  line-height: 0.85;
  margin: 6px 10px 0 0;
  color: var(--teal);
  font-weight: 600;
}
.review-section .pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.35;
  color: var(--teal);
  border-left: 3px solid var(--warm);
  padding: 8px 0 8px 24px;
  margin: 28px 0;
  font-weight: 400;
  text-wrap: balance;
}
.review-section .inline-photo {
  border-radius: var(--r-lg);
  aspect-ratio: 16 / 10;
  background-size: cover; background-position: center;
  background-color: var(--cream);
  margin: 28px 0 12px;
}
.review-section figcaption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
  text-align: center;
}

.callout {
  background: var(--teal-soft);
  border-left: 3px solid var(--teal);
  border-radius: var(--r);
  padding: 20px 22px;
  margin: 28px 0;
  font-family: var(--sans);
}
.callout h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-2);
  margin: 0 0 8px;
}
.callout p { font-family: var(--sans); font-size: 15px; color: var(--ink-2); margin: 0; line-height: 1.55; }
.callout p::first-letter { font-size: inherit; float: none; margin: 0; color: inherit; }

/* Photo gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 14px;
  margin: 28px 0;
}
.gallery-grid .g {
  border-radius: var(--r);
  background-size: cover; background-position: center;
  background-color: var(--cream);
}
.gallery-grid .g.big { grid-row: span 2; }

/* Comparison block */
.compare {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 56px;
}
.compare h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.compare > .sub {
  font-size: 14px; color: var(--muted); margin: 0 0 22px;
}
.compare-table {
  display: grid;
  grid-template-columns: 1fr repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}
.compare-table > div {
  padding: 14px 12px;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
}
.compare-table .row-h {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: center;
}
.compare-table .col-h {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  background: var(--cream-2);
  position: relative;
}
.compare-table .col-h.this {
  background: var(--teal);
  color: var(--paper);
  border-radius: var(--r) var(--r) 0 0;
}
.compare-table .pic {
  height: 100px;
  background-size: cover; background-position: center;
  border-radius: 0 0 var(--r) var(--r);
}
.compare-table .pic.this { border-bottom: 0; }
.compare-table .val { font-family: var(--serif); color: var(--ink); font-weight: 500; }
.compare-table .num-cell { font-family: var(--serif); font-weight: 600; color: var(--teal); font-size: 16px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: grid; place-items: center;
  font-size: 18px;
  color: var(--teal);
  flex-shrink: 0;
  font-weight: 400;
  transition: transform 200ms, background 200ms;
}
.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--teal); color: var(--paper); }
.faq-item .answer {
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* Author bio */
.bio {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
.bio .avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  background-color: var(--sand);
}
.bio .name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.bio .role { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.bio .body { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin: 0 0 12px; }
.bio .links { display: flex; gap: 18px; font-size: 13px; }
.bio .links a { color: var(--teal); font-weight: 600; }

/* Disclosure card */
.disc-card {
  border: 1px dashed var(--rule);
  border-radius: var(--r);
  padding: 18px 22px;
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 13px;
  color: var(--ink-2);
  background: var(--paper);
  line-height: 1.6;
  margin-bottom: 64px;
}
.disc-card svg { color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.disc-card strong { color: var(--ink); font-weight: 600; }
.disc-card a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }

/* Related */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Mobile */
@media (max-width: 980px) {
  .review-hero .lockup { grid-template-columns: 1fr; gap: 24px; }
  .hero-photo-wrap { aspect-ratio: 4 / 3; }
  .review-body { grid-template-columns: 1fr; }
  .book-card { position: static; }
  .facts-strip { grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
  .scores ul { grid-template-columns: 1fr; }
  .proscons-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .gallery-strip .thumb:nth-child(n+4) { display: none; }
  .compare-table { grid-template-columns: 1fr 1fr; font-size: 12px; }
  .compare-table .col-3 { display: none; }
  .related-grid { grid-template-columns: 1fr; }
}
