/* ==============================================
   Manchester Marriot Homes — Main CSS v4
   ============================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #0b0b0b;
  --off-white:  #f7f5f1;
  --cream:      #eeebe3;
  --cream2:     #e8e4da;
  --dark:       #131313;
  --gold:       #c8a84b;
  --gold-lt:    #e6d08e;
  --gold-dim:   rgba(200,168,75,0.12);
  --gray:       #6a6a6a;
  --gray-lt:    #e2dfd7;
  --white:      #ffffff;
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'DM Sans', system-ui, -apple-system, sans-serif;
  --nav-h: 70px;
  --max: 1360px;
  --radius: 2px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--off-white); color: var(--black); overflow-x: hidden; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--fb); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--fb); }
ul, ol { list-style: none; }

/* ---- UTILITY ---- */
.hidden { display: none !important; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 5vw; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: var(--radius); transition: all 0.2s; cursor: pointer; border: none;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #1a1a1a; }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { border-color: var(--white); }
.btn-outline { background: transparent; color: var(--black); border: 1px solid var(--gray-lt); }
.btn-outline:hover { border-color: var(--black); background: var(--cream); }
.btn-sm { padding: 8px 18px; font-size: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ---- NAV ---- */
nav#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h); background: rgba(247,245,241,0.96);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--gray-lt);
  transition: box-shadow 0.3s;
}
nav#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
.nav-wrap {
  max-width: var(--max); margin: 0 auto; padding: 0 5vw;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo-box {
  font-family: var(--fd); font-size: 18px; font-weight: 600;
  letter-spacing: 0.06em; border: 1px solid var(--gold);
  padding: 5px 8px; line-height: 1; color: var(--black);
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name { font-size: 13px; font-weight: 500; color: var(--black); letter-spacing: 0.03em; }
.nav-logo-sub  { font-size: 9px; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a { font-size: 12px; letter-spacing: 0.04em; color: var(--gray); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-cta {
  background: var(--black); color: var(--white) !important;
  padding: 9px 20px; border-radius: var(--radius);
  font-size: 11px !important; letter-spacing: 0.12em !important; font-weight: 500 !important;
}
.nav-cta:hover { background: #222 !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--black); }
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--off-white); border-top: 1px solid var(--gray-lt);
  padding: 0.5rem 5vw 1.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.8rem 0; font-size: 14px; color: var(--gray);
  border-bottom: 1px solid var(--gray-lt);
}
.nav-mobile a:last-child { border-bottom: none; }

/* ---- PAGE HERO (sub-pages) ---- */
.page-hero {
  padding-top: var(--nav-h);
  background: var(--black);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1600&q=80') center / cover no-repeat;
  opacity: 0.2;
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto; padding: 5rem 5vw 4rem;
}
.eyebrow {
  font-size: 10px; letter-spacing: 0.3em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 0.8rem; display: block;
}
.page-hero-title {
  font-family: var(--fd); font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300; color: var(--white); line-height: 1.1;
}
.page-hero-title em { font-style: italic; color: var(--gold-lt); }
.page-hero-sub {
  font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.85;
  max-width: 500px; margin-top: 0.9rem;
}

/* ---- SECTION HEADERS ---- */
.sec-head { margin-bottom: 3.5rem; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-sub { margin-left: auto; margin-right: auto; }
.sec-head-row {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 2rem; flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.sec-title {
  font-family: var(--fd); font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 300; line-height: 1.2;
}
.sec-title em { font-style: italic; }
.sec-sub { font-size: 14px; color: var(--gray); line-height: 1.85; max-width: 480px; margin-top: 0.7rem; }

/* ---- HOME HERO ---- */
.hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1800&q=85') center / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,11,11,0.90) 40%, rgba(11,11,11,0.50));
}
.hero-left {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 6rem 3vw 5rem 5vw;
}
.hero-right {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 6rem 5vw 5rem 3vw;
}
.hero-eyebrow { font-size: 10px; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; margin-bottom: 1.4rem; }
.hero-title {
  font-family: var(--fd); font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 300; color: var(--white); line-height: 1.06; margin-bottom: 1.4rem;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }
.hero-desc { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.9; max-width: 400px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.stats-box {
  background: rgba(0,0,0,0.55); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius);
}
.stat-item { padding: 1.7rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.stat-item:last-child { border-bottom: none; }
.stat-num { display: block; font-family: var(--fd); font-size: 2.6rem; font-weight: 300; color: var(--white); line-height: 1; }
.stat-label { display: block; font-size: 10px; letter-spacing: 0.18em; color: rgba(255,255,255,0.38); text-transform: uppercase; margin-top: 5px; }
.hero-info { padding: 1.5rem 2rem; border-top: 1px solid rgba(255,255,255,0.06); }
.hero-info p { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 2; }

/* ---- BOOKING BAR ---- */
.book-bar { background: var(--black); }
.book-form {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 1px; background: rgba(255,255,255,0.05);
}
.book-field {
  background: rgba(255,255,255,0.03);
  padding: 1.2rem 1.5rem; display: flex; flex-direction: column; gap: 4px;
  transition: background 0.2s;
}
.book-field:hover { background: rgba(255,255,255,0.06); }
.book-field label { font-size: 9px; letter-spacing: 0.28em; color: var(--gold); text-transform: uppercase; font-weight: 500; }
.book-field input, .book-field select {
  background: none; border: none; outline: none;
  font-size: 14px; color: var(--white); width: 100%; cursor: pointer;
}
.book-field select option { background: #1a1a1a; color: var(--white); }
.book-submit {
  background: var(--gold); color: var(--black); border: none;
  padding: 1.2rem 2.5rem; font-size: 11px; letter-spacing: 0.18em;
  font-weight: 500; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s; white-space: nowrap;
}
.book-submit:hover { background: var(--gold-lt); }

/* ---- ROOMS GRID ---- */
.filter-row { display: flex; gap: 8px; margin-bottom: 2.5rem; flex-wrap: wrap; }
.filter-btn {
  background: none; border: 1px solid var(--gray-lt); padding: 7px 18px;
  font-size: 12px; letter-spacing: 0.05em; border-radius: 20px; color: var(--gray);
  transition: all 0.2s; cursor: pointer;
}
.filter-btn.on, .filter-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2px; }
.room-card {
  background: var(--white); border: 1px solid var(--gray-lt);
  display: flex; flex-direction: column; overflow: hidden;
  cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
}
.room-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.room-card.gone { display: none; }
.room-img-wrap { height: 240px; overflow: hidden; position: relative; flex-shrink: 0; }
.room-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.room-card:hover .room-img-wrap img { transform: scale(1.06); }
.room-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; z-index: 2; }
.badge { font-size: 9px; letter-spacing: 0.15em; padding: 4px 10px; text-transform: uppercase; font-weight: 500; }
.badge-dark { background: var(--black); color: var(--white); }
.badge-gold { background: var(--gold); color: var(--black); }
.badge-avail { background: rgba(27,94,32,0.88); color: #fff; }
.badge-unavail { background: rgba(183,28,28,0.88); color: #fff; }
.photo-count { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.6); color: #fff; font-size: 10px; padding: 3px 9px; border-radius: 20px; }
.room-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.room-name { font-family: var(--fd); font-size: 1.45rem; font-weight: 500; margin-bottom: 0.3rem; }
.room-meta { display: flex; gap: 14px; font-size: 11px; color: var(--gray); margin-bottom: 0.8rem; flex-wrap: wrap; }
.room-short { font-size: 13px; color: var(--gray); line-height: 1.75; margin-bottom: 1rem; flex: 1; }
.room-amenity-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 1.2rem; }
.tag { font-size: 10px; color: var(--gray); background: var(--cream); padding: 3px 9px; border-radius: 20px; }
.room-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--gray-lt); margin-top: auto; }
.room-price { font-family: var(--fd); font-size: 1.7rem; font-weight: 400; line-height: 1; }
.room-price span { font-family: var(--fb); font-size: 12px; color: var(--gray); font-weight: 300; }
.room-btns { display: flex; gap: 8px; }

/* ---- ROOM DETAIL ---- */
.rd-hero { padding-top: var(--nav-h); background: var(--black); }
.breadcrumb {
  max-width: var(--max); margin: 0 auto; padding: 1rem 5vw;
  font-size: 12px; color: rgba(255,255,255,0.35);
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: rgba(255,255,255,0.32); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.16); }
.gallery {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 230px; gap: 2px; height: 530px;
}
.g-main {
  grid-column: 1; grid-row: 1 / 3;
  overflow: hidden; position: relative; cursor: pointer;
}
.g-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.g-main:hover img { transform: scale(1.03); }
.g-col { grid-column: 2; display: grid; grid-template-rows: 1fr 1fr; gap: 2px; }
.g-thumb { overflow: hidden; position: relative; cursor: pointer; }
.g-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.g-thumb:hover img { transform: scale(1.06); }
.g-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.48);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  opacity: 0; transition: opacity 0.3s;
}
.g-thumb:last-child .g-overlay { opacity: 1; }
.g-all-btn {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.72); color: #fff;
  border: none; padding: 7px 14px; font-size: 11px; letter-spacing: 0.09em;
  cursor: pointer; border-radius: var(--radius);
}
.g-all-btn:hover { background: rgba(0,0,0,0.9); }
.rd-body {
  display: grid; grid-template-columns: 1fr 370px;
  gap: 4rem; max-width: var(--max); margin: 0 auto;
  padding: 4rem 5vw;
}
.rd-title { font-family: var(--fd); font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 300; margin-bottom: 0.4rem; }
.rd-meta-row { display: flex; gap: 1.5rem; font-size: 12px; color: var(--gray); margin-bottom: 1.8rem; flex-wrap: wrap; letter-spacing: 0.04em; }
.avail-pill { font-size: 11px; padding: 5px 12px; border-radius: 20px; letter-spacing: 0.05em; display: inline-block; margin-bottom: 1.2rem; }
.avail-pill.yes { background: #e8f5e9; color: #1b5e20; }
.avail-pill.no  { background: #ffebee; color: #b71c1c; }
.rd-desc { font-size: 15px; color: #333; line-height: 1.9; margin-bottom: 2.5rem; }
.amen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-bottom: 2.5rem; }
.amen-item { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.amen-icon { width: 32px; height: 32px; background: var(--cream); border: 1px solid var(--gray-lt); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.policy-box { background: var(--cream); border: 1px solid var(--gray-lt); padding: 1.6rem; border-radius: var(--radius); margin-top: 2rem; }
.policy-box h4 { font-family: var(--fd); font-size: 1.1rem; font-weight: 500; margin-bottom: 1rem; }
.policy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.policy-item strong { display: block; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--black); margin-bottom: 2px; }
.policy-item span { font-size: 13px; color: var(--gray); }

/* ---- BOOKING WIDGET (sidebar) ---- */
.bw {
  background: var(--black); color: var(--white);
  padding: 2rem; border-radius: var(--radius);
  position: sticky; top: calc(var(--nav-h) + 1.5rem);
}
.bw-price { font-family: var(--fd); font-size: 2.4rem; font-weight: 300; line-height: 1; }
.bw-per  { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 3px; margin-bottom: 1.5rem; }
.bw-label { display: block; font-size: 9px; letter-spacing: 0.24em; color: var(--gold); text-transform: uppercase; margin-bottom: 5px; }
.bw-input {
  width: 100%; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  color: var(--white); padding: 10px 13px; font-size: 13px;
  border-radius: var(--radius); outline: none; font-family: var(--fb);
  transition: border-color 0.2s; margin-bottom: 0.9rem;
}
.bw-input:focus { border-color: var(--gold); }
.bw-input option { background: #1a1a1a; }
.bw-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 1.2rem 0; }
.bw-row { display: flex; justify-content: space-between; font-size: 13px; padding: 3px 0; color: rgba(255,255,255,0.42); }
.bw-row.total { color: var(--white); font-weight: 500; font-size: 15px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 0.7rem; margin-top: 0.2rem; }
.bw-note { font-size: 11px; color: rgba(255,255,255,0.28); text-align: center; margin-top: 0.7rem; }
.bw-help { border: 1px solid var(--gray-lt); padding: 1.4rem; text-align: center; border-radius: var(--radius); margin-top: 1.4rem; }
.bw-help p { font-size: 12px; color: var(--gray); margin-bottom: 3px; }
.bw-help a { color: var(--gold); font-size: 14px; font-weight: 500; }
.bw-help small { display: block; font-size: 11px; color: var(--gray); margin-top: 4px; }

/* ---- LIGHTBOX ---- */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,0.95); flex-direction: column;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: rgba(255,255,255,0.55);
  font-size: 2rem; line-height: 1; cursor: pointer; transition: color 0.2s;
}
.lb-close:hover { color: #fff; }
.lb-img-wrap { position: relative; display: flex; align-items: center; }
.lb-img-wrap img { max-width: 88vw; max-height: 76vh; object-fit: contain; border-radius: var(--radius); }
.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  color: #fff; width: 46px; height: 46px; border-radius: 50%;
  font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.lb-arrow:hover { background: rgba(255,255,255,0.22); }
.lb-prev { left: -58px; }
.lb-next { right: -58px; }
.lb-dots { display: flex; gap: 8px; margin-top: 1.2rem; }
.lb-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.22); cursor: pointer; transition: background 0.2s; }
.lb-dot.on { background: var(--gold); }
.lb-counter { color: rgba(255,255,255,0.35); font-size: 12px; margin-top: 0.4rem; letter-spacing: 0.1em; }

