/* ==========================================================================
   HotelsForKings.com — Slate Design System
   Extracted from _context/htlw-slate-final.html
   White background, charcoal accents, warm off-white sections
   Cormorant Garamond serif + DM Sans body
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tokens
   -------------------------------------------------------------------------- */
:root {
  --bg: #FFFFFF;
  --bg2: #FAFAF8;
  --bg3: #F5F4F0;
  --card: #FFFFFF;
  --ink: #0F1419;
  --t1: #374151;
  --t2: #6B7280;
  --t3: #9CA3AF;
  --acc: #374151;
  --acc-h: #4B5563;
  --acc-l: #1F2937;
  --acc-s: rgba(55, 65, 81, .06);
  --acc-b: rgba(55, 65, 81, .15);
  --bd: #E8E6E0;
  --bd2: #D4D1C8;
  --r: 0;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--t1);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.c { max-width: 1140px; margin: 0 auto; padding: 0 40px; }

a { color: var(--acc); text-decoration: none; transition: .2s; }
a:hover { color: var(--acc-h); }

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

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .25s;
  border: none;
  cursor: pointer;
}
.btn-a { background: var(--acc); color: #fff; }
.btn-a:hover { background: var(--acc-h); }
.btn-g { background: transparent; color: var(--ink); border: 1px solid var(--bd2); }
.btn-g:hover { border-color: var(--acc); color: var(--acc); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #1F2937; }
.btn-sm { padding: 10px 22px; font-size: 11px; }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bd);
}
.ni { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nb {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: .06em;
}
.nb em { font-style: italic; color: var(--acc); }
.nls { display: flex; gap: 4px; }
.nl {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--t3);
  padding: 8px 14px;
  transition: .15s;
}
.nl:hover { color: var(--acc); }
.nr { display: flex; gap: 8px; }

/* --------------------------------------------------------------------------
   Hero — full-bleed editorial image
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.4); }
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  color: #fff;
  padding: 0 24px;
}
.hero-ey {
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--acc-h);
  margin-bottom: 24px;
  font-weight: 400;
}
h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 20px;
  color: #fff;
}
h1 em { font-style: italic; color: var(--acc-h); }
.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  max-width: 480px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.8;
}
.hero-search {
  display: flex;
  gap: 0;
  max-width: 540px;
  margin: 0 auto 24px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .15);
  overflow: hidden;
}
.hero-search select {
  background: transparent;
  color: rgba(255, 255, 255, .8);
  border: none;
  border-right: 1px solid rgba(255, 255, 255, .1);
  padding: 16px 16px;
  font-family: var(--sans);
  font-size: 13px;
  outline: none;
  min-width: 170px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.hero-search select option { background: var(--ink); color: #fff; }
.hero-search input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px;
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
}
.hero-search input::placeholder { color: rgba(255, 255, 255, .4); }
.hero-search button {
  background: var(--acc);
  border: none;
  color: #fff;
  padding: 16px 28px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
  white-space: nowrap;
}
.hero-pills { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.hero-pill {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .6);
  padding: 7px 18px;
  font-size: 11px;
  letter-spacing: .06em;
  cursor: pointer;
  font-family: var(--sans);
  transition: .2s;
}
.hero-pill:hover { border-color: rgba(255, 255, 255, .3); color: #fff; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.sec { padding: 80px 0; }
.sec-tinted { background: var(--bg2); }
.sec-dark { background: var(--ink); color: #fff; }

.ey {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--acc-l);
  margin-bottom: 8px;
  display: block;
  font-weight: 400;
}
.st {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.08;
  margin-bottom: 8px;
}
.st em { font-style: italic; color: var(--acc); }
.ss { color: var(--t2); max-width: 480px; font-size: 15px; font-weight: 300; }
.sh {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 48px;
}
.divider { width: 60px; height: 1px; background: var(--acc); margin: 16px 0; }

/* --------------------------------------------------------------------------
   Occasion tags
   -------------------------------------------------------------------------- */
