:root {
  --bg: #FFFFFF;
  --surface: #F7F8FA;
  --surface-warm: #F4F1EC;
  --card: #FFFFFF;
  --ink: #0F1B2D;
  --ink-soft: #475467;
  --muted: #8794AD;
  --accent: #C84A1A;
  --accent-deep: #9A3712;
  --accent-soft: #FBEFE9;
  --gold: #B68A35;
  --line: #E6E9EF;
  --line-strong: #C9CFDB;
  --display: 'Mulish', -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.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 980px; margin: 0 auto; padding: 0 24px; }

/* ───────── Top utility bar ───────── */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  font-size: 12.5px;
  padding: 7px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar .left {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.topbar .left span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar .left .sep { color: rgba(255,255,255,0.25); }
.topbar a {
  color: #fff;
  font-weight: 500;
}
.topbar a:hover { color: #FFCBAE; }

/* ───────── 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;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name .n1 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.brand-name .n2 {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.18s;
  padding: 8px 0;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--accent); font-weight: 600; }
.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--ink-soft);
}
.nav-phone strong { color: var(--ink); font-weight: 600; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.18s;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-dark:hover {
  background: #1E2C44;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.btn-ghost {
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  border-color: transparent;
}
.btn-ghost:hover { background: #fff; }
.btn-text {
  padding: 0;
  background: transparent;
  border: none;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-text:hover { color: var(--accent-deep); }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-block { width: 100%; }

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

/* ───────── Hero ───────── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 90px 0 60px;
}
.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,27,45,0.4) 0%, rgba(15,27,45,0.7) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content {
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  color: #fff;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  background: #4ADE80;
  border-radius: 50%;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(34px, 4.8vw, 54px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust .item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 13.5px;
  font-weight: 500;
}
.hero-trust .item .ic {
  color: #FFCBAE;
  font-size: 15px;
}

/* Booking strip — overlaps hero */
.booking-strip {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 60px -20px rgba(15,27,45,0.35);
  padding: 18px;
  margin-top: -36px;
  position: relative;
  z-index: 5;
}
.booking-strip-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.4fr 1.4fr auto;
  gap: 14px;
  align-items: end;
}
.booking-strip .field { margin: 0; }
.booking-strip label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.booking-strip input,
.booking-strip select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 10px 12px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
}
.booking-strip input:focus,
.booking-strip select:focus { border-color: var(--accent); }
.booking-strip .btn { padding: 11px 24px; height: 41px; }

/* ───────── Sections base ───────── */
section { padding: 80px 0; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-lede {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.7;
}
.section-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 42px;
}
.section-header.center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.section-header.center .section-lede { margin-left: auto; margin-right: auto; }

/* ───────── 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.75;
  margin-bottom: 16px;
}
.about-meta {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.about-meta .item .n {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  display: block;
  letter-spacing: -0.02em;
}
.about-meta .item .l {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* ───────── Rooms ───────── */
.rooms { background: var(--surface); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.room-card {
  background: var(--card);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.room-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.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-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(15,27,45,0.85);
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  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: 700;
  margin-bottom: 4px;
}
.room-body .meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
}
.room-body .meta span:not(:last-child)::after {
  content: '·';
  margin: 0 8px;
  color: var(--line-strong);
}
.room-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
  flex: 1;
}
.room-features li {
  font-size: 12px;
  padding: 3px 8px;
  background: var(--surface);
  color: var(--ink-soft);
  border-radius: 3px;
  border: 1px solid var(--line);
}
.room-price-bar {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.room-price-bar .from {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.room-price-bar .price {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.room-price-bar .per {
  font-size: 12px;
  color: var(--muted);
}
.room-cta-row {
  display: flex;
  gap: 8px;
}
.room-cta-row .btn { flex: 1; }

/* Room detail rows */
.room-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.room-row:last-child { border-bottom: none; }
.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(26px, 3vw, 36px);
  margin-bottom: 8px;
  font-weight: 800;
}
.room-row-body .meta { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.room-row-body .meta span:not(:last-child)::after {
  content: '·';
  margin: 0 8px;
  color: var(--line-strong);
}
.room-row-body p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 14px;
}
.room-row-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 18px 0;
  margin: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.room-row-price .price {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
}
.room-row-price .per { color: var(--muted); font-size: 14px; }
.room-row-amenities {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  margin: 18px 0 26px;
}
.room-row-amenities li {
  font-size: 14px;
  color: var(--ink);
  display: flex;
  gap: 8px;
  align-items: center;
}
.room-row-amenities li::before {
  content: '';
  width: 14px; height: 14px;
  flex-shrink: 0;
  background: var(--accent-soft);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
.room-row-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: 22px;
}
.amenity {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.amenity-icon {
  width: 36px; height: 36px;
  color: var(--accent);
}
.amenity-icon svg { width: 100%; height: 100%; }
.amenity h4 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
}
.amenity p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Facility detail rows */
.facility-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}
.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(22px, 2.6vw, 30px);
  margin-bottom: 14px;
  font-weight: 800;
}
.facility-row-body p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 14px;
}
.facility-row-body ul {
  list-style: none;
  margin-top: 18px;
}
.facility-row-body ul li {
  padding: 9px 0;
  font-size: 14px;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.facility-row-body ul li:last-child { border-bottom: 1px solid var(--line); }

/* ───────── Location ───────── */
.location { background: var(--surface); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.location-text p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 22px;
}
.location-list { list-style: none; }
.location-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.location-list li:first-child { border-top: 1px solid var(--line); }
.location-list .place strong {
  font-size: 14px;
  font-weight: 700;
  display: block;
  color: var(--ink);
}
.location-list .place span {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
  display: block;
}
.location-list .dist {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}
.location-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
}
.location-image img { width: 100%; height: 100%; object-fit: cover; }

