/* ---------- Soluna Beachfront Cabanas · Brand ----------
   Sand   #b6a07f
   Sun    #efe4b4
   Sea    #bdc9ca
   Linen  #f7f3e7
   White  #ffffff
   Black  #000000
--------------------------------------------------------- */

:root {
  --sand: #b6a07f;
  --sand-deep: #8f7a5d;
  --sun: #efe4b4;
  --sea: #bdc9ca;
  --sea-deep: #8fa3a5;
  --linen: #f7f3e7;
  --white: #ffffff;
  --black: #000000;
  --ink: #1a1a1a;
  --mute: #6b6357;

  --serif: "Playfair Display", "Times New Roman", serif;
  --display: "Playfair Display", "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;

  --container: 1240px;
  --radius: 10px;
  --radius-lg: 24px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/*
  ============================================================
  Soluna Hotels — soluna-hotels.com
  Designed & developed by Mahmoud ElMoataz
  Mahmoud.ElMoataz@live.com · +20 100 805 1616
  © 2026 Mahmoud ElMoataz. All rights reserved.
  ============================================================
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
@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 {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--linen);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  text-rendering: optimizeLegibility;
  /* Account for sticky mobile CTA */
  padding-bottom: env(safe-area-inset-bottom);
}
html { overflow-x: hidden; }

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

html {
  scrollbar-width: thin;
  scrollbar-color: var(--sand) var(--linen);
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--linen); }
::-webkit-scrollbar-thumb {
  background: var(--sand);
  border-radius: 999px;
  border: 2px solid var(--linen);
}
::-webkit-scrollbar-thumb:hover { background: var(--sand-deep); }

::selection { background: var(--sand); color: var(--linen); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand-deep);
  margin-bottom: 20px;
  font-weight: 500;
}
.eyebrow--logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow__logo {
  display: inline-block;
  height: 1.5em;
  width: auto;
  position: relative;
  top: 1px;
}
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 22px;
}
.lede {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 18px;
  font-weight: 300;
}
p { color: var(--mute); }
p + p { margin-top: 12px; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:
    calc(22px + env(safe-area-inset-top))
    clamp(20px, 4vw, 40px)
    22px;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.is-scrolled {
  background: rgba(247, 243, 231, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding:
    calc(12px + env(safe-area-inset-top))
    clamp(20px, 4vw, 40px)
    12px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
@supports not ((backdrop-filter: blur(14px)) or (-webkit-backdrop-filter: blur(14px))) {
  .nav.is-scrolled { background: rgba(247, 243, 231, 0.98); }
}
.nav__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  line-height: 1;
  color: var(--white);
  transition: color .35s var(--ease);
}
.nav.is-scrolled .nav__brand { color: var(--ink); }
.nav__wordmark {
  position: relative;
  display: block;
  height: 38px;
  width: auto;
  line-height: 0;
}
.nav__logo {
  display: block;
  height: 100%;
  width: auto;
  transition: opacity .35s var(--ease);
}
.nav__logo--dark {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.nav.is-scrolled .nav__logo--white { opacity: 0; }
.nav.is-scrolled .nav__logo--dark  { opacity: 1; }
.nav__tagline {
  display: block;
  font-size: 10px;
  letter-spacing: 0.46em;
  text-indent: 0.46em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid currentColor;
  text-align: center;
}

.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__links a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--white);
  position: relative;
  transition: color .35s var(--ease);
}
.nav.is-scrolled .nav__links a { color: var(--ink); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.nav.is-scrolled .nav__cta {
  border-color: var(--ink);
  color: var(--ink);
}
.nav__cta:hover { background: var(--ink); color: var(--linen); border-color: var(--ink); }
.nav.is-scrolled .nav__cta:hover { background: var(--ink); color: var(--linen); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: background .35s var(--ease);
}
.nav.is-scrolled .nav__toggle span { background: var(--ink); }

.btn {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn--primary {
  background: var(--ink);
  color: var(--linen);
}
.btn--primary:hover {
  background: var(--sand-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -12px rgba(0,0,0,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--ghost:hover { background: var(--white); color: var(--ink); }
.btn--full { width: 100%; text-align: center; }
.link {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--sand);
  padding-bottom: 4px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.link:hover { color: var(--sand-deep); border-color: var(--sand-deep); }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;   /* iOS Safari: excludes sliding address bar */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--white);
  padding:
    calc(120px + env(safe-area-inset-top))
    clamp(20px, 5vw, 32px)
    clamp(40px, 6vh, 64px);
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroBreathe 22s ease-in-out infinite alternate;
}
@keyframes heroBreathe {
  to { transform: scale(1.0); }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at center, rgba(20,16,10,0.55) 0%, rgba(20,16,10,0.30) 70%, rgba(20,16,10,0.45) 100%),
    linear-gradient(180deg, rgba(20,16,10,0.45) 0%, rgba(20,16,10,0.30) 40%, rgba(20,16,10,0.75) 100%);
}

.hero__center {
  position: relative;
  z-index: 2;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__eyebrow {
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
  animation: rise 1.1s var(--ease) both;
}
.hero__h1 {
  margin: 0 0 14px;
  line-height: 0;
  animation: rise 1.2s .1s var(--ease) both;
}
.hero__wordmark {
  display: block;
  width: clamp(240px, 48vw, 520px);
  height: auto;
  margin: 0 auto;
  filter:
    drop-shadow(0 2px 4px rgba(0,0,0,0.5))
    drop-shadow(0 12px 36px rgba(0,0,0,0.55));
}
.hero__tagline {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 8px 18px;
  border-top: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 36px;
  animation: rise 1.2s .25s var(--ease) both;
}
.hero__sub {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  max-width: 540px;
  margin: 0 auto clamp(120px, 18vh, 200px);
  color: rgba(255,255,255,0.95);
  animation: rise 1.2s .4s var(--ease) both;
}
.hero__actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: rise 1.2s .55s var(--ease) both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  z-index: 3;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.3);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute; top: -44px; left: 0;
  width: 100%; height: 44px;
  background: var(--white);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -44px; }
  100% { top: 100%; }
}

.section {
  padding: clamp(80px, 11vw, 140px) 0;
  position: relative;
}
.section__head { max-width: 740px; margin-bottom: 64px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.grid-2--align-start { align-items: start; }

.stats {
  background: var(--ink);
  color: var(--linen);
  padding: 36px 0;
}
.stats__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 8px 48px;
  border-left: 1px solid rgba(247,243,231,0.14);
}
.stat:first-child { border-left: 0; }
.stat img {
  width: 32px; height: 32px;
  object-fit: contain;
  margin-bottom: 4px;
  background: var(--linen);
  border-radius: 50%;
  padding: 4px;
}
.stat strong {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--linen);
}
.stat span {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(247,243,231,0.55);
  margin-top: 4px;
}
.stat--text strong { font-size: clamp(1.7rem, 2.8vw, 2.4rem); }
.stat--word {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem) !important;
  letter-spacing: 0;
  font-style: italic;
}

.about { background: var(--linen); }
.about__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.25);
}

.elements {
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.elements__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.element {
  display: flex;
  flex-direction: column;
  background: var(--linen);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.element:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -28px rgba(0,0,0,0.18);
}
.element__img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.element__body { padding: 44px 32px 44px; text-align: center; position: relative; }
.element__symbol {
  width: auto;
  height: 110px;
  max-width: 240px;
  display: block;
  margin: 0 auto 24px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}
/* Sand/Sea use transform:scale (not height) so all 3 cards keep the same
   110px box and titles stay aligned. */
.element:nth-child(2) .element__symbol,
.element:nth-child(3) .element__symbol {
  transform: scale(0.72);
  transform-origin: center bottom;
}
.element h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--ink);
}

.rituals { background: var(--linen); }
.rituals__line {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  position: relative;
  padding-top: 40px;
}
.rituals__line::before {
  content: '';
  position: absolute;
  top: 64px; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
}
.rituals__line li {
  position: relative;
  padding-top: 56px;
  text-align: center;
}
.rituals__line li::after {
  content: '';
  position: absolute;
  top: 16px; left: 50%;
  width: 14px; height: 14px;
  margin-left: -7px;
  border-radius: 50%;
  background: var(--sand);
  box-shadow: 0 0 0 8px var(--linen);
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.rituals__line li:hover::after {
  background: var(--ink);
  transform: scale(1.15);
}
.rituals__time {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
}
.rituals__line h3 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sand-deep);
  margin-bottom: 10px;
}
.rituals__line p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--mute);
}

