@font-face {
  font-family: "Syne";
  src: url("../fonts/syne-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --ink: #062b28;
  --ink-deep: #021d1b;
  --paper: #f8f7f1;
  --white: #ffffff;
  --pool: #00a9b5;
  --pool-bright: #20d4d4;
  --coral: #e9553d;
  --sun: #f4b93e;
  --leaf: #3f6f3c;
  --muted: #687571;
  --line: rgba(6, 43, 40, 0.17);
  --line-light: rgba(255, 255, 255, 0.23);
  --shadow: 0 28px 70px rgba(2, 29, 27, 0.18);
  --shell: 1240px;
  --display: "Syne", Arial, sans-serif;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Syne", Arial, sans-serif;
  line-height: 0.98;
}

h1 em,
h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.section-shell {
  width: min(var(--shell), calc(100% - 64px));
  margin-inline: auto;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--coral);
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 22px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: min(1320px, calc(100% - 48px));
  min-height: 68px;
  align-items: center;
  gap: 30px;
  padding: 8px 10px 8px 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 4px;
  background: rgba(2, 29, 27, 0.62);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
  transition: top 220ms ease, background 220ms ease, width 220ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  top: 8px;
  width: min(1320px, calc(100% - 24px));
  background: rgba(2, 29, 27, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: white;
}

.brand span {
  display: grid;
  line-height: 1.08;
}

.brand strong {
  font-family: "Syne", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 750;
}

.brand small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--pool-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-actions select {
  width: 64px;
  height: 44px;
  padding: 0 8px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 3px;
  background: transparent;
  font-size: 0.76rem;
  font-weight: 800;
}

.nav-actions option {
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  font-family: "Syne", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--ink-deep);
  border-color: var(--pool-bright);
  background: var(--pool-bright);
}

.button.primary:hover {
  border-color: white;
  background: white;
}

.button.line {
  color: white;
  border-color: rgba(255, 255, 255, 0.54);
}

.button.line:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.12);
}

.button.ghost {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.button.ghost:hover {
  border-color: var(--ink);
  background: white;
}

.nav-reserve {
  min-height: 44px;
  color: var(--ink-deep);
  background: var(--sun);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--sun);
}

.section-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Syne", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 680px;
  height: 94vh;
  height: min(820px, calc(100svh - 24px));
  max-height: 820px;
  overflow: hidden;
  color: white;
  background: var(--ink-deep);
}

.hero-main-image,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-main-image {
  object-fit: cover;
  object-position: center 48%;
  animation: hero-in 1.4s ease both;
}

@keyframes hero-in {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(2, 29, 27, 0.92) 0%, rgba(2, 29, 27, 0.58) 45%, rgba(2, 29, 27, 0.12) 72%), linear-gradient(0deg, rgba(2, 29, 27, 0.84) 0%, transparent 42%);
}

.hero-grid {
  opacity: 0.16;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: max(32px, calc((100% - var(--shell)) / 2));
  width: min(700px, 52vw);
  transform: translateY(-50%);
}

.hero-index {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 34px;
  padding-bottom: 10px;
  color: rgba(255,255,255,.6);
  border-bottom: 1px solid rgba(255,255,255,.25);
  font-size: 0.64rem;
  font-weight: 700;
}

.hero-content h1 {
  margin-bottom: 24px;
  font-size: 5.7rem;
  font-weight: 750;
}

.hero-content h1 span,
.hero-content h1 em {
  display: block;
}

.hero-content h1 em {
  color: var(--pool-bright);
  font-size: 5.1rem;
}

.hero-lead {
  width: min(620px, 100%);
  margin-bottom: 24px;
  color: rgba(255,255,255,.82);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-postcards {
  position: absolute;
  z-index: 4;
  right: max(32px, calc((100% - var(--shell)) / 2));
  bottom: 116px;
  display: grid;
  grid-template-columns: repeat(3, 126px);
  gap: 8px;
}

.hero-postcards figure {
  position: relative;
  height: 164px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.42);
  background: var(--ink);
}

.hero-postcards figure:nth-child(2) {
  transform: translateY(-26px);
}

.hero-postcards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.hero-postcards figure:hover img {
  transform: scale(1.05);
}

.hero-postcards figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 8px;
  color: white;
  background: rgba(2,29,27,.82);
  font-size: .64rem;
  font-weight: 750;
}

