/* =========================================================================
   Sri Lanka Hotel List — design system
   Palette drawn from the national flag: deep maroon, gold, forest green and
   saffron, on warm ivory. Serif display (Fraunces) over a clean grotesque
   body (Manrope). No stock photography — texture and depth come from
   layered gradients, line art and type instead.
   ========================================================================= */

:root {
  --ink: #200d16;
  --maroon-900: #350a1f;
  --maroon-800: #4a1029;
  --maroon-700: #6b1836;
  --maroon-600: #8a2143;
  --maroon-500: #a92c4f;
  --gold-600: #c98a12;
  --gold-500: #e3a723;
  --gold-300: #f3c565;
  --green-700: #0c4a35;
  --green-600: #146349;
  --green-500: #1f8060;
  --saffron-600: #c2551b;
  --saffron-500: #e0722c;
  --saffron-300: #f0a869;
  --olive-800: #333d16;
  --olive-700: #4a5820;
  --olive-600: #64752c;
  --olive-300: #a8b877;
  --sand-000: #fbf6ee;
  --sand-100: #f4ecdc;
  --sand-200: #ecdfc9;
  --white: #ffffff;

  --text-on-dark: #f6ece1;
  --text-on-dark-dim: rgba(246, 236, 225, 0.72);
  --text-on-light: #2b1420;
  --text-on-light-dim: rgba(43, 20, 32, 0.65);

  --font-display: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 0.35s;
  --dur-med: 0.7s;
  --dur-slow: 1.1s;
}

/* ---------------------------------------------------------------------- */
/* Reset & base                                                            */
/* ---------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--sand-000);
  color: var(--text-on-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: var(--sand-000);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top var(--dur-fast) var(--ease-out);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--maroon-600), var(--gold-500), var(--green-600), var(--saffron-500));
}

/* A slim nod to the national flag's four colours, worn like a ribbon rather
   than printed as a literal flag. */
.flag-bar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 101;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--maroon-700) 0%,
    var(--maroon-700) 25%,
    var(--gold-500) 25%,
    var(--gold-500) 50%,
    var(--green-600) 50%,
    var(--green-600) 75%,
    var(--saffron-500) 75%,
    var(--saffron-500) 100%
  );
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  will-change: transform;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--dur-fast) var(--ease-out);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--ink);
  box-shadow: 0 10px 30px -12px rgba(227, 167, 35, 0.55);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -12px rgba(227, 167, 35, 0.65);
}

.btn-outline {
  border-color: rgba(246, 236, 225, 0.4);
  color: var(--text-on-dark);
}

.btn-outline:hover {
  border-color: var(--text-on-dark);
  background: rgba(246, 236, 225, 0.08);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border-color: rgba(43, 20, 32, 0.25);
  color: var(--text-on-light);
}