.cabin { background: var(--linen); }
.cabin__showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr);
  gap: 48px;
  align-items: stretch;
}
.cabin__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.35);
  background: var(--ink);
  min-height: 480px;
}
.slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  cursor: pointer;
}
.slider.zone-left  { cursor: w-resize; }
.slider.zone-right { cursor: e-resize; }
/* No-JS fallback */
.cabana-static { display: flex; flex-direction: column; gap: 8px; }
.cabana-static img { width: 100%; height: auto; display: block; }
.slider__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .8s var(--ease);
  will-change: transform;
}
.slider__img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider__dots {
  position: absolute;
  left: 0; right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 9px;
  z-index: 3;
}
.slider__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.45);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.slider__dot i { display: none; }
.slider__dot.is-active {
  background: var(--white);
  transform: scale(1.25);
}

.lounge__controls {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  background: var(--white);
  border-radius: 999px;
  margin-top: 20px;
  width: max-content;
  box-shadow: 0 12px 24px -16px rgba(0,0,0,0.15);
}
.cabin__pill {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 22px;
  border: 0;
  background: transparent;
  color: var(--mute);
  border-radius: 999px;
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.cabin__pill:hover { color: var(--ink); }
.cabin__pill.is-active {
  background: var(--ink);
  color: var(--linen);
}

.cabin__details {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
}
.cabin__details > .btn { margin-top: auto; align-self: flex-start; }
.cabin__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.spec { display: flex; flex-direction: column; gap: 4px; }
.spec strong {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sand-deep);
  font-weight: 500;
}
.spec span {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
}
.spec em {
  font-style: normal;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c54a3e;
  margin-left: 4px;
  font-weight: 500;
}

.cabin__features {
  list-style: none;
  margin-bottom: 28px;
}
.cabin__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--mute);
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.cabin__features li:last-child { border-bottom: 0; }
.feat__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--sand-deep);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lounge { background: var(--white); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.lounge__showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.lounge__visual {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.35);
  background: var(--ink);
}
.lounge__visual img {
  width: 100%;
  display: block;
  aspect-ratio: 21/9;
  object-fit: cover;
  transition: opacity .5s var(--ease);
}
.lounge__visual.is-swapping img { opacity: 0; }

.manifesto {
  background: var(--sand);
  color: var(--ink);
  padding: clamp(80px, 11vw, 130px) 0;
  position: relative;
  overflow: hidden;
}
.manifesto::before, .manifesto::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,243,231,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto::before { top: -120px; left: -120px; }
.manifesto::after  { bottom: -160px; right: -120px; background: radial-gradient(circle, rgba(20,16,10,0.12) 0%, transparent 70%); }
.manifesto__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 8px;
}
.manifesto__symbol {
  width: 64px;
  margin-bottom: 28px;
  filter: brightness(0.92);
}
.manifesto blockquote { margin: 0; }
.manifesto blockquote p {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 5.2vw, 2.4rem);
  line-height: 1.35;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0 0 22px;
  max-width: 100%;
  text-wrap: balance;
}
.manifesto cite {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
  font-weight: 500;
}

.amenities { background: var(--linen); }
.amenities__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.amen {
  flex: 0 1 calc(25% - 14px);
}
.amen {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.amen:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -22px rgba(0,0,0,0.18);
}
.amen__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--linen);
  color: var(--sand-deep);
  border-radius: 50%;
  margin-bottom: 16px;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.amen__icon svg {
  width: 24px; height: 24px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.amen:hover .amen__icon {
  background: var(--sand);
  color: var(--white);
}
.amen h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
}
.amen p {
  font-size: 13.5px;
  line-height: 1.5;
}

.gallery { background: var(--white); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 14px;
}
.gallery__tile {
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  transition: transform .5s var(--ease);
}
.gallery__tile:hover { transform: scale(1.015); }
.g1 { grid-column: span 2; grid-row: span 2; }
.g6 { grid-column: span 2; }

.contact {
  background: var(--linen);
}
.contact__meta {
  list-style: none;
  margin-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.contact__meta li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.contact__meta strong {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sand-deep);
  flex-shrink: 0;
}
.contact__meta span {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--ink);
  text-align: right;
}
.contact__meta em {
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c54a3e;
  margin-left: 6px;
  font-weight: 500;
}
.todo-note {
  margin-top: 20px;
  font-size: 13px;
  padding: 12px 14px;
  background: rgba(197,74,62,0.07);
  border-left: 3px solid #c54a3e;
  border-radius: 4px;
  color: var(--mute);
}
.todo-note em {
  font-style: normal;
  font-weight: 500;
  color: #c54a3e;
}

.form {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.15);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form label {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 18px;
}
.form label span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sand-deep);
}
.form input, .form select, .form textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  background: var(--linen);
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 300;
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--sand);
  box-shadow: 0 0 0 4px rgba(182,160,127,0.18);
}
.form textarea { resize: vertical; min-height: 80px; }
.form__ok {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 1.1rem;
  text-align: center;
  color: var(--sand-deep);
}

.page-hero {
  position: relative;
  min-height: 56vh;
  min-height: 56svh;   /* iOS Safari */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--white);
  padding:
    calc(150px + env(safe-area-inset-top))
    clamp(20px, 5vw, 32px)
    clamp(64px, 9vw, 96px);
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.page-hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at center, rgba(20,16,10,0.42) 0%, rgba(20,16,10,0.30) 70%, rgba(20,16,10,0.50) 100%),
    linear-gradient(180deg, rgba(20,16,10,0.55) 0%, rgba(20,16,10,0.28) 45%, rgba(20,16,10,0.62) 100%);
}
.page-hero__center { position: relative; z-index: 1; max-width: 760px; }
.page-hero__h1 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  margin: 14px 0 0;
  color: var(--white);
}
.page-hero__sub {
  margin: 20px auto 0;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
}

.gallery-page { background: var(--linen); }

.gx-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.gx-chip {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.gx-chip:hover { border-color: var(--ink); }
.gx-chip.is-active {
  background: var(--ink);
  color: var(--linen);
  border-color: var(--ink);
}

/* Justified rows: row height fixed, item width from natural aspect (--ratio). */
.gx-grid {
  --row-h: 280px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gx-item {
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  margin: 0;
  border: 0;
  background: var(--sand);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: var(--row-h);
  flex: 1 1 calc(var(--ratio, 1.5) * var(--row-h));
  min-width: 0;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.gx-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.gx-item:hover { box-shadow: 0 24px 50px -22px rgba(0, 0, 0, 0.35); }
.gx-item:hover img { transform: scale(1.04); }
.gx-item.is-hidden { display: none; }

/* kept for backward compat */
.gx-item--tall,
.gx-item--wide { display: block; }

.gx-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--mute);
  font-family: var(--serif);
  font-size: 1.1rem;
}

@media (max-width: 1024px) { .gx-grid { --row-h: 240px; } }
@media (max-width: 768px)  { .gx-grid { --row-h: 200px; gap: 6px; } }
@media (max-width: 480px)  { .gx-grid { --row-h: 170px; gap: 6px; } }

.gx-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(20, 16, 10, 0.94);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: clamp(20px, 4vw, 48px);
  gap: 18px;
}
.gx-lightbox[hidden] { display: none; }
.gx-lb__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-width: 0;
}
.gx-lb__img {
  max-width: 100%;
  max-height: 85vh;
  max-height: 85svh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}