.hero-facts {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 86px;
  padding-inline: max(32px, calc((100% - var(--shell)) / 2));
  border-top: 1px solid rgba(255,255,255,.28);
  background: rgba(2,29,27,.72);
  backdrop-filter: blur(12px);
}

.hero-facts span {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px;
  border-left: 1px solid rgba(255,255,255,.2);
}

.hero-facts span:last-child {
  border-right: 1px solid rgba(255,255,255,.2);
}

.hero-facts strong {
  color: var(--sun);
  font-family: "Syne", Arial, sans-serif;
  font-size: 1.45rem;
}

.hero-facts small {
  color: rgba(255,255,255,.7);
  font-size: .69rem;
  font-weight: 650;
}

.booking-cockpit {
  position: relative;
  z-index: 10;
  width: min(1320px, calc(100% - 64px));
  margin: -24px auto 0;
  padding: 34px;
  color: white;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 4px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.booking-heading {
  display: grid;
  grid-template-columns: auto minmax(300px, .8fr) 1fr;
  align-items: start;
  gap: 22px;
  margin-bottom: 28px;
}

.booking-heading .section-number {
  color: var(--pool-bright);
}

.booking-heading h2 {
  margin: 0;
  font-size: 2.2rem;
}

.booking-heading .eyebrow {
  margin-bottom: 8px;
}

.booking-heading > p {
  max-width: 480px;
  margin: 6px 0 0 auto;
  color: rgba(255,255,255,.64);
  font-size: .86rem;
}

.availability-form {
  display: grid;
  grid-template-columns: 1fr 1fr .65fr .9fr;
  gap: 8px;
}

.availability-form label,
.booking-request label {
  display: grid;
  gap: 7px;
  color: rgba(255,255,255,.62);
  font-size: .66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.availability-form label {
  min-height: 78px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 3px;
  background: rgba(255,255,255,.06);
}

.availability-form input {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: white;
  border: 0;
  outline: none;
  background: transparent;
  font-size: .98rem;
  font-weight: 700;
  color-scheme: dark;
}

.availability-form .button {
  min-height: 78px;
}

.field-message {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  color: #ffc4b8;
  font-size: .78rem;
}

.alert-line {
  margin-top: 12px;
  padding: 12px 14px;
  color: white;
  border-left: 3px solid var(--sun);
  background: rgba(255,255,255,.08);
  font-size: .8rem;
}

.availability-results:not(:empty) {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.result-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  grid-template-rows: auto auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  background: rgba(255,255,255,.06);
}

.result-media {
  position: relative;
  grid-row: 1 / 3;
  min-height: 170px;
}

.result-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-media .status {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 5px 7px;
  color: var(--ink-deep);
  border-radius: 2px;
  background: var(--pool-bright);
  font-size: .58rem;
  font-weight: 850;
}

.result-card.is-unavailable .status {
  color: white;
  background: var(--coral);
}

.result-body {
  padding: 14px 14px 0;
}

.result-body h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.result-body p,
.result-note {
  margin-bottom: 3px;
  color: rgba(255,255,255,.62);
  font-size: .68rem;
}

.result-card .total {
  align-self: end;
  padding: 6px 14px 14px;
  color: var(--sun);
  font-family: "Syne", Arial, sans-serif;
}

.result-card > .button {
  grid-column: 1 / -1;
  margin: 0 10px 10px;
  min-height: 42px;
}

.brand-story {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1.05fr .8fr;
  grid-template-rows: auto auto;
  gap: 70px;
  padding-block: 150px;
}

.vertical-label {
  grid-row: 1 / 3;
  justify-self: center;
  color: var(--muted);
  font-family: "Syne", Arial, sans-serif;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.brand-story-copy h2,
.section-heading h2,
.experience-heading h2,
.location-content h2,
.final-cta h2 {
  margin-bottom: 30px;
  font-size: 4.7rem;
  font-weight: 700;
}

.brand-story-copy h2 em,
.section-heading h2 em,
.experience-heading h2 em,
.location-content h2 em,
.final-cta h2 em {
  color: var(--coral);
}

.story-lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.story-portrait {
  position: relative;
  align-self: end;
  height: 560px;
  margin: 0;
  clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 0 100%);
}

.story-portrait::before {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 64px;
  height: 64px;
  border-top: 2px solid var(--sun);
  border-right: 2px solid var(--sun);
  content: "";
}

.story-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-portrait figcaption,
.experience-section figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 16px;
  color: white;
  background: rgba(2,29,27,.82);
  font-size: .72rem;
}

.story-notes {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.story-notes article {
  min-height: 250px;
  padding: 30px 30px 20px 0;
  border-right: 1px solid var(--line);
}

.story-notes article + article {
  padding-left: 30px;
}

.story-notes span {
  color: var(--coral);
  font-family: "Syne", Arial, sans-serif;
  font-size: .7rem;
  font-weight: 800;
}

.story-notes h3 {
  margin: 58px 0 12px;
  font-size: 1.35rem;
}

.story-notes p {
  color: var(--muted);
  font-size: .88rem;
}

.rhythm-band {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  overflow: hidden;
  color: var(--ink-deep);
  background: var(--sun);
  font-family: "Syne", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
}

.rhythm-band span::before {
  margin-right: 34px;
  color: var(--coral);
  content: "+";
}

.rooms-section {
  padding-block: 150px;
}

.section-heading {
  display: grid;
  grid-template-columns: 150px 1fr .65fr;
  align-items: end;
  gap: 34px;
  margin-bottom: 70px;
}

.section-heading > div {
  align-self: start;
}

.section-heading .eyebrow {
  margin-top: 18px;
}

.section-heading h2 {
  margin: 0;
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: .9rem;
}

.room-list {
  display: grid;
  gap: 18px;
}

.room-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
}

.room-row:nth-child(even) .room-media {
  order: 2;
}

.room-media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.room-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.room-row:hover .room-media img {
  transform: scale(1.035);
}

.room-media > span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink-deep);
  border-radius: 50%;
  background: var(--sun);
  font-family: "Syne", Arial, sans-serif;
  font-size: .7rem;
  font-weight: 800;
}

