/* ============================================================
   Daina Jurmala Beach Hotel & SPA — Mockup V3
   Shared stylesheet for all pages
   ============================================================ */

/* ---------- DESIGN TOKENS — Daina navy / white ---------- */
:root{
  --navy:        #0a1f6b;
  --navy-deep:   #050f4a;
  --navy-soft:   #1d3580;
  --navy-mist:   #e8eef8;
  --white:       #ffffff;
  --frost:       #f5f8fc;
  --ink:         #0a1230;
  --ink-soft:    #4a5575;
  --gold:        #c19b76;
  --gold-soft:   #d8b896;
  --line:        rgba(10,31,107,.10);
  --shadow-1:    0 2px 8px rgba(10,31,107,.06);
  --shadow-2:    0 18px 48px -22px rgba(10,31,107,.35);
  --ease:        cubic-bezier(.25,.8,.25,1);
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Inter', system-ui, -apple-system, sans-serif;
  --container:   1280px;
}

/* ---------- RESET / BASE ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--white);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }
h1,h2,h3,h4{ font-family:var(--serif); font-weight:500; line-height:1.15; letter-spacing:-0.01em; margin:0; color:var(--navy-deep); }
h1{ font-size:clamp(2.4rem, 6vw, 4.8rem); font-weight:400; }
h2{ font-size:clamp(2rem, 4vw, 3.2rem); }
h3{ font-size:clamp(1.4rem, 2.4vw, 1.9rem); }
h4{ font-size:1.1rem; }
.eyebrow{
  font-family:var(--sans);
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.22em;
  color:var(--navy);
  font-weight:500;
}
.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 24px; }
section{ padding:96px 0; }
@media (max-width:720px){ section{ padding:64px 0; } }

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 28px;
  font-family:var(--sans); font-size:.92rem; font-weight:500;
  letter-spacing:.04em;
  border-radius:2px;
  transition:all .35s var(--ease);
  cursor:pointer;
  white-space:nowrap;
  border:1px solid transparent;
}
.btn-primary{ background:var(--navy); color:var(--white); }
.btn-primary:hover{ background:var(--navy-deep); transform:translateY(-1px); }
.btn-gold{ background:var(--gold); color:var(--navy-deep); }
.btn-gold:hover{ background:#b08862; transform:translateY(-1px); }
.btn-ghost{ border-color:var(--white); color:var(--white); }
.btn-ghost:hover{ background:var(--white); color:var(--navy); }
.btn-outline-navy{ border-color:var(--navy); color:var(--navy); }
.btn-outline-navy:hover{ background:var(--navy); color:var(--white); }
.btn-sm{ padding:10px 20px; font-size:.85rem; }

/* ---------- TOP UTILITY BAR ---------- */
.topbar{
  background:var(--navy-deep);
  color:var(--white);
  font-size:.78rem;
  letter-spacing:.06em;
  padding:8px 0;
  position:relative; z-index:90;
}
.topbar .container{ display:flex; justify-content:space-between; align-items:center; gap:24px; }
.topbar a{ opacity:.85; transition:opacity .2s; }
.topbar a:hover{ opacity:1; }
.lang-switch{ display:inline-flex; gap:4px; }
.lang-switch button{
  padding:4px 10px;
  font-size:.72rem;
  letter-spacing:.18em;
  color:var(--white);
  opacity:.55;
  transition:opacity .2s, background .2s;
  border-radius:2px;
}
.lang-switch button:hover{ opacity:1; }
.lang-switch button.active{ opacity:1; background:rgba(255,255,255,.14); }
.topbar-contact{ display:none; gap:24px; align-items:center; }
@media (min-width:720px){ .topbar-contact{ display:flex; } }

