:root {
  --bg: #F5F1EA;
  --bg-alt: #EDE7DC;
  --ink: #1F2620;
  --ink-soft: #4A554C;
  --muted: #8B8578;
  --accent: #6B7A65;
  --accent-dark: #4F5C4A;
  --line: rgba(31, 38, 32, 0.12);
  --serif: 'Fraunces', Georgia, 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: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
a { color: inherit; text-decoration: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ───────── Nav ───────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: transparent;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled,
.nav.solid,
.nav.open {
  background: rgba(245, 241, 234, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.nav.scrolled .logo,
.nav.solid .logo,
.nav.open .logo { color: var(--ink); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}
.nav.scrolled .nav-links a,
.nav.solid .nav-links a,
.nav.open .nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--accent); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn-light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-light:hover {
  background: var(--accent-dark);
  color: var(--bg);
  border-color: var(--accent-dark);
}

.nav-cta {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 13px 26px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.nav.scrolled .nav-cta,
.nav.solid .nav-cta,
.nav.open .nav-cta {
  color: var(--ink);
  border-color: var(--ink);
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.nav-cta .cta-short { display: none; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
  font-size: 18px;
}
.nav.scrolled .menu-toggle,
.nav.solid .menu-toggle,
.nav.open .menu-toggle { color: var(--ink); }

/* ───────── Hero (homepage) ───────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  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(0,0,0,0.5) 0%, rgba(0,0,0,0.58) 55%, rgba(0,0,0,0.74) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 0 24px; }
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.9;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 300;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; font-weight: 400; }
.hero p {
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 40px;
  opacity: 0.92;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%; transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: float 2.4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ───────── Page hero (inner pages) ───────── */
.page-hero {
  position: relative;
  min-height: 60vh;
  padding: 200px 0 100px;
  display: flex;
  align-items: center;
  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(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow {
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 300;
  max-width: 760px;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; }
.page-hero p {
  font-size: 17px;
  max-width: 560px;
  opacity: 0.92;
  line-height: 1.7;
}

/* ───────── Section base ───────── */
section { padding: 120px 0; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 24px;
}
.section-title em { font-style: italic; }
.section-intro {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.75;
}

/* ───────── Welcome (image + text) ───────── */
.welcome { background: var(--bg); }
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.welcome-image img { width: 100%; height: 100%; object-fit: cover; }
.welcome-text p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.welcome-meta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.welcome-meta-item .num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.welcome-meta-item .label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ───────── Rooms ───────── */
.rooms { background: var(--bg-alt); }
.rooms-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.room-card {
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(31,38,32,0.18);
}
.room-img { aspect-ratio: 4/3; overflow: hidden; }
.room-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img img { transform: scale(1.04); }
.room-body { padding: 28px; }
.room-body h3 { font-size: 24px; margin-bottom: 8px; }
.room-rate {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.room-desc {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.room-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.room-features li {
  font-size: 12px;
  padding: 4px 10px;
  background: var(--bg-alt);
  color: var(--ink-soft);
  border-radius: 2px;
  letter-spacing: 0.04em;
}
.room-link {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
  display: inline-block;
  transition: color 0.25s, border-color 0.25s;
}
.room-link:hover { color: var(--accent); border-color: var(--accent); }

/* Room detail rows (rooms.html) */
.room-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.room-row:last-child { margin-bottom: 0; }
.room-row.reverse .room-row-image { order: 2; }
.room-row-image { aspect-ratio: 4/3; overflow: hidden; }
.room-row-image img { width: 100%; height: 100%; object-fit: cover; }
.room-row-body h2 { font-size: clamp(32px, 3.5vw, 44px); margin-bottom: 12px; }
.room-row-body h2 em { font-style: italic; }
.room-row-body .room-rate { font-size: 14px; margin-bottom: 24px; }
.room-row-body p { color: var(--ink-soft); font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
.room-spec-list {
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}
.room-spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}
.room-spec-list li .lbl {
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.room-spec-list li .val { color: var(--ink); }
.room-amenities {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 32px;
}
.room-amenities li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}
.room-amenities li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--accent);
}

/* ───────── Experience / Facilities ───────── */
.experience { background: var(--bg); text-align: center; }
.experience-header { max-width: 620px; margin: 0 auto 72px; }
.experience-header .section-intro { margin: 0 auto; }
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: left;
}
.facility { padding-top: 28px; border-top: 1px solid var(--line); }
.facility-icon { width: 40px; height: 40px; margin-bottom: 24px; color: var(--accent); }
.facility h3 { font-size: 22px; margin-bottom: 12px; }
.facility p { color: var(--ink-soft); font-size: 15px; line-height: 1.75; }

/* Detailed facility row (facilities.html) */
.facility-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.facility-row:last-child { margin-bottom: 0; }
.facility-row.reverse .facility-row-image { order: 2; }
.facility-row-image { aspect-ratio: 4/3; overflow: hidden; }
.facility-row-image img { width: 100%; height: 100%; object-fit: cover; }
.facility-row-body h2 { font-size: clamp(30px, 3.4vw, 42px); margin-bottom: 16px; }
.facility-row-body h2 em { font-style: italic; }
.facility-row-body p { color: var(--ink-soft); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.facility-row-body ul {
  list-style: none;
  margin-top: 24px;
}
.facility-row-body ul li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
}
.facility-row-body ul li:last-child { border-bottom: 1px solid var(--line); }

/* ───────── Gallery (homepage) ───────── */
.gallery { background: var(--bg-alt); padding: 120px 0; }
.gallery-header { text-align: center; margin-bottom: 64px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 12px;
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-grid > .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid > .gallery-item:nth-child(2) { grid-column: span 2; }
.gallery-grid > .gallery-item:nth-child(3),
.gallery-grid > .gallery-item:nth-child(4) { grid-column: span 1; }

/* Full gallery page (gallery.html) */
.gallery-section { background: var(--bg); padding: 100px 0; }
.gallery-section + .gallery-section { padding-top: 0; }
.gallery-section-title {
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.gallery-full {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.gallery-full .g-item { overflow: hidden; }
.gallery-full .g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-full .g-item:hover img { transform: scale(1.04); }
/* Layout A: 8 / 4 split, two rows */
.gallery-full.layout-a .g-item:nth-child(1) { grid-column: span 8; aspect-ratio: 16/9; }
.gallery-full.layout-a .g-item:nth-child(2) { grid-column: span 4; aspect-ratio: 4/3; }
.gallery-full.layout-a .g-item:nth-child(3) { grid-column: span 4; aspect-ratio: 4/3; }
.gallery-full.layout-a .g-item:nth-child(4) { grid-column: span 8; aspect-ratio: 16/9; }
/* Layout B: trio of equal squares */
.gallery-full.layout-b .g-item { grid-column: span 4; aspect-ratio: 1/1; }
/* Layout C: 6/6 wide */
.gallery-full.layout-c .g-item { grid-column: span 6; aspect-ratio: 3/2; }

/* ───────── Location ───────── */
.location { background: var(--bg); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location-text h2 { margin-bottom: 24px; }
.location-text p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.location-list { list-style: none; margin-bottom: 36px; }
.location-list li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}
.location-list li:last-child { border-bottom: 1px solid var(--line); }
.location-list .place { color: var(--ink); }
.location-list .dist { color: var(--muted); font-size: 13px; letter-spacing: 0.06em; }
.location-image { aspect-ratio: 4/5; overflow: hidden; }
.location-image img { width: 100%; height: 100%; object-fit: cover; }

/* ───────── Testimonials ───────── */
.testimonials { background: var(--bg-alt); text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
  text-align: left;
}
.testimonial {
  background: var(--bg);
  padding: 44px;
  border-left: 2px solid var(--accent);
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 300;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.testimonial .source {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ───────── CTA Banner ───────── */
.cta-banner {
  position: relative;
  padding: 160px 0;
  text-align: center;
  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: rgba(31, 38, 32, 0.55);
  z-index: 2;
}
.cta-banner .container { position: relative; z-index: 3; }
.cta-banner h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  margin-bottom: 20px;
}
.cta-banner h2 em { font-style: italic; }
.cta-banner p {
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 36px;
  opacity: 0.92;
}

/* ───────── Contact ───────── */
.contact { background: var(--bg); padding: 120px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  background: var(--bg-alt);
  padding: 48px;
}
.contact-form h2 {
  font-size: 28px;
  margin-bottom: 8px;
}
.contact-form > p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 120px; }

.contact-details h3 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 500;
}
.contact-details .item {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.contact-details .item:last-of-type { border-bottom: 1px solid var(--line); }
.contact-details .item p {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-details .item span {
  color: var(--ink-soft);
  font-size: 14px;
  font-family: var(--sans);
}

/* ───────── Footer ───────── */
footer {
  background: var(--ink);
  color: rgba(245, 241, 234, 0.75);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo {
  color: var(--bg);
  font-size: 28px;
  display: block;
  margin-bottom: 18px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--bg); }
.footer-bottom {
  border-top: 1px solid rgba(245, 241, 234, 0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.footer-bottom .powered { color: rgba(245, 241, 234, 0.5); }

/* Section-end CTA */
.section-cta {
  text-align: center;
  margin-top: 64px;
}

/* ───────── Responsive ───────── */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  section { padding: 80px 0; }
  .welcome-grid,
  .rooms-header,
  .location-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }
  .gallery-grid > .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-grid > .gallery-item:nth-child(2) { grid-column: span 2; }
  .gallery-grid > .gallery-item:nth-child(3),
  .gallery-grid > .gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-cta { padding: 11px 18px; }
  .nav-cta .cta-long { display: none; }
  .nav-cta .cta-short { display: inline; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(245, 241, 234, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 18px;
  }
  .nav.open .nav-links li { width: 100%; }
  .nav.open .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-links li:last-child a { border-bottom: none; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }

  .room-row, .facility-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
  .room-row.reverse .room-row-image,
  .facility-row.reverse .facility-row-image { order: 0; }
  .room-amenities { grid-template-columns: 1fr; }

  .gallery-full.layout-a .g-item:nth-child(n),
  .gallery-full.layout-b .g-item,
  .gallery-full.layout-c .g-item { grid-column: span 12; aspect-ratio: 4/3; }

  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 600px) {
  .logo { font-size: 19px; }
  .nav-cta { padding: 10px 14px; font-size: 12px; }
  .hero { min-height: 560px; }
  .welcome-meta { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 100px 0; }
  .page-hero { padding: 160px 0 80px; min-height: 50vh; }
}