.room-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}

.room-title-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.room-title-line h3 {
  max-width: 360px;
  margin: 0;
  font-size: 2.15rem;
}

.room-title-line p {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
  white-space: nowrap;
}

.room-title-line strong {
  display: block;
  color: var(--coral);
  font-family: "Syne", Arial, sans-serif;
  font-size: 1.3rem;
}

.room-content > p {
  margin: 24px 0;
  color: var(--muted);
}

.room-content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.room-content li {
  position: relative;
  padding-left: 16px;
  font-size: .78rem;
  font-weight: 650;
}

.room-content li::before {
  position: absolute;
  top: .55em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--pool);
  content: "";
  transform: rotate(45deg);
}

.room-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 34px;
}

.room-action span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}

.room-action a {
  position: relative;
  padding-right: 28px;
  color: var(--ink);
  font-family: "Syne", Arial, sans-serif;
  font-size: .76rem;
  font-weight: 800;
  text-decoration: none;
}

.room-action a::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 18px;
  height: 1px;
  background: var(--ink);
  content: "";
}

.whole-house .room-content {
  background: #eaf2eb;
}

.experience-section {
  overflow: hidden;
  color: white;
  background: var(--ink-deep);
}

.experience-canvas {
  display: grid;
  grid-template-columns: 1fr 1fr .72fr;
  grid-template-rows: auto auto;
  gap: 16px;
  padding-block: 140px;
}

.experience-heading {
  grid-column: 1 / 3;
  padding-right: 60px;
}

.experience-heading .section-number {
  margin-bottom: 42px;
  color: var(--pool-bright);
}

.experience-heading h2 {
  margin-bottom: 0;
  font-size: 5.3rem;
}

.experience-heading h2 em {
  color: var(--sun);
}

.experience-main,
.experience-small {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

.experience-main {
  grid-column: 1 / 3;
}

.experience-small {
  grid-column: 3;
  grid-row: 1;
  min-height: 430px;
  align-self: end;
  clip-path: polygon(0 14%, 14% 0, 100% 0, 100% 100%, 0 100%);
}

.experience-main img,
.experience-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity-ledger {
  grid-column: 3;
  padding: 32px;
  color: var(--ink);
  background: var(--sun);
}

.amenity-ledger > span {
  display: block;
  margin-bottom: 24px;
  color: var(--coral);
  font-size: .68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.amenity-ledger ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenity-ledger li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid rgba(6,43,40,.2);
  font-family: "Syne", Arial, sans-serif;
  font-size: .78rem;
  font-weight: 700;
}

.amenity-ledger li strong {
  color: var(--coral);
}

.amenity-ledger p {
  margin: 28px 0 0;
  font-size: .76rem;
}

.gallery-section {
  padding-block: 150px;
}

.gallery-heading h2 {
  color: var(--coral);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 10px;
}

.gallery-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: var(--ink);
  cursor: zoom-in;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, opacity 300ms ease;
}

