/* =====================================================================
   HOTEL UPTOWN — STYLES
   Brand palette drawn from the logo: deep navy wordmark, warm gold monogram, soft ivory
   ===================================================================== */

:root {
  --navy: #1a2444;
  --navy-900: #101830;
  --navy-700: #27335c;
  --navy-600: #35437a;
  --gold: #c9a35a;
  --gold-600: #a9843c;
  --gold-300: #e2c98d;
  --gold-100: #f7f0dd;
  --ivory: #fbf9f4;
  --sand: #f3efe6;
  --sand-200: #ebe5d8;
  --ink: #1b2131;
  --ink-600: #4d5669;
  --ink-400: #7f899b;
  --line: #e6e0d3;
  --white: #ffffff;
  --wa: #25d366;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --radius: 22px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(16, 24, 48, .08);
  --shadow-lg: 0 28px 70px rgba(16, 24, 48, .18);
  --container: 1200px;
  --header-h: 80px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-variant-numeric: lining-nums; font-family: var(--font-body); color: var(--ink); background: var(--ivory); line-height: 1.65; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; margin: 0 0 .5em; color: var(--navy); font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.1vw, 2.55rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1em; }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.container-narrow { width: min(100% - 2rem, 820px); margin-inline: auto; }
.section { padding-block: clamp(4rem, 8vw, 6.5rem); }
.section-sand { background: var(--sand); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy .section-lead { color: rgba(255,255,255,.78); }
.section-head { max-width: 860px; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .ornament { margin-inline: auto; }
.section-head.split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.section-head.split > div { max-width: 860px; }
.section-lead { color: var(--ink-600); font-size: 1.08rem; max-width: 62ch; }
/* Run-in headings: the topic words sit on the same line and at the same size as the heading itself */
.h-lead { color: var(--gold-600); font-style: italic; font-weight: 500; }
.hero .h-lead, .page-banner .h-lead, .section-navy .h-lead, .cta-card .h-lead, .on-dark .h-lead { color: var(--gold-300); }
.ornament { display: flex; align-items: center; gap: .5rem; width: 120px; margin-bottom: 1.2rem; color: var(--gold); }
.ornament::before, .ornament::after { content: ""; flex: 1; height: 1px; background: currentColor; opacity: .7; }
.ornament span { width: 8px; height: 8px; background: currentColor; transform: rotate(45deg); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--navy); padding: .5rem 1rem; z-index: 1000; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
.preview-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 150; background: var(--gold); color: var(--navy); font-size: .85rem; font-weight: 700; text-align: center; padding: .6rem 1rem; }
.text-muted { color: var(--ink-400); }
.lead { font-size: 1.15rem; color: var(--ink-600); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.6rem; border-radius: 999px; font-weight: 700; font-size: .93rem; letter-spacing: .01em;
  border: 1.5px solid transparent; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-sm { padding: .58rem 1.15rem; font-size: .84rem; }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1rem; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-600); color: var(--white); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(201,163,90,.35); }
.btn-outline { border-color: currentColor; color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-ghost { border-color: rgba(255,255,255,.6); color: var(--white); backdrop-filter: blur(6px); background: rgba(255,255,255,.08); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-1px); }
.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-1px); }
.btn-light { background: rgba(255,255,255,.1); color: var(--white); border-color: rgba(255,255,255,.22); }
.btn-light:hover { background: rgba(255,255,255,.2); }
.btn-block { width: 100%; }
.link-arrow { font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: .4rem; border-bottom: 2px solid var(--gold); padding-bottom: .1rem; }
.link-arrow::after { content: "→"; transition: transform .2s; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  color: var(--white); transition: background .3s ease, box-shadow .3s ease, color .3s ease;
  background: linear-gradient(to bottom, rgba(16,24,48,.72), rgba(16,24,48,0));
}
.site-header.scrolled, .header-solid .site-header { background: rgba(251,249,244,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); color: var(--navy); box-shadow: 0 2px 24px rgba(16,24,48,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 1rem; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 56px; width: auto; display: block; }
.brand .logo-light { display: none; }
.site-header:not(.scrolled) .brand.has-light .logo-light { display: block; }
.site-header:not(.scrolled) .brand.has-light .logo-dark { display: none; }
.site-header:not(.scrolled) .brand.no-light img { filter: brightness(0) invert(1); }
.header-solid .site-header .brand.has-light .logo-light { display: none; }
.header-solid .site-header .brand.has-light .logo-dark { display: block; }
.header-solid .site-header .brand.no-light img { filter: none; }
.site-header .btn-outline { color: var(--white); }
.site-header.scrolled .btn-outline, .header-solid .site-header .btn-outline { color: var(--navy); }
.nav { display: flex; gap: 1.55rem; font-size: .9rem; font-weight: 600; }
.nav a { position: relative; padding: .3rem 0; opacity: .92; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold); transition: width .25s; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: .6rem; }
.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; padding: 8px; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; color: inherit; }
.nav-toggle span { display: block; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.header-solid main { padding-top: var(--header-h); }

/* ---------- Home hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; color: var(--white); padding-top: var(--header-h); }
.hero-media, .hero-overlay { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 20s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
/* Two layers: a top-to-bottom shade for the header and quick bar, and a left-to-right shade that sits behind the text only,
   so the words stay readable while the right side of the photo keeps its colour. */
.hero-overlay { background:
  linear-gradient(90deg, rgba(10,15,32,.86) 0%, rgba(10,15,32,.72) 38%, rgba(10,15,32,.30) 68%, rgba(10,15,32,.10) 100%),
  linear-gradient(180deg, rgba(10,15,32,.55) 0%, rgba(10,15,32,.30) 40%, rgba(10,15,32,.90) 100%); }
.hero-content { position: relative; z-index: 1; padding-block: 7rem 3rem; max-width: 900px; }
.hero-content h1 { color: var(--white); margin-bottom: 1.2rem; text-shadow: 0 2px 4px rgba(0,0,0,.45), 0 8px 34px rgba(0,0,0,.45); }
.hero .h-lead { color: #ecd59b; }
.hero-content h1 em { font-style: italic; color: var(--gold-300); }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 560px; color: #fff; font-weight: 500; text-shadow: 0 1px 3px rgba(0,0,0,.55), 0 4px 18px rgba(0,0,0,.4); margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero .hero-bar { position: relative; z-index: 2; margin-bottom: -3.4rem; }
.quick-bar { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); color: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; margin-top: 2.4rem; }
.quick-item { padding: 1.35rem 1.6rem; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: .2rem; }
.quick-item:last-child { border-right: 0; }
.quick-label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-400); font-weight: 700; }
.quick-value { font-size: 1.28rem; color: var(--navy); font-weight: 800; }
.quick-item-cta { background: var(--navy); }
.quick-item-cta .quick-label { color: rgba(255,255,255,.65); }
.quick-item-cta .quick-value { color: var(--gold); }