.btn-outline-dark:hover {
  border-color: var(--text-on-light);
  background: rgba(43, 20, 32, 0.05);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ---------------------------------------------------------------------- */
/* Header                                                                  */
/* ---------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 4px;
  z-index: 100;
  padding: 1.35rem 0;
  transition: padding var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  padding: 0.85rem 0;
  background: rgba(250, 246, 238, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: rgba(43, 20, 32, 0.08);
  box-shadow: 0 8px 24px -18px rgba(32, 13, 22, 0.4);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text-on-light);
  transition: color var(--dur-fast) var(--ease-out);
}

.brand-mark .mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  display: grid;
  place-items: center;
  color: var(--ink);
  flex-shrink: 0;
}

.brand-mark .mark svg {
  width: 18px;
  height: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-on-light-dim);
  position: relative;
  padding-block: 0.2rem;
  transition: color var(--dur-fast) var(--ease-out);
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1.5px;
  background: currentColor;
  transition: right var(--dur-med) var(--ease-out);
}

.main-nav a:hover {
  color: var(--text-on-light);
}

.main-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.currency-switcher {
  position: relative;
}

.currency-switcher summary {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-on-light-dim);
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(43, 20, 32, 0.14);
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}

.currency-switcher summary::-webkit-details-marker {
  display: none;
}

.currency-switcher summary svg {
  width: 14px;
  height: 14px;
  transition: transform var(--dur-fast) var(--ease-out);
}

.currency-switcher[open] summary svg {
  transform: rotate(180deg);
}

.currency-switcher:hover summary,
.currency-switcher[open] summary {
  color: var(--ink);
  border-color: rgba(43, 20, 32, 0.3);
}

.currency-switcher-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  min-width: 190px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(43, 20, 32, 0.1);
  box-shadow: 0 20px 44px -20px rgba(32, 13, 22, 0.3);
  padding: 0.5rem;
  z-index: 10;
}

.currency-switcher-menu a {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-sm);
  color: var(--text-on-light);
  transition: background var(--dur-fast) var(--ease-out);
}

.currency-switcher-menu a:hover {
  background: var(--sand-100);
}

.currency-switcher-menu a.is-active {
  background: rgba(227, 167, 35, 0.14);
}

.currency-switcher-menu a b {
  font-size: 0.85rem;
}

.currency-switcher-menu a span {
  font-size: 0.78rem;
  color: var(--text-on-light-dim);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  color: var(--text-on-light);
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--sand-100) 0%, var(--sand-000) 55%, var(--white) 100%);
  color: var(--text-on-light);
  isolation: isolate;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-art svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-art .layer-far {
  opacity: 0.5;
}

.hero-art .layer-near {
  opacity: 0.85;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.25;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 5rem;
  width: 100%;
}

.hero-copy {
  max-width: 780px;
}

.hero .eyebrow {
  color: var(--maroon-600);
  margin-bottom: 1.6rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  color: var(--ink);
}

.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .line span {
  display: inline-block;
  transform: translateY(115%);
  opacity: 0;
}

.hero.is-loaded h1 .line span {
  animation: line-in var(--dur-slow) var(--ease-out) forwards;
}

.hero h1 .line:nth-child(1) span {
  animation-delay: 0.15s;
}

.hero h1 .line:nth-child(2) span {
  animation-delay: 0.32s;
}

.hero h1 .line:nth-child(3) span {
  animation-delay: 0.49s;
}

@keyframes line-in {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-sub {
  margin-top: 1.8rem;
  max-width: 540px;
  font-size: 1.15rem;
  color: var(--text-on-light-dim);
  opacity: 0;
  transform: translateY(14px);
}

.hero.is-loaded .hero-sub {
  animation: fade-up var(--dur-med) var(--ease-out) forwards;
  animation-delay: 0.75s;
}

.hero-search {
  margin-top: 2.4rem;
  max-width: 900px;
  padding: 0.9rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(43, 20, 32, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  opacity: 0;
  transform: translateY(14px);
}

.hero.is-loaded .hero-search {
  animation: fade-up var(--dur-med) var(--ease-out) forwards;
  animation-delay: 0.9s;
}

.hero-search .field-inline {
  flex: 1 1 170px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.55rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  transition: background var(--dur-fast) var(--ease-out);
}

.hero-search .field-inline:focus-within {
  background: rgba(255, 255, 255, 0.95);
}

.hero-search .field-inline label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--maroon-600);
}

.hero-search .field-inline select,
.hero-search .field-inline input {
  border: none;
  background: none;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.94rem;
  padding: 0;
  appearance: none;
}

.hero-search .field-inline select option {
  color: var(--ink);
}

.hero-search button {
  flex: 0 0 auto;
  align-self: center;
}

.hero-cta-row {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  align-items: center;
  opacity: 0;
  transform: translateY(14px);
}

.hero-cta-row a:not(.btn) {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-on-light-dim);
  border-bottom: 1px solid rgba(43, 20, 32, 0.25);
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease-out);
}

.hero-cta-row a:not(.btn):hover {
  color: var(--ink);
}

.hero.is-loaded .hero-cta-row {
  animation: fade-up var(--dur-med) var(--ease-out) forwards;
  animation-delay: 1.02s;
}

@keyframes fade-up {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-stats {
  margin-top: 4.2rem;
  display: flex;
  gap: clamp(1.8rem, 4vw, 3.6rem);
  flex-wrap: wrap;
  opacity: 0;
}

.hero.is-loaded .hero-stats {
  animation: fade-up var(--dur-med) var(--ease-out) forwards;
  animation-delay: 1.05s;
}

.hero-stats .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--ink);
}

.hero-stats .stat span {
  font-size: 0.82rem;
  color: var(--text-on-light-dim);
  letter-spacing: 0.02em;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-on-light-dim);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue .rail {
  width: 1px;
  height: 42px;
  background: rgba(43, 20, 32, 0.18);
  position: relative;
  overflow: hidden;
}

.scroll-cue .rail::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-300);
  transform: translateY(-100%);
  animation: cue-drop 1.9s var(--ease-in-out) infinite;
}

@keyframes cue-drop {
  0% {
    transform: translateY(-100%);
  }
  60%,
  100% {
    transform: translateY(100%);
  }
}

/* ---------------------------------------------------------------------- */
/* Marquee strip                                                          */
/* ---------------------------------------------------------------------- */

.marquee-strip {
  background: var(--maroon-900);
  color: var(--text-on-dark-dim);
  padding-block: 1.1rem;
  overflow: hidden;
  border-top: 1px solid rgba(246, 236, 225, 0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: marquee 32s linear infinite;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.marquee-track span::after {
  content: '\2726';
  color: var(--gold-500);
  font-size: 0.7rem;
}

/* ---------------------------------------------------------------------- */
/* Reveal utility                                                          */
/* ---------------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: calc(var(--stagger, 0) * 90ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------------------- */
/* Section scaffolding                                                    */
/* ---------------------------------------------------------------------- */

section {
  position: relative;
}

.section-pad {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head .eyebrow {
  color: var(--maroon-600);
  margin-bottom: 1.1rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
}

.section-head p {
  margin-top: 1.1rem;
  font-size: 1.08rem;
  color: var(--text-on-light-dim);
}

.section-head.on-dark .eyebrow {
  color: var(--gold-300);
}

.section-head.on-dark h2 {
  color: var(--white);
}

.section-head.on-dark p {
  color: var(--text-on-dark-dim);
}

/* ---------------------------------------------------------------------- */
/* Statement / stats                                                      */
/* ---------------------------------------------------------------------- */

.statement {
  background: var(--sand-000);
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.statement h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: var(--ink);
}

.statement h2 em {
  font-style: normal;
  color: var(--maroon-500);
}

.statement-copy {
  margin-top: 1.4rem;
  font-size: 1.08rem;
  color: var(--text-on-light-dim);
  max-width: 46ch;
}

.statement-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.statement-stats .stat {
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius-md);
  background: var(--sand-100);
  border: 1px solid var(--sand-200);
}

.statement-stats .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--maroon-700);
}

.statement-stats .stat span {
  font-size: 0.88rem;
  color: var(--text-on-light-dim);
}

/* ---------------------------------------------------------------------- */
/* Collections                                                            */
/* ---------------------------------------------------------------------- */

.collections {
  background: var(--sand-100);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
  box-shadow: 0 18px 40px -26px rgba(32, 13, 22, 0.5);
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -22px rgba(32, 13, 22, 0.55);
}

.collection-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
}