/* ---- AMENITIES SECTION ---- */
.am-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; }
.am-card { display: flex; flex-direction: column; gap: 0.9rem; }
.am-icon-box { width: 50px; height: 50px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; }
.am-icon-box svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.am-card h3 { font-family: var(--fd); font-size: 1.15rem; font-weight: 500; }
.am-card p { font-size: 13px; color: var(--gray); line-height: 1.8; }

/* ---- DINING ---- */
.dining-grid { display: grid; grid-template-columns: 1fr 1fr; }
.dining-photo { background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=900&q=80') center / cover no-repeat; min-height: 460px; }
.dining-body { background: var(--dark); padding: 5rem 5vw; display: flex; flex-direction: column; justify-content: center; }
.dining-desc { font-size: 14px; color: rgba(255,255,255,0.48); line-height: 1.9; margin: 1.4rem 0; }
.dining-hours { border-top: 1px solid rgba(255,255,255,0.07); }
.dining-hours li { display: flex; justify-content: space-between; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 13px; }
.dining-hours li .dh-label { color: rgba(255,255,255,0.38); }
.dining-hours li .dh-time  { color: var(--white); }

/* ---- PAYMENT ---- */
.pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
.pay-card { border: 1px solid rgba(255,255,255,0.08); padding: 2.2rem 1.8rem; border-radius: var(--radius); transition: border-color 0.2s; }
.pay-card:hover { border-color: var(--gold); }
.pay-icon { font-size: 2.4rem; margin-bottom: 1.2rem; }
.pay-card h3 { font-family: var(--fd); font-size: 1.3rem; font-weight: 500; color: var(--white); margin-bottom: 0.7rem; }
.pay-card p { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.8; }
.pay-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1.2rem; }
.pay-tag { font-size: 10px; color: var(--gold); background: rgba(200,168,75,0.1); padding: 3px 10px; border-radius: 20px; border: 1px solid rgba(200,168,75,0.2); letter-spacing: 0.04em; }