.gx-lb__close,
.gx-lb__nav {
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  color: var(--white);
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.gx-lb__close:hover,
.gx-lb__nav:hover { background: rgba(255, 255, 255, 0.22); }
.gx-lb__close {
  position: absolute;
  top: calc(clamp(14px, 3vw, 22px) + env(safe-area-inset-top));
  right: calc(clamp(14px, 3vw, 22px) + env(safe-area-inset-right));
  width: 44px;
  height: 44px;
  font-size: 26px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.gx-lb__nav {
  width: 48px;
  height: 48px;
  font-size: 32px;
  line-height: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gx-lb__nav:active { transform: scale(0.95); }

body.gx-lb-open { overflow: hidden; }

/* ---------- Mobile hardening: gallery + lightbox ---------- */

/* Tablet portrait */
@media (max-width: 1024px) and (min-width: 769px) {
  .gx-grid { column-gap: 12px; }
  .gx-item { margin-bottom: 12px; }
}

/* Phone portrait: nav to bottom, image fills above */
@media (max-width: 600px) {
  .gx-lightbox {
    grid-template-columns: 1fr;
    padding: calc(16px + env(safe-area-inset-top)) 16px calc(96px + env(safe-area-inset-bottom));
  }
  .gx-lb__img {
    max-height: 70vh;
    max-height: 70svh;
    max-height: 70dvh;
  }
  .gx-lb__nav {
    position: absolute;
    bottom: calc(20px + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.18);
  }
  .gx-lb__nav--prev { left: calc(24px + env(safe-area-inset-left)); }
  .gx-lb__nav--next { right: calc(24px + env(safe-area-inset-right)); }

  .gx-filter {
    gap: 8px;
    margin-bottom: 24px;
  }
  .gx-chip {
    font-size: 10px;
    letter-spacing: 0.12em;
    padding: 10px 16px;
    min-height: 38px;
  }
}

/* Very small phones (Galaxy Fold front, old iPhone SE) */
@media (max-width: 380px) {
  .gx-chip {
    font-size: 10px;
    letter-spacing: 0.08em;
    padding: 9px 14px;
  }
  .gx-grid { column-gap: 8px; }
  .gx-item { margin-bottom: 8px; border-radius: 14px; }
  .gx-lightbox { padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
  .gx-lb__nav { width: 46px; height: 46px; font-size: 28px; }
}

/* Landscape phone: nav to sides so short viewport keeps image room */
@media (max-height: 500px) and (orientation: landscape) {
  .gx-lightbox {
    grid-template-columns: auto 1fr auto;
    padding: 12px clamp(16px, 4vw, 32px);
    gap: 12px;
  }
  .gx-lb__img {
    max-height: 92vh;
    max-height: 92svh;
    max-height: 92dvh;
  }
  .gx-lb__nav {
    position: static;
    bottom: auto;
    left: auto;
    right: auto;
    width: 44px;
    height: 44px;
  }
  .gx-lb__close {
    top: calc(10px + env(safe-area-inset-top));
    right: calc(10px + env(safe-area-inset-right));
  }
}

.gx-item,
.gx-chip,
.gx-lb__nav,
.gx-lb__close {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}
.gx-lb__img { touch-action: pan-y pinch-zoom; }

.bookbar-wrap {
  position: relative;
  z-index: 6;
  width: min(1180px, 96vw);
  max-width: none;
  margin-top: 0;
}
.bookbar {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 30px 70px -28px rgba(0, 0, 0, 0.32);
  overflow: visible;
}
.bookbar__seg {
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 18px 26px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  min-width: 0;
}
.bookbar__label {
  font-size: 12px;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 500;
  color: var(--sand-deep);
}
.bookbar__dates {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bookbar__date {
  border: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  padding: 2px 0;
  min-width: 0;
  width: 100%;
}
.bookbar__date:focus { outline: none; color: var(--sand-deep); }
.bookbar__dash { color: var(--mute); flex-shrink: 0; }

.bookbar__trigger {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  width: 100%;
}
.bookbar__head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bookbar__icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--sand-deep);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bookbar__seg--code { flex: 1 1 0; }
/* Dates needs more room for range + nights on one line */
.bookbar__seg--dates { flex: 1.4 1 0; }
.bookbar__value {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  white-space: nowrap;
}
.bookbar__nights {
  font-family: var(--sans);
  font-style: normal;
  margin-left: 12px;
  color: var(--sand-deep);
  font-size: 0.78em;
  letter-spacing: 0.04em;
}

.bookbar__pop {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 16px;
  right: 16px;
  z-index: 20;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px 18px;
}
.bookbar__pop[hidden] { display: none; }
.bookbar__counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
}
.bookbar__counter + .bookbar__counter { border-top: 1px solid rgba(0, 0, 0, 0.08); }
.bookbar__room + .bookbar__room {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 8px;
  padding-top: 8px;
}
.bookbar__room-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.bookbar__room-head span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sand-deep);
}
.bookbar__room-remove {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 0;
  background: transparent;
  color: var(--mute);
  cursor: pointer;
  line-height: 0;
}
.bookbar__room-remove svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bookbar__room-remove:hover { color: #c54a3e; }
.bookbar__addroom {
  -webkit-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--sand-deep);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 12px 0 4px;
  margin-top: 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.bookbar__addroom svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bookbar__addroom:hover { color: var(--ink); }
.bookbar__stepper {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bookbar__stepper button {
  -webkit-appearance: none;
  appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--sand);
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.bookbar__stepper button:hover { background: var(--sand); color: var(--linen); }
.bookbar__stepper span { min-width: 18px; text-align: center; font-size: 1rem; }

.bookbar__submit {
  -webkit-appearance: none;
  appearance: none;
  flex: 0 0 auto;
  border: 0;
  background: var(--ink);
  color: var(--linen);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 clamp(32px, 4vw, 56px);
  cursor: pointer;
  border-radius: 0 16px 16px 0;
  transition: background .25s var(--ease);
}
.bookbar__submit:hover { background: var(--sand-deep); }

.bookbar__cal {
  left: 0;
  right: auto;
  width: max-content;
  max-width: 92vw;
  padding: 18px 20px;
}

.bookbar__codepop {
  left: 0;
  right: auto;
  width: 320px;
  max-width: 92vw;
  padding: 16px 18px;
}
.codepop__title {
  display: block;
  font-size: 12px;
  letter-spacing: 0.01em;
  font-weight: 500;
  color: var(--sand-deep);
  margin-bottom: 10px;
}
.codepop__row {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.codepop__input {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
}
.codepop__input::placeholder { color: var(--mute); }
.codepop__input:focus {
  outline: none;
  border-color: var(--sand);
  box-shadow: 0 0 0 3px rgba(182, 160, 127, 0.18);
}
.codepop__apply {
  -webkit-appearance: none;
  appearance: none;
  flex: 0 0 auto;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--linen);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.codepop__apply:hover { background: var(--sand-deep); }

/* Bottom-sheet header (mobile only) */
.sheet-head { display: none; }
.sheet-close {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  font-size: 28px;
  color: var(--ink);
}
.cal__head {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.cal__grids {
  display: flex;
  gap: 32px;
}
.cal__nav {
  -webkit-appearance: none;
  appearance: none;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.cal__nav:hover { background: var(--linen); border-color: var(--sand); }
.cal__nav:disabled { opacity: 0.3; cursor: default; }
.cal__month-name {
  text-align: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.cal__dows,
.cal__days {
  display: grid;
  grid-template-columns: repeat(7, 38px);
}
.cal__dow {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  padding-bottom: 8px;
}
.cal__day {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background: transparent;
  height: 38px;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  border-radius: 0;
}
.cal__day:disabled { color: rgba(0, 0, 0, 0.22); cursor: default; }
.cal__day.is-empty { visibility: hidden; }
.cal__day:not(:disabled):hover { background: var(--linen); border-radius: 999px; }
.cal__day.in-range { background: rgba(182, 160, 127, 0.18); }
.cal__day.is-start { background: rgba(182, 160, 127, 0.18); border-radius: 999px 0 0 999px; }
.cal__day.is-end { background: rgba(182, 160, 127, 0.18); border-radius: 0 999px 999px 0; }
.cal__day.is-preview-end { border-radius: 0 999px 999px 0; }
.cal__day.is-selected {
  background: var(--ink);
  color: var(--linen);
  border-radius: 999px;
  font-weight: 500;
}
.cal__day.is-selected:hover { background: var(--ink); }
.cal__warn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(197, 74, 62, 0.09);
  color: #c54a3e;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}
.cal__warn[hidden] { display: none; }
.cal__warn svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 760px) {
  /* Mobile booking widget (Address Hotels engine style):
     Bar = 2-col grid (Dates | Guests) + Code full-width + Find Rooms footer.
     Sheets are full-width fixed bottom-sheets. */

  /* Hero spacing on mobile */
  .hero { align-items: center; padding-bottom: clamp(60px, 10vh, 100px); }
  .hero__sub { margin-bottom: 18px; }
  .hero__eyebrow { margin-bottom: 12px; font-size: 9px; letter-spacing: 0.32em; }
  .hero__wordmark { width: clamp(180px, 50vw, 280px); }

  /* Pinned to bottom as a floating rounded card; page bottom-padding clears it,
     WhatsApp lifts above it. */
  .bookbar-wrap {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: auto;
    margin: 0;
    z-index: 90;
  }
  /* Class-based baseline for all browsers; :has() as progressive enhancement
     for pages that forget the class. */
  body.has-bookbar { padding-bottom: calc(150px + env(safe-area-inset-bottom)); }
  body.has-bookbar .wa-float { bottom: calc(158px + env(safe-area-inset-bottom)); }
  @supports selector(:has(*)) {
    body:has(.bookbar-wrap) { padding-bottom: calc(150px + env(safe-area-inset-bottom)); }
    body:has(.bookbar-wrap) .wa-float { bottom: calc(158px + env(safe-area-inset-bottom)); }
  }
  .bookbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 -6px 22px -12px rgba(0, 0, 0, 0.26), 0 14px 30px -18px rgba(0, 0, 0, 0.34);
    background: var(--white);
  }
  .bookbar__seg {
    flex: none;
    padding: 16px 16px;
    border-right: 0;
    border-bottom: 0;
    min-width: 0;
  }
  .bookbar__seg--dates {
    grid-column: 1 / 2;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }
  .bookbar__seg--guests { grid-column: 2 / 3; }
  /* Promo code: quiet centered underlined link, full-width row */
  .bookbar__seg--code {
    display: flex;
    grid-column: 1 / -1;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0;
  }
  .bookbar__seg--code .bookbar__trigger {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    min-height: 44px;
    width: 100%;
  }
  .bookbar__seg--code .bookbar__head { display: inline-flex; align-items: center; }
  .bookbar__seg--code .bookbar__label { display: none; }
  .bookbar__seg--code .bookbar__icon { width: 15px; height: 15px; opacity: 0.9; }
  .bookbar__seg--code .bookbar__value {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--sand-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
  }

  .bookbar__trigger {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 100%;
  }
  .bookbar__head { display: inline-flex; align-items: center; gap: 7px; }
  .bookbar__label { font-size: 11px; opacity: 0.85; letter-spacing: 0.01em; }
  .bookbar__icon { width: 16px; height: 16px; opacity: 0.85; }
  .bookbar__value {
    white-space: normal;
    font-size: 0.98rem;
    line-height: 1.3;
    min-width: 0;
  }
  .bookbar__nights { display: none; }

  /* Book Now: full-width dark footer spanning both columns */
  .bookbar__submit {
    grid-column: 1 / -1;
    margin: 0;
    border-radius: 0;
    padding: 17px;
    font-size: 12px;
    min-height: 54px;
    width: 100%;
  }

  .bookbar__pop,
  .bookbar__cal {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: auto;
    max-width: none;
    max-height: 88vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 18px 18px 0 0;
    background: var(--linen);
    z-index: 1000;
    padding: 0 0 calc(env(safe-area-inset-bottom));
    box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.55);
  }

  .sheet-head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    background: var(--linen);
    position: sticky;
    top: 0;
    z-index: 2;
  }
  .sheet-head__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .sheet-title {
    font-family: var(--serif);
    font-size: 1.4rem;
    line-height: 1.15;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .sheet-close {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    color: var(--ink);
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .sheet-close:hover { background: rgba(0, 0, 0, 0.06); }
  .sheet-sub {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 0.95rem;
    opacity: 0.78;
  }
  .sheet-sub svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .sheet-sub__value { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  /* Calendar sheet: months stacked vertically */
  .bookbar__cal { padding-bottom: calc(20px + env(safe-area-inset-bottom)); }
  .bookbar__cal .cal__warn { margin: 16px 16px 0; }
  .bookbar__cal .cal__head {
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 16px 0;
    gap: 12px;
  }
  .cal__grids {
    flex-direction: column;
    gap: 24px;
    flex: 1;
    align-items: stretch;
  }
  .cal__grids .cal__month + .cal__month {
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 20px;
  }
  .cal__month { width: 100%; padding: 0 12px; }
  .cal__dows,
  .cal__days { grid-template-columns: repeat(7, 1fr); }
  .cal__day { height: 46px; font-size: 0.95rem; }
  .cal__nav { width: 40px; height: 40px; flex-shrink: 0; }
  .cal__month-name {
    font-size: 1.1rem;
    margin-bottom: 12px;
    text-align: left;
    padding: 0 4px;
    font-weight: 500;
  }

  #bbGuestsPop { padding-bottom: calc(20px + env(safe-area-inset-bottom)); }
  #bbRooms { padding: 16px 20px 0; }
  .bookbar__room { padding: 4px 0; }
  .bookbar__room + .bookbar__room { margin-top: 12px; padding-top: 14px; }
  .bookbar__counter { padding: 14px 0; font-size: 1.05rem; }
  .bookbar__stepper button { width: 38px; height: 38px; font-size: 20px; }
  .bookbar__addroom {
    margin: 4px 20px 16px;
    padding: 14px 0 6px;
    width: calc(100% - 40px);
    font-size: 14px;
  }
  .bookbar__addroom svg { width: 20px; height: 20px; }

  /* Code sheet: JS portals the popup onto <body> to escape hero's stacking
     context. --kb-inset (set by JS from visualViewport) keeps the sheet above
     the iOS keyboard. */
  .bookbar__codepop {
    width: auto;
    bottom: calc(var(--kb-inset, 0px));
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }
  .bookbar__codepop .codepop__title { display: none; }
  .bookbar__codepop .codepop__row { margin: 18px 20px 4px; }
  .codepop__input { padding: 14px 14px; font-size: 1rem; min-height: 50px; }
  .codepop__apply { padding: 0 22px; font-size: 12px; min-height: 50px; }

  /* When a bottom sheet is open on mobile: lift wrap above nav/whatsapp,
     hide bar controls (keep open sheet visible), lock body scroll. */
  .bookbar-wrap.is-pop-open { z-index: 1001; }
  body.bb-pop-open { overflow: hidden; }
  /* iOS scroll lock: pins body so keyboard can't scroll the page.
     JS saves scrollY into --top and restores it on close. */
  body.bb-scroll-lock { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; }
  body.bb-pop-open .wa-float { display: none; }
  body.bb-pop-open .nav { z-index: 1; }
  body.bb-pop-open .bookbar { visibility: hidden; }
  body.bb-pop-open .bookbar__pop:not([hidden]),
  body.bb-pop-open .bookbar__cal:not([hidden]) { visibility: visible; }
}

@media (max-width: 380px) {
  .bookbar__value { font-size: 0.88rem; }
  .bookbar__label { font-size: 10px; }
  .cal__day { height: 42px; font-size: 0.88rem; }
  .sheet-title { font-size: 1.25rem; }
}

/* Tiny phones (<=320px) */
@media (max-width: 320px) {
  .bookbar__seg { padding: 14px 11px; }
  .bookbar__head { gap: 4px; }
  .bookbar__icon { width: 15px; height: 15px; }
  .bookbar__label { font-size: 9px; letter-spacing: 0; }
  .bookbar__value { font-size: 0.82rem; }
  .bookbar__submit { padding: 14px; font-size: 11px; min-height: 48px; }
  .cal__day { height: 38px; font-size: 0.82rem; }
  .cal__month-name { font-size: 1rem; }
  .sheet-head { padding: 16px 16px 12px; }
  .sheet-title { font-size: 1.1rem; }
  #bbRooms { padding: 12px 14px 0; }
  .bookbar__codepop .codepop__row { margin: 14px 14px 4px; gap: 6px; }
  .codepop__apply { padding: 0 14px; }
}

/* Tablet portrait (761-1024px): tighten padding/typography */
@media (min-width: 761px) and (max-width: 1024px) {
  .bookbar-wrap { width: min(960px, 96vw); }
  .bookbar__seg { padding: 14px 18px; }
  .bookbar__label { font-size: 11px; }
  .bookbar__value { font-size: 0.95rem; }
  .bookbar__submit { padding: 0 24px; font-size: 11px; }
  .bookbar__icon { width: 20px; height: 20px; }
}

/* Landscape phones: shorten sheets, auto-height hero so bar stays reachable */
@media (max-width: 932px) and (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding-top: 90px; padding-bottom: 24px; }
  .hero__sub { margin-bottom: 12px; font-size: 0.95rem; }
  .hero__wordmark { width: clamp(140px, 28vw, 220px); }
  /* Short screen: keep bar in flow, don't pin */
  .bookbar-wrap {
    position: relative;
    left: auto; right: auto; bottom: auto;
    width: 100%;
    margin-top: 8px;
    z-index: 6;
  }
  body.has-bookbar { padding-bottom: 0; }
  body.has-bookbar .wa-float { bottom: calc(14px + env(safe-area-inset-bottom)); }
  @supports selector(:has(*)) {
    body:has(.bookbar-wrap) { padding-bottom: 0; }
    body:has(.bookbar-wrap) .wa-float { bottom: calc(14px + env(safe-area-inset-bottom)); }
  }
  .bookbar__pop,
  .bookbar__cal { max-height: 88vh; }
  .cal__day { height: 36px; font-size: 0.82rem; }
}

/* iOS/mobile-Safari: use dvh so hero tracks the real visible height as the
   URL bar hides/shows */
@supports (height: 100dvh) {
  .hero { min-height: 100dvh; }
}
@supports (max-height: 88dvh) {
  @media (max-width: 760px) {
    .bookbar__pop,
    .bookbar__cal { max-height: 88dvh; }
  }
}
/* iOS: font-size < 16px on <input> triggers auto-zoom on focus. Force 16px. */
@media (max-width: 760px) {
  .codepop__input,
  .bookbar__code { font-size: 16px; }
}

/* Touch + tap polish: kill blue tap flash, no double-tap zoom on triggers,
   no long-press text selection */
.bookbar,
.bookbar__pop,
.bookbar__cal {
  -webkit-tap-highlight-color: transparent;
}
.bookbar__trigger,
.bookbar__submit,
.bookbar__addroom,
.cal__day,
.cal__nav,
.sheet-close,
.bookbar__stepper button,
.codepop__apply {
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Very wide (>=1600px) */
@media (min-width: 1600px) {
  .bookbar-wrap { width: min(1280px, 90vw); }
}

.footer {
  background: var(--ink);
  color: var(--linen);
  padding: clamp(60px, 8vw, 100px) 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 3fr);
  gap: clamp(28px, 4vw, 64px);
  margin-bottom: clamp(36px, 5vw, 60px);
  align-items: start;
}
.footer__brand { min-width: 0; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
  min-width: 0;
}
.footer__cols > div { min-width: 0; }
.footer__wordmark {
  display: block;
  width: 180px;
  height: auto;
  margin-bottom: 18px;
}
.footer__brand-mark { display: inline-block; margin-bottom: 22px; }
.footer__address {
  font-style: normal;
  color: rgba(247,243,231,0.7);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.footer__socials {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
}
.footer__socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(247,243,231,0.22);
  border-radius: 999px;
  color: rgba(247,243,231,0.75);
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.footer__socials a:hover {
  color: var(--ink);
  background: var(--sand);
  border-color: var(--sand);
  transform: translateY(-1px);
}

.contact__meta a {
  color: var(--ink);
  border-bottom: 1px solid rgba(182,160,127,0.4);
  padding-bottom: 1px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.contact__meta a:hover {
  color: var(--sand-deep);
  border-color: var(--sand-deep);
}
.contact__map { white-space: nowrap; }
.contact__map-pin {
  display: inline-block;
  font-size: 0.8em;
  margin-left: 2px;
  transition: transform .25s var(--ease);
}
.contact__map:hover .contact__map-pin { transform: translate(2px, -2px); }
.footer__cols h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 22px;
  color: var(--sand);
}
.footer__cols a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  color: rgba(247,243,231,0.72);
  transition: color .25s var(--ease), transform .25s var(--ease);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer__cols a:hover { color: var(--linen); }

.footer__copy { color: rgba(247,243,231,0.55); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--ink);
  color: var(--linen);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  /* Failsafe: auto-reveal after ~6s if JS never runs. JS overrides via
     .is-hidden (animation:none) for the normal fast fade. */
  animation: loaderFailsafe 6s ease-out forwards;
}
.loader.is-hidden {
  animation: none;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
@keyframes loaderFailsafe {
  0%, 92% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}
.loader__wordmark {
  display: block;
  width: clamp(220px, 50vw, 420px);
  height: auto;
  animation: loaderFade 1.4s var(--ease) both;
}
.loader__tagline {
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
  animation: loaderFade 1.4s .2s var(--ease) both;
}
.loader__bar {
  width: 140px;
  height: 1px;
  background: rgba(247,243,231,0.18);
  overflow: hidden;
  margin-top: 14px;
}
.loader__bar span {
  display: block;
  width: 30%;
  height: 100%;
  background: var(--sand);
  animation: loaderSlide 1.4s ease-in-out infinite;
}
@keyframes loaderFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes loaderSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(340%); }
}

.marquee {
  background: var(--sand);
  color: var(--linen);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee__track {
  display: flex;
  gap: 48px;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__dot {
  font-size: 0.6em;
  color: var(--linen);
  opacity: 0.7;
}
.marquee__icon {
  height: 1.1em;
  width: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1) opacity(0.85);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.cabin__controls, .lounge__controls { position: relative; z-index: 91; }

/* Sticky mobile CTA: hidden by default; script.js toggles .is-visible past
   the hero. Sits above the pinned booking bar (see .has-bookbar offset). */
.sticky-cta {
  position: fixed;
  z-index: 92;
  right: clamp(14px, 4vw, 24px);
  bottom: calc(20px + env(safe-area-inset-bottom));
  transform: translateY(120%);
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--linen);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.45);
  transition: transform .45s var(--ease), opacity .35s var(--ease);
  min-height: 46px;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--ink);
  font-size: 13px;
  transition: transform .3s var(--ease);
}
.sticky-cta:active .sticky-cta__arrow { transform: translateX(3px); }
/* Sticky pill hidden on all viewports. Re-enable via:
     @media (max-width: 768px) { .sticky-cta { display: inline-flex; } } */

.wa-float {
  position: fixed;
  z-index: 95;
  left: clamp(14px, 4vw, 24px);
  bottom: calc(20px + env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px;
  min-height: 56px;
  max-width: 56px;
  max-height: 56px;
  padding: 0;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 14px 28px -10px rgba(37, 211, 102, 0.55), 0 2px 6px rgba(0,0,0,0.18);
  overflow: hidden;
  flex-shrink: 0;
  box-sizing: border-box;
  /* Hidden until JS adds .is-visible past the hero */
  opacity: 0;
  transform: translateY(24px) scale(0.85);
  pointer-events: none;
  transition: opacity .45s var(--ease), transform .45s var(--ease), box-shadow .3s var(--ease);
}
.wa-float.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-float__icon {
  width: 28px !important;
  height: 28px !important;
  flex-shrink: 0;
  display: block;
  pointer-events: none;
}
.wa-float.is-visible:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 22px 40px -12px rgba(37, 211, 102, 0.65), 0 4px 10px rgba(0,0,0,0.2);
}
.wa-float::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.6);  opacity: 0; }
}
@media (max-width: 480px) {
  .wa-float {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px;
    min-height: 52px;
    max-width: 52px;
    max-height: 52px;
  }
  .wa-float__icon { width: 24px !important; height: 24px !important; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::after { animation: none; }
}

@media (hover: none) {
  .stay:hover, .cabana:hover, .cabin:hover, .amen:hover,
  .element:hover, .sym:hover, .gallery__tile:hover, .nav__cta:hover,
  .btn--primary:hover, .btn--ghost:hover, .card:hover, .link:hover,
  .rituals__line li:hover::after {
    transform: none;
    background: initial;
    box-shadow: none;
  }
}

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

/* Tablet landscape (<=1024px) */
@media (max-width: 1024px) {
  .cabin__showcase { grid-template-columns: 1fr; gap: 32px; }
  .cabin__details { grid-column: auto; grid-row: auto; }
  /* Stacked: drop forced height matching, visual takes natural shape */
  .cabin__visual { min-height: 0; }
  .slider { position: relative; inset: auto; aspect-ratio: 3/2; }
  .cabin__controls { width: 100%; justify-content: stretch; }
  .cabin__pill { flex: 1; padding: 12px 14px; min-height: 44px; }
  .amen { flex-basis: calc(33.333% - 12px); }
  .footer__inner { gap: 40px; }
}

/* Tablet portrait (<=768px) */
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .nav.is-open {
    background: var(--linen);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding-top: calc(28px + env(safe-area-inset-top));
  }
  .nav.is-open .nav__brand {
    color: var(--ink);
    padding-left: clamp(20px, 4vw, 40px);
  }
  .nav.is-open .nav__toggle {
    position: absolute;
    top: calc(28px + env(safe-area-inset-top));
    right: clamp(20px, 4vw, 40px);
  }
  .nav.is-open .nav__toggle span { background: var(--ink); }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 30px;
    flex: 1;
    width: 100%;
  }
  .nav.is-open .nav__links a {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.8rem;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
  }
  .nav.is-open .nav__links a::after { display: none; }

  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
  .elements__grid { grid-template-columns: 1fr; }
  .element__img { aspect-ratio: 16/10; }
  .lounge__visual img { aspect-ratio: 16/10; }
  .cabin__visual img { aspect-ratio: 4/3; }
  .stat { padding: 8px 28px; }
  .rituals__line { grid-template-columns: 1fr; gap: 30px; padding-top: 0; }
  .rituals__line::before { display: none; }
  .rituals__line li { padding-top: 0; text-align: left; padding-left: 30px; border-left: 1px solid var(--sand); }
  .rituals__line li::after { top: 8px; left: -7px; box-shadow: 0 0 0 4px var(--linen); }
  .amenities__grid { gap: 14px; }
  .amen { flex-basis: calc(50% - 7px); padding: 22px 18px; }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .g1 { grid-column: span 2; grid-row: span 1; }
  .g6 { grid-column: span 2; }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .footer__newsletter { grid-column: 1 / -1; }
  .footer__base { flex-direction: column; gap: 6px; }
  .footer__socials { flex-wrap: wrap; }
  .form { padding: 28px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .contact__meta li { flex-direction: column; gap: 4px; }
  .contact__meta span { text-align: left; }

  .manifesto { padding: 80px 0; }
}
@media (max-width: 560px) {
  .footer__cols { grid-template-columns: 1fr; }
  .footer__newsletter { grid-column: auto; }
}