.collection-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(32, 13, 22, 0) 20%, rgba(32, 13, 22, 0.78) 100%);
}

.collection-card[data-tone='ocean']::before {
  background: radial-gradient(120% 120% at 20% 0%, #2c8f9c, #123a3f 70%);
}

.collection-card[data-tone='hills']::before {
  background: radial-gradient(120% 120% at 20% 0%, #4c8a5b, #16362a 70%);
}

.collection-card[data-tone='heritage']::before {
  background: radial-gradient(120% 120% at 20% 0%, #b47a4a, #3a2418 70%);
}

.collection-card[data-tone='jungle']::before {
  background: radial-gradient(120% 120% at 20% 0%, #587a34, #1c2b13 70%);
}

.collection-card .pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  transition: transform var(--dur-slow) var(--ease-out);
}

.collection-card:hover .pattern {
  transform: scale(1.08) rotate(2deg);
}

.collection-card .count {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.collection-card h3 {
  font-size: 1.5rem;
  color: var(--white);
}

.collection-card p {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

.collection-card .arrow {
  margin-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-300);
}

.collection-card .arrow svg {
  width: 14px;
  height: 14px;
  transition: transform var(--dur-fast) var(--ease-out);
}

.collection-card:hover .arrow svg {
  transform: translateX(4px);
}

/* ---------------------------------------------------------------------- */
/* Destinations                                                           */
/* ---------------------------------------------------------------------- */

.destinations {
  background: var(--sand-000);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.destination-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--sand-200);
  padding: 1.6rem;
  background: var(--white);
  transition: transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.destination-card:hover {
  transform: translateY(-5px);
  border-color: var(--maroon-500);
  box-shadow: 0 20px 40px -28px rgba(32, 13, 22, 0.35);
}

.destination-card .topo {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 130px;
  height: 130px;
  opacity: 0.5;
  color: var(--sand-200);
  transition: transform var(--dur-slow) var(--ease-out), color var(--dur-fast) var(--ease-out);
}

.destination-card:hover .topo {
  transform: rotate(12deg) scale(1.05);
  color: var(--gold-300);
}

.destination-card .region {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maroon-600);
}

.destination-card h3 {
  margin-top: 0.5rem;
  font-size: 1.35rem;
  color: var(--ink);
}

.destination-card p {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-on-light-dim);
}

.destination-card .count {
  margin-top: 1.1rem;
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

/* ---------------------------------------------------------------------- */
/* Why SLHL                                                               */
/* ---------------------------------------------------------------------- */

.why {
  background: var(--sand-100);
  color: var(--text-on-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.why-card {
  padding: 2rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(43, 20, 32, 0.08);
  background: rgba(255, 255, 255, 0.55);
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.why-card:hover {
  border-color: rgba(227, 167, 35, 0.5);
  transform: translateY(-4px);
}

.why-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(227, 167, 35, 0.14);
  color: var(--gold-600);
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
}

/* Each card carries one of the flag's four colours. */
.why-card[data-hue='green']:hover {
  border-color: rgba(31, 128, 96, 0.55);
}

.why-card[data-hue='green'] .icon {
  background: rgba(31, 128, 96, 0.18);
  color: var(--green-700);
}

.why-card[data-hue='saffron']:hover {
  border-color: rgba(224, 114, 44, 0.55);
}

.why-card[data-hue='saffron'] .icon {
  background: rgba(224, 114, 44, 0.18);
  color: var(--saffron-600);
}

.why-card[data-hue='maroon']:hover {
  border-color: rgba(169, 44, 79, 0.55);
}

.why-card[data-hue='maroon'] .icon {
  background: rgba(169, 44, 79, 0.2);
  color: var(--maroon-600);
}

.why-card .icon svg {
  width: 20px;
  height: 20px;
}

.why-card h3 {
  font-size: 1.15rem;
  color: var(--ink);
}

.why-card p {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-on-light-dim);
}

/* ---------------------------------------------------------------------- */
/* Testimonials                                                           */
/* ---------------------------------------------------------------------- */

.testimonials {
  background: var(--sand-100);
}

.testimonial-track {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 min(560px, 88vw);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  border: 1px solid var(--sand-200);
}

.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-500);
  line-height: 1;
}

.testimonial-card p.quote {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.45;
}

.testimonial-card .who {
  margin-top: 1.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--maroon-700);
}

.testimonial-card .who span {
  display: block;
  font-weight: 500;
  color: var(--text-on-light-dim);
  margin-top: 0.2rem;
}

.testimonial-controls {
  display: flex;
  gap: 0.7rem;
  margin-top: 2rem;
}

.testimonial-controls button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--sand-200);
  background: var(--white);
  display: grid;
  place-items: center;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}

