:root {
  --wine: #7a2240;
  --wine-deep: #4c1228;
  --gold: #c9a057;
  --gold-deep: #9a7640;
  --ink: #140e10;
  --panel: #1d1418;
  --paper: #f6efe4;
  --muted: #c8b9ad;
  --line: rgba(201, 160, 87, .24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3 {
  font-family: Cormorant, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: .02em;
}
h1 span, h2 span, h3 span {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  text-transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--gold);
  color: #111;
}
.skip:focus { left: 8px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 26px;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: #1a1012;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .25s ease;
}
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }
.btn-ghost { background: transparent; color: #fff; }
.btn-ghost:hover { background: #fff; color: #1a1012; border-color: #fff; }
.btn-line { background: transparent; color: var(--wine); border-color: var(--wine); }
.btn-line:hover { background: var(--wine); color: #fff; }

.util {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px clamp(16px, 4vw, 48px);
  background: var(--wine-deep);
  font-size: 12px;
  letter-spacing: .06em;
  color: #e8d7c4;
}
.util a:hover { color: #fff; }

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(20, 14, 16, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 48px);
}
.logo {
  display: grid;
  gap: 3px;
  font-family: Cormorant, "Times New Roman", serif;
  line-height: 1;
}
.logo-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.logo strong { font-size: 26px; letter-spacing: .22em; }
.logo-hotelstayworld {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: .08em;
}
.logo small {
  font-family: Manrope, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--gold); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span:before,
.menu-toggle span:after {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: relative;
}
.menu-toggle span:before,
.menu-toggle span:after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle span:before { top: -7px; }
.menu-toggle span:after { top: 7px; }

.hero { position: relative; min-height: 78vh; overflow: hidden; }
.slides { position: relative; min-height: 78vh; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  background: #222 center/cover no-repeat;
}
.slide.active { opacity: 1; z-index: 1; }
.slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(76, 18, 40, .4) 0%, rgba(0,0,0,.12) 38%, rgba(20, 14, 16, .82) 100%);
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(16px, 6vw, 80px);
  bottom: 12%;
  max-width: 640px;
}
.hero-copy h1 { font-size: clamp(42px, 7vw, 76px); margin: 0 0 14px; }
.hero-copy p { margin: 0 0 22px; color: #f3e7d8; max-width: 500px; }
.hero-nav {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 28px;
  display: flex;
  gap: 8px;
}
.dot, .arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(0,0,0,.25);
  color: #fff;
  cursor: pointer;
}
.dot { width: 10px; height: 10px; border-radius: 50%; align-self: center; padding: 0; }
.dot.on { background: var(--gold); border-color: var(--gold); }

.booking {
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 12px;
  margin: -42px auto 0;
  padding: 22px;
  width: min(1180px, calc(100% - 32px));
  position: relative;
  z-index: 5;
  background: var(--panel);
  border: 1px solid var(--line);
}
.booking.flat { margin: 28px auto 0; }
.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 44px;
  padding: 8px 10px;
  border: 0;
  border-bottom: 1px solid #6a4d3a;
  background: transparent;
  color: #fff;
}
.field textarea { min-height: 110px; resize: vertical; }
.field option { color: #111; }

.section { padding: 84px clamp(16px, 5vw, 64px); }
.center { text-align: center; max-width: 780px; margin: 0 auto 40px; }
.center h2 { font-size: clamp(36px, 5vw, 58px); margin: 0 0 18px; }
.intro { background: var(--paper); color: #2a1a1e; }
.intro a { color: var(--wine); text-decoration: underline; }
.muted { color: #5d4d48; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: #222 center/cover no-repeat;
}
.card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(20, 14, 16, .9) 100%);
}
.card-body { position: absolute; z-index: 1; left: 22px; right: 22px; bottom: 24px; }
.card h3 { font-size: 34px; margin: 0 0 10px; }

.banner {
  min-height: 460px;
  display: grid;
  align-items: end;
  background: #111 center/cover no-repeat;
  position: relative;
}
.banner:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(76, 18, 40, .78), transparent 72%);
}
.banner-inner { position: relative; z-index: 1; padding: 48px clamp(16px, 5vw, 64px); max-width: 560px; }