/* Very small phones (<400px) */
@media (max-width: 400px) {
  .footer { padding-top: clamp(48px, 12vw, 72px); }
  .footer__inner { gap: 28px; margin-bottom: 30px; }
  .footer__wordmark { width: 150px; }
  .footer__brand-mark { margin-bottom: 16px; }
  .footer__address { font-size: 13.5px; }
  .footer__cols h4 { margin-bottom: 16px; }
  .footer__cols a { font-size: 13.5px; padding: 5px 0; }
  .footer__socials a { width: 36px; height: 36px; }
}

/* Small phones (<=480px) */
@media (max-width: 480px) {
  .hero__wordmark { font-size: clamp(4rem, 18vw, 7rem); }
  .hero__tagline { font-size: 10px; letter-spacing: 0.32em; padding: 6px 14px; }
  .hero__actions { width: 100%; flex-direction: column; gap: 10px; }
  .hero__actions .btn { width: 100%; min-height: 52px; padding: 16px 20px; }
  .btn { min-height: 48px; }
  .nav__wordmark { font-size: 32px; }
  .nav__tagline { font-size: 8px; }
  .h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .stats__grid { flex-direction: column; gap: 0; }
  .stat { padding: 18px 0; border-left: 0; }
  .stat + .stat { border-top: 1px solid rgba(247,243,231,0.12); }
  .amen { flex-basis: 100%; }
  .gallery__grid { grid-auto-rows: 200px; }
  .form { padding: 22px; border-radius: 16px; }
  .cabin__details { padding: 28px 22px; }
  .cabin__pill { font-size: 10px; letter-spacing: 0.16em; padding: 12px 8px; }
  .marquee__track { font-size: 1.4rem; gap: 32px; }
}