/* Stand-alone figures: body face, lining + tabular so digits share one height and width */
.quick-value, .highlight-num, .collage-badge strong, .room-price .amount, table.compare td.price, .quick-fact strong, .num { font-family: var(--font-body); font-variant-numeric: lining-nums tabular-nums; letter-spacing: -.02em; }

/* ---------- Highlights ---------- */
.highlights { padding-top: 6.8rem; padding-bottom: 1rem; }
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.highlight { text-align: center; padding: 1.4rem 1rem; border-top: 2px solid var(--gold); }
.highlight-num { display: block; font-size: 1.85rem; color: var(--navy); font-weight: 800; line-height: 1.15; }
.highlight-text { color: var(--ink-600); font-size: .92rem; }

/* ---------- Inner page banner ---------- */
/* One fixed height for every inner-page banner, photo or colour, so moving between pages never makes the layout jump.
   It is sized for the longest banner text (two-line heading + two-line sub-heading); shorter text simply sits at the bottom. */
.page-banner { --banner-h: 430px; position: relative; height: var(--banner-h); min-height: var(--banner-h); display: flex; align-items: flex-end; color: var(--white); padding-top: var(--header-h); overflow: hidden; background: var(--navy); }
.banner-media { position: absolute; inset: 0; }
.banner-media img { width: 100%; height: 100%; object-fit: cover; }
/* Photo banners: a left-to-right shade sits behind the text only, plus a bottom shade, so the words never wash into the photo. */
.banner-overlay { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(10,15,32,.88) 0%, rgba(10,15,32,.74) 40%, rgba(10,15,32,.34) 70%, rgba(10,15,32,.12) 100%),
  linear-gradient(180deg, rgba(10,15,32,.55) 0%, rgba(10,15,32,.28) 38%, rgba(10,15,32,.90) 100%); }