.explore { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tile { background: #fff; color: #1a1012; }
.tile img { width: 100%; height: 210px; object-fit: cover; }
.tile-body { padding: 22px; min-height: 220px; display: flex; flex-direction: column; }
.tile h3 { font-size: 26px; margin: 0 0 10px; }
.tile p { color: #5a4a46; flex: 1; }
.tile .btn { align-self: start; margin-top: 12px; }

.events { background: #100b0d; }
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.event { background: var(--panel); border: 1px solid var(--line); }
.event img { width: 100%; height: 220px; object-fit: cover; }
.event-body { padding: 20px; }
.event time { color: var(--gold); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }

.signup { background: var(--wine-deep); }
.signup-wrap { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: end; max-width: 1100px; margin: 0 auto; }
.signup-form { display: grid; gap: 12px; }
.signup input[type="email"] {
  min-height: 48px;
  padding: 10px 12px;
  border: 0;
  background: #fff;
  color: #111;
}
.optin { font-size: 13px; color: #f0e2d4; }
.optin a { text-decoration: underline; }
.note { color: #e8d4a8; font-size: 14px; }

footer { padding: 56px clamp(16px, 5vw, 64px) 110px; background: #0c0809; color: var(--muted); }
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
footer a:hover { color: #fff; }
.legal { font-size: 12px; max-width: 860px; }
.demo-banner {
  margin-top: 22px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  color: #e4d8c8;
  font-size: 13px;
}

.mobile-book {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  background: var(--wine);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  background: rgba(0,0,0,.72);
  padding: 20px;
}
.modal.open { display: grid; }
.modal-card {
  width: min(520px, 100%);
  background: var(--panel);
  padding: 28px;
  border: 1px solid var(--line);
}
.modal-card h2 { margin-top: 0; }
.close { float: right; background: none; border: 0; color: #fff; font-size: 28px; cursor: pointer; }

.page-hero {
  min-height: 44vh;
  display: grid;
  align-items: end;
  background: #222 center/cover no-repeat;
  position: relative;
}
.page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(76, 18, 40, .35) 0%, rgba(20, 14, 16, .82) 100%);
}
.page-hero-copy {
  position: relative;
  z-index: 1;
  padding: 72px clamp(16px, 5vw, 64px) 44px;
  max-width: 780px;
}
.page-hero h1 { font-size: clamp(36px, 6vw, 64px); margin: 0 0 12px; }
.page-hero p { margin: 0; color: #f3e7d8; max-width: 560px; }

.prose { max-width: 740px; }
.prose p, .prose li { color: #e8ddd3; }
.intro .prose p, .intro .prose li { color: #5d4d48; }
.wide { max-width: 1180px; margin: 0 auto; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: start; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.stat strong {
  display: block;
  font-family: Cormorant, "Times New Roman", serif;
  font-size: 32px;
  color: var(--gold);
}
.notice {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(201, 160, 87, .08);
  color: #e8d4a8;
  font-size: 14px;
}
.suite-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.suite-card {
  background: var(--panel);
  border: 1px solid var(--line);
}
.suite-card img { width: 100%; height: 200px; object-fit: cover; }
.suite-card .pad { padding: 20px; }
.legal-page { color: #e8ddd3; max-width: 760px; }
.legal-page h2 { color: #fff; margin-top: 36px; }
.summary {
  margin: 0 auto 28px;
  width: min(1180px, calc(100% - 32px));
  padding: 18px 22px;
  background: var(--panel);
  border: 1px solid var(--line);
}

@media (max-width: 980px) {
  .menu-toggle { display: grid; place-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    background: #160f12;
  }
  .nav-links.open { display: flex; }
  .booking, .cards, .explore, .event-grid, .signup-wrap, .foot-grid,
  .split, .stat-row, .suite-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 68vh; }
  .slides { min-height: 68vh; }
  .mobile-book { display: block; }
}