.testimonial-controls button:hover {
  border-color: var(--maroon-500);
  background: var(--sand-000);
}

.testimonial-controls svg {
  width: 16px;
  height: 16px;
}

/* ---------------------------------------------------------------------- */
/* Enquiry / CTA                                                          */
/* ---------------------------------------------------------------------- */

.enquire {
  background: radial-gradient(120% 100% at 85% 0%, #6b1836 0%, #4a3a1c 42%, #333d16 78%, #262d10 100%);
  color: var(--text-on-dark);
}

.enquire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.enquire-copy h2 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  color: var(--white);
}

.enquire-copy p {
  margin-top: 1.2rem;
  color: var(--text-on-dark-dim);
  font-size: 1.05rem;
  max-width: 46ch;
}

.enquire-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.9rem;
  list-style: none;
  padding: 0;
}

.enquire-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.94rem;
  color: var(--text-on-dark-dim);
}

.enquire-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold-300);
  margin-top: 0.15rem;
}

.form-card {
  background: rgba(250, 246, 238, 0.06);
  border: 1px solid rgba(246, 236, 225, 0.16);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  backdrop-filter: blur(8px);
}

.form-banner {
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font-size: 0.88rem;
  margin-bottom: 1.4rem;
}

.form-banner.success {
  background: rgba(35, 115, 99, 0.28);
  border: 1px solid rgba(227, 167, 35, 0.4);
  color: var(--white);
}

