/* ───────────────────────────────────────────────────────
   Windy Hill Homestay — Customer booking site
   Warm cream + sage + earth palette · serif display
   ─────────────────────────────────────────────────────── */

:root {
  --bg:      #faf6ee;     /* warm cream */
  --bg-soft: #f0eadb;     /* deeper cream */
  --surface: #ffffff;
  --ink:     #2a3a2b;     /* deep forest */
  --ink-2:   #4e5d4f;
  --ink-3:   #79877a;
  --ink-4:   #a3ad9e;
  --line:    #e3dccb;     /* warm cream line */
  --line-2:  #c7c0ab;
  --accent:  #3a7d44;     /* forest green */
  --accent-2: #b56b3d;    /* terracotta */
  --accent-soft: #d8e2cf; /* pale sage */
  --warm:    #f6d8b5;     /* peach for moments */
  --gold:    #c69243;
  --shadow-1: 0 1px 2px rgba(42,58,43,.06), 0 1px 3px rgba(42,58,43,.05);
  --shadow-2: 0 4px 12px rgba(42,58,43,.08), 0 12px 28px rgba(42,58,43,.10);
  --shadow-3: 0 16px 48px rgba(42,58,43,.18);

  --font-serif: 'Lora', 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── Nav ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .2s, border-color .2s, padding .2s;
  padding: 14px 0;
}
.nav.scrolled {
  background: rgba(250,246,238,.92);
  border-bottom-color: var(--line);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.nav-brand .nb-logo {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3a7d44 0%, #6aa84f 55%, #b8c47a 130%);
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 1px 2px rgba(58,125,68,.4);
}
.nav-brand .nb-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.05;
}
.nav-brand .nb-sub {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: 14px;
}
.nav-links a {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.005em;
  text-decoration: none;
}
.nav-links a:hover { color: var(--accent); text-decoration: none; }
.nav-spacer { flex: 1; }
.nav-cta {
  background: var(--ink);
  color: white;
  border: 0;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -.005em;
}
.nav-cta:hover { background: var(--accent); }
.nav-admin {
  color: var(--ink-3);
  font-size: 12.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-admin:hover { color: var(--accent); text-decoration: none; }

/* ─── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 60px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 0%, rgba(184,196,122,.45), transparent 70%),
    radial-gradient(ellipse 60% 50% at 100% 30%, rgba(246,216,181,.55), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: .005em;
}
.hero-eyebrow .he-dot {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0 0 22px;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 36px;
  max-width: 480px;
  text-wrap: pretty;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 14px;
}
.hero-stat .num {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 4px;
}

.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3);
}
.hero-image image-slot {
  position: absolute; inset: 0;
}
.hero-image .badge {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-1);
}
.hero-image .badge .star { color: var(--gold); }

/* ─── Search bar (sticky-ish) ─────────────────────────── */
.search-bar {
  background: var(--surface);
  border-radius: 999px;
  box-shadow: var(--shadow-2);
  display: grid;
  grid-template-columns: 1.1fr 1.1fr .9fr auto;
  align-items: stretch;
  padding: 8px;
  margin-top: -50px;
  position: relative;
  z-index: 5;
  border: 1px solid var(--line);
}
.sb-cell {
  padding: 10px 18px 11px;
  position: relative;
  cursor: pointer;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: background .12s;
  border-radius: 999px;
}
.sb-cell:hover { background: var(--bg); }
.sb-cell:last-of-type { border-right: 0; }
.sb-cell .sb-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.sb-cell .sb-val {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.sb-cell .sb-val.placeholder { color: var(--ink-4); }
.sb-cell input,
.sb-cell select {
  background: transparent;
  border: 0;
  outline: none;
  padding: 0;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  width: 100%;
  font-variant-numeric: tabular-nums;
}
.sb-cell input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: .4;
  cursor: pointer;
}
.sb-search-btn {
  background: var(--accent);
  color: white;
  border: 0;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 14.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  letter-spacing: -.005em;
  transition: background .12s, transform .12s;
}
.sb-search-btn:hover { background: #2d6535; transform: translateY(-1px); }

/* ─── Sections ────────────────────────────────────────── */
.section {
  padding: 100px 0 60px;
}
.section-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.section-hd .sh-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.section-hd h2 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -.02em;
  margin: 0;
  line-height: 1.05;
  text-wrap: balance;
  max-width: 600px;
}
.section-hd h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.section-hd .sh-sub {
  color: var(--ink-2);
  max-width: 380px;
  text-wrap: pretty;
}

/* ─── Room grid ───────────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.room-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.room-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  overflow: hidden;
}
.room-image image-slot {
  position: absolute; inset: 0;
}
.room-image .rc-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-1);
}
.room-image .rc-fav {
  position: absolute;
  top: 12px; left: 12px;
  width: 34px; height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 0;
  display: grid; place-items: center;
  color: var(--ink-2);
  backdrop-filter: blur(8px);
}
.room-image .rc-fav:hover { background: white; color: var(--accent-2); }
.room-image .rc-fav.active { color: var(--accent-2); }
.room-image .rc-soldout {
  position: absolute;
  inset: 0;
  background: rgba(42,58,43,.55);
  color: white;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .03em;
}
.room-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.room-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}
.room-head .rh-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
}
.room-head .rh-type {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 2px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.room-head .rh-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.room-head .rh-rating .star { color: var(--gold); }

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-3);
}
.room-meta .m-it { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.feat-tag {
  background: var(--bg);
  color: var(--ink-2);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 500;
  white-space: nowrap;
}

.room-foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.room-price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.room-price .per {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 400;
  margin-left: 2px;
}
.room-book-btn {
  background: var(--ink);
  color: white;
  border: 0;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.005em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.room-book-btn:hover { background: var(--accent); }

/* ─── Room detail page ────────────────────────────────── */
.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-2);
  font-size: 13.5px;
  font-weight: 500;
  background: transparent;
  border: 0;
  padding: 6px 0;
  margin-bottom: 18px;
}
.detail-back:hover { color: var(--accent); }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.detail-main {}
.detail-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 36px;
}
.detail-gallery > * { position: relative; }
.detail-gallery > :nth-child(1) { grid-row: span 2; }
.detail-gallery image-slot { position: absolute; inset: 0; }