.page-banner:not(.no-image) h1 { text-shadow: 0 2px 4px rgba(0,0,0,.5), 0 8px 30px rgba(0,0,0,.45); }
.page-banner:not(.no-image) .sub { opacity: 1; font-weight: 500; text-shadow: 0 1px 3px rgba(0,0,0,.6), 0 4px 16px rgba(0,0,0,.4); }
.page-banner:not(.no-image) .breadcrumb { opacity: 1; text-shadow: 0 1px 3px rgba(0,0,0,.6); }
.page-banner:not(.no-image) .h-lead { color: #ecd59b; }
/* Colour-only banner: deep navy warming into bronze, with a soft gold glow — no photograph */
.page-banner.no-image { background: #151c38; }
.page-banner.no-image .banner-media { display: none; }
.page-banner.no-image .banner-overlay { background:
  radial-gradient(ellipse 60% 90% at 92% 0%, rgba(226,189,116,.38), transparent 60%),
  radial-gradient(ellipse 55% 80% at 0% 100%, rgba(150,88,44,.42), transparent 62%),
  linear-gradient(120deg, #141b36 0%, #1f2344 42%, #3a2a33 78%, #4a3226 100%); }
.page-banner.no-image .banner-overlay::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold-300) 50%, var(--gold) 70%, transparent); opacity: .8; }
.banner-content { position: relative; z-index: 1; padding-block: 1.5rem 3rem; max-width: 940px; }
.banner-content h1 { color: var(--white); font-size: clamp(2.1rem, 4.3vw, 3.4rem); margin-bottom: .8rem; }
.banner-content .sub { font-size: clamp(1rem, 1.5vw, 1.18rem); opacity: .9; max-width: 600px; margin: 0; }
.breadcrumb { display: flex; gap: .5rem; font-size: .8rem; opacity: .8; margin-bottom: 1.2rem; letter-spacing: .04em; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span::before { content: "/"; margin-right: .5rem; opacity: .5; }

/* ---------- Intro / about ---------- */
.intro-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.collage { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.collage img { border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; width: 100%; }
.collage img:first-child { grid-row: span 2; aspect-ratio: 3/4; }
.collage img:nth-child(2) { aspect-ratio: 1/1; margin-top: 2.5rem; }
.collage img:nth-child(3) { aspect-ratio: 1/1; }
.collage-badge { position: absolute; left: -1rem; bottom: 2rem; background: var(--navy); color: var(--white); padding: 1.1rem 1.4rem; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; max-width: 210px; }
.collage-badge strong { font-size: 2.1rem; font-weight: 800; color: var(--gold); line-height: 1; }
.collage-badge span { font-size: .84rem; opacity: .85; margin-top: .3rem; }
.intro-copy p { color: var(--ink-600); font-size: 1.05rem; }
.check-list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: .65rem; }
.check-list li { padding-left: 2rem; position: relative; font-weight: 600; color: var(--ink); }
.check-list li::before { content: ""; position: absolute; left: 0; top: .3rem; width: 18px; height: 18px; border-radius: 50%; background: var(--gold-100); }
.check-list li::after { content: ""; position: absolute; left: 6px; top: .55rem; width: 5px; height: 9px; border: solid var(--gold-600); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Room cards ---------- */
.rooms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.room-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.room-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.room-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--navy-900); }
.room-media .slides { position: absolute; inset: 0; }
.room-media .slides img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .5s ease, transform .6s ease; }
.room-media .slides img.is-active { opacity: 1; }
.room-card:hover .slides img.is-active { transform: scale(1.04); }
.room-tag { position: absolute; top: 1rem; left: 1rem; background: rgba(16,24,48,.82); color: var(--gold-300); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; padding: .4rem .75rem; border-radius: 999px; backdrop-filter: blur(6px); z-index: 2; }
.slide-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; border: 0; background: rgba(255,255,255,.92); color: var(--navy); cursor: pointer; font-size: 1.2rem; display: grid; place-items: center; opacity: 0; transition: opacity .2s; z-index: 2; }
.slide-nav.prev { left: .8rem; } .slide-nav.next { right: .8rem; }
.room-media:hover .slide-nav, .slide-nav:focus-visible { opacity: 1; }
.slide-dots { position: absolute; bottom: .8rem; left: 0; right: 0; display: flex; justify-content: center; gap: .35rem; z-index: 2; }
.slide-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.55); transition: all .25s; }
.slide-dots span.is-active { background: var(--gold); width: 18px; border-radius: 4px; }
.room-body { padding: 1.35rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.room-body h3 { margin: 0; font-size: 1.3rem; }
.room-meta { color: var(--ink-400); font-size: .84rem; display: flex; flex-wrap: wrap; gap: .3rem .8rem; }
.room-meta span { display: inline-flex; align-items: center; gap: .35rem; white-space: nowrap; }
.room-meta svg { width: 18px; height: 18px; flex-shrink: 0; }
.room-price { display: flex; align-items: baseline; gap: .4rem; flex-wrap: wrap; }
.room-price .amount { font-size: 1.5rem; color: var(--navy); font-weight: 800; line-height: 1; }
.room-price .suffix { font-size: .76rem; color: var(--ink-400); }
.room-desc { color: var(--ink-600); font-size: .93rem; margin: 0; }
.room-amenities { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; padding: 0; margin: 0; }
.room-amenities li { font-size: .76rem; background: var(--sand); color: var(--ink-600); padding: .3rem .65rem; border-radius: 999px; }
.room-amenities li.more { background: var(--gold-100); color: var(--gold-600); font-weight: 700; }
.room-actions { display: flex; gap: .6rem; margin-top: auto; padding-top: .4rem; flex-wrap: wrap; }
.room-actions .btn { flex: 1; }

/* Rooms page — feature rows */
.room-feature { display: grid; grid-template-columns: 1.15fr 1fr; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 2rem; }
.room-feature:nth-child(even) .room-media { order: 2; }
.room-feature .room-media { aspect-ratio: auto; min-height: 420px; }
.room-feature .room-media .slide-nav { opacity: 1; }
.room-feature .room-body { padding: clamp(1.6rem, 3vw, 2.6rem); gap: 1rem; justify-content: center; }
.room-feature h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin: 0; }
.room-feature .room-desc { font-size: 1rem; }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: .8rem; }
.fact { background: var(--sand); padding: .8rem 1rem; border-radius: var(--radius-sm); }
.fact small { display: block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-400); font-weight: 700; }
.fact strong { font-weight: 700; color: var(--navy); }
.room-feature .room-price .amount { font-size: 1.9rem; }