.form-banner.error {
  background: rgba(217, 122, 95, 0.22);
  border: 1px solid rgba(217, 122, 95, 0.5);
  color: var(--white);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  position: relative;
  margin-bottom: 1.1rem;
}

.field label {
  position: absolute;
  left: 1.1rem;
  top: 1rem;
  font-size: 0.95rem;
  color: var(--text-on-dark-dim);
  pointer-events: none;
  transition: transform var(--dur-fast) var(--ease-out), font-size var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
  transform-origin: left top;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 1.55rem 1.1rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(246, 236, 225, 0.22);
  background: rgba(32, 13, 22, 0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: border-color var(--dur-fast) var(--ease-out);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23f3ecdd'%3E%3Cpath d='M5.5 7.5l4.5 5 4.5-5' stroke='%23f3ecdd' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 1.6rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-500);
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field.has-value label {
  transform: translateY(-0.62rem);
  font-size: 0.72rem;
  color: var(--gold-300);
}

.field-hint {
  font-size: 0.78rem;
  color: var(--text-on-dark-dim);
  margin-top: -0.6rem;
  margin-bottom: 1.1rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                 */
/* ---------------------------------------------------------------------- */

.site-footer {
  background: var(--maroon-900);
  color: var(--text-on-dark-dim);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(246, 236, 225, 0.1);
}

.footer-brand .brand-mark {
  color: var(--white);
}

.footer-brand p {
  margin-top: 1.1rem;
  max-width: 34ch;
  font-size: 0.92rem;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(246, 236, 225, 0.18);
  display: grid;
  place-items: center;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.footer-social a:hover {
  border-color: var(--gold-500);
  background: rgba(227, 167, 35, 0.12);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: 1.1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-col a {
  font-size: 0.92rem;
  transition: color var(--dur-fast) var(--ease-out);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.6rem;
  font-size: 0.82rem;
}

.footer-bottom .legal-links {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ---------------------------------------------------------------------- */
/* Custom cursor (desktop, pointer:fine only)                             */
/* ---------------------------------------------------------------------- */

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 200;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-500);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(227, 167, 35, 0.55);
  transition: width var(--dur-fast) var(--ease-out), height var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
}

.cursor-ring.is-active {
  width: 54px;
  height: 54px;
  border-color: var(--gold-500);
}

/* ---------------------------------------------------------------------- */
/* Error page                                                             */
/* ---------------------------------------------------------------------- */

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--sand-000);
  color: var(--text-on-light);
  padding: 2rem;
}

.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--maroon-600);
}

/* ---------------------------------------------------------------------- */
/* Hotel search results                                                   */
/* ---------------------------------------------------------------------- */

.search-hero {
  background: linear-gradient(180deg, var(--sand-100) 0%, var(--sand-000) 100%);
  color: var(--text-on-light);
  padding-top: clamp(7.5rem, 12vw, 10rem);
  padding-bottom: 2.6rem;
}

.search-hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  color: var(--ink);
}

.search-hero p {
  margin-top: 0.7rem;
  color: var(--text-on-light-dim);
}

.search-toolbar {
  margin-top: 2rem;
  padding: 0.9rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(43, 20, 32, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.search-toolbar .field-inline {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.55rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
}

.search-toolbar .field-inline label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--maroon-600);
}

.search-toolbar .field-inline select,
.search-toolbar .field-inline input {
  border: none;
  background: none;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.94rem;
  padding: 0;
  appearance: none;
}