.detail-hd {
  margin-bottom: 28px;
}
.detail-hd .d-type {
  font-size: 12.5px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.detail-hd h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0 0 10px;
}
.detail-hd .d-meta {
  display: flex;
  gap: 18px;
  color: var(--ink-2);
  font-size: 14px;
  flex-wrap: wrap;
}
.detail-hd .d-meta .m-it { display: inline-flex; align-items: center; gap: 6px; }
.detail-hd .d-rating { color: var(--ink); font-weight: 500; }
.detail-hd .d-rating .star { color: var(--gold); }

.detail-body p {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 600px;
  text-wrap: pretty;
}
.detail-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin: 36px 0 14px;
  letter-spacing: -.01em;
}
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  margin-top: 4px;
}
.am-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  font-size: 14.5px;
  color: var(--ink);
}
.am-item .am-ico {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--bg);
  color: var(--accent);
  border-radius: 8px;
}

/* Sticky booking card */
.book-card {
  position: sticky;
  top: 90px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 22px 18px;
  box-shadow: var(--shadow-2);
}
.book-card .bc-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}
.book-card .bc-price .num {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.01em;
}
.book-card .bc-price .per {
  font-size: 13px;
  color: var(--ink-3);
}
.book-card .bc-rating {
  margin-left: auto;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}
.book-card .bc-rating .star { color: var(--gold); }

.bc-form {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 14px;
}
.bc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.bc-cell {
  padding: 10px 14px;
  cursor: pointer;
}
.bc-cell + .bc-cell { border-left: 1px solid var(--line); }
.bc-row + .bc-row .bc-cell { border-top: 1px solid var(--line); grid-column: 1 / -1; }
.bc-cell .bc-lbl {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1px;
}
.bc-cell input,
.bc-cell select {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.bc-summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.bc-summary .bc-srow {
  display: flex;
  justify-content: space-between;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
  gap: 8px;
}
.bc-summary .bc-srow > span:last-child { white-space: nowrap; }
.bc-summary .bc-srow.total > span { white-space: nowrap; }
.bc-summary .bc-srow.total {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--ink);
  font-weight: 600;
  margin-top: 6px;
}
.bc-summary .bc-srow.total .v { color: var(--accent); }
.bc-cta {
  width: 100%;
  background: var(--accent);
  color: white;
  border: 0;
  padding: 13px;
  border-radius: var(--r-md);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.005em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .12s, transform .12s;
  white-space: nowrap;
}
.bc-cta:hover { background: #2d6535; transform: translateY(-1px); }
.bc-cta:disabled { background: var(--line-2); cursor: not-allowed; transform: none; }
.bc-note {
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-3);
  margin-top: 8px;
}