/* ---------- NAV ---------- */
.nav{
  position:sticky; top:0; z-index:80;
  background:rgba(255,255,255,.82);  /* slight transparency for frosted-glass effect */
  backdrop-filter:blur(18px) saturate(1.4);
  -webkit-backdrop-filter:blur(18px) saturate(1.4);
  transition:background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
  padding:18px 0;
  box-shadow:0 1px 0 var(--line);
}
/* Home page only — transparent over hero, frosted-translucent on scroll */
.nav.over-hero{ background:transparent; box-shadow:none; padding:24px 0; }
.nav.over-hero.solid{ background:rgba(255,255,255,.82); padding:14px 0; box-shadow:0 1px 0 var(--line); }
.nav .container{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand-logo{
  display:inline-flex; align-items:center; height:44px;
  position:relative;
}
.brand-logo img{
  height:100%; width:auto;
  transition:opacity .35s var(--ease);
  /* CRITICAL: do NOT transition the filter property — that's what created
     the green flash (hue-rotate interpolates through all hues). Only opacity
     transitions. The navy filter is statically applied to .logo-color. */
}
/* Both <img> tags reference the same transparent white-text PNG.
   .logo-color gets a STATIC navy filter (no animation on it).
   We crossfade between the two via opacity only. */
.brand-logo .logo-color{
  display:inline-block; opacity:1;
  filter: brightness(0) saturate(100%) invert(9%) sepia(98%) saturate(3500%) hue-rotate(232deg) brightness(60%) contrast(115%);
}
.brand-logo .logo-white{
  display:inline-block; opacity:0;
  position:absolute; left:0; top:0; height:100%;
  pointer-events:none;
}
/* Over hero (transparent nav) — show the white logo, hide the navy one */
.nav.over-hero:not(.solid) .brand-logo .logo-color{ opacity:0; }
.nav.over-hero:not(.solid) .brand-logo .logo-white{ opacity:1; }

.nav-links{ display:none; gap:28px; }
@media (min-width:1024px){ .nav-links{ display:flex; } }
.nav-links a{
  color:var(--ink);
  font-size:.82rem; font-weight:500; letter-spacing:.08em;
  text-transform:uppercase;
  transition:color .25s, opacity .25s;
  position:relative;
  padding-bottom:4px;
}
.nav.over-hero:not(.solid) .nav-links a{ color:var(--white); }
.nav-links a:hover{ color:var(--navy); }
.nav.over-hero:not(.solid) .nav-links a:hover{ color:var(--gold); }
.nav-links a.active{ color:var(--navy); }
.nav-links a.active::after{
  content:''; position:absolute; left:0; right:0; bottom:0;
  height:1px; background:var(--gold);
}
.nav.over-hero:not(.solid) .nav-links a.active{ color:var(--gold-soft); }
.nav-cta{ display:none; }
@media (min-width:720px){ .nav-cta{ display:inline-flex; } }
.nav-burger{
  display:inline-flex; flex-direction:column; gap:5px;
  width:36px; height:36px; align-items:center; justify-content:center;
  color:var(--ink); border:1px solid currentColor; border-radius:2px;
  background:transparent; cursor:pointer;
  transition:color .25s, border-color .25s, background .25s;
}
.nav.over-hero:not(.solid) .nav-burger{ color:var(--white); }
.nav-burger span{
  width:16px; height:1px; background:currentColor;
  transition:transform .35s var(--ease), opacity .25s;
}
@media (min-width:1024px){ .nav-burger{ display:none; } }
/* Burger morph to X when menu open */
body.nav-open .nav-burger span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
body.nav-open .nav-burger span:nth-child(2){ opacity:0; }
body.nav-open .nav-burger span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

/* ---------- MOBILE DROPDOWN PANEL ---------- */
.mobile-menu{
  position:fixed;
  top:110px; /* below topbar + nav */
  left:0; right:0;
  background:var(--white);
  border-top:1px solid var(--line);
  box-shadow:0 24px 60px -20px rgba(15,30,80,.18);
  z-index:90;
  max-height:calc(100vh - 110px);
  overflow-y:auto;
  transform:translateY(-12px);
  opacity:0;
  visibility:hidden;
  transition:opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear .35s;
}
body.nav-open .mobile-menu{
  opacity:1; visibility:visible; transform:translateY(0);
  transition:opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear 0s;
}
.mobile-menu .container{
  padding-top:24px; padding-bottom:32px;
  display:flex; flex-direction:column;
}
.mobile-menu a.m-link{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 4px;
  border-bottom:1px solid var(--line);
  color:var(--ink);
  font-size:1.05rem; font-weight:500;
  letter-spacing:.06em; text-transform:uppercase;
  transition:color .25s, padding-left .25s, background .25s;
}
.mobile-menu a.m-link:hover,
.mobile-menu a.m-link:focus-visible{
  color:var(--navy); padding-left:10px; background:var(--frost);
}
.mobile-menu a.m-link.active{ color:var(--gold); }
.mobile-menu a.m-link::after{
  content:'→'; color:var(--gold);
  font-size:1rem; transition:transform .3s var(--ease);
}
.mobile-menu a.m-link:hover::after{ transform:translateX(4px); }
.mobile-menu .m-cta{
  margin-top:24px; padding:16px 24px; text-align:center;
  background:var(--gold); color:var(--navy-deep);
  font-size:.9rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  border-radius:2px;
}
.mobile-menu .m-cta:hover{ background:#b08862; }
.mobile-menu .m-contact{
  margin-top:28px; padding-top:24px;
  border-top:1px solid var(--line);
  display:flex; flex-direction:column; gap:10px;
  font-size:.9rem; color:var(--ink-soft);
}
.mobile-menu .m-contact a{ color:var(--navy); }
.mobile-menu .m-lang{
  display:flex; gap:10px; margin-top:16px;
}
.mobile-menu .m-lang button{
  flex:1; padding:10px; background:var(--frost);
  border:1px solid var(--line); border-radius:2px;
  font-size:.85rem; letter-spacing:.1em; cursor:pointer;
  color:var(--ink); transition:all .2s;
}
.mobile-menu .m-lang button.active{
  background:var(--navy); color:var(--white); border-color:var(--navy);
}

/* Backdrop dim when open */
.mobile-backdrop{
  position:fixed; inset:0;
  background:rgba(15,30,80,.35);
  z-index:80; opacity:0; visibility:hidden;
  transition:opacity .35s, visibility 0s linear .35s;
}
body.nav-open .mobile-backdrop{
  opacity:1; visibility:visible;
  transition:opacity .35s, visibility 0s linear 0s;
}
body.nav-open{ overflow:hidden; }

/* ---------- HOME HERO (full-screen crossfade) ---------- */
.hero{
  position:relative;
  margin-top:-110px;
  height:100vh;
  min-height:680px;
  color:var(--white);
  overflow:hidden;
}
.hero-slides{ position:absolute; inset:0; }
.hero-slide{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0;
  will-change:transform, opacity;
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
  transform:translateZ(0) scale(1.0);  /* GPU layer */
}

/* Crossfade window: 2.5s in, 2.5s out — overlaps with the next slide's
   fade-in to give a continuous dissolve. Scale carries through smoothly. */

/* Zoom IN — slow push closer into the scene */
.hero-slide.zoom-in{ animation: heroZoomIn 32s linear infinite; }
@keyframes heroZoomIn{
  0%      { opacity:0; transform:translateZ(0) scale(1.00); }
  7.8%    { opacity:1; transform:translateZ(0) scale(1.04); }
  25%     { opacity:1; transform:translateZ(0) scale(1.18); }
  32.8%   { opacity:0; transform:translateZ(0) scale(1.22); }
  100%    { opacity:0; transform:translateZ(0) scale(1.22); }
}

/* Zoom OUT — start close, pull back. Scale at frame 0 matches zoom-in's
   end (1.22) so the "camera" appears to continue moving across the cut. */
.hero-slide.zoom-out{ animation: heroZoomOut 32s linear infinite; }
@keyframes heroZoomOut{
  0%      { opacity:0; transform:translateZ(0) scale(1.22); }
  7.8%    { opacity:1; transform:translateZ(0) scale(1.18); }
  25%     { opacity:1; transform:translateZ(0) scale(1.04); }
  32.8%   { opacity:0; transform:translateZ(0) scale(1.00); }
  100%    { opacity:0; transform:translateZ(0) scale(1.00); }
}

/* Pool slide — boost saturation + slight contrast for the water + cascade */
.hero-slide.boost{ filter:saturate(1.35) contrast(1.06) brightness(1.02); }
.hero-content{
  position:relative; z-index:2;
  height:100%;
  display:flex; flex-direction:column; justify-content:center;
  padding-top:130px;
  padding-bottom:110px;  /* booking bar now sits below the hero (overlap -70px) */
  max-width:760px;
}
@media (max-width:760px){
  .hero-content{ padding-top:170px; padding-bottom:70px; }
}
.hero-eyebrow{
  color:var(--white); opacity:.92;
  font-size:.78rem; letter-spacing:.32em; text-transform:uppercase;
  margin-bottom:24px;
  display:inline-flex; align-items:center; gap:14px;
}
.hero-eyebrow::before{ content:''; width:34px; height:1px; background:var(--gold); display:inline-block; }
.hero h1{
  color:var(--white);
  margin-bottom:22px;
  text-shadow:0 2px 24px rgba(0,0,0,.25);
}
.hero h1 em{ font-style:italic; color:var(--gold-soft); font-weight:400; }
.hero-sub{
  font-size:clamp(1rem, 1.4vw, 1.2rem);
  line-height:1.5;
  max-width:560px;
  margin-bottom:36px;
  opacity:.95;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; }

/* ---------- INTERIOR PAGE HERO (shorter) ---------- */
.page-hero{
  position:relative;
  height:55vh;
  min-height:380px;
  color:var(--white);
  overflow:hidden;
  background-size:cover; background-position:center;
}
.page-hero::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(10,31,107,.5), rgba(5,15,74,.65));
}
.page-hero .container{
  position:relative; z-index:2;
  height:100%;
  display:flex; flex-direction:column;
  padding-top:40px;   /* keep breadcrumb clear of the nav */
  padding-bottom:60px;
}
/* H1 (and everything after) gets pushed to the bottom; breadcrumb stays up top */
.page-hero h1{ margin-top:auto; }
.breadcrumb{
  font-size:.78rem; letter-spacing:.18em; text-transform:uppercase;
  opacity:.85;
  display:flex; gap:12px; flex-wrap:wrap;
}
.breadcrumb a:hover{ color:var(--gold-soft); }
.breadcrumb .sep{ opacity:.5; }
.page-hero h1{ color:var(--white); max-width:760px; text-shadow:0 2px 24px rgba(0,0,0,.25); }
.page-hero .tagline{ color:rgba(255,255,255,.92); max-width:620px; margin-top:14px; font-size:1.05rem; }