.search-toolbar .field-inline select option {
  color: var(--ink);
}

.search-toolbar button {
  flex: 0 0 auto;
  align-self: center;
}

.results-meta {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: var(--text-on-light-dim);
}

.results-meta a {
  color: var(--maroon-600);
  font-weight: 700;
  text-decoration: underline;
}

.hotel-results {
  background: var(--sand-000);
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.hotel-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--sand-200);
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 40px -26px rgba(32, 13, 22, 0.35);
}

.hotel-card .swatch {
  display: block;
  height: 120px;
  background: linear-gradient(135deg, var(--maroon-700), var(--maroon-900));
  position: relative;
}

.hotel-card h3 a {
  color: inherit;
}

.hotel-card .swatch .tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-300);
  background: rgba(32, 13, 22, 0.5);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.hotel-card .body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.hotel-card .region {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--maroon-600);
}

.hotel-card h3 {
  font-size: 1.2rem;
  color: var(--ink);
}

.hotel-card .stars {
  color: var(--gold-500);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.hotel-card p.blurb {
  font-size: 0.9rem;
  color: var(--text-on-light-dim);
  flex: 1;
}

.hotel-card .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.6rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--sand-200);
}

.hotel-card .price b {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
}

.hotel-card .price span {
  font-size: 0.76rem;
  color: var(--text-on-light-dim);
}

.hotel-card .foot a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--maroon-600);
}

.no-results {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-on-light-dim);
}

.no-results a {
  color: var(--maroon-600);
  font-weight: 700;
  text-decoration: underline;
}

/* ---------------------------------------------------------------------- */
/* Responsive                                                              */
/* ---------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hotel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .statement-grid {
    grid-template-columns: 1fr;
  }

  .enquire-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-cta.btn-outline {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    top: 0;
    padding: 6.5rem 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
    background: var(--sand-000);
    transform: translateX(100%);
    transition: transform var(--dur-med) var(--ease-out);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    font-size: 1.3rem;
    color: var(--text-on-light);
  }

  .main-nav .btn {
    margin-top: 1rem;
  }
}

/* ---------------------------------------------------------------------- */
/* Booking / checkout                                                     */
/* ---------------------------------------------------------------------- */

.booking-hero {
  background: linear-gradient(180deg, var(--sand-100) 0%, var(--sand-000) 100%);
  color: var(--text-on-light);
  padding-top: clamp(7.5rem, 12vw, 10rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.booking-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-on-light-dim);
  margin-bottom: 2rem;
  transition: color var(--dur-fast) var(--ease-out);
}

.booking-back:hover {
  color: var(--ink);
}

/* This page is the one place .form-card/.field appear on a light
   background (they default dark, for the homepage enquiry section) —
   scoped overrides rather than changing the shared base. */
.booking-hero .stay-summary {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(43, 20, 32, 0.08);
}

.booking-hero .form-card {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(43, 20, 32, 0.1);
}

.booking-hero .field label {
  color: var(--text-on-light-dim);
}

.booking-hero .field input,
.booking-hero .field select,
.booking-hero .field textarea {
  border-color: rgba(43, 20, 32, 0.16);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.booking-hero .field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%232b1420'%3E%3Cpath d='M5.5 7.5l4.5 5 4.5-5' stroke='%232b1420' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.booking-hero .field input:focus + label,
.booking-hero .field input:not(:placeholder-shown) + label,
.booking-hero .field textarea:focus + label,
.booking-hero .field textarea:not(:placeholder-shown) + label,
.booking-hero .field.has-value label {
  color: var(--maroon-600);
}

.booking-hero .field-hint {
  color: var(--text-on-light-dim);
}

.booking-hero .form-banner.success,
.booking-hero .form-banner.error,
.booking-hero .form-banner.notice {
  color: var(--ink);
}

.booking-back svg {
  width: 16px;
  height: 16px;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.stay-summary {
  background: rgba(250, 246, 238, 0.06);
  border: 1px solid rgba(246, 236, 225, 0.16);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.2rem);
  backdrop-filter: blur(8px);
}

.stay-summary .eyebrow {
  color: var(--maroon-600);
  margin-bottom: 1.2rem;
}

.stay-summary h1 {
  font-size: 1.9rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.stay-summary .location {
  color: var(--text-on-light-dim);
  font-size: 0.92rem;
  margin-bottom: 1.6rem;
}

.stay-summary .blurb {
  color: var(--text-on-light-dim);
  font-size: 0.92rem;
  line-height: 1.6;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(43, 20, 32, 0.1);
  margin-bottom: 1.6rem;
}

.stay-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.stay-price-row span {
  font-size: 0.92rem;
  color: var(--text-on-light-dim);
}

.stay-price-row b {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink);
}

.stay-note {
  font-size: 0.82rem;
  color: var(--text-on-light-dim);
}

.stay-facts {
  display: flex;
  gap: 1.6rem;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(43, 20, 32, 0.1);
}

.stay-facts .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}