/* ---- REVIEWS ---- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }
.review-card { background: var(--white); border: 1px solid var(--gray-lt); padding: 1.8rem; border-radius: var(--radius); }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 0.9rem; }
.review-card p { font-size: 14px; color: var(--gray); line-height: 1.8; font-style: italic; margin-bottom: 1.1rem; }
.reviewer { font-size: 12px; font-weight: 500; letter-spacing: 0.04em; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; }
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.ci-item { padding-bottom: 1.4rem; border-bottom: 1px solid var(--gray-lt); }
.ci-label { font-size: 9px; letter-spacing: 0.24em; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 4px; }
.ci-value { font-family: var(--fd); font-size: 1rem; }
.map-box { background: var(--cream); border: 1px solid var(--gray-lt); padding: 1.8rem; text-align: center; border-radius: var(--radius); margin-top: 0.5rem; }
.map-box p { font-family: var(--fd); font-size: 1rem; margin-bottom: 0.4rem; }
.map-box small { font-size: 12px; color: var(--gray); display: block; margin-bottom: 0.9rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 9px; letter-spacing: 0.22em; color: var(--gray); text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  font-size: 14px; color: var(--black); background: var(--cream);
  border: 1px solid var(--gray-lt); border-radius: var(--radius);
  padding: 11px 14px; outline: none; transition: border-color 0.2s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-ok { display: none; background: #e8f5e9; color: #1b5e20; padding: 11px 14px; border-radius: var(--radius); font-size: 14px; text-align: center; }
.form-ok.show { display: block; }

/* ---- FOOTER ---- */
footer { background: var(--black); }
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; padding: 5rem 5vw 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-name { font-family: var(--fd); font-size: 1.1rem; font-weight: 500; color: var(--white); display: block; margin-bottom: 3px; }
.footer-brand-sub  { font-size: 9px; letter-spacing: 0.24em; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.9; }
.footer-col h4 { font-size: 9px; letter-spacing: 0.26em; color: var(--gold); text-transform: uppercase; margin-bottom: 1.4rem; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  padding: 1.6rem 5vw;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 12px; color: rgba(255,255,255,0.2);
}