/* ---------- BOOKING BAR ---------- */
/* ---------- BOOKING BAR ---------- */
.booking{ position:relative; z-index:3; margin-top:-70px; margin-bottom:26px; }
.booking-card{
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  border-radius:6px; box-shadow:var(--shadow-2);
  padding:8px;
  display:flex; flex-wrap:wrap; align-items:stretch; gap:2px;
}
.booking-field{
  flex:1 1 auto; min-width:145px;
  display:flex; flex-direction:column; gap:5px;
  padding:12px 20px; border-radius:4px; position:relative;
  transition:background .2s;
}
.booking-field:hover{ background:var(--navy-mist); }
.booking-field + .booking-field::before{
  content:''; position:absolute; left:-1px; top:14px; bottom:14px; width:1px; background:var(--line);
}
.bf-label{
  font-size:.64rem; text-transform:uppercase; letter-spacing:.16em;
  color:var(--ink-soft); font-weight:600;
}
.bf-input{
  font-family:var(--serif); font-size:1.08rem; line-height:1.35; color:var(--navy-deep);
  border:none; background:transparent; padding:2px 0; width:100%;
  cursor:pointer; -webkit-appearance:none; appearance:none;
}
.bf-input:focus{ outline:none; }
select.bf-input{
  padding-right:20px;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M1 1l4 4 4-4' stroke='%230a1f6b' stroke-width='1.4' fill='none'/></svg>") right center no-repeat;
}
input.bf-input::-webkit-calendar-picker-indicator{ cursor:pointer; opacity:.5; }
.booking-cta{
  flex:0 0 auto; min-width:158px;
  background:var(--navy); color:var(--white);
  padding:0 32px; min-height:60px; border-radius:4px;
  display:flex; align-items:center; justify-content:center;
  font-weight:600; letter-spacing:.04em; font-size:.9rem;
  border:none; cursor:pointer; transition:background .3s;
}
.booking-cta:hover{ background:var(--navy-deep); }
.booking-field.bf-err{ box-shadow:inset 0 0 0 1.5px #d9534f; }
@media (max-width:760px){
  .booking{ margin-top:-32px; margin-bottom:18px; padding-left:16px; padding-right:16px; }
  .booking-card{ flex-direction:column; padding:8px; gap:0; }
  .booking-field{ flex:1 1 auto; padding:15px 16px; border-bottom:1px solid var(--line); }
  .booking-field:hover{ background:transparent; }
  .booking-field:last-of-type{ border-bottom:none; }
  .booking-field + .booking-field::before{ display:none; }
  .booking-cta{ width:100%; min-height:58px; margin-top:8px; }
  .bf-input{ font-size:1.18rem; }
}

/* ---------- STATS STRIP ---------- */
.stats{ background:var(--frost); padding:48px 0; }
.stats .grid{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:24px; text-align:center;
}
@media (max-width:720px){ .stats .grid{ grid-template-columns:repeat(2, 1fr); gap:32px 16px; } }
.stat .num{ font-family:var(--serif); font-size:clamp(2rem, 3.5vw, 2.8rem); color:var(--navy); }
.stat .lbl{ font-size:.8rem; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-soft); margin-top:4px; }

/* ---------- SECTION HEAD ---------- */
.section-head{ text-align:center; max-width:680px; margin:0 auto 56px; }
.section-head .eyebrow{ display:block; margin-bottom:14px; }
.section-head p{ color:var(--ink-soft); margin-top:14px; font-size:1.05rem; }