.occ-g {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.occ-tag {
  background: transparent;
  border: 1px solid var(--bd2);
  color: var(--t2);
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: .06em;
  cursor: pointer;
  font-family: var(--sans);
  transition: .25s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.occ-tag:hover { border-color: var(--acc); color: var(--acc); }
.occ-tag.active { background: var(--acc); border-color: var(--acc); color: #fff; }

/* --------------------------------------------------------------------------
   Hotel cards
   -------------------------------------------------------------------------- */
.hotel-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hotel {
  background: var(--card);
  border: 1px solid var(--bd);
  overflow: hidden;
  transition: all .3s;
  display: block;
  text-decoration: none;
  color: var(--t1);
}
.hotel:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
  border-color: var(--acc-b);
}
.hotel-img { height: 240px; overflow: hidden; position: relative; }
.hotel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
  filter: brightness(.9);
}
.hotel:hover .hotel-img img { transform: scale(1.04); }
.hotel-rank {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--bg);
  border: 1px solid var(--acc);
  color: var(--acc);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
}
.hotel-occ {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--acc-l);
  padding: 4px 12px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hotel-body { padding: 24px; }
.hotel-city {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 6px;
}
.hotel-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.15;
}
.hotel-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--t3);
  margin-bottom: 12px;
}
.hotel-verdict {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.6;
  font-style: italic;
  border-left: 2px solid var(--acc);
  padding-left: 12px;
  margin-bottom: 16px;
  font-weight: 300;
}
.hotel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hotel-scores { display: flex; gap: 16px; }
.score { text-align: center; }
.score-v {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--acc);
  font-weight: 400;
}
.score-l {
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--t3);
}
.hotel-book {
  background: var(--acc);
  color: #fff;
  border: none;
  padding: 8px 18px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   City cards
   -------------------------------------------------------------------------- */
.city-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.city {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: transform .3s;
}
.city:hover { transform: scale(1.02); }
.city img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
  filter: brightness(.65);
}
.city:hover img { transform: scale(1.04); filter: brightness(.75); }
.city-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent 50%);
}
.city-info { position: absolute; bottom: 0; padding: 18px; color: #fff; }
.city-n { font-family: var(--serif); font-size: 20px; font-weight: 300; margin-bottom: 2px; }
.city-c { font-size: 10px; color: rgba(255, 255, 255, .6); letter-spacing: .06em; }

/* --------------------------------------------------------------------------
   How it works — numbered steps
   -------------------------------------------------------------------------- */
.steps-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { text-align: center; }
.step-n {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--acc);
  margin-bottom: 12px;
}
.step-t {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.step-d {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.6;
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.test-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.test {
  padding: 32px;
  border: 1px solid var(--bd);
  background: var(--card);
  transition: transform .2s;
}
.test:hover { transform: translateY(-2px); }
.test-text {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.5;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 16px;
}
.test-top { display: flex; align-items: center; gap: 12px; }
.test-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.test-av img { width: 100%; height: 100%; object-fit: cover; }
.test-info { font-size: 13px; font-weight: 500; color: var(--ink); }
.test-info span { display: block; font-size: 11px; color: var(--t3); font-weight: 300; }

/* --------------------------------------------------------------------------
   Blog cards
   -------------------------------------------------------------------------- */
.blog-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog {
  border: 1px solid var(--bd);
  overflow: hidden;
  transition: .25s;
  display: block;
  text-decoration: none;
  color: var(--t1);
}
.blog:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0, 0, 0, .06); }
.blog-img { height: 200px; overflow: hidden; }
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.blog:hover .blog-img img { transform: scale(1.04); }
.blog-body { padding: 24px; }
.blog-cat {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--acc-l);
  margin-bottom: 8px;
  display: block;
  font-weight: 400;
}
.blog-t {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 6px;
}
.blog-d {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: 300;
}
.blog-meta { font-size: 10px; color: var(--t3); letter-spacing: .04em; }