.gallery-card:hover img {
  opacity: .82;
  transform: scale(1.03);
}

.gallery-card span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: white;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 50%;
  background: rgba(2,29,27,.56);
  font-size: .62rem;
  font-weight: 800;
}

.gallery-card-1 { grid-column: 1 / 8; grid-row: span 4; }
.gallery-card-2 { grid-column: 8 / 13; grid-row: span 3; }
.gallery-card-3 { grid-column: 8 / 11; grid-row: span 3; }
.gallery-card-4 { grid-column: 11 / 13; grid-row: span 3; }
.gallery-card-5 { grid-column: 1 / 5; grid-row: span 4; }
.gallery-card-6 { grid-column: 5 / 9; grid-row: span 4; }
.gallery-card-7 { grid-column: 9 / 13; grid-row: span 2; }
.gallery-card-8 { grid-column: 9 / 13; grid-row: span 2; }

.location-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: white;
}

.location-section > img,
.location-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.location-section > img {
  object-fit: cover;
}

.location-overlay {
  background: linear-gradient(90deg, rgba(2,29,27,.94), rgba(2,29,27,.64) 48%, rgba(2,29,27,.08));
}

.location-content {
  position: relative;
  z-index: 2;
  padding-top: 150px;
}

.location-content .section-number {
  margin-bottom: 50px;
  color: var(--pool-bright);
}

.location-content h2 {
  max-width: 820px;
  font-size: 5rem;
}

.location-content h2 em {
  color: var(--pool-bright);
}

.location-content > p {
  max-width: 550px;
  color: rgba(255,255,255,.75);
}

.policies-section {
  padding-block: 140px;
}

.section-heading.compact {
  grid-template-columns: 150px 1fr;
}

.section-heading.compact h2 {
  font-size: 4rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
}

.policy-grid article {
  min-height: 280px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.policy-grid article:first-child {
  border-left: 1px solid var(--line);
}

.policy-grid span {
  color: var(--coral);
  font-family: "Syne", Arial, sans-serif;
  font-size: .68rem;
  font-weight: 800;
}

.policy-grid h3 {
  margin: 72px 0 14px;
  font-size: 1.12rem;
  line-height: 1.1;
}

.policy-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
}

.final-cta {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

.final-cta > img,
.final-cta-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta > img {
  object-fit: cover;
}

.final-cta-overlay {
  background: rgba(2,29,27,.72);
}

.final-cta-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
}

.final-cta-copy > img {
  width: 86px;
  height: 86px;
  margin: 0 auto 22px;
  border-radius: 50%;
  object-fit: cover;
}

.final-cta h2 {
  margin-bottom: 24px;
  font-size: 5rem;
}

.final-cta h2 em {
  color: var(--sun);
}

.final-cta-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,.74);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr .7fr .8fr;
  gap: 42px;
  padding: 70px max(32px, calc((100% - var(--shell)) / 2)) 34px;
  color: white;
  background: var(--ink-deep);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  font-family: "Syne", Arial, sans-serif;
}

.footer-brand p,
.footer-contact span {
  margin: 4px 0 0;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
}

.footer-contact {
  display: grid;
  align-content: center;
  gap: 6px;
}

.footer-contact span {
  margin-bottom: 6px;
  color: var(--sun);
  font-weight: 800;
  text-transform: uppercase;
}

.footer-contact a {
  overflow-wrap: anywhere;
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--pool-bright);
}

.footer-note {
  grid-column: 1 / -1;
  margin: 32px 0 0;
  padding-top: 24px;
  color: rgba(255,255,255,.42);
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: .68rem;
}

.booking-dialog,
.image-dialog {
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 30px 90px rgba(0,0,0,.36);
}

.booking-dialog {
  width: min(700px, calc(100% - 28px));
  color: white;
  background: var(--ink);
}

.booking-dialog::backdrop,
.image-dialog::backdrop {
  background: rgba(2,20,19,.76);
  backdrop-filter: blur(6px);
}

.close-dialog,
.close-image {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  color: white;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(2,29,27,.72);
  font-size: 1rem;
  cursor: pointer;
}

.booking-request {
  display: grid;
  gap: 15px;
  padding: 46px;
}

.booking-request h2 {
  margin: 0;
  font-size: 2.6rem;
}