/* ───────── Reviews ───────── */
.reviews { background: var(--bg); }
.reviews-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 28px 32px;
  background: var(--surface-warm);
  border-radius: 6px;
  margin-bottom: 28px;
}
.reviews-score {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reviews-score .n {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.reviews-score .of {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.reviews-stars {
  color: #F59E0B;
  font-size: 16px;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.reviews-meta strong {
  font-size: 14px;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}
.reviews-meta span {
  font-size: 13px;
  color: var(--ink-soft);
}
.reviews-sources {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.reviews-sources .src {
  display: flex;
  flex-direction: column;
}
.reviews-sources .src .v {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}
.reviews-sources .src .l {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.review {
  background: var(--card);
  border-radius: 6px;
  padding: 24px;
  border: 1px solid var(--line);
}
.review .stars { color: #F59E0B; font-size: 14px; margin-bottom: 12px; }
.review p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 16px;
}
.review-by .name { font-size: 13px; font-weight: 600; }
.review-by .src {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ───────── Page hero (inner pages) ───────── */
.page-hero {
  position: relative;
  padding: 100px 0 70px;
  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,27,45,0.45) 0%, rgba(15,27,45,0.78) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb {
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.page-hero .breadcrumb a { color: #fff; }
.page-hero h1 {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  max-width: 720px;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  line-height: 1.65;
}

/* ───────── Gallery ───────── */
.gallery-section { padding: 70px 0; }
.gallery-section + .gallery-section { padding-top: 0; }
.gallery-section h3 {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gallery-grid .g { overflow: hidden; border-radius: 6px; }
.gallery-grid .g img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.gallery-grid .g:hover img { transform: scale(1.03); }
.gallery-grid.split-a .g:nth-child(1) { grid-column: span 8; aspect-ratio: 16/9; }
.gallery-grid.split-a .g:nth-child(2) { grid-column: span 4; aspect-ratio: 4/5; }
.gallery-grid.thirds .g { grid-column: span 4; aspect-ratio: 4/3; }
.gallery-grid.halves .g { grid-column: span 6; aspect-ratio: 4/3; }

/* ───────── CTA banner ───────── */
.cta-banner {
  position: relative;
  padding: 90px 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,27,45,0.85) 0%, rgba(15,27,45,0.65) 100%);
  z-index: 2;
}
.cta-banner .container { position: relative; z-index: 3; max-width: 800px; }
.cta-banner h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 38px);
  color: #fff;
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  max-width: 600px;
}
.cta-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ───────── Contact ───────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px;
}
.contact-form h2 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
.contact-form .sub {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.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-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
}
.contact-card .head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.contact-card .val {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  display: block;
}
.contact-card a.val { color: var(--accent); }
.contact-card .sub {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.contact-card .links {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

/* ───────── Footer ───────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
  font-size: 13.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 44px;
}
.footer-brand .brand-mark {
  background: var(--accent);
  color: #fff;
}
.footer-brand .brand-name .n1 { color: #fff; }
.footer-brand .brand-name .n2 { color: rgba(255,255,255,0.6); }
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  margin-top: 18px;
  max-width: 340px;
}
.footer-brand .footer-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 13px;
}
.footer-brand .footer-stars .s { color: #F59E0B; }
.footer-brand .footer-stars strong { color: #fff; font-weight: 700; }
.footer-col h4 {
  color: #fff;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom .powered { color: rgba(255,255,255,0.5); }

/* ───────── Responsive ───────── */
@media (max-width: 980px) {
  section { padding: 60px 0; }
  .hero { min-height: 480px; padding: 70px 0 50px; }
  .booking-strip-inner { grid-template-columns: 1fr 1fr; }
  .booking-strip-inner .btn { grid-column: 1 / -1; }
  .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, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .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; }
  .nav-phone { display: none; }
  .gallery-grid .g { grid-column: span 12 !important; aspect-ratio: 4/3 !important; }
  .room-row-amenities { grid-template-columns: 1fr; }
  .reviews-top { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .reviews-sources { gap: 14px; }
  .topbar .right { display: none; }
}
@media (max-width: 560px) {
  .rooms-grid, .amenities-grid, .reviews-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .booking-strip-inner { grid-template-columns: 1fr; }
  .about-meta { grid-template-columns: 1fr 1fr; }
}