/* ---- BOOKING MODAL ---- */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 600;
  background: rgba(0,0,0,0.75); align-items: center; justify-content: center;
  padding: 1rem; backdrop-filter: blur(5px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--off-white); max-width: 640px; width: 100%;
  max-height: 92vh; overflow-y: auto; border-radius: var(--radius);
  animation: mslide 0.28s ease;
}
@keyframes mslide { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.modal-head {
  background: var(--black); padding: 1.6rem 2rem;
  display: flex; justify-content: space-between; align-items: flex-start;
  position: sticky; top: 0; z-index: 10;
}
.modal-room-name  { font-family: var(--fd); font-size: 1.65rem; font-weight: 300; color: var(--white); }
.modal-room-price { font-family: var(--fd); font-size: 1.3rem; color: var(--gold); margin-top: 1px; }
.modal-close-btn { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 1.3rem; line-height: 1; cursor: pointer; transition: color 0.2s; }
.modal-close-btn:hover { color: var(--white); }
.modal-body { padding: 2rem; }
/* steps */
.steps-bar { display: flex; align-items: center; margin-bottom: 2rem; }
.step-dot {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--gray-lt); display: flex; align-items: center;
  justify-content: center; font-size: 12px; color: var(--gray);
  flex-shrink: 0; transition: all 0.3s;
}
.step-dot.on   { background: var(--black); color: var(--white); border-color: var(--black); }
.step-dot.done { background: var(--gold); color: var(--black); border-color: var(--gold); }
.step-line { flex: 1; height: 1px; background: var(--gray-lt); transition: background 0.3s; }
.step-line.done { background: var(--gold); }
.step-panel { display: none; flex-direction: column; gap: 1.15rem; }
.step-panel.on { display: flex; }
.step-title { font-family: var(--fd); font-size: 1.4rem; font-weight: 500; margin-bottom: 0.1rem; }
.mf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mf-group { display: flex; flex-direction: column; gap: 5px; }
.mf-label { font-size: 9px; letter-spacing: 0.22em; color: var(--gray); text-transform: uppercase; }
.mf-input {
  font-size: 14px; color: var(--black); background: var(--cream);
  border: 1px solid var(--gray-lt); border-radius: var(--radius);
  padding: 11px 14px; outline: none; transition: border-color 0.2s;
  width: 100%; font-family: var(--fb);
}
.mf-input:focus { border-color: var(--gold); }
textarea.mf-input { resize: vertical; }
.price-summary { background: var(--cream); border: 1px solid var(--gray-lt); padding: 1.2rem 1.4rem; border-radius: var(--radius); }
.ps-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--gray); padding: 3px 0; }
.ps-row.ps-total { border-top: 1px solid var(--gray-lt); margin-top: 7px; padding-top: 11px; color: var(--black); font-weight: 500; font-size: 15px; }
.pay-method-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ptab { background: var(--cream); border: 1px solid var(--gray-lt); padding: 11px 8px; font-size: 11px; letter-spacing: 0.06em; border-radius: var(--radius); text-align: center; transition: all 0.2s; cursor: pointer; }
.ptab:hover, .ptab.on { background: var(--black); color: var(--white); border-color: var(--black); }
.crypto-info { background: var(--cream); border: 1px solid var(--gray-lt); padding: 1.6rem; text-align: center; border-radius: var(--radius); }
.crypto-info .ci-icon { font-size: 2.4rem; margin-bottom: 0.9rem; }
.crypto-info h4 { font-family: var(--fd); font-size: 1.2rem; margin-bottom: 0.7rem; }
.crypto-info p { font-size: 13px; color: var(--gray); line-height: 1.8; }
.crypto-addr { font-family: monospace; font-size: 11px; background: var(--white); border: 1px solid var(--gray-lt); padding: 9px 13px; border-radius: var(--radius); margin: 0.9rem 0; word-break: break-all; color: var(--black); }
.total-bar { display: flex; justify-content: space-between; align-items: center; background: var(--black); color: var(--white); padding: 1rem 1.2rem; border-radius: var(--radius); font-size: 14px; margin-top: 0.9rem; }
.total-bar strong { font-family: var(--fd); font-size: 1.4rem; color: var(--gold); }
.modal-btn-row { display: flex; gap: 0.75rem; margin-top: 0.6rem; }
.success-wrap { text-align: center; padding: 2.5rem 1rem; }
.success-circle { width: 68px; height: 68px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 1.4rem; }
.success-wrap h3 { font-family: var(--fd); font-size: 1.9rem; font-weight: 400; margin-bottom: 0.7rem; }
.success-wrap p { font-size: 14px; color: var(--gray); line-height: 1.8; }
.success-ref { font-size: 12px; background: var(--cream); padding: 7px 14px; border-radius: var(--radius); display: inline-block; margin-top: 0.7rem; letter-spacing: 0.08em; }