/* Tiny phones (<=360px) */
@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .nav { padding: 14px 16px; }
  .h2 { font-size: 1.6rem; }
  .cabin__pill { padding: 10px 4px; font-size: 9px; }
  .form { padding: 16px 12px; }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 100px 24px 80px; }
  .hero__wordmark { font-size: clamp(3rem, 10vw, 6rem); margin-bottom: 6px; }
  .hero__sub { margin-bottom: 22px; }
  .hero__scroll { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .hero__img { animation: none; transform: scale(1); }
  .loader__bar span { animation: none; }
  .hero__scroll-line::after { animation: none; }
  .hero__scroll { display: none; }
  .slider__track { transition: none; }
}

/* ---------- Contact page + form ---------- */
.h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 16px;
}
.h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 18px;
}
.contact-section { padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 11vw, 130px); }

.contact-intro {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.contact-intro .eyebrow { margin-bottom: 14px; }
.contact-intro .h2 { margin-bottom: 16px; }
.contact-intro .lede { color: var(--mute); margin: 0 auto; max-width: 620px; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.contact-grid > * { min-width: 0; }

.contact-info__card {
  background: var(--white);
  border-radius: 18px;
  padding: clamp(28px, 3vw, 40px);
  box-shadow: 0 30px 60px -30px rgba(60, 45, 20, 0.18), 0 2px 6px -2px rgba(60, 45, 20, 0.06);
}
.contact-info__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.contact-info__sub {
  color: var(--mute);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 22px;
}

.contact-info__list { list-style: none; padding: 0; margin: 0; }
.contact-info__list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(143,122,93,0.14);
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-info__list li:last-child { border-bottom: 0; }
.contact-info__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(143,122,93,0.28);
  border-radius: 999px;
  color: var(--sand-deep);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.contact-info__list li:hover .contact-info__icon {
  background: var(--ink);
  color: var(--linen);
  border-color: var(--ink);
}
.contact-info__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.contact-info__label {
  color: var(--sand-deep);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.contact-info__value { font-size: 15px; line-height: 1.55; color: var(--mute); }
.contact-info__list a {
  display: inline-block;
  color: var(--ink);
  font-size: 15px;
  text-decoration: none;
  border-bottom: 0;
  transition: color .2s var(--ease);
}
.contact-info__list a:hover { color: var(--sand-deep); }


.contact-form-card {
  background: var(--white);
  border-radius: 18px;
  padding: clamp(30px, 3.5vw, 46px);
  box-shadow: 0 30px 60px -30px rgba(60, 45, 20, 0.18), 0 2px 6px -2px rgba(60, 45, 20, 0.06);
}
.contact-form-card__head { margin-bottom: 22px; padding: 0; border: 0; }
.contact-form-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.contact-form-card__sub {
  margin: 0;
  color: var(--mute);
  font-size: 14px;
  line-height: 1.55;
}
.contact-form-card__submit { margin-top: 12px; padding: 16px 40px; }

/* Multi-line address in "Find us" — upright serif */
.contact-map__address {
  font-style: normal;                    /* <address> defaults to italic */
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

/* Two-column form row */
.form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}
.form__row .field { margin-bottom: 20px; min-width: 0; }
.form .field { min-width: 0; }

.contact-map-section {
  padding: 0 0 clamp(80px, 11vw, 130px);
}
.contact-map__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(24px, 3.5vw, 40px);
}
.contact-map__head .eyebrow { margin-bottom: 14px; }
.contact-map__head .h2 { margin-bottom: 14px; }
.contact-map__head .lede { color: var(--mute); margin: 0 auto; max-width: 620px; }

.contact-map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(143,122,93,0.18);
  box-shadow: 0 22px 60px -30px rgba(0,0,0,0.28);
  background: #eae3d3;                          /* fallback tone while map tiles load */
}
.contact-map__frame {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(360px, 42vw, 500px);            /* scales cleanly; never oversized */
  border: 0;
}

/* Form fields */
.form .field { margin-bottom: 20px; }
.form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand-deep);
  margin-bottom: 8px;
  font-weight: 500;
}
.form .opt { text-transform: none; letter-spacing: 0; color: var(--mute); font-weight: 400; }
.form .req { color: #c54a3e; margin-left: 3px; font-weight: 500; }
.form__note {
  font-size: 12.5px;
  color: var(--mute);
  margin: 0 0 22px;
  letter-spacing: 0;
}
.form__note .req { margin-right: 3px; margin-left: 0; }
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input:not([type]),
.form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(143,122,93,0.35);
  border-radius: 10px;
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;              /* >=16px avoids iOS input zoom */
  font-weight: 300;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form input::placeholder, .form textarea::placeholder { color: #a89f90; }
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--sand);
  box-shadow: 0 0 0 3px rgba(182,160,127,0.18);
}
.form textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.field--err input, .field--err textarea { border-color: #c54a3e; }
.field small {
  display: block;
  color: #c54a3e;
  font-size: 12.5px;
  margin-top: 6px;
}

/* Consent checkboxes */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.consent input[type="checkbox"] {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--sand-deep);
  cursor: pointer;
}
.consent label {
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--mute);
}
.consent a { color: var(--ink); border-bottom: 1px solid rgba(26,26,26,0.3); }
.consent a:hover { border-color: var(--sand-deep); }
.consent--err label { color: #c54a3e; }
.consent--err input[type="checkbox"] { outline: 2px solid #c54a3e; outline-offset: 2px; border-radius: 3px; }
.consent__err {
  display: block;
  color: #c54a3e;
  font-size: 12.5px;
  margin: -8px 0 14px 32px;
}

/* Alerts */
.alert { padding: 20px 22px; border-radius: 12px; margin-bottom: 22px; }
.alert--ok {
  background: rgba(143,163,165,0.16);
  border: 1px solid rgba(143,163,165,0.4);
  color: var(--ink);
}
.alert--ok h3 { margin-bottom: 6px; }
.alert--ok p { color: var(--mute); }
.alert--err {
  background: rgba(197,74,62,0.10);
  border: 1px solid rgba(197,74,62,0.28);
  color: #a2372c;
}

/* ============================================================
   Legal pages (Privacy Policy / Terms & Conditions)
   ============================================================ */
.legal-hero { padding: clamp(120px, 16vw, 190px) 0 clamp(16px, 3vw, 28px); }
.legal { padding: clamp(20px, 3vw, 32px) 0 clamp(80px, 11vw, 130px); }
.legal__inner { max-width: 800px; }
.legal__updated {
  color: var(--sand-deep);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin: 0;
}
.legal p { color: var(--mute); margin-bottom: 14px; }
.legal h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--ink);
  margin: 44px 0 14px;
}
.legal h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin: 22px 0 6px;
  letter-spacing: 0.01em;
}
.legal ul { margin: 0 0 16px 1.15em; }
.legal li { color: var(--mute); margin-bottom: 8px; }
.legal a { color: var(--ink); border-bottom: 1px solid rgba(26,26,26,0.28); transition: border-color .2s var(--ease); }
.legal a:hover { border-color: var(--sand-deep); }
.legal strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   Footer legal line (© + Privacy / Terms links)
   ============================================================ */