/* --------------------------------------------------------------------------
   CTA — dark band
   -------------------------------------------------------------------------- */
.cta-band { background: var(--ink); padding: 72px 0; text-align: center; }
.cta-band .ey { color: var(--acc-h); }
.cta-band .st { color: #fff; }
.cta-band .st em { color: var(--acc-h); }
.cta-band p {
  color: rgba(255, 255, 255, .5);
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: 15px;
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   Newsletter strip
   -------------------------------------------------------------------------- */
.nl-strip {
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
}
.nl-strip h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 4px;
}
.nl-strip p {
  font-size: 13px;
  color: var(--t2);
  margin-bottom: 16px;
  font-weight: 300;
}
.nl-f {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid var(--bd2);
}
.nl-i {
  flex: 1;
  border: none;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  background: transparent;
}
.nl-i::placeholder { color: var(--t3); }
.nl-btn {
  background: var(--acc);
  border: none;
  color: #fff;
  padding: 14px 24px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.ft { background: var(--bg3); padding: 56px 0 24px; }
.ft-g {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}
.ft-brand {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}
.ft-brand em { font-style: italic; color: var(--acc); }
.ft-d {
  font-size: 12px;
  color: var(--t3);
  line-height: 1.6;
  margin-bottom: 10px;
  font-weight: 300;
}
.ft-h {
  font-size: 9px;
  font-weight: 500;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 10px;
}
.ft-col a {
  display: block;
  font-size: 12px;
  color: var(--t2);
  padding: 3px 0;
  transition: .12s;
  font-weight: 300;
}
.ft-col a:hover { color: var(--acc); }
.ft-bot {
  border-top: 1px solid var(--bd);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--t3);
}

/* --------------------------------------------------------------------------
   Reveal-on-scroll
   -------------------------------------------------------------------------- */
.rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.rv.on { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------------------------
   Forms (shared — for contact, submit-hotel, advertise)
   -------------------------------------------------------------------------- */
.form { max-width: 620px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--t2);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--bd2);
  background: #fff;
  font-size: 14px;
  font-family: var(--sans);
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--acc); }
.form-field textarea { resize: vertical; min-height: 140px; }

/* --------------------------------------------------------------------------
   Hotel page specifics
   -------------------------------------------------------------------------- */
.hotel-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hotel-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .55) 100%);
}
.hotel-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 0;
  color: #fff;
  z-index: 2;
}
.hotel-hero-content h1 { color: #fff; margin-bottom: 12px; }

.score-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 40px;
  background: var(--bg2);
  border: 1px solid var(--bd);
  margin: 40px 0;
  text-align: center;
}
.score-board .score-v { font-size: 42px; }
.score-board .score-l { font-size: 11px; letter-spacing: .15em; }

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */
.breadcrumbs {
  font-size: 11px;
  color: var(--t3);
  letter-spacing: .04em;
  padding: 20px 0;
}
.breadcrumbs a { color: var(--t3); }
.breadcrumbs a:hover { color: var(--acc); }
.breadcrumbs span { margin: 0 8px; opacity: .5; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .hotel-g, .test-g, .blog-g { grid-template-columns: 1fr; }
  .city-g { grid-template-columns: repeat(2, 1fr); }
  .steps-g { grid-template-columns: 1fr; gap: 24px; }
  .ft-g { grid-template-columns: 1fr 1fr; }
  .nls, .nr { display: none; }
  .hero-search { flex-direction: column; }
  .hero-search select { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, .1); }
  .form-row { grid-template-columns: 1fr; }
  .score-board { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
}

/* ======= Places photo gallery (auto-generated) ======= */
.sp-gallery { padding: 48px 0 8px; background: #fff; }
.sp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sp-gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .sp-gallery-grid { grid-template-columns: 1fr; }
  .sp-gallery-grid img { height: 220px; }
}