/* ---------- SPLIT (image + text) ---------- */
.split{ background:var(--white); }
.split .grid{
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}
@media (max-width:960px){ .split .grid{ grid-template-columns:1fr; gap:48px; } }
.split.reverse .grid > div:first-child{ order:2; }
@media (max-width:960px){ .split.reverse .grid > div:first-child{ order:initial; } }
.split-img{
  aspect-ratio:4/5;
  background-size:cover; background-position:center;
  border-radius:2px;
  box-shadow:var(--shadow-2);
}
.split-img.wide{ aspect-ratio:5/4; }
.split h2{ margin-bottom:24px; }
.split p{ font-size:1.05rem; color:var(--ink-soft); margin:0 0 18px; }
.quote{
  margin-top:32px;
  padding-left:24px;
  border-left:2px solid var(--gold);
  font-family:var(--serif); font-size:1.4rem; font-style:italic;
  color:var(--navy-deep);
}

/* ---------- ROOM CARDS ---------- */
.room-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:32px; }
@media (max-width:960px){ .room-grid{ grid-template-columns:1fr; gap:48px; } }
.room-grid.two{ grid-template-columns:repeat(2, 1fr); }
@media (max-width:960px){ .room-grid.two{ grid-template-columns:1fr; } }
.room-card{
  position:relative;
  background:var(--white);
  border-radius:2px;
  overflow:hidden;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow:var(--shadow-1);
  border:1px solid var(--line);
}
/* Whole-card click target → jumps to the matching detail row below */
.room-card .card-link{ position:absolute; inset:0; z-index:3; }
.room-card:has(.card-link){ cursor:pointer; }
/* Anchor targets clear the sticky nav when jumped to */
.room-row{ scroll-margin-top:110px; }
.hall-card{ scroll-margin-top:120px; }
.room-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-2); }
.room-img{
  aspect-ratio:4/3;
  background-size:cover; background-position:center;
  transition:transform .8s var(--ease);
}
/* Photo collage inside a card image box — mirrors the rooms-page detail collage,
   shrunk to fit the same 4/3 slot so cards don't grow. */
.room-img.collage{
  display:grid; gap:4px; background:none;
  grid-template-columns:2fr 1fr; grid-template-rows:1fr 1fr;
}
.room-img.collage > div{ background-size:cover; background-position:center; }
.room-img.collage > div:first-child{ grid-row:span 2; }
.room-img.collage.duo{ grid-template-columns:3fr 2fr; grid-template-rows:1fr; }
.room-img.collage.duo > div:first-child{ grid-row:auto; }
.room-card:hover .room-img{ transform:scale(1.04); }
.room-body{ padding:28px; }
.room-body h3{ margin-bottom:8px; }
.room-body .price{ color:var(--ink-soft); font-size:.92rem; }
.room-body .price strong{ color:var(--navy); font-family:var(--serif); font-size:1.5rem; font-weight:500; margin-right:4px; }
.room-features{
  margin-top:16px; padding:16px 0 0; border-top:1px solid var(--line);
  display:flex; flex-wrap:wrap; gap:14px;
  font-size:.78rem; color:var(--ink-soft); letter-spacing:.04em;
}
.room-amenities{ display:flex; flex-wrap:wrap; gap:8px; margin:14px 0 0; padding:0; list-style:none; }
.room-amenities li{
  padding:4px 10px; font-size:.74rem; letter-spacing:.04em;
  background:var(--frost); color:var(--ink-soft); border-radius:2px;
}

/* ---------- ROOM DETAIL ROW (rooms page extended cards) ---------- */
.room-row{
  display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center;
  padding:64px 0;
  border-bottom:1px solid var(--line);
}
.room-row:last-child{ border-bottom:none; }
@media (max-width:960px){ .room-row{ grid-template-columns:1fr; gap:32px; padding:48px 0; } }
.room-row .imgs{
  display:grid; grid-template-columns:2fr 1fr; gap:8px; aspect-ratio:5/4;
}
.room-row .imgs > div{ background-size:cover; background-position:center; }
.room-row .imgs > div:first-child{ grid-row:span 2; }
.room-row .imgs > div:nth-child(2){ aspect-ratio:5/3; }
.room-row .imgs > div:nth-child(3){ aspect-ratio:5/3; }
/* two-photo rooms: bedroom featured left, second photo right — no empty collage cell */
.room-row .imgs.imgs--duo{ grid-template-columns:3fr 2fr; grid-template-rows:1fr; }
.room-row .imgs.imgs--duo > div:first-child,
.room-row .imgs.imgs--duo > div:nth-child(2){ grid-row:auto; aspect-ratio:auto; }
/* two-photo rooms, stacked: one above the other, full width */
.room-row .imgs.imgs--stack{ grid-template-columns:1fr; grid-template-rows:1fr 1fr; }
.room-row .imgs.imgs--stack > div:first-child,
.room-row .imgs.imgs--stack > div:nth-child(2){ grid-row:auto; aspect-ratio:auto; }
/* single-photo rooms: one clean full-bleed image */
.room-row .imgs.imgs--solo{ grid-template-columns:1fr; grid-template-rows:1fr; }
.room-row .imgs.imgs--solo > div:first-child{ grid-row:auto; aspect-ratio:auto; }
.room-row.reverse .imgs{ order:2; }
@media (max-width:960px){ .room-row.reverse .imgs{ order:initial; } }
.room-row h2{ margin-bottom:8px; }
.room-row .meta{
  color:var(--ink-soft); font-size:.85rem; text-transform:uppercase;
  letter-spacing:.18em; margin-bottom:18px;
}
.room-row .price-tag{
  margin:24px 0; font-family:var(--serif);
  font-size:1.6rem; color:var(--navy);
}
.room-row .price-tag small{ font-size:.85rem; font-family:var(--sans); color:var(--ink-soft); letter-spacing:.04em; }