/* Rooms comparison table */
.table-wrap { overflow-x: auto; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
table.compare { width: 100%; border-collapse: collapse; font-size: .93rem; min-width: 640px; }
table.compare th, table.compare td { padding: 1rem 1.2rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
table.compare th { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-400); font-weight: 700; background: var(--sand); }
table.compare tr:last-child td { border-bottom: 0; }
table.compare td strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); }
table.compare td.price { font-weight: 800; color: var(--navy); white-space: nowrap; }
.note-box { background: var(--gold-100); border-left: 3px solid var(--gold); padding: 1rem 1.3rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--ink-600); font-size: .95rem; }
.note-box strong { color: var(--navy); }

/* ---------- Room detail page ---------- */
.room-page { padding-block: 2.5rem 5rem; }
.room-page .breadcrumb { color: var(--ink-400); opacity: 1; margin-bottom: 1.5rem; }
.room-page .breadcrumb a { color: var(--navy); }
.room-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(1.6rem, 3.5vw, 3.5rem); align-items: start; }
.room-gallery { display: grid; gap: .8rem; }
.room-gallery .main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; background: var(--navy-900); cursor: zoom-in; position: relative; }
.room-gallery .main img { width: 100%; height: 100%; object-fit: cover; }
.room-gallery .main .zoom-hint { position: absolute; right: 1rem; bottom: 1rem; background: rgba(16,24,48,.75); color: #fff; font-size: .75rem; padding: .35rem .7rem; border-radius: 999px; }
.room-gallery .thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: .6rem; }
.room-gallery .thumbs button { border: 2px solid transparent; border-radius: var(--radius-sm); overflow: hidden; padding: 0; background: var(--navy-900); aspect-ratio: 4/3; cursor: pointer; transition: border-color .2s; }
.room-gallery .thumbs button.is-active { border-color: var(--gold); }
.room-gallery .thumbs img { width: 100%; height: 100%; object-fit: cover; }
.room-info { margin-top: 2.2rem; }
.room-info h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .4rem; }
.room-info .lead { margin-bottom: 1.6rem; }
.room-info h3 { font-size: 1.15rem; margin: 1.8rem 0 .8rem; }
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: .6rem; list-style: none; padding: 0; margin: 0; }
.amenity-grid li { display: flex; align-items: center; gap: .6rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .7rem .9rem; font-size: .9rem; font-weight: 600; }
.amenity-grid li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.book-card { position: sticky; top: calc(var(--header-h) + 1rem); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 1.8rem; }
.book-card .room-price .amount { font-size: 2.2rem; }
.book-card .room-price { margin-bottom: 1.2rem; }
.book-card .facts { grid-template-columns: 1fr 1fr; margin-bottom: 1.2rem; }
.book-card .btn { width: 100%; margin-bottom: .6rem; }
.book-card .tiny { font-size: .8rem; color: var(--ink-400); margin: .6rem 0 0; }
.book-card .tiny a { color: var(--navy); font-weight: 700; }

/* ---------- Facilities ---------- */
.facilities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.facility { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.5rem 1.4rem; position: relative; transition: border-color .2s, transform .2s, box-shadow .2s; }
.facility:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.facility-icon { width: 50px; height: 50px; border-radius: 14px; background: var(--gold-100); color: var(--gold-600); display: grid; place-items: center; margin-bottom: 1rem; }
.facility-icon svg { width: 26px; height: 26px; }
.facility h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.facility p { font-size: .88rem; color: var(--ink-600); margin: 0; }
.badge-upcoming { position: absolute; top: 1rem; right: 1rem; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--gold-600); background: var(--gold-100); padding: .25rem .55rem; border-radius: 999px; }
.facility-group { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.facility-group:last-child { margin-bottom: 0; }
.group-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.group-head h2 { font-size: 1.6rem; margin: 0; }
.group-head::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.icon-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .6rem 1.2rem; }
.icon-list li { display: flex; align-items: center; gap: .7rem; padding: .5rem 0; font-weight: 600; font-size: .95rem; }
.icon-list svg { width: 22px; height: 22px; color: var(--gold-600); flex-shrink: 0; }