.stay-facts .stat span {
  font-size: 0.76rem;
  color: var(--text-on-light-dim);
}

.form-banner.notice {
  background: rgba(227, 167, 35, 0.14);
  border: 1px solid rgba(227, 167, 35, 0.4);
  color: var(--text-on-dark);
}

.booking-confirm {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}

.booking-confirm .check-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  display: grid;
  place-items: center;
  margin: 0 auto 1.6rem;
  color: var(--ink);
}

.booking-confirm .check-mark svg {
  width: 26px;
  height: 26px;
}

.booking-confirm h1 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.booking-confirm > p {
  color: var(--text-on-light-dim);
  font-size: 1.02rem;
  margin-bottom: 2rem;
}

.confirm-card {
  background: var(--white);
  border: 1px solid rgba(43, 20, 32, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  text-align: left;
  box-shadow: 0 20px 44px -28px rgba(32, 13, 22, 0.28);
  margin-bottom: 2rem;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(43, 20, 32, 0.06);
  font-size: 0.94rem;
}

.confirm-row:last-child {
  border-bottom: none;
}

.confirm-row span {
  color: var(--text-on-light-dim);
}

.confirm-row b {
  font-weight: 600;
}

@media (max-width: 880px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .collection-grid,
  .why-grid,
  .destination-grid,
  .hotel-grid {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1.6rem;
  }

  .hero-search,
  .search-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-search .field-inline,
  .search-toolbar .field-inline {
    flex: 0 0 auto;
  }

  .hero-search button,
  .search-toolbar button {
    width: 100%;
    justify-content: center;
  }
}

/* ---------------------------------------------------------------------- */
/* Hotel detail page                                                      */
/* ---------------------------------------------------------------------- */

.hotel-detail-hero {
  background: linear-gradient(180deg, var(--sand-100) 0%, var(--sand-000) 100%);
  color: var(--text-on-light);
  padding-top: clamp(7.5rem, 12vw, 10rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.hotel-detail-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  margin-top: 0.6rem;
}

.hotel-detail-hero .stars {
  margin-top: 0.6rem;
  color: var(--gold-500);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
}

.hotel-detail-blurb {
  margin-top: 1rem;
  max-width: 640px;
  font-size: 1.05rem;
  color: var(--text-on-light-dim);
  line-height: 1.7;
}

.hotel-detail-cta-row {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 1.6rem;
}

.hotel-detail-cta-row .price b {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
}

.hotel-detail-cta-row .price span {
  font-size: 0.82rem;
  color: var(--text-on-light-dim);
}

.amenity-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.amenity-pill {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(43, 20, 32, 0.05);
  border: 1px solid rgba(43, 20, 32, 0.1);
  color: var(--text-on-light-dim);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.6rem;
}

.room-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--sand-200);
  background: var(--white);
  overflow: hidden;
}

.room-card-photos {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.room-card-photos img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.room-card-photo-placeholder {
  height: 140px;
  background: linear-gradient(135deg, var(--maroon-700), var(--maroon-900));
}

.room-card-body {
  padding: 1.4rem;
}

.room-card-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--maroon-600);
}

.room-card-body h3 {
  margin-top: 0.4rem;
  font-size: 1.15rem;
  color: var(--ink);
}

.room-card-facts {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-on-light-dim);
}

.room-card .amenity-pill-row {
  margin-top: 1rem;
}