/* ---------- WELLNESS DARK SECTION ---------- */
.wellness-dark{
  background:var(--navy-deep);
  color:var(--white);
  overflow:hidden;
  position:relative;
}
.wellness-dark::before{
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(circle at 80% 20%, rgba(193,155,118,.08), transparent 40%);
  pointer-events:none;
}
.wellness-dark .grid{
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; position:relative;
}
@media (max-width:960px){ .wellness-dark .grid{ grid-template-columns:1fr; gap:48px; } }
.wellness-dark .eyebrow{ color:var(--gold-soft); }
.wellness-dark h2{ color:var(--white); margin-bottom:24px; }
.wellness-dark p{ color:rgba(255,255,255,.86); margin:0 0 18px; }
.wellness-dark ul{
  list-style:none; padding:0; margin:32px 0;
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
}
.wellness-dark ul li{
  padding:14px 18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  border-radius:2px;
  font-size:.92rem;
  display:flex; align-items:center; gap:10px;
}
.wellness-dark ul li::before{
  content:''; width:6px; height:6px; border-radius:50%; background:var(--gold); display:inline-block;
}

/* ---------- GALLERY GRID ---------- */
.gallery{ background:var(--frost); }
.gallery-grid{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:8px;
}
@media (max-width:960px){ .gallery-grid{ grid-template-columns:repeat(2, 1fr); } }
.gallery-grid > div{
  aspect-ratio:1/1;
  background-size:cover; background-position:center;
  cursor:pointer;
  transition:transform .5s var(--ease), filter .3s;
  overflow:hidden;
}
.gallery-grid > div:hover{ transform:scale(1.02); }
.gallery-grid > div.tall{ aspect-ratio:1/2; grid-row:span 2; }
.gallery-grid > div.wide{ aspect-ratio:2/1; grid-column:span 2; }
@media (max-width:960px){
  .gallery-grid > div.tall{ grid-row:span 1; aspect-ratio:1/1; }
  .gallery-grid > div.wide{ grid-column:span 2; }
}

/* ---------- RESTAURANT MENU CARDS ---------- */
.menu-cards{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:24px;
}
@media (max-width:960px){ .menu-cards{ grid-template-columns:1fr; } }
/* Mobile horizontal-scroll carousel variant — used for .menu-cards--mobile-scroll
   (e.g. wellness-spa "Six ways to warm up"): keeps desktop grid, becomes a
   swipeable scroll-snap row at phone widths. */
@media (max-width:700px){
  .menu-cards.menu-cards--mobile-scroll{
    display:flex; grid-template-columns:none;
    gap:16px;
    overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth;
    padding:8px 16px 20px; margin:0 -16px;
    scrollbar-width:none;
  }
  .menu-cards.menu-cards--mobile-scroll::-webkit-scrollbar{ display:none; }
  .menu-cards.menu-cards--mobile-scroll > .menu-card{
    flex:0 0 82%; scroll-snap-align:start; min-width:0;
  }
}
/* Generic mobile carousel — add `mobile-carousel` to any card grid (>3 cards)
   and it becomes a swipeable scroll-snap row at phone widths; grid unchanged on desktop. */
@media (max-width:700px){
  .mobile-carousel{
    display:flex !important; grid-template-columns:none !important;
    gap:16px; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;
    padding:8px 16px 20px; margin:0 -16px; scrollbar-width:none;
  }
  .mobile-carousel::-webkit-scrollbar{ display:none; }
  .mobile-carousel > *{ flex:0 0 82%; scroll-snap-align:start; min-width:0; }
}
.menu-card{
  background:var(--white); padding:32px;
  border:1px solid var(--line); border-radius:2px;
}
.menu-card .icon{
  width:48px; height:48px; border-radius:50%;
  background:var(--navy-mist); color:var(--navy);
  display:inline-flex; align-items:center; justify-content:center;
  font-family:var(--serif); font-size:1.4rem; margin-bottom:18px;
}
.menu-card h3{ margin-bottom:8px; font-size:1.4rem; }
.menu-card .time{ color:var(--ink-soft); font-size:.85rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom:14px; }
.menu-card p{ color:var(--ink-soft); margin:0; font-size:.95rem; }