/* ---------- Dining & events ---------- */
.experiences-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.experience { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 3/4; background: var(--navy-700); display: block; }
.experience img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.experience:hover img { transform: scale(1.05); }
.experience-body { position: absolute; inset: auto 0 0 0; padding: 1.7rem; background: linear-gradient(to top, rgba(16,24,48,.96), rgba(16,24,48,0)); color: var(--white); }
.experience-body h3 { margin-bottom: .4rem; color: var(--white); }
.experience-body p { font-size: .9rem; opacity: .88; margin: 0; }
.status-pill { display: inline-block; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; padding: .3rem .65rem; border-radius: 999px; margin-bottom: .7rem; background: var(--gold); color: var(--navy); }
.status-pill.soon { background: rgba(255,255,255,.18); color: var(--white); }
.exp-feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; padding-block: clamp(2rem, 4vw, 3.5rem); border-bottom: 1px solid var(--line); }
.exp-feature:last-child { border-bottom: 0; }
.exp-feature:nth-child(even) .exp-media { order: 2; }
.exp-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); background: var(--navy-700); }
.exp-media img { width: 100%; height: 100%; object-fit: cover; }
.exp-copy h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
.exp-copy .status-pill.soon { background: var(--sand); color: var(--ink-600); }
.exp-copy p { color: var(--ink-600); font-size: 1.02rem; }

/* Coming-soon state */
.soon-block { text-align: center; max-width: 780px; margin-inline: auto; }
.soon-block .ornament { margin-inline: auto; }
.soon-block p { color: var(--ink-600); font-size: 1.08rem; }
.soon-block .btn-row { justify-content: center; margin-top: 1.8rem; }
.soon-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.6rem; }
.soon-tile { border: 1.5px dashed var(--sand-200); background: var(--white); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.soon-tile .facility-icon { margin: 0 0 .3rem; }
.soon-tile h3 { margin: 0; font-size: 1.25rem; }
.soon-tile .status-pill { margin: 0; background: var(--sand); color: var(--ink-600); }
.section-navy .soon-tile { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.24); }
.section-navy .soon-tile .facility-icon { background: rgba(201,163,90,.18); color: var(--gold-300); }
.section-navy .soon-tile .status-pill { background: rgba(255,255,255,.14); color: var(--white); }

/* ---------- Gallery ---------- */
.gallery-strip { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; gap: .8rem; }
.gallery-strip .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-strip .gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; position: relative; border: 0; padding: 0; margin: 0; background: var(--navy-900); display: block; width: 100%; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption { position: absolute; inset: auto 0 0 0; padding: 1.4rem .9rem .7rem; background: linear-gradient(to top, rgba(16,24,48,.8), transparent); color: #fff; font-size: .78rem; text-align: left; opacity: 0; transition: opacity .25s; }
.gallery-item:hover figcaption { opacity: 1; }
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filters button { border: 1.5px solid var(--line); background: var(--white); color: var(--ink-600); border-radius: 999px; padding: .5rem 1.1rem; font-weight: 700; font-size: .85rem; cursor: pointer; transition: all .2s; }
.filters button:hover { border-color: var(--gold); color: var(--navy); }
.filters button.is-active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.masonry { columns: 3; column-gap: .9rem; }
.masonry .gallery-item { break-inside: avoid; margin-bottom: .9rem; }
.masonry .gallery-item img { height: auto; }
.masonry .gallery-item.is-hidden { display: none; }
.empty-note { background: var(--white); border: 1px dashed var(--line); border-radius: var(--radius-sm); padding: 2rem; text-align: center; color: var(--ink-400); }

/* ---------- Location ---------- */
.location-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.location-copy p { color: var(--ink-600); }
.address { font-style: normal; background: var(--white); border-left: 3px solid var(--gold); padding: 1.1rem 1.3rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 1.2rem; line-height: 1.75; box-shadow: var(--shadow); }
.address strong { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); }
.nearby-title { margin-top: 2.2rem; font-size: 1.15rem; }
.nearby-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1.2rem; }
.nearby-list li { display: flex; flex-direction: column; padding: .6rem 0; border-bottom: 1px solid var(--line); font-size: .93rem; }
.nearby-list li strong { font-weight: 700; }
.nearby-list li span { color: var(--ink-400); font-size: .8rem; }
.nearby-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }
.nearby-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.1rem 1.2rem; display: flex; gap: .9rem; align-items: flex-start; }
.nearby-card svg { width: 22px; height: 22px; color: var(--gold-600); flex-shrink: 0; margin-top: .15rem; }
.nearby-card strong { display: block; font-weight: 700; }
.nearby-card span { color: var(--ink-400); font-size: .82rem; }
.nearby-card em { display: block; font-style: normal; color: var(--gold-600); font-size: .82rem; font-weight: 700; margin-top: .2rem; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 460px; background: var(--white); position: sticky; top: calc(var(--header-h) + 1rem); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }
.map-placeholder { height: 100%; min-height: 460px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--ink-400); background: repeating-linear-gradient(45deg, #f7f4ee 0 12px, #f1ede4 12px 24px); padding: 2rem; gap: .4rem; }
.map-placeholder span { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); }
.map-placeholder code { background: var(--white); padding: .1rem .4rem; border-radius: 4px; font-size: .85em; }
.map-wrap.small { position: static; min-height: 360px; }
.map-wrap.small iframe, .map-wrap.small .map-placeholder { min-height: 360px; }