.footer__legal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(247,243,231,0.12);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(247,243,231,0.55);
}
.footer__legal-mark {
  justify-self: center;
  display: flex;
  align-items: center;
  opacity: 0.9;
  transition: opacity .25s var(--ease);
}
.footer__legal-mark:hover { opacity: 1; }
.footer__legal-mark img {
  display: block;
  height: 20px;                    /* subtle parent-brand mark */
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.footer__legal-links {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.footer__legal-links a { color: rgba(247,243,231,0.7); transition: color .2s var(--ease); }
.footer__legal-links a:hover { color: var(--sand); }

/* --- Contact section: mobile stacking ------------------------------------ */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
/* Contact section — mobile tightening */
@media (max-width: 640px) {
  .contact-section { padding-top: clamp(40px, 8vw, 60px); }
  .contact-intro { margin-bottom: 30px; }
  .contact-intro .h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); margin-bottom: 12px; }
  .contact-info__card,
  .contact-form-card { padding: 22px 20px; border-radius: 14px; }
  .contact-info__title,
  .contact-form-card__title { font-size: 1.25rem; margin-bottom: 14px; }
  .contact-info__list li { grid-template-columns: 84px 1fr; gap: 10px; font-size: 14.5px; padding: 12px 0; }
  .contact-info__note { margin-top: 16px; padding-top: 14px; font-size: 13px; }
  .form__note { margin-bottom: 18px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }   /* stack fields */
  .form input[type="text"],
  .form input[type="email"],
  .form input[type="tel"],
  .form textarea { padding: 12px 14px; }
  .form textarea { min-height: 120px; }
  .form .field { margin-bottom: 16px; }
  .consent { align-items: flex-start; gap: 10px; margin-bottom: 12px; }
  .consent label { font-size: 13.5px; }
  .consent__err { margin-left: 30px; }
  .alert { padding: 16px 18px; }
  .contact-form-card__submit { width: 100%; text-align: center; padding: 14px 24px; }

  /* Map section on mobile */
  .contact-map-section { padding-bottom: clamp(60px, 10vw, 100px); }
  .contact-map__head { margin-bottom: 20px; }
  .contact-map__head .h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .contact-map { border-radius: 14px; }
  .contact-map__frame { height: clamp(320px, 80vw, 460px); }

  /* Footer legal line stacks */
  .footer__legal {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 16px;
  }
  .footer__legal-links { justify-self: center; justify-content: center; gap: 16px; }
  .footer__legal-mark img { height: 18px; }
}