.menu-tags{ display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
.menu-tags span{
  padding:6px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:.78rem;
  color:var(--ink-soft);
  background:var(--frost);
}

/* ---------- CONFERENCE HALL CARDS ---------- */
.hall-grid{
  display:grid; grid-template-columns:repeat(2, 1fr); gap:24px;
}
@media (max-width:960px){ .hall-grid{ grid-template-columns:1fr; } }
.hall-card{
  background:var(--white); border:1px solid var(--line);
  border-radius:2px; overflow:hidden; display:grid;
  grid-template-columns:1fr 1fr;
}
@media (max-width:600px){ .hall-card{ grid-template-columns:1fr; } }
.hall-img{
  aspect-ratio:1/1; background-size:cover; background-position:center;
  min-height:240px;
}
.hall-body{ padding:28px; display:flex; flex-direction:column; justify-content:center; }
.hall-body h3{ margin-bottom:6px; font-size:1.6rem; }
.hall-body .specs{
  display:flex; gap:28px; margin:16px 0 18px; flex-wrap:wrap; align-items:center;
  font-size:.85rem; color:var(--ink-soft); letter-spacing:.04em;
  padding:16px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.hall-body .specs strong{ color:var(--navy); font-family:var(--serif); font-size:1.2rem; font-weight:500; margin-right:4px; }
.hall-body .layouts{
  display:flex; gap:14px; flex-wrap:wrap;
  font-size:.78rem; color:var(--ink-soft);
  padding:14px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); margin-bottom:18px;
}
.hall-body .price{ font-family:var(--serif); color:var(--navy); font-size:1.4rem; }
.hall-body .price small{ font-size:.85rem; font-family:var(--sans); color:var(--ink-soft); letter-spacing:.04em; }
/* Wrapper around the hall carousel — gives the absolutely-positioned arrows a
   relative parent and a max width that matches the inner track. */
.hall-carousel{ position:relative; max-width:100%; }
.hall-carousel .carousel-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:2; width:44px; height:44px; border-radius:50%;
  background:#fff; border:1px solid var(--line); cursor:pointer;
  font-size:1.5rem; line-height:1; color:var(--navy);
  box-shadow:0 4px 14px rgba(10,31,107,0.10);
  transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.hall-carousel .carousel-arrow:hover{ transform:translateY(-50%) scale(1.06); box-shadow:0 6px 18px rgba(10,31,107,0.18); }
.hall-carousel .carousel-prev{ left:-22px; }
.hall-carousel .carousel-next{ right:-22px; }
.hall-carousel .carousel-arrow[disabled]{ opacity:0.3; cursor:default; }
@media (max-width:700px){ .hall-carousel .carousel-arrow{ display:none; } }
/* Carousel variant for hall cards (conferences page) — keeps the image|body split
   inside each card but lays the cards in a horizontal scroll-snap row instead of
   a 2×2 grid. Each card gets ~70% viewport width so the body has room to breathe
   (no more cramped "Send enquiry" button). */
.hall-grid.hall-grid--carousel{
  display:flex; grid-template-columns:none;
  gap:20px;
  /* Use proximity (not mandatory) so smooth programmatic scrolling from the
     arrow buttons isn't aborted by the snap controller. Snap still kicks in
     for touch/swipe rests. */
  overflow-x:auto; scroll-snap-type:x proximity; scroll-behavior:smooth;
  padding:8px 4px 28px;
  margin:0 -4px;
  scrollbar-width:none;
  position:relative;
}
.hall-grid.hall-grid--carousel::-webkit-scrollbar{ display:none; }
.hall-grid.hall-grid--carousel > .hall-card{
  flex:0 0 calc(55% - 10px);
  scroll-snap-align:start;
  min-width:0;
}
/* Body column needs enough room for the full-width Send enquiry button at
   smaller card widths — ensure body padding doesn't compress the button. */
.hall-grid.hall-grid--carousel > .hall-card .hall-body{ padding:24px; min-width:0; }
.hall-grid.hall-grid--carousel > .hall-card .hall-body .btn{ width:100%; box-sizing:border-box; }
@media (max-width:960px){
  .hall-grid.hall-grid--carousel > .hall-card{ flex:0 0 calc(72% - 10px); grid-template-columns:1fr 1fr; }
}
@media (max-width:600px){
  .hall-grid.hall-grid--carousel > .hall-card{ flex:0 0 calc(86% - 10px); grid-template-columns:1fr; }
}

/* ---------- OFFER CARDS ---------- */
.offer-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; }
@media (max-width:960px){ .offer-grid{ grid-template-columns:1fr; } }
.offer{
  position:relative;
  aspect-ratio:4/5;
  background-size:cover; background-position:center;
  border-radius:2px;
  overflow:hidden;
  color:var(--white);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:28px;
  box-shadow:var(--shadow-1);
  text-decoration:none;
}
.offer::before{
  content:''; position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(10,31,107,0) 30%, rgba(5,15,74,.88) 100%);
  transition:opacity .3s;
}
.offer:hover::before{ background:linear-gradient(to bottom, rgba(10,31,107,.1) 20%, rgba(5,15,74,.95) 100%); }
.offer > *{ position:relative; }
.offer .tag{
  align-self:flex-start;
  background:var(--gold); color:var(--navy-deep);
  padding:6px 12px; font-size:.7rem; letter-spacing:.18em; text-transform:uppercase; font-weight:600;
  margin-bottom:16px;
}
.offer h3{ color:var(--white); margin-bottom:6px; }
.offer .desc{ font-size:.92rem; opacity:.92; }
.offer .desc strong{ color:var(--gold-soft); }

/* Offer detail (offers page extended cards) */
.offer-row{
  display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center;
  padding:64px 0;
  border-bottom:1px solid var(--line);
}
@media (max-width:960px){ .offer-row{ grid-template-columns:1fr; gap:32px; padding:48px 0; } }
.offer-row.reverse .offer-row-img{ order:2; }
@media (max-width:960px){ .offer-row.reverse .offer-row-img{ order:initial; } }
.offer-row-img{ aspect-ratio:5/4; background-size:cover; background-position:center; border-radius:2px; }
.offer-row h2{ margin:8px 0 18px; }
.offer-row .price-tag{
  display:inline-block; background:var(--navy); color:var(--white);
  padding:10px 18px; font-family:var(--serif); font-size:1.4rem;
  margin:16px 0 24px;
}
.offer-row .includes{ list-style:none; padding:0; margin:0; }
.offer-row .includes li{
  padding:10px 0; border-bottom:1px solid var(--line);
  display:flex; align-items:center; gap:12px; font-size:.95rem;
}
.offer-row .includes li::before{
  content:'✓'; color:var(--gold); font-weight:600;
}
.offer-row .includes li:last-child{ border-bottom:none; }

/* ---------- FITNESS CLASS SCHEDULE GRID ---------- */
.schedule-wrap{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:2px;
  overflow:hidden;
  box-shadow:var(--shadow-1);
}
.schedule-row{
  display:grid;
  grid-template-columns: 100px repeat(7, 1fr);
  border-bottom:1px solid var(--line);
}
.schedule-row:last-child{ border-bottom:none; }
.schedule-row > *{
  padding:14px 10px;
  border-right:1px solid var(--line);
  font-size:.82rem;
  display:flex; flex-direction:column; justify-content:center;
  min-height:54px;
}
.schedule-row > *:last-child{ border-right:none; }
.schedule-row.schedule-header > *{
  background:var(--navy-mist);
  color:var(--navy);
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.74rem;
  text-align:center;
}
.schedule-row > .time-col{
  background:var(--frost);
  color:var(--ink-soft);
  font-family:var(--serif);
  font-size:1rem;
  text-align:center;
}
.class-slot{ text-align:center; font-weight:500; }
.class-slot small{ display:block; font-size:.68rem; color:var(--ink-soft); font-weight:400; margin-top:2px; letter-spacing:.04em; text-transform:uppercase; }
.class-yoga    { background:rgba(168,195,188,.30); color:var(--navy-deep); }
.class-pilates { background:rgba(193,155,118,.18); color:var(--navy-deep); }
.class-dance   { background:rgba(216,184,150,.32); color:var(--navy-deep); }
.class-strength{ background:rgba(10,31,107,.10);   color:var(--navy-deep); }
.class-swim    { background:rgba(125,200,247,.30); color:var(--navy-deep); }
.class-empty   { color:rgba(0,0,0,.18); text-align:center; }

