:root {
  --bg: #FAFAFA;
  --surface: #F1F0EC;
  --card: #FFFFFF;
  --ink: #0F1419;
  --ink-soft: #3E4654;
  --muted: #8A92A1;
  --accent: #E55A2B;
  --accent-soft: #FFEDE3;
  --accent-dark: #C24820;
  --line: rgba(15, 20, 25, 0.08);
  --line-strong: rgba(15, 20, 25, 0.16);
  --display: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

/* ───────── Top bar ───────── */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  padding: 8px 0;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: var(--accent); font-weight: 500; }
.topbar .left { display: flex; gap: 24px; }
.topbar .left span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar .left .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ───────── Nav ───────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo::before {
  content: '';
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 2px;
  display: inline-block;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  padding: 6px 0;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active {
  color: var(--ink);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.18s ease;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.btn-dark {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-dark:hover { background: #1F2733; border-color: #1F2733; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}
.btn-ghost {
  background: rgba(255,255,255,0.16);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-sm { padding: 8px 14px; font-size: 12px; }
.btn-lg { padding: 14px 28px; font-size: 14px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 6px;
  font-size: 18px;
}

/* ───────── Hero ───────── */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  padding: 60px 0 80px;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,20,25,0.05) 0%, rgba(15,20,25,0.55) 60%, rgba(15,20,25,0.85) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 600;
  margin-bottom: 22px;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.hero p {
  font-size: 17px;
  max-width: 480px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
  line-height: 1.55;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat .num {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}
.hero-stat .lbl {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* Booking card in hero */
.booking-card {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  color: var(--ink);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.4);
}
.booking-card h3 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.booking-card .subtle {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
}
.booking-card .field {
  margin-bottom: 12px;
}
.booking-card label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.booking-card input,
.booking-card select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 10px 12px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  border-radius: 4px;
  outline: none;
}
.booking-card input:focus,
.booking-card select:focus { border-color: var(--accent); }
.booking-card .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.booking-card .btn { width: 100%; margin-top: 8px; }
.booking-card .price-hint {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.booking-card .price-hint strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
}

/* ───────── Sections base ───────── */
section { padding: 90px 0; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
}
.section-title {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 700px;
}
.section-lede {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 580px;
  line-height: 1.6;
}
.section-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

/* ───────── Highlight strip ───────── */
.highlights {
  background: var(--ink);
  color: #fff;
  padding: 28px 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.highlight-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.highlight-icon svg { width: 18px; height: 18px; }
.highlight-text strong {
  display: block;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.highlight-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.45;
}

/* ───────── About ───────── */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 6px;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-features {
  list-style: none;
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}
.about-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink);
}
.about-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ───────── Rooms ───────── */
.rooms { background: var(--surface); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.room-card {
  background: var(--card);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.room-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -16px rgba(15,20,25,0.18);
  border-color: var(--line-strong);
}
.room-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.room-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-card:hover .room-img img { transform: scale(1.04); }
.room-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.room-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-body h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.room-body .meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.room-body .meta span + span::before {
  content: '·';
  margin: 0 6px;
  color: var(--line-strong);
}
.room-body .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}
.room-body .price .from {
  font-size: 12px;
  color: var(--muted);
}
.room-body .price .now {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}
.room-body .price .strike {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}
.room-body .price .per {
  font-size: 12px;
  color: var(--muted);
}
.room-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.room-features li {
  font-size: 11px;
  padding: 3px 8px;
  background: var(--surface);
  color: var(--ink-soft);
  border-radius: 3px;
  letter-spacing: 0.02em;
}
.room-cta {
  margin-top: auto;
  display: flex;
  gap: 8px;
}
.room-cta .btn { flex: 1; }

/* Room detail rows (rooms.html) */
.room-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
.room-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.room-row.reverse .room-row-image { order: 2; }
.room-row-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
}
.room-row-image img { width: 100%; height: 100%; object-fit: cover; }
.room-row-body h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.room-row-body .meta { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.room-row-body .meta span + span::before {
  content: '·';
  margin: 0 6px;
  color: var(--line-strong);
}
.room-row-body p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.room-row-body .price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 18px 0;
  margin: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.room-row-body .price-line .now {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
}
.room-row-body .price-line .strike {
  color: var(--muted);
  text-decoration: line-through;
}
.room-amenities {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin: 18px 0 24px;
}
.room-amenities li {
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  gap: 8px;
  align-items: center;
}
.room-amenities li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}
.room-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ───────── Amenities grid ───────── */
.amenities { background: var(--bg); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.amenity {
  background: var(--card);
  padding: 24px;
  border-radius: 6px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.amenity:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.amenity-icon {
  width: 44px; height: 44px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.amenity-icon svg { width: 22px; height: 22px; }
.amenity h4 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
}
.amenity p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Facility row (facilities.html — bigger blocks) */
.facility-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.facility-row:last-child { margin-bottom: 0; }
.facility-row.reverse .facility-row-image { order: 2; }
.facility-row-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
}
.facility-row-image img { width: 100%; height: 100%; object-fit: cover; }
.facility-row-body h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 14px;
}
.facility-row-body p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.facility-row-body .facility-meta {
  display: flex;
  gap: 24px;
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.facility-row-body .facility-meta-item {
  display: flex;
  flex-direction: column;
}
.facility-row-body .facility-meta-item .lbl {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.facility-row-body .facility-meta-item .val {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.facility-row-body ul {
  list-style: none;
}
.facility-row-body ul li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  align-items: center;
}
.facility-row-body ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* ───────── Dining preview (homepage) ───────── */
.dining { background: var(--surface); }
.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.dining-card {
  background: var(--card);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.dining-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.dining-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dining-card:hover .dining-card-image img { transform: scale(1.03); }
.dining-card-body { padding: 24px; }
.dining-card-body h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}
.dining-card-body .type {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.dining-card-body p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px;
}
.dining-card-body .hours {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.dining-card-body .hours .lbl { color: var(--muted); }
.dining-card-body .hours .val { color: var(--ink); font-weight: 500; }

/* ───────── Location ───────── */
.location { background: var(--bg); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.location-text .section-title { margin-bottom: 18px; }
.location-text p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.location-distances {
  list-style: none;
  margin-bottom: 28px;
}
.location-distances li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  align-items: center;
}
.location-distances li:last-child { border-bottom: 1px solid var(--line); }
.location-distances .dist-icon {
  width: 28px; height: 28px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-distances .dist-icon svg { width: 14px; height: 14px; }
.location-distances .place {
  display: flex;
  flex-direction: column;
}
.location-distances .place strong { font-weight: 600; font-size: 14px; }
.location-distances .place span { font-size: 12px; color: var(--muted); }
.location-distances .km {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
}
.location-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
}
.location-image img { width: 100%; height: 100%; object-fit: cover; }

/* ───────── Offers ───────── */
.offers { background: var(--ink); color: #fff; }
.offers .section-title { color: #fff; }
.offers .section-lede { color: rgba(255,255,255,0.7); }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.offer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.offer-tag {
  display: inline-flex;
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.offer h4 {
  font-family: var(--display);
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}
.offer p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.offer .code {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.2);
  font-family: 'Courier New', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-top: 6px;
  border-radius: 3px;
  align-self: flex-start;
}

/* ───────── Reviews ───────── */
.reviews { background: var(--bg); text-align: left; }
.reviews-stat {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.reviews-score {
  font-family: var(--display);
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.reviews-score-sub {
  display: flex;
  flex-direction: column;
}
.reviews-stars {
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.reviews-stat-text {
  font-size: 14px;
  color: var(--ink-soft);
}
.reviews-stat-text strong { color: var(--ink); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 6px;
}
.review-stars { color: var(--accent); font-size: 14px; letter-spacing: 0.05em; margin-bottom: 14px; }
.review p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 16px;
}
.review-by { display: flex; flex-direction: column; gap: 2px; }
.review-by .name { font-size: 13px; font-weight: 600; }
.review-by .src {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ───────── Page hero (inner pages) ───────── */
.page-hero {
  position: relative;
  padding: 90px 0 60px;
  color: #fff;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,20,25,0.4) 0%, rgba(15,20,25,0.75) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.9); }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 600;
  color: #fff;
  max-width: 720px;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 16px;
  max-width: 560px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* ───────── Gallery ───────── */
.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.gallery-tab {
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  background: var(--card);
  border-radius: 100px;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.18s ease;
}
.gallery-tab.active,
.gallery-tab:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.gallery-grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}
.gallery-grid-12 .g-item { overflow: hidden; border-radius: 4px; }
.gallery-grid-12 .g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-grid-12 .g-item:hover img { transform: scale(1.04); }

.gallery-grid-12.layout-a .g-item:nth-child(1) { grid-column: span 6; aspect-ratio: 16/10; }
.gallery-grid-12.layout-a .g-item:nth-child(2) { grid-column: span 3; aspect-ratio: 4/5; }
.gallery-grid-12.layout-a .g-item:nth-child(3) { grid-column: span 3; aspect-ratio: 4/5; }

.gallery-grid-12.layout-b .g-item { grid-column: span 4; aspect-ratio: 4/3; }

.gallery-grid-12.layout-c .g-item:nth-child(1) { grid-column: span 4; aspect-ratio: 4/3; }
.gallery-grid-12.layout-c .g-item:nth-child(2) { grid-column: span 8; aspect-ratio: 16/9; }

/* ───────── CTA banner ───────── */
.cta-banner {
  position: relative;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('images/cta.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.cta-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,20,25,0.85) 0%, rgba(15,20,25,0.55) 100%);
  z-index: 2;
}
.cta-banner .container { position: relative; z-index: 3; max-width: 760px; }
.cta-banner h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 46px);
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 26px;
  max-width: 540px;
}

/* ───────── Contact ───────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 36px;
  border-radius: 6px;
}
.contact-form h2 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-form .subtle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 11px 13px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 6px;
}
.contact-card h4 {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.contact-card .big {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.contact-card .sub {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.contact-card a.big { color: var(--accent); }
.contact-card .quick {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

/* ───────── Footer ───────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: #fff; }
.footer-brand .logo::before { background: var(--accent); }
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 320px;
}
.footer-rating {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  align-items: center;
}
.footer-rating .stars { color: var(--accent); letter-spacing: 0.05em; font-size: 13px; }
.footer-rating .score {
  font-family: var(--display);
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}
.footer-rating .src { font-size: 11px; color: rgba(255,255,255,0.5); }
.footer-col h4 {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; font-size: 13px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.footer-bottom .powered {
  color: rgba(255,255,255,0.45);
}

/* ───────── Responsive ───────── */
@media (max-width: 980px) {
  .container, .container-narrow { padding: 0 22px; }
  section { padding: 64px 0; }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero .container { grid-template-columns: 1fr; gap: 32px; }
  .about-grid, .location-grid, .contact-grid,
  .room-row, .facility-row, .section-header { grid-template-columns: 1fr; gap: 36px; }
  .room-row.reverse .room-row-image,
  .facility-row.reverse .facility-row-image { order: 0; }
  .rooms-grid, .amenities-grid { grid-template-columns: 1fr 1fr; }
  .dining-grid, .reviews-grid, .offers-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .gallery-grid-12 .g-item { grid-column: span 12 !important; aspect-ratio: 4/3; }
  .room-amenities, .about-features { grid-template-columns: 1fr; }
  .topbar .left { gap: 14px; flex-wrap: wrap; }
  .reviews-stat { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 580px) {
  .rooms-grid, .amenities-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .reviews-score { font-size: 60px; }
}