/* Very small phones — iPhone SE and below */
@media (max-width: 380px) {
  .contact-info__card,
  .contact-form-card { padding: 20px 16px; }
  .contact-info__list li { grid-template-columns: 74px 1fr; font-size: 14px; }
  .consent input[type="checkbox"] { width: 18px; height: 18px; }
  .consent label { font-size: 13px; }
}

/* Bottom breathing room so the sticky CTA + WhatsApp float + cookie banner
   never obscure the last form content on mobile. */
@media (max-width: 760px) {
  .contact-map-section { padding-bottom: calc(100px + env(safe-area-inset-bottom)); }
  .legal { padding-bottom: calc(100px + env(safe-area-inset-bottom)); }
}


/* ============================================================
   Inner pages (light hero, no dark image behind the nav):
   make the nav solid from the top so the white-over-hero nav
   isn't invisible on the linen background. Toggled by a body class.
   ============================================================ */
body.nav-solid .nav {
  background: rgba(247, 243, 231, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
body.nav-solid .nav__brand { color: var(--ink); }
body.nav-solid .nav__logo--white { opacity: 0; }
body.nav-solid .nav__logo--dark  { opacity: 1; }
body.nav-solid .nav__links a { color: var(--ink); }
body.nav-solid .nav__cta { border-color: var(--ink); color: var(--ink); }
body.nav-solid .nav__toggle span { background: var(--ink); }

/* ============================================================
   Error pages (404 / 500)
   ============================================================ */
.error-page {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(120px, 16vw, 190px);
  padding-bottom: clamp(60px, 8vw, 100px);
}
.error-page .lede { max-width: 560px; color: var(--mute); margin-bottom: 28px; }

/* ============================================================
   Cookie consent — banner + preferences modal
   ============================================================ */

/* Shared button */
.cc-btn {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
}
.cc-btn--accept { background: var(--sand); color: var(--ink); }
.cc-btn--accept:hover { background: var(--linen); color: var(--ink); transform: translateY(-1px); }
.cc-btn--ghost { background: transparent; color: var(--linen); border-color: rgba(247,243,231,0.35); }
.cc-btn--ghost:hover { border-color: var(--linen); background: rgba(247,243,231,0.06); }

/* ---------- Layer 1: banner ---------- */
.cc-banner {
  position: fixed;
  left: 50%;
  bottom: clamp(12px, 3vw, 28px);
  transform: translate(-50%, 160%);
  width: min(920px, calc(100% - 24px));
  z-index: 300;
  background: var(--ink);
  color: var(--linen);
  border-radius: 18px;
  box-shadow: 0 26px 60px -24px rgba(0,0,0,0.55);
  padding: clamp(18px, 2vw, 26px) clamp(20px, 2.4vw, 30px);
  opacity: 0;
  pointer-events: none;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.cc-banner[hidden] { display: none; }
.cc-banner.is-visible { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.cc-banner__inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cc-banner__body { flex: 1 1 340px; min-width: 0; }
.cc-banner__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--linen);
  margin: 0 0 6px;
  letter-spacing: 0;
}
.cc-banner__text {
  margin: 0;
  color: rgba(247,243,231,0.82);
  font-size: 13.5px;
  line-height: 1.6;
}
.cc-banner__text a { color: var(--sand); border-bottom: 1px solid rgba(182,160,127,0.5); }
.cc-banner__text a:hover { color: var(--linen); border-color: var(--linen); }
.cc-banner__actions { display: flex; gap: 10px; flex: 0 0 auto; flex-wrap: wrap; justify-content: flex-end; }

@media (max-width: 640px) {
  .cc-banner { padding: 16px 18px; }
  .cc-banner__inner { gap: 14px; }
  .cc-banner__title { font-size: 1.1rem; }
  .cc-banner__text { font-size: 13px; }
  .cc-banner__actions { justify-content: stretch; }
  .cc-banner__actions .cc-btn { flex: 1 1 auto; padding: 13px 18px; letter-spacing: 0.14em; }
}
@media (max-width: 360px) {
  .cc-banner__actions .cc-btn { font-size: 10.5px; padding: 12px 14px; }
}

/* Legal tables (used in Cookie Policy) */
.legal-table__wrap { overflow-x: auto; margin: 8px 0 22px; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}
.legal-table th, .legal-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(143,122,93,0.22);
  vertical-align: top;
  color: var(--mute);
  line-height: 1.55;
}
.legal-table th {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand-deep);
  font-weight: 500;
  background: rgba(143,122,93,0.06);
}
.legal-table td code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--ink);
}