@media (max-width:960px){
  .schedule-wrap{ overflow-x:auto; }
  .schedule-row{ min-width:720px; }
}

.schedule-legend{
  display:flex; flex-wrap:wrap; gap:14px; justify-content:center;
  margin-top:24px;
  font-size:.82rem;
}
.schedule-legend span{
  display:inline-flex; align-items:center; gap:8px;
  color:var(--ink-soft);
}
.schedule-legend i{
  width:12px; height:12px; border-radius:2px; display:inline-block;
}

/* ---------- TRUST / REVIEW BAR ---------- */
.trust{ background:var(--navy); color:var(--white); padding:48px 0; }
.trust .grid{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:32px;
  align-items:center; text-align:center;
}
@media (max-width:720px){ .trust .grid{ grid-template-columns:repeat(2,1fr); gap:32px 16px; } }
.trust .item{ display:flex; flex-direction:column; align-items:center; gap:6px; }
.trust .rating{ font-family:var(--serif); font-size:2rem; }
.trust .source{ font-size:.78rem; letter-spacing:.18em; text-transform:uppercase; opacity:.75; }
.stars{ color:var(--gold); letter-spacing:.1em; }

/* ---------- LOCATION ---------- */
.location .grid{ display:grid; grid-template-columns:1.2fr 1fr; gap:64px; align-items:center; }
@media (max-width:960px){ .location .grid{ grid-template-columns:1fr; gap:48px; } }
.map-card{
  position:relative;
  aspect-ratio:5/4;
  border-radius:2px;
  overflow:hidden;
  background:var(--frost);
  box-shadow:var(--shadow-2);
}
.map-card svg{ position:absolute; inset:0; width:100%; height:100%; }
.map-card iframe{
  position:absolute; inset:0; width:100%; height:100%;
  border:0;
  /* subtle navy tint to match the brand */
  filter:saturate(.9);
}
.map-pin{
  position:absolute;
  top:50%; left:55%;
  width:46px; height:46px;
  background:var(--navy); color:var(--white);
  border-radius:50% 50% 50% 0;
  transform:rotate(-45deg) translate(-50%, -50%);
  transform-origin:top left;
  display:inline-flex; align-items:center; justify-content:center;
  font-family:var(--serif); font-size:1rem;
  box-shadow:var(--shadow-2);
}
.map-pin span{ transform:rotate(45deg); font-weight:500; }
.location h2{ margin-bottom:24px; }
.travel-list{ list-style:none; padding:0; margin:24px 0 0; }
.travel-list li{
  display:flex; align-items:baseline; gap:16px;
  padding:16px 0;
  border-bottom:1px solid var(--line);
}
.travel-list li:last-child{ border-bottom:none; }
.travel-list .where{ flex:1; color:var(--ink); font-weight:500; }
.travel-list .when{ color:var(--navy); font-family:var(--serif); font-size:1.2rem; }

/* ---------- CONTACT FORM ---------- */
.contact-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:64px;
}
@media (max-width:960px){ .contact-grid{ grid-template-columns:1fr; gap:48px; } }
.contact-info h3{ margin-bottom:6px; }
.contact-info p{ color:var(--ink-soft); margin:0 0 24px; }
.contact-info .row{
  display:flex; gap:18px; padding:18px 0;
  border-bottom:1px solid var(--line);
}
.contact-info .row:last-child{ border-bottom:none; }
.contact-info .row .icon{
  width:42px; height:42px; flex-shrink:0;
  background:var(--navy-mist); color:var(--navy);
  border-radius:50%; display:inline-flex; align-items:center; justify-content:center;
  font-family:var(--serif); font-weight:500;
}
.contact-info .row .lbl{
  font-size:.78rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--ink-soft); margin-bottom:4px;
}
.contact-info .row .val{ color:var(--ink); font-size:1rem; }
.contact-info .row .val a:hover{ color:var(--navy); }

.contact-form{
  background:var(--frost); padding:40px;
  border-radius:2px; border:1px solid var(--line);
}
.contact-form h3{ margin-bottom:6px; }
.contact-form p{ color:var(--ink-soft); margin:0 0 24px; font-size:.95rem; }
.contact-form .field{ margin-bottom:16px; }
.contact-form label{
  display:block; font-size:.78rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--ink-soft); margin-bottom:6px;
}
.contact-form input, .contact-form textarea, .contact-form select{
  width:100%; padding:12px 14px;
  font-family:var(--sans); font-size:.95rem;
  border:1px solid var(--line); background:var(--white); color:var(--ink);
  border-radius:2px; outline:none;
  transition:border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus{
  border-color:var(--navy);
}
.contact-form textarea{ min-height:120px; resize:vertical; }
.contact-form button{
  margin-top:8px; width:100%;
  padding:14px; background:var(--navy); color:var(--white);
  font-weight:500; letter-spacing:.04em; border-radius:2px;
  transition:background .3s;
}
.contact-form button:hover{ background:var(--navy-deep); }

/* ---------- NEWSLETTER ---------- */
.newsletter{ background:var(--white); }
.newsletter .card{
  background:var(--frost); padding:64px; border-radius:2px;
  text-align:center; box-shadow:var(--shadow-1); border:1px solid var(--line);
}
@media (max-width:720px){ .newsletter .card{ padding:40px 24px; } }
.newsletter h2{ margin-bottom:14px; }
.newsletter p{ color:var(--ink-soft); margin-bottom:32px; }
.newsletter form{
  display:flex; gap:0; max-width:540px; margin:0 auto;
  border:1px solid var(--line); border-radius:2px;
  background:var(--white); padding:6px;
}
.newsletter input{
  flex:1; border:none; background:transparent;
  padding:12px 16px; font-family:var(--sans); font-size:.95rem;
  color:var(--ink); outline:none;
}
.newsletter button{
  padding:12px 24px;
  background:var(--navy); color:var(--white);
  font-weight:500; letter-spacing:.04em; border-radius:2px;
  transition:background .3s;
}
.newsletter button:hover{ background:var(--navy-deep); }

/* ---------- FOOTER ---------- */
footer{ background:var(--navy-deep); color:var(--white); padding:80px 0 32px; }
footer .grid{ display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; }
@media (max-width:960px){ footer .grid{ grid-template-columns:1fr 1fr; gap:40px 24px; } }
@media (max-width:600px){ footer .grid{ grid-template-columns:1fr; } }
footer h4{
  font-family:var(--sans); font-size:.78rem;
  text-transform:uppercase; letter-spacing:.2em;
  color:var(--gold-soft); margin-bottom:18px;
}
footer .footer-logo-link{ display:inline-block; margin-bottom:18px; transition:opacity .25s var(--ease); }
footer .footer-logo-link:hover{ opacity:.75; }
footer .footer-logo{ height:50px; width:auto; display:block; }
footer ul{ list-style:none; padding:0; margin:0; }
footer li{ padding:6px 0; font-size:.92rem; opacity:.82; }
footer li a:hover{ opacity:1; color:var(--gold-soft); }
footer .legal{
  margin-top:48px; padding-top:32px;
  border-top:1px solid rgba(255,255,255,.1);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px;
  font-size:.78rem; opacity:.65;
}
footer .legal a{ color:var(--gold-soft); text-decoration:underline; }

/* ---------- REVEAL ANIMATION ---------- */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible{ opacity:1; transform:none; }

/* ---------- ACCESSIBILITY ---------- */
*:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{ animation:none !important; transition:none !important; }
}