.booking-request > p:not(.eyebrow) {
  color: rgba(255,255,255,.64);
  font-size: .82rem;
}

.booking-request input,
.booking-request textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: white;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 3px;
  outline: none;
  background: rgba(255,255,255,.06);
  text-transform: none;
}

.booking-request textarea {
  min-height: 100px;
  resize: vertical;
}

.dialog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.image-dialog {
  width: min(1100px, calc(100% - 30px));
  background: var(--ink-deep);
}

.image-dialog img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
}

.floating-whatsapp {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  background: #1fbd68;
  box-shadow: 0 16px 34px rgba(0,0,0,.24);
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: scale(1.06);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

.thank-you-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: linear-gradient(rgba(2,29,27,.82), rgba(2,29,27,.82)), var(--thank-you-image) center / cover;
}

.thank-you {
  width: min(680px, 100%);
  padding: 52px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 4px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.thank-you > img {
  width: 82px;
  height: 82px;
  margin-bottom: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.thank-you h1 {
  margin-bottom: 18px;
  font-size: 3.2rem;
}

.thank-you > p:not(.eyebrow) {
  color: var(--muted);
}

.summary-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: white;
}

.summary-box span {
  font-size: .78rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

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

@media (max-width: 1180px) {
  .nav-links { gap: 16px; }
  .hero-content h1 { font-size: 5rem; }
  .hero-content h1 em { font-size: 4.5rem; }
  .hero-postcards { grid-template-columns: repeat(3, 102px); }
  .hero-postcards figure { height: 140px; }
  .brand-story-copy h2,
  .section-heading h2,
  .experience-heading h2,
  .location-content h2,
  .final-cta h2 { font-size: 4rem; }
  .room-content { padding: 38px; }
  .policy-grid { grid-template-columns: repeat(3, 1fr); }
  .policy-grid article:nth-child(4) { border-left: 1px solid var(--line); }
}

@media (max-width: 980px) {
  .section-shell { width: min(100% - 40px, 760px); }
  .site-header { grid-template-columns: 1fr auto auto; width: calc(100% - 28px); }
  .site-header.is-scrolled { width: calc(100% - 16px); }
  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 3px;
    background: transparent;
  }
  .menu-toggle span { display: block; width: 18px; height: 2px; background: white; transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav-links {
    position: fixed;
    top: 86px;
    right: 14px;
    left: 14px;
    display: none;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 3px;
    background: rgba(2,29,27,.98);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: grid; gap: 0; }
  .nav-links a { padding: 16px 4px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: .9rem; }
  .nav-reserve { display: none; }
  .hero { height: auto; min-height: 900px; max-height: none; }
  .hero-overlay { background: linear-gradient(0deg, rgba(2,29,27,.95), rgba(2,29,27,.34) 78%), linear-gradient(90deg, rgba(2,29,27,.5), transparent); }
  .hero-content { top: 200px; right: 24px; left: 24px; width: auto; transform: none; }
  .hero-content h1 { font-size: 4.5rem; }
  .hero-content h1 em { font-size: 4rem; }
  .hero-index { margin-bottom: 56px; }
  .hero-postcards { right: 24px; bottom: 126px; grid-template-columns: repeat(3, 110px); }
  .hero-facts { padding-inline: 20px; }
  .hero-facts span { display: grid; gap: 2px; padding: 16px 12px; }
  .booking-cockpit { width: calc(100% - 28px); padding: 26px; }
  .booking-heading { grid-template-columns: auto 1fr; }
  .booking-heading > p { grid-column: 2; margin: 0; }
  .availability-form { grid-template-columns: 1fr 1fr; }
  .result-grid { grid-template-columns: 1fr; }
  .result-card { grid-template-columns: 160px 1fr; }
  .brand-story { grid-template-columns: 42px 1fr; gap: 30px; padding-block: 110px; }
  .brand-story-copy { grid-column: 2; }
  .story-portrait { grid-column: 2; height: 520px; }
  .story-notes { grid-column: 2; grid-template-columns: 1fr; }
  .story-notes article { min-height: 0; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .story-notes article + article { padding-left: 0; }
  .story-notes h3 { margin-top: 26px; }
  .section-heading { grid-template-columns: 100px 1fr; }
  .section-heading > p { grid-column: 2; }
  .room-row { grid-template-columns: 1fr; }
  .room-row:nth-child(even) .room-media { order: 0; }
  .room-media { min-height: 440px; }
  .experience-canvas { grid-template-columns: 1fr 1fr; }
  .experience-heading { grid-column: 1 / -1; }
  .experience-small { grid-column: 2; grid-row: 2; min-height: 520px; }
  .experience-main { grid-column: 1; min-height: 520px; }
  .amenity-ledger { grid-column: 1 / -1; }
  .gallery-grid { grid-auto-rows: 90px; }
  .location-section { min-height: 700px; }
  .policy-grid { grid-template-columns: repeat(2, 1fr); }
  .policy-grid article:nth-child(3), .policy-grid article:nth-child(5) { border-left: 1px solid var(--line); }
  .policy-grid article:nth-child(4) { border-left: 0; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .section-shell { width: calc(100% - 32px); }
  .site-header { top: 10px; min-height: 62px; gap: 8px; padding: 6px 7px; }
  .site-header.is-scrolled { top: 6px; }
  .brand { min-width: 0; }
  .brand img { width: 44px; height: 44px; }
  .brand strong { font-size: .84rem; }
  .brand small { font-size: .58rem; }
  .nav-actions select { width: 56px; height: 42px; }
  .menu-toggle { width: 42px; height: 42px; }
  .hero { min-height: 850px; }
  .hero-main-image { object-position: 56% center; }
  .hero-content { top: 130px; right: 18px; left: 18px; }
  .hero-index { margin-bottom: 42px; }
  .hero-content h1 { margin-bottom: 20px; font-size: 3.55rem; }
  .hero-content h1 em { font-size: 3.2rem; }
  .hero-lead { font-size: .94rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .button { min-width: 0; padding-inline: 12px; font-size: .72rem; }
  .hero-postcards { right: 18px; bottom: 150px; left: 18px; grid-template-columns: repeat(3, 1fr); }
  .hero-postcards figure { height: 110px; }
  .hero-postcards figure:nth-child(2) { transform: translateY(-14px); }
  .hero-postcards figcaption { padding: 5px; font-size: .55rem; }
  .hero-facts { grid-template-columns: repeat(2, 1fr); min-height: 124px; padding-inline: 0; }
  .hero-facts span { padding: 9px 18px; border-top: 1px solid rgba(255,255,255,.15); }
  .hero-facts strong { font-size: 1.1rem; }
  .hero-facts small { font-size: .6rem; }
  .booking-cockpit { width: 100%; margin: 0; padding: 28px 16px; border-radius: 0; }
  .booking-heading { grid-template-columns: 44px 1fr; gap: 12px; }
  .booking-heading h2 { font-size: 1.65rem; }
  .booking-heading > p { grid-column: 1 / -1; font-size: .76rem; }
  .availability-form { grid-template-columns: 1fr 1fr; }
  .availability-form label { min-height: 72px; padding: 9px 10px; }
  .availability-form label:nth-child(3) { grid-column: 1 / -1; }
  .availability-form .button { grid-column: 1 / -1; min-height: 58px; }
  .result-card { grid-template-columns: 108px 1fr; }
  .result-media { min-height: 160px; }
  .brand-story { grid-template-columns: 1fr; gap: 40px; padding-block: 86px; }
  .vertical-label { display: none; }
  .brand-story-copy, .story-portrait, .story-notes { grid-column: 1; }
  .brand-story-copy h2,
  .section-heading h2,
  .experience-heading h2,
  .location-content h2,
  .final-cta h2 { font-size: 3rem; }
  .story-portrait { height: 460px; }
  .rhythm-band { min-height: 56px; justify-content: flex-start; padding-inline: 16px; font-size: .78rem; }
  .rhythm-band span:nth-child(n+3) { display: none; }
  .rooms-section, .gallery-section { padding-block: 90px; }
  .section-heading { grid-template-columns: 60px 1fr; gap: 14px; margin-bottom: 44px; }
  .section-heading .section-number { width: 40px; height: 40px; }
  .section-heading h2 { grid-column: 1 / -1; }
  .section-heading > p { grid-column: 1 / -1; }
  .room-row { min-height: 0; }
  .room-media { min-height: 350px; }
  .room-content { padding: 28px 20px; }
  .room-title-line { display: grid; gap: 14px; }
  .room-title-line h3 { font-size: 1.75rem; }
  .room-title-line p { white-space: normal; }
  .room-content ul { grid-template-columns: 1fr; }
  .room-action { align-items: flex-start; flex-direction: column; }
  .experience-canvas { grid-template-columns: 1fr; padding-block: 90px; }
  .experience-heading, .experience-main, .experience-small, .amenity-ledger { grid-column: 1; grid-row: auto; }
  .experience-heading { padding-right: 0; }
  .experience-main { min-height: 420px; }
  .experience-small { min-height: 440px; }
  .gallery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
  .gallery-card { grid-column: auto; grid-row: auto; }
  .gallery-card-1, .gallery-card-4, .gallery-card-7 { grid-column: 1 / -1; }
  .location-section { min-height: 650px; }
  .location-content { padding-top: 100px; }
  .location-content .section-number { margin-bottom: 34px; }
  .location-content h2 { font-size: 3.1rem; }
  .location-content .hero-actions { grid-template-columns: 1fr; }
  .policies-section { padding-block: 90px; }
  .section-heading.compact { grid-template-columns: 60px 1fr; }
  .section-heading.compact h2 { grid-column: 1 / -1; font-size: 2.65rem; }
  .policy-grid { grid-template-columns: 1fr; }
  .policy-grid article { min-height: 0; padding: 24px 20px; border-left: 1px solid var(--line) !important; }
  .policy-grid h3 { margin-top: 34px; }
  .final-cta { min-height: 650px; }
  .final-cta h2 { font-size: 3.2rem; }
  .site-footer { grid-template-columns: 1fr; gap: 30px; padding: 50px 20px 28px; }
  .footer-brand, .footer-note { grid-column: 1; }
  .booking-request { padding: 42px 18px 24px; }
  .booking-request h2 { font-size: 2rem; }
  .dialog-grid { grid-template-columns: 1fr; }
  .thank-you { padding: 34px 20px; }
  .thank-you h1 { font-size: 2.45rem; }
  .summary-box { grid-template-columns: 1fr; }
  .floating-whatsapp { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

@media (max-width: 380px) {
  .brand strong { font-size: .74rem; }
  .brand small { font-size: .52rem; }
  .hero-content h1 { font-size: 3.05rem; }
  .hero-content h1 em { font-size: 2.8rem; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-postcards { bottom: 142px; }
  .hero-postcards figure { height: 96px; }
  .availability-form { grid-template-columns: 1fr; }
  .availability-form label:nth-child(3), .availability-form .button { grid-column: 1; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-card { grid-column: 1; }
}
/* Gavana Signature v11 additions: preserve the established Syne/Manrope identity. */
.website-trap{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;opacity:0!important}
.check-label{display:flex!important;align-items:center;gap:.7rem}.check-label input{width:auto!important}
.guest-reviews{padding-block:clamp(5rem,10vw,9rem)}
.review-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.25rem;margin-top:2.5rem}
.review-card{background:#fffaf0;border:1px solid rgba(3,46,42,.13);padding:1.5rem;box-shadow:0 20px 60px rgba(3,46,42,.08)}
.review-card>img{width:100%;aspect-ratio:4/3;object-fit:cover;margin-bottom:1.2rem}
.review-stars{color:#b17b2c;letter-spacing:.15em}.review-card h3{font-family:var(--display);font-size:1.35rem;margin:.65rem 0}.review-card p{line-height:1.75;color:#37514c}.review-card footer{display:grid;gap:.15rem;margin-top:1.2rem;padding-top:1rem;border-top:1px solid rgba(3,46,42,.12)}.review-card footer span{font-size:.78rem;color:#60736f}
.review-empty{margin-top:2rem;padding:2rem;background:#f1eadc;border-left:4px solid #b17b2c}.review-actions{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:2rem}
.button.line-dark{border:1px solid #173f39;color:#173f39;background:transparent}
.seo-page{background:#f9f4e9;color:#173f39}.seo-shell{width:min(1180px,calc(100% - 2rem));margin:auto}.seo-nav{display:flex;align-items:center;justify-content:space-between;padding:1.1rem 0}.seo-nav a{color:inherit;text-decoration:none}.seo-hero{display:grid;grid-template-columns:1.05fr .95fr;min-height:72vh;align-items:center;gap:clamp(2rem,6vw,6rem);padding-block:4rem}.seo-hero img{width:100%;height:min(68vh,680px);object-fit:cover}.seo-hero h1{font-family:var(--display);font-size:clamp(3rem,7vw,6.8rem);line-height:.92;margin:.7rem 0 1.2rem}.seo-copy{padding-block:5rem}.seo-copy-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:3rem}.seo-copy h2{font-family:var(--display);font-size:clamp(2.2rem,5vw,4.4rem);line-height:1}.seo-copy p,.seo-copy li{line-height:1.8}.seo-card{background:#fff;padding:1.8rem;border:1px solid rgba(3,46,42,.12)}
@media(max-width:900px){.review-grid{grid-template-columns:1fr 1fr}.seo-hero,.seo-copy-grid{grid-template-columns:1fr}.seo-hero{padding-top:2rem}.seo-hero img{height:52vh}}
@media(max-width:620px){.review-grid{grid-template-columns:1fr}.review-actions{display:grid}.review-actions .button{width:100%}.seo-nav{gap:1rem;flex-wrap:wrap}.seo-hero h1{font-size:3.25rem}}
@media(prefers-reduced-motion:reduce){.reveal{opacity:1!important;transform:none!important;transition:none!important}}

/* V12: calm, legible tour desk and mobile booking access. */
.tours-page { background: #f6f7f2; }
.tours-page .seo-nav { min-height: 88px; }
.tours-brand { display: inline-flex; align-items: center; gap: .8rem; font-family: Syne, Arial, sans-serif; font-size: 1.05rem; }
.tours-brand img { border-radius: 50%; object-fit: cover; background: #fff; }
.tours-hero { color: #fff; background: linear-gradient(105deg, rgba(2,29,27,.95), rgba(3,61,55,.84)), url('../img/coast-aerial.webp') center/cover; }
.tours-intro { display: flex; justify-content: space-between; align-items: center; gap: 2rem; min-height: 430px; padding-block: 5rem; }
.tours-intro > div { max-width: 720px; }
.tours-intro h1 { font-size: clamp(3rem, 6.5vw, 6.5rem); margin-bottom: 1.3rem; }
.tours-intro p:not(.eyebrow) { font-size: clamp(1rem, 1.8vw, 1.2rem); max-width: 600px; }
.tours-mark { width: 150px; height: 150px; padding: .6rem; object-fit: contain; background: #fff; border-radius: 50%; }
.tours-collection { padding-block: clamp(4rem, 8vw, 7rem); }
.tours-collection h2, .tours-transfer h2, .tours-notes h2 { font-size: clamp(2.1rem, 5vw, 4.5rem); }
.tours-pricing { max-width: 860px; line-height: 1.75; }
.tour-group { margin-top: 3.5rem; }
.tour-group h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.tour-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.15rem; }
.tour-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 260px; padding: 1.5rem; background: white; border: 1px solid var(--line); }
.tour-category { font-size: .75rem; font-weight: 750; color: #25645e; text-transform: uppercase; letter-spacing: .04em; }
.tour-card h4 { margin: .9rem 0; font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.2; font-family: Syne, Arial, sans-serif; }
.tour-card p { line-height: 1.65; }
.tour-card footer { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.tour-card footer span { font-size: .86rem; }
.tour-card footer strong { font-size: 1.25rem; color: var(--ink); }
.tour-card footer a { font-weight: 800; color: #075b54; }
.tours-transfer { padding: clamp(4rem, 8vw, 7rem) 0; color: #fff; background: #063b35; }
.tours-transfer .seo-shell { max-width: 900px; }
.tours-transfer p:not(.eyebrow) { font-size: 1.08rem; line-height: 1.8; }
.tours-notes { padding-block: 5rem; }
.tours-notes p { max-width: 920px; line-height: 1.8; }
.tours-footer { padding: 2rem 0; color: #fff; background: var(--ink-deep); }
.tours-footer .seo-shell { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.room-action { gap: .9rem; }
.room-action a { text-decoration-thickness: 1px; text-underline-offset: .25rem; }
.mobile-book { display: none; }
@media (max-width: 900px) { .tour-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) {
  .tours-page .seo-nav { display: grid; justify-content: start; gap: .6rem; }
  .tours-page .seo-nav nav { font-size: .85rem; }
  .tour-grid { grid-template-columns: 1fr; }
  .tour-card { min-height: 0; }
  .tours-intro { min-height: 390px; }
  .tours-mark { width: 85px; height: 85px; align-self: flex-start; }
  .mobile-book { position: fixed; bottom: 16px; left: 16px; z-index: 65; display: inline-flex; min-height: 54px; box-shadow: 0 8px 30px rgba(0,0,0,.28); }
  .floating-whatsapp { bottom: 16px; }
  .seo-hero { min-height: 0; }
}