/* ---- COMPARISON TABLE ---- */
.cmp-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 680px; }
.cmp-table thead tr { background: var(--black); color: var(--white); }
.cmp-table th { padding: 12px 16px; text-align: left; font-size: 10px; letter-spacing: 0.14em; font-weight: 500; text-transform: uppercase; }
.cmp-table td { padding: 13px 16px; border-bottom: 1px solid var(--gray-lt); vertical-align: middle; }
.cmp-table tr:hover td { background: var(--cream); cursor: pointer; }

/* ---- LEGAL ---- */
.legal-body { max-width: 820px; margin: 0 auto; padding: calc(var(--nav-h) + 4rem) 5vw 6rem; }
.legal-body h1 { font-family: var(--fd); font-size: 2.4rem; font-weight: 300; margin-bottom: 0.4rem; }
.legal-updated { font-size: 12px; color: var(--gray); margin-bottom: 3rem; display: block; }
.legal-body h2 { font-family: var(--fd); font-size: 1.35rem; font-weight: 500; margin: 2.5rem 0 0.9rem; border-bottom: 1px solid var(--gray-lt); padding-bottom: 0.4rem; }
.legal-body p, .legal-body li { font-size: 14px; line-height: 1.9; color: #333; margin-bottom: 0.7rem; }
.legal-body ul { padding-left: 1.4rem; }
.legal-nav { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.legal-nav a { font-size: 12px; color: var(--gold); letter-spacing: 0.07em; }
.cmp-table-wrap { overflow-x: auto; }

/* ---- TOAST ---- */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  background: var(--black); color: var(--white);
  padding: 13px 22px; border-radius: var(--radius); font-size: 13px;
  opacity: 0; transform: translateY(10px); transition: all 0.3s;
  pointer-events: none; border-left: 3px solid var(--gold);
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: calc(var(--nav-h) + 4rem) 5vw 4rem; }
  .rd-body { grid-template-columns: 1fr; }
  .rd-right { order: -1; }
  .bw { position: static; margin-bottom: 2rem; }
  .dining-grid { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 840px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .book-form { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .g-main { height: 300px; grid-column: 1; grid-row: 1; }
  .g-col { grid-template-columns: 1fr 1fr; grid-template-rows: 200px; }
  .amen-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .book-form { grid-template-columns: 1fr; }
  .form-row, .mf-row, .modal-btn-row, .pay-method-tabs { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-title { font-size: 2.7rem; }
  .lb-prev { left: -48px; }
  .lb-next { right: -48px; }
  .policy-grid, .amen-grid { grid-template-columns: 1fr; }
}