/* ---------- COOKIE CONSENT BANNER ---------- */
.cookie-banner{
  position:fixed; bottom:24px; left:24px; right:24px;
  max-width:680px; margin:0 auto;
  background:var(--navy-deep); color:var(--cream);
  padding:24px 28px; border-radius:4px;
  box-shadow:0 20px 60px -16px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.06);
  z-index:200;
  display:none;
  font-size:.92rem; line-height:1.6;
  animation: cookieIn .5s var(--ease) both .8s;
}
.cookie-banner.visible{ display:block; }
@keyframes cookieIn{
  from{ opacity:0; transform:translateY(24px); }
  to{ opacity:1; transform:none; }
}
.cookie-banner h4{
  color:var(--gold-soft); font-family:var(--sans);
  font-size:.78rem; letter-spacing:.18em; text-transform:uppercase;
  font-weight:600; margin-bottom:8px;
}
.cookie-banner p{ color:rgba(255,255,255,.82); margin:0 0 14px; font-size:.92rem; }
.cookie-banner p a{ color:var(--gold-soft); text-decoration:underline; }
.cookie-banner .actions{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.cookie-banner button{
  padding:10px 20px; font-size:.85rem; font-weight:500; letter-spacing:.04em;
  border-radius:2px; cursor:pointer; transition:all .25s var(--ease);
  font-family:var(--sans);
}
.cookie-banner .btn-accept-all{ background:var(--gold); color:var(--navy-deep); }
.cookie-banner .btn-accept-all:hover{ background:#b08862; }
.cookie-banner .btn-essential{ background:transparent; color:#fff; border:1px solid rgba(255,255,255,.3); }
.cookie-banner .btn-essential:hover{ background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.5); }
.cookie-banner .btn-customise{ background:transparent; color:var(--gold-soft); border:none; text-decoration:underline; font-size:.85rem; padding:10px 8px; }
.cookie-banner .btn-customise:hover{ color:#fff; }
@media (max-width:600px){
  .cookie-banner{ bottom:12px; left:12px; right:12px; padding:18px 20px; }
  .cookie-banner .actions{ flex-direction:column; align-items:stretch; }
  .cookie-banner button{ width:100%; }
}

/* ---------- SOCIAL ICONS ---------- */
.social-icons{ display:inline-flex; gap:12px; align-items:center; }
.social-icons a{
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
  display:inline-flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.7);
  transition:all .25s var(--ease);
}
.social-icons a:hover{ background:var(--gold); color:var(--navy-deep); border-color:var(--gold); transform:translateY(-2px); }
.social-icons svg{ width:16px; height:16px; }

/* === Price carousel (wellness-spa pricing section) === */
.price-carousel { position: relative; max-width: 100%; }
.price-carousel .carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 16px 20px;
  margin: 0 -16px;
  scrollbar-width: none;
}
.price-carousel .carousel-track::-webkit-scrollbar { display: none; }
.price-carousel .carousel-track > .menu-card {
  flex: 0 0 calc(33.333% - 12px);
  scroll-snap-align: start;
  min-width: 0;
  margin: 0;
}
.price-carousel .carousel-arrow {
  position: absolute;
  top: calc(50% - 10px);
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(10, 31, 107, 0.10);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.price-carousel .carousel-arrow:hover {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 6px 18px rgba(10, 31, 107, 0.18);
}
.price-carousel .carousel-prev { left: -22px; }
.price-carousel .carousel-next { right: -22px; }
.price-carousel .carousel-arrow[disabled] { opacity: 0.3; cursor: default; }
@media (max-width: 900px) {
  .price-carousel .carousel-track > .menu-card { flex: 0 0 calc(50% - 9px); }
}
@media (max-width: 600px) {
  .price-carousel .carousel-track > .menu-card { flex: 0 0 calc(82% - 9px); }
  .price-carousel .carousel-arrow { display: none; }
}

/* === Treatments menu list (treatments.html) === */
.treatment-section { max-width: 760px; margin: 0 auto; }
.treatment-section-h {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 12px;
}
.treatment-list { list-style: none; padding: 0; margin: 0; }
.treatment-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.treatment-row:last-child { border-bottom: none; }
.treatment-info { flex: 1; min-width: 0; }
.treatment-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.35;
}
.treatment-meta {
  font-size: .76rem;
  color: var(--ink-soft);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 6px;
}
.treatment-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
  padding-top: 2px;
}
@media (max-width: 540px) {
  .treatment-name { font-size: 1rem; }
  .treatment-price { font-size: 1.1rem; }
}

/* booking bar text inputs */
.bf-input.bf-text{ cursor:text; }
.bf-input.bf-text::placeholder{ color:var(--ink-soft); opacity:.55; }
@media (min-width:761px){
  #bookingForm .booking-field{ min-width:130px; }
}