/* ---------- Policies ---------- */
.policies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.policy { background: var(--white); border-radius: var(--radius-sm); padding: 1.5rem; border: 1px solid var(--line); display: flex; gap: 1rem; align-items: flex-start; }
.policy .facility-icon { margin: 0; flex-shrink: 0; width: 44px; height: 44px; }
.policy .facility-icon svg { width: 22px; height: 22px; }
.policy h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.policy p { margin: 0; color: var(--ink-600); font-size: .92rem; }
.quick-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 3rem; }
.quick-fact { background: var(--navy); color: var(--white); border-radius: var(--radius-sm); padding: 1.2rem 1.4rem; }
.quick-fact small { display: block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; opacity: .65; font-weight: 700; }
.quick-fact strong { font-size: 1.3rem; font-weight: 800; color: var(--gold); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-cards { display: grid; gap: .9rem; }
.contact-card { display: flex; gap: 1rem; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.2rem 1.3rem; transition: border-color .2s, transform .2s; }
.contact-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.contact-card .facility-icon { margin: 0; flex-shrink: 0; width: 46px; height: 46px; }
.contact-card .facility-icon svg { width: 22px; height: 22px; }
.contact-card small { display: block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-400); font-weight: 700; margin-bottom: .15rem; }
.contact-card strong { font-size: 1.05rem; color: var(--navy); overflow-wrap: anywhere; }
.contact-card span { display: block; color: var(--ink-600); font-size: .88rem; }
.contact-card.wa .facility-icon { background: #e6f9ed; color: #128c4a; }
.form-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: clamp(1.5rem, 3vw, 2.4rem); }
.form-card h2 { font-size: 1.7rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
label.field { display: flex; flex-direction: column; gap: .35rem; font-size: .78rem; font-weight: 700; color: var(--ink-600); letter-spacing: .04em; text-transform: uppercase; }
label.field input, label.field select, label.field textarea { font: inherit; font-family: var(--font-body); font-size: .98rem; text-transform: none; letter-spacing: 0; font-weight: 500; padding: .75rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--ivory); color: var(--ink); width: 100%; }
label.field input:focus, label.field select:focus, label.field textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); background: var(--white); }
label.field textarea { min-height: 96px; resize: vertical; }
label.field .req { color: var(--gold-600); margin-left: .15rem; }
label.field.is-invalid input, label.field.is-invalid select { border-color: #b3261e; background: #fff8f7; }
label.field .field-error { display: none; color: #b3261e; font-size: .8rem; font-weight: 600; text-transform: none; letter-spacing: 0; }
label.field.is-invalid .field-error { display: block; }
.form-alert { display: none; background: #fdecea; color: #7a1b15; border-radius: var(--radius-sm); padding: .7rem .9rem; font-size: .9rem; font-weight: 600; margin-top: 1rem; }
.form-alert.show { display: block; }
.form-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.2rem; align-items: center; }
.form-note { font-size: .82rem; color: var(--ink-400); margin: .8rem 0 0; }

/* ---------- CTA band ---------- */
.cta-band { padding-block: 0 clamp(4rem, 8vw, 6.5rem); }
.cta-card { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: clamp(2rem, 5vw, 4rem); display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center; background-image: radial-gradient(circle at 90% 10%, rgba(201,163,90,.28), transparent 45%); position: relative; overflow: hidden; }
.cta-card h2 { color: var(--white); }
.cta-card p { opacity: .85; margin-bottom: 0; }
.cta-actions { display: grid; gap: .8rem; min-width: 0; }
.cta-actions .btn { justify-content: flex-start; padding: 1rem 1.3rem; border-radius: var(--radius-sm); font-size: 1rem; white-space: normal; overflow-wrap: anywhere; text-align: left; }
.cta-actions .btn svg { width: 20px; height: 20px; }
.cta-actions .btn small { margin-left: auto; opacity: .7; font-weight: 500; font-size: .8rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.8); padding-top: 4.5rem; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand { margin-bottom: 1rem; color: var(--white); }
.footer-brand .brand img { height: 190px; }
.footer-brand .brand.no-light img { filter: brightness(0) invert(1); }
.footer-brand .brand.has-light .logo-dark { display: none; }
.footer-brand .brand.has-light .logo-light { display: block; }
.footer-slogan { color: var(--gold); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
.footer-brand p { opacity: .7; max-width: 380px; }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col a, .footer-col span { display: block; padding: .28rem 0; opacity: .8; }
.footer-col a:hover { opacity: 1; color: var(--gold); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding-block: 1.4rem; font-size: .82rem; gap: .8rem 1.5rem; }
.footer-bottom .footer-copy, .footer-bottom .footer-links { opacity: .7; }
.footer-bottom .footer-links { justify-self: end; text-align: right; }
.footer-bottom .footer-links a { margin-left: 1rem; }
.footer-bottom .footer-links a:hover { color: var(--gold); }
/* agency credit: centred, and lifted slightly out of the muted footer text */
.powered-by { justify-self: center; color: rgba(255,255,255,.85); font-size: .84rem; letter-spacing: .02em; padding: .42rem 1rem; border: 1px solid rgba(201,163,90,.45); border-radius: 999px; background: rgba(201,163,90,.10); transition: background .2s, border-color .2s, color .2s; white-space: nowrap; }
.powered-by strong { color: var(--gold-300); font-weight: 700; }
.powered-by:hover { background: rgba(201,163,90,.22); border-color: var(--gold); color: #fff; }

/* ---------- Floating WhatsApp ---------- */
.fab-whatsapp { position: fixed; right: 1.2rem; bottom: calc(1.2rem + env(safe-area-inset-bottom, 0px)); width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 25px rgba(37,211,102,.4); z-index: 90; transition: transform .2s; }
.fab-whatsapp:hover { transform: scale(1.08); }
.fab-whatsapp svg { width: 28px; height: 28px; }

/* ---------- Modal / lightbox ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 1rem; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(10,16,34,.86); backdrop-filter: blur(4px); }
.modal-panel { position: relative; background: var(--white); border-radius: var(--radius); max-width: 1000px; width: 100%; max-height: 92vh; overflow: auto; box-shadow: var(--shadow-lg); animation: pop .25s ease; }
@keyframes pop { from { transform: translateY(12px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-close { position: absolute; top: .8rem; right: .8rem; z-index: 3; width: 40px; height: 40px; border-radius: 50%; border: 0; background: rgba(255,255,255,.92); color: var(--navy); font-size: 1.5rem; cursor: pointer; display: grid; place-items: center; }
.modal-image { background: var(--navy-900); position: relative; }
.modal-image img { max-height: 84vh; width: 100%; object-fit: contain; }
.modal-image .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255,255,255,.9); color: var(--navy); font-size: 1.5rem; cursor: pointer; display: grid; place-items: center; }
.modal-image .lb-nav.prev { left: 1rem; } .modal-image .lb-nav.next { right: 1rem; }
.modal-image figcaption { color: rgba(255,255,255,.8); font-size: .85rem; padding: .8rem 1.2rem; display: flex; justify-content: space-between; gap: 1rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (max-width: 1024px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--ivory); color: var(--navy); padding: .6rem 1.5rem 1.2rem; gap: 0; box-shadow: var(--shadow-lg); }
  .nav.open a { padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .nav.open a::after { display: none; }
  .nav.open a.active { color: var(--gold-600); }
  .site-header:has(.nav.open) { background: var(--ivory); color: var(--navy); }
  .site-header:has(.nav.open) .btn-outline { color: var(--navy); }
  .site-header:has(.nav.open) .brand.no-light img { filter: none; }
  .site-header:has(.nav.open) .brand.has-light .logo-light { display: none; }
  .site-header:has(.nav.open) .brand.has-light .logo-dark { display: block; }
  .facilities-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-bar { grid-template-columns: repeat(2, 1fr); }
  .quick-item:nth-child(2) { border-right: 0; }
  .quick-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .highlights-grid, .quick-facts { grid-template-columns: repeat(2, 1fr); }
  .room-layout { grid-template-columns: 1fr; }
  .book-card { position: static; }
  .gallery-strip { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; }
  .gallery-strip .gallery-item:nth-child(4) { grid-column: span 1; }
}
@media (max-width: 820px) {
  .intro-grid, .location-grid, .cta-card, .contact-grid, .exp-feature, .room-feature { grid-template-columns: 1fr; }
  .room-feature:nth-child(even) .room-media, .exp-feature:nth-child(even) .exp-media { order: 0; }
  .room-feature .room-media { min-height: 0; aspect-ratio: 16/10; }
  .collage-badge { left: 1rem; bottom: -1rem; }
  .experiences-grid, .soon-tiles { grid-template-columns: 1fr; }
  .experience { aspect-ratio: 16/10; }
  .policies-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .map-wrap { position: static; min-height: 340px; }
  .map-wrap iframe, .map-placeholder { min-height: 340px; }
  .header-actions .btn-outline { display: none; }
  .masonry { columns: 2; }
  .page-banner { --banner-h: 400px; }
  .room-gallery .thumbs { grid-template-columns: repeat(4, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .facilities-grid, .policies-grid, .nearby-list, .rooms-grid, .footer-grid { grid-template-columns: 1fr; }
  .quick-bar { grid-template-columns: 1fr; }
  .quick-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-item-cta { border-bottom: 0; }
  .highlights-grid { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .highlight-num { font-size: 1.5rem; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-strip .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .room-actions { flex-direction: column; }
  .header-actions .btn-primary { display: none; }
  .brand img { height: 46px; }
  .footer-brand .brand img { height: 160px; }
  .collage img:nth-child(2) { margin-top: 1rem; }
  .quick-facts { grid-template-columns: 1fr 1fr; }
  .hero-content { padding-top: 5rem; }
  .page-banner { --banner-h: 430px; } .banner-content { padding-bottom: 2.2rem; }
  .btn-lg { padding: .9rem 1.5rem; }
}

/* Links that jump to a section (location.html#nearby, contact.html#enquire …) stop below the fixed header, not under it */
[id] { scroll-margin-top: calc(var(--header-h) + 1.5rem); }

/* =====================================================================
   RESPONSIVE REFINEMENTS — every rule below applies at 1100px and narrower
   (or to touch screens), so the desktop layout above is left exactly as it is.
   ===================================================================== */
@media (hover: none) {
  /* no hover on touch screens: keep the photo arrows visible (swiping also works) */
  .slide-nav { opacity: .92; width: 34px; height: 34px; }
}
@media (min-width: 821px) and (max-width: 1100px) {
  /* small laptops / landscape tablets: four footer columns instead of three plus a stranded one */
  .footer-grid { grid-template-columns: 1.35fr .85fr 1.1fr 1.25fr; gap: 1.6rem; }
  .footer-brand .brand img { height: 160px; }
  .rooms-grid { gap: 1.2rem; }
}
@media (max-width: 1024px) {
  /* the open menu can be taller than a phone held sideways: let it scroll */
  .nav.open { max-height: calc(100svh - var(--header-h)); overflow-y: auto; overscroll-behavior: contain; }
  .hero-content { padding-block: 6rem 2.5rem; }
}
@media (max-width: 820px) {
  .footer-bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; } .footer-bottom .footer-links { justify-self: center; }
  /* single-column layouts: stop the photo collage from stretching to the full tablet width */
  .collage { max-width: 560px; margin-inline: auto; width: 100%; }
  .intro-grid { gap: 2.6rem; }
  .section { padding-block: clamp(3rem, 7vw, 4.5rem); }
  .section-head.split { gap: 1rem; }
  .room-feature .room-body { padding: 1.5rem; }
  .book-card { padding: 1.4rem; }
  .cta-card { gap: 1.6rem; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights { padding-top: 5.5rem; }
}
@media (max-width: 700px) {
  /* comparison tables become stacked cards instead of scrolling sideways */
  table.compare { min-width: 0; }
  table.compare thead { display: none; }
  table.compare, table.compare tbody, table.compare tr, table.compare td { display: block; width: 100%; }
  table.compare tr { padding: 1rem 1.1rem; border-bottom: 1px solid var(--line); }
  table.compare tr:last-child { border-bottom: 0; }
  table.compare td { padding: .22rem 0; border: 0; display: flex; justify-content: space-between; gap: 1rem; text-align: right; }
  table.compare td::before { content: attr(data-label); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-400); font-weight: 700; text-align: left; align-self: center; }
  table.compare td.cell-title { display: block; text-align: left; padding-bottom: .5rem; }
  table.compare td.cell-title::before { content: none; }
}
@media (max-width: 560px) {
  .container, .container-narrow { width: min(100% - 1.6rem, var(--container)); }
  .facilities-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 1rem; gap: .8rem; }
  .contact-card strong { font-size: .93rem; }
  .contact-card .facility-icon { width: 40px; height: 40px; }
  .cta-actions .btn { font-size: .92rem; padding: .9rem 1rem; }
  .cta-card { padding: 1.6rem 1.2rem; }
  .form-actions .btn { flex: 1 1 100%; }
  .quick-item { padding: 1rem 1.2rem; }
  .hero .hero-bar { margin-bottom: -2.4rem; }
  .highlights { padding-top: 4.5rem; }
  .room-gallery .thumbs { grid-template-columns: repeat(4, 1fr); gap: .45rem; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .amenity-grid li { padding: .6rem .7rem; font-size: .84rem; }
  .facts { grid-template-columns: 1fr 1fr; }
  .nearby-cards { grid-template-columns: 1fr; }
  .filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: .3rem; scrollbar-width: none; } .filters::-webkit-scrollbar { display: none; } .filters button { flex-shrink: 0; }
  .masonry { column-gap: .6rem; } .masonry .gallery-item { margin-bottom: .6rem; }
  .footer-bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; } .footer-bottom .footer-links { justify-self: center; text-align: center; } .footer-bottom .footer-links a { margin: 0 .5rem; }
  .modal { padding: .5rem; } .modal-image .lb-nav { width: 40px; height: 40px; }
}
@media (max-width: 380px) {
  /* small phones */
  h1 { font-size: 2.05rem; } .banner-content h1 { font-size: 1.85rem; } h2 { font-size: 1.6rem; }
  .brand img { height: 42px; }
  .btn-lg { padding: .85rem 1.2rem; font-size: .95rem; } .hero-cta .btn { flex: 1 1 100%; }
  .amenity-grid { grid-template-columns: 1fr; }
  .highlight-num { font-size: 1.3rem; }
  .quick-facts { grid-template-columns: 1fr; }
}
@media (max-height: 520px) and (orientation: landscape) {
  /* phone held sideways: the hero must not demand a full screen height plus the info bar */
  .hero { min-height: 0; } .hero-content { padding-block: 5.5rem 1.5rem; }
  .page-banner { --banner-h: 320px; } .banner-content { padding-block: .6rem 1.4rem; } .banner-content h1 { font-size: 1.8rem; margin-bottom: .4rem; }
  .banner-content .sub { font-size: .95rem; } .breadcrumb { margin-bottom: .5rem; }
}