/* ============================================================
   intl-tel-input — phone field with country flag + dial code
   ============================================================ */
.iti { display: block; width: 100%; }              /* fill the field, don't shrink-wrap */
.iti__dropdown-content { font-family: var(--sans); }
.iti__search-input { font: inherit; }

/* Ensure the tel input's left padding is generous enough for the flag + dial
   code even if the library's inline style doesn't apply. iti also sets
   padding-inline-start via JS; whichever wins, the value is readable. */
.field--phone input[type="tel"],
.iti input.iti__tel-input,
.iti input[type="tel"] {
  padding-left: 96px;   /* flag (~52px) + dial code (~40px) with a small gap */
}

/* Round the button's inner left edge so it flows with our 10px radius input */
.field--phone .iti .iti__selected-country,
.field--phone .iti__country-container { border-top-left-radius: 10px; border-bottom-left-radius: 10px; }

/* Match the input's border-box vertical rhythm so the flag button aligns nicely */
.field--phone .iti__selected-country { height: 100%; }

@media (max-width: 480px) {
  /* On small phones, tighten the reserved left space so the input still has room
     for a real number. iti's separate dial code button gets a bit narrower. */
  .field--phone input[type="tel"],
  .iti input.iti__tel-input,
  .iti input[type="tel"] { padding-left: 88px; }
}

/* Fullscreen country picker — sit above nav (z:100), sticky CTA, and cookie
   banner (z:300). Make it feel like a real modal with a proper title bar and
   dimmed backdrop. */
.iti--fullscreen-popup.iti--container { z-index: 500; }
.iti--fullscreen-popup .iti__dropdown-content {
  background: var(--linen);
  border-radius: 14px;
  padding: 14px;
  gap: 10px;
  box-shadow: 0 26px 60px -20px rgba(0,0,0,0.4);
}
.iti--fullscreen-popup .iti__search-input {
  border: 1px solid rgba(143,122,93,0.35);
  border-radius: 10px;
  padding: 12px 14px 12px 40px;
  font: inherit;
  font-size: 16px;
  background: var(--white)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238f7a5d' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='m21 21-4.3-4.3'/></svg>")
    no-repeat 12px center / 18px 18px;
}
.iti--fullscreen-popup .iti__country-list {
  background: var(--white);
  border-radius: 10px;
  padding: 4px 0;
}
.iti--fullscreen-popup .iti__country {
  padding: 12px 14px;
  min-height: 48px;                              /* comfortable touch target */
  display: flex;
  align-items: center;
  gap: 12px;
}
.iti--fullscreen-popup .iti__country:hover,
.iti--fullscreen-popup .iti__country.iti__active { background: rgba(182,160,127,0.16); }

/* Injected header inside the fullscreen picker: title + close button */
.iti-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 4px 8px;
  border-bottom: 1px solid rgba(143,122,93,0.2);
  margin-bottom: 8px;
}
.iti-modal-head__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.iti-modal-head__close {
  background: rgba(143,122,93,0.14);
  color: var(--ink);
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s var(--ease);
}
.iti-modal-head__close:hover,
.iti-modal-head__close:active { background: rgba(143,122,93,0.28); }

/* Lock body scroll while the country picker is open so the page behind can't
   scroll away underneath the fingertip. iti adds the `iti-mobile` class to
   <html> when the fullscreen popup is showing. */
html.iti-mobile { overflow: hidden; }

/* ============================================================
   About Us — editorial paragraph spacing (all paragraphs in the
   same Inter sans-serif, generous line-height and spacing).
   ============================================================ */
.about-copy p {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);   /* ~17–20px — larger, editorial */
  line-height: 1.7;
  color: var(--ink);                            /* stronger contrast for larger body copy */
}
.about-copy p + p { margin-top: 24px; }

/* ============================================================
   Newsletter — inline footer column
   ============================================================ */
.footer__newsletter { min-width: 0; }
.footer__newsletter .newsletter__form { margin: 0; min-width: 0; }
.footer__newsletter h4 { margin-bottom: 12px; }
.footer__newsletter-lede {
  margin: 0 0 18px;
  color: rgba(247,243,231,0.6);
  font-size: 13px;
  line-height: 1.55;
}
.newsletter__row {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(182,160,127,0.5);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.newsletter__row:focus-within { border-color: var(--sand); }
.newsletter__row input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  background: transparent;
  border: 0;
  padding: 12px 14px;
  color: var(--linen);
  font-family: var(--sans);
  font-size: 16px;                   /* >= 16px so iOS doesn't zoom */
  font-weight: 300;
  outline: none;
}
.newsletter__row input[type="email"]::placeholder { color: rgba(247,243,231,0.55); }
.newsletter__submit {
  flex: 0 0 auto;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(182,160,127,0.4);
  color: var(--sand);
  padding: 0 14px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.newsletter__submit:hover,
.newsletter__submit:focus-visible { background: var(--sand); color: var(--ink); outline: none; }
.newsletter__submit svg { display: block; }


.newsletter__msg {
  margin: 10px 0 0;
  font-size: 12.5px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--linen);
}
.newsletter__msg.is-ok  { background: rgba(143,163,165,0.20); border: 1px solid rgba(143,163,165,0.45); }
.newsletter__msg.is-err { background: rgba(197,74,62,0.14);   border: 1px solid rgba(197,74,62,0.40);  color: #f5b8b0; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