/* ─── Checkout ────────────────────────────────────────── */
.checkout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  padding-top: 30px;
  padding-bottom: 80px;
}
.co-main h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -.02em;
  margin: 0 0 6px;
}
.co-main .co-sub {
  color: var(--ink-3);
  margin-bottom: 36px;
}
.co-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}
.co-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-3);
  white-space: nowrap;
}
.co-step .co-num {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 700;
  display: grid; place-items: center;
}
.co-step.active { color: var(--ink); font-weight: 600; }
.co-step.active .co-num { background: var(--accent); color: white; }
.co-step.done .co-num { background: var(--accent-soft); color: var(--accent); }
.co-step .co-line {
  width: 22px; height: 1px;
  background: var(--line);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.field label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: .005em;
}
.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-size: 14.5px;
  outline: none;
  transition: border-color .12s, box-shadow .12s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.pay-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.pay-method {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.pay-method:hover { border-color: var(--line-2); }
.pay-method.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

/* Sticky checkout summary */
.co-summary {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
  position: sticky;
  top: 90px;
}
.co-sum-room {
  display: flex;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.co-sum-img {
  width: 92px; height: 92px;
  border-radius: var(--r-md);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background: var(--bg-soft);
}
.co-sum-img image-slot { position: absolute; inset: 0; }
.co-sum-info .name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 4px;
}
.co-sum-info .type {
  font-size: 11.5px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.co-sum-info .dates {
  font-size: 13px;
  color: var(--ink-2);
}

.co-foot {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 12px 22px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
}
.btn-ghost:hover { background: var(--bg-soft); }

/* ─── Confirmation ────────────────────────────────────── */
.confirm {
  text-align: center;
  padding: 80px 0 100px;
  max-width: 640px;
  margin: 0 auto;
}
.confirm-tick {
  width: 80px; height: 80px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
}
.confirm h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -.02em;
  margin: 0 0 12px;
  line-height: 1.05;
}
.confirm h1 em { font-style: italic; color: var(--accent); }
.confirm p {
  color: var(--ink-2);
  font-size: 16px;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.confirm-code {
  display: inline-block;
  padding: 16px 26px;
  background: var(--surface);
  border: 1px dashed var(--line-2);
  border-radius: var(--r-md);
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: .15em;
  color: var(--ink);
  margin-bottom: 32px;
}
.confirm-summary {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  text-align: left;
  margin-bottom: 32px;
}
.confirm-summary .cs-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.confirm-summary .cs-row:last-child { border-bottom: 0; padding-top: 14px; }
.confirm-summary .cs-row .l { color: var(--ink-3); }
.confirm-summary .cs-row .r { font-weight: 500; color: var(--ink); }

/* ─── Footer ──────────────────────────────────────────── */
.foot {
  border-top: 1px solid var(--line);
  padding: 60px 0 36px;
  background: var(--bg-soft);
  color: var(--ink-2);
  font-size: 13.5px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.foot h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 14px;
}
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { padding: 5px 0; }
.foot a { color: var(--ink-2); }
.foot a:hover { color: var(--accent); }
.foot-bot {
  border-top: 1px solid var(--line);
  margin-top: 44px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--ink-3);
}
.foot-brand p { max-width: 320px; }

/* ─── Toast (mini) ───────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: white;
  padding: 14px 22px;
  border-radius: 999px;
  z-index: 80;
  font-size: 14px;
  box-shadow: var(--shadow-3);
  animation: tin .25s cubic-bezier(.2,.8,.2,1);
}
@keyframes tin { from { opacity: 0; transform: translate(-50%, 12px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* ─── Image slot styles ─────────────────────────────── */
image-slot {
  --slot-bg: transparent;
  --slot-border: transparent;
  --slot-color: var(--ink-3);
}
.room-image image-slot,
.hero-image image-slot,
.detail-gallery image-slot,
.co-sum-img image-slot {
  border-radius: 0;
}

/* fallback placeholder art when no image dropped */
.placeholder-art {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  pointer-events: none;
  z-index: 1;
}
.placeholder-art svg { width: 56%; height: 56%; opacity: .8; }
.placeholder-art.suite { background: linear-gradient(135deg, #f6d8b5 0%, #c98558 100%); }
.placeholder-art.deluxe { background: linear-gradient(135deg, #b8c4e8 0%, #6e8bb5 100%); }
.placeholder-art.standard { background: linear-gradient(135deg, #cdd9bf 0%, #7a9362 100%); }
.placeholder-art.hero { background: linear-gradient(180deg, #c1d4b1 0%, #6f8c5a 60%, #4d6943 100%); }
.placeholder-art .ph-name {
  position: absolute;
  bottom: 18px; left: 18px;
  color: white;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
  opacity: .95;
}

/* Responsive (collapse to single column) */
@media (max-width: 900px) {
  .hero-grid, .detail-grid, .checkout, .foot-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 44px; }
  .search-bar { grid-template-columns: 1fr 1fr; border-radius: var(--r-lg); }
  .search-bar .sb-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .sb-search-btn { grid-column: 1 / -1; border-radius: var(--r-md); padding: 14px; }
}
@media (max-width: 600px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
}
