:root {
  --deep: #061b19;
  --deep-soft: #0b2b27;
  --ink: #102d2a;
  --gold: #d9b273;
  --gold-light: #f0d39f;
  --sand: #f4efe6;
  --sand-dark: #e9e0d2;
  --white: #ffffff;
  --muted: #5e6f6b;
  --line: rgba(16, 45, 42, 0.14);
  --line-dark: rgba(255, 255, 255, 0.15);
  --shadow: 0 28px 80px rgba(4, 28, 25, 0.18);
  --radius: 28px;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

html {
  background: var(--deep);
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--sand);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
  touch-action: none;
}

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

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

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

::selection {
  background: var(--gold);
  color: var(--deep);
}

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 5000;
  left: 18px;
  top: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--deep);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1380px, calc(100% - 8vw));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 16px 4vw;
  color: var(--white);
  transition: min-height 0.35s var(--ease), background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(5, 28, 25, 0.91);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: block;
  width: clamp(170px, 17vw, 245px);
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 16px rgba(0, 0, 0, 0.28));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.desktop-nav > a:not(.button) {
  position: relative;
  padding-block: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
}

.desktop-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1px;
  background: var(--gold-light);
  transition: right 0.3s var(--ease);
}

.desktop-nav > a:not(.button):hover {
  color: var(--white);
}

.desktop-nav > a:not(.button):hover::after {
  right: 0;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.menu-button span {
  display: block;
  width: 100%;
  height: 1px;
  margin-block: 6px;
  background: var(--white);
}

.menu-shell {
  position: fixed;
  z-index: 2200;
  inset: 0;
}

.menu-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.58);
  cursor: default;
  backdrop-filter: blur(5px);
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: min(430px, 91vw);
  padding: 24px;
  overflow-y: auto;
  background: var(--deep);
  color: var(--white);
  box-shadow: -28px 0 70px rgba(0, 0, 0, 0.35);
  animation: menu-in 0.42s var(--ease) both;
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mobile-menu__head img {
  width: 190px;
  height: auto;
}

.mobile-menu__label {
  margin: 52px 0 12px;
  color: var(--gold-light);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mobile-menu nav {
  margin-bottom: 28px;
}

.mobile-menu nav a {
  display: block;
  padding: 17px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.mobile-menu > .button {
  margin-top: auto;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  font-size: 1.9rem;
  line-height: 1;
}

@keyframes menu-in {
  from { transform: translateX(105%); }
  to { transform: translateX(0); }
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

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

.button--compact {
  min-height: 42px;
  padding: 10px 18px;
}

.button--gold {
  background: var(--gold);
  color: var(--deep);
  box-shadow: 0 15px 35px rgba(217, 178, 115, 0.18);
}

.button--gold:hover {
  background: var(--gold-light);
}

.button--outline,
.button--glass {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button--outline:hover,
.button--glass:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--deep);
}

.button--dark-outline {
  border-color: rgba(16, 45, 42, 0.38);
  background: transparent;
  color: var(--deep);
}

.button--dark-outline:hover {
  border-color: var(--deep);
  background: var(--deep);
  color: var(--white);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
}

.hero__poster,
.hero__poster img,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__poster img {
  object-fit: cover;
  object-position: center;
}

.hero__poster {
  transform: none;
}

.hero__poster img {
  filter: saturate(1.06) contrast(1.03);
}

.hero__shade {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(2, 14, 13, 0.28) 0%, rgba(2, 14, 13, 0.15) 38%, rgba(2, 14, 13, 0.9) 100%),
    linear-gradient(90deg, rgba(3, 23, 20, 0.86) 0%, rgba(3, 23, 20, 0.4) 48%, rgba(3, 23, 20, 0.12) 72%);
}

.hero__content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.46fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: end;
  width: min(1420px, calc(100% - 8vw));
  min-height: max(760px, 100svh);
  margin-inline: auto;
  padding: 148px 0 76px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #e8c995;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 35px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}

.hero h1 {
  max-width: 1030px;
  margin: 23px 0 27px;
  font-size: clamp(4.1rem, 8.4vw, 8.3rem);
  letter-spacing: -0.052em;
  line-height: 0.84;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  margin-left: clamp(0px, 4vw, 64px);
  color: var(--gold-light);
  font-weight: 400;
}

.hero__lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  font-weight: 300;
  line-height: 1.68;
}

.hero-offer {
  display: grid;
  gap: 3px;
  width: fit-content;
  max-width: 640px;
  margin-top: 22px;
  padding: 13px 17px;
  border: 1px solid rgba(240, 211, 159, 0.38);
  border-radius: 16px;
  background: rgba(5, 35, 31, 0.5);
  backdrop-filter: blur(14px);
}

.hero-offer span {
  color: var(--gold-light);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-offer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 400;
}

.hero-offer b {
  color: var(--gold-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78em;
  letter-spacing: 0.08em;
}

.hero-offer small {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.61rem;
  line-height: 1.45;
}

.hero .button-row {
  margin-top: 30px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 40px);
  margin: 31px 0 0;
}

.hero-facts div {
  min-width: 72px;
}

.hero-facts dt {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.82rem;
  line-height: 1;
}

.hero-facts dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.host-card {
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(5, 35, 31, 0.45);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.host-card__kicker {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.host-card h2 {
  margin: 7px 0 12px;
  font-size: clamp(2rem, 2.35vw, 2.55rem);
  line-height: 1.05;
  overflow-wrap: normal;
  hyphens: none;
}

.host-card > p:not(.host-card__kicker) {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
  line-height: 1.65;
}

.host-card .button {
  width: 100%;
}

.host-card small {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  text-align: center;
}

.hero__scroll {
  position: absolute;
  z-index: 4;
  right: 4vw;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__scroll span {
  width: 38px;
  height: 1px;
  background: var(--gold-light);
}

@keyframes hero-poster {
  to { transform: scale(1.12) translate3d(-0.7%, 0.5%, 0); }
}

.trust-strip {
  padding: 0 4vw 32px;
  background: var(--deep);
  color: var(--white);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1420px, 100%);
  margin-inline: auto;
  border-top: 1px solid var(--line-dark);
}

.trust-strip__grid > div {
  padding: 25px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-strip__grid > div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.trust-strip span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section {
  padding: clamp(82px, 9vw, 132px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 7vw;
  align-items: start;
  margin-bottom: 58px;
}

.section h2,
.social-section h2 {
  margin: 0;
  font-size: clamp(3.1rem, 6.2vw, 5.6rem);
  letter-spacing: -0.04em;
  line-height: 0.97;
  text-wrap: balance;
}

.section-intro {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  line-height: 1.75;
}

.villa-section {
  background: var(--sand);
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 360px 300px;
  gap: 14px;
}

.gallery-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #d9d3c9;
  box-shadow: var(--shadow);
  color: var(--white);
  text-align: left;
}

.gallery-card--main {
  grid-row: 1 / 3;
}

.gallery-card--wide {
  grid-column: 2 / 4;
}

.gallery-card picture,
.gallery-card picture::after,
.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gallery-card picture::after {
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(2, 18, 16, 0.64));
}

.gallery-card img {
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.9s ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.gallery-card__caption,
.gallery-card__action {
  position: absolute;
  z-index: 2;
  bottom: 21px;
}

.gallery-card__caption {
  left: 22px;
  max-width: calc(100% - 125px);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-card__action {
  right: 17px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(5, 28, 25, 0.45);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.services-section {
  background: var(--sand-dark);
}

.journey-section {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
}

.journey-stage,
.journey-slide,
.journey-slide img,
.journey-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.journey-slide {
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 0.9s ease, transform 7s linear;
}

.journey-slide.is-active {
  opacity: 1;
  transform: scale(1.1);
}

.journey-slide img {
  object-fit: cover;
  object-position: center 54%;
}

.journey-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 23, 21, 0.97) 0%, rgba(3, 23, 21, 0.84) 43%, rgba(3, 23, 21, 0.28) 100%),
    linear-gradient(0deg, rgba(3, 23, 21, 0.86), transparent 56%);
}

.journey-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
  align-items: center;
  min-height: 850px;
  padding-block: 110px;
}

.journey-copy h2 {
  max-width: 650px;
  margin: 18px 0 26px;
  font-size: clamp(3.8rem, 7vw, 7.4rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.journey-copy > p:last-child {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.journey-tabs {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.journey-tab {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: padding 0.35s var(--ease), background 0.35s ease;
}

.journey-tab:hover,
.journey-tab.is-active {
  padding-left: 13px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
}

.journey-tab > span {
  grid-row: 1 / 3;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.journey-tab strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  font-weight: 400;
}

.journey-tab small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
}

.journey-tab b {
  grid-column: 3;
  grid-row: 1 / 3;
  opacity: 0.4;
  font-size: 1.5rem;
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}

.journey-tab.is-active b {
  opacity: 1;
  transform: translateX(5px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.service-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(16, 45, 42, 0.11);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.62);
  transition: transform 0.35s var(--ease), background 0.35s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.9);
}

.service-card > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(16, 45, 42, 0.25);
  border-radius: 50%;
  color: #8b6638;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
}

.service-card h3 {
  margin: 29px 0 8px;
  font-size: 1.55rem;
}

.service-card p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.65;
}

.concierge-section {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
}

.concierge-section__media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(6, 27, 25, 0.97), rgba(6, 27, 25, 0.77)),
    image-set(
      url("../images/optimized/villa-interior-wide-1600.avif") type("image/avif"),
      url("../images/optimized/villa-interior-wide-1600.webp") type("image/webp")
    );
  background-position: center;
  background-size: cover;
  opacity: 0.58;
}

.concierge-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 8vw;
  align-items: center;
}

.concierge-copy h2 {
  margin-top: 18px;
}

.concierge-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.69);
  line-height: 1.75;
}

.concierge-copy .button-row {
  margin-top: 28px;
}

.concierge-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.concierge-list article {
  min-height: 190px;
  padding: 23px;
  border: 1px solid var(--line-dark);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
}

.concierge-list span {
  color: var(--gold-light);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.concierge-list h3 {
  margin: 17px 0 8px;
  font-size: 1.4rem;
}

.concierge-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  line-height: 1.6;
}

.booking-section {
  background: var(--sand);
  scroll-margin-top: 84px;
}

.booking-card {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(42px, 7vw, 105px);
  align-items: center;
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid rgba(16, 45, 42, 0.08);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-card h2 {
  margin-top: 18px;
}

.channel-note {
  margin-top: 28px;
  padding-left: 17px;
  border-left: 2px solid var(--gold);
}

.channel-note strong,
.channel-note span {
  display: block;
}

.channel-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
}

.channel-note span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
}

.web-benefit {
  margin-top: 24px;
  padding: 19px 20px;
  border: 1px solid rgba(180, 145, 79, 0.35);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(245, 237, 220, 0.9), rgba(255, 255, 255, 0.96));
}

.web-benefit__label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.web-benefit strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.3;
}

.promo-code {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.08em;
  vertical-align: 0.12em;
}

.web-benefit p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.6;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quote-heading {
  padding-bottom: 4px;
}

.quote-heading > span,
.quote-summary > span {
  display: block;
  color: var(--coral-dark, #a95146);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.quote-heading h3 {
  margin: 7px 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 400;
}

.quote-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.inline-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -2px;
  color: #596a66;
  cursor: pointer;
  font-size: 0.72rem;
  line-height: 1.4;
}

.inline-check input,
.check-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--coral, #c96f61);
  flex: 0 0 auto;
}

.quote-group {
  min-width: 0;
  margin: 2px 0 0;
  padding: 16px;
  border: 1px solid rgba(92, 68, 60, 0.16);
  border-radius: 17px;
}

.quote-group legend {
  padding: 0 8px;
  color: #596a66;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-group legend span {
  color: var(--muted);
  font-size: 0.84em;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

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

.guest-total {
  margin: 11px 0 0;
  color: var(--sage-dark, #355f50);
  font-size: 0.7rem;
  font-weight: 700;
}

.guest-total.is-over-limit {
  color: #8f2f28;
}

.service-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.check-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 70px;
  padding: 12px;
  border: 1px solid rgba(92, 68, 60, 0.13);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.check-option:has(input:checked) {
  border-color: var(--coral, #c96f61);
  background: rgba(239, 164, 125, 0.13);
}

.check-option input {
  margin-top: 2px;
}

.check-option strong,
.check-option small {
  display: block;
}

.check-option strong {
  color: var(--ink);
  font-size: 0.76rem;
}

.check-option small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.35;
}

.field label {
  color: #596a66;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cfd9d5;
  border-radius: 13px;
  background: #fbfcfb;
  color: var(--ink);
}

.field input,
.field select {
  padding: 0 14px;
}

.field textarea {
  min-height: 92px;
  padding: 13px 14px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #91a49e;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--deep-soft);
  outline: 2px solid rgba(11, 43, 39, 0.18);
  outline-offset: 1px;
}

.field [aria-invalid="true"] {
  border-color: #a4372e;
  background: #fff8f7;
}

.quote-summary {
  padding: 14px 16px;
  border-left: 3px solid var(--sage, #82a086);
  border-radius: 0 13px 13px 0;
  background: rgba(130, 160, 134, 0.1);
}

.quote-summary > span {
  color: var(--sage-dark, #355f50);
}

.quote-summary strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 0.72rem;
  line-height: 1.5;
}

.form-status {
  min-height: 0;
  margin: 0;
  color: #8f2f28;
  font-size: 0.75rem;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 3px;
}

.form-note {
  margin: 0;
  color: #6f7d7a;
  font-size: 0.65rem;
  line-height: 1.55;
}

.social-section {
  background: var(--deep-soft);
  color: var(--white);
}

.social-inner {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 7vw;
  align-items: end;
}

.social-section h2 {
  margin-top: 18px;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.social-link {
  display: flex;
  min-height: 126px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, background 0.3s ease;
}

.social-link:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.social-link span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.social-link small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.67rem;
}

.site-footer {
  padding: 64px 0 26px;
  background: #031513;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr 0.75fr;
  gap: 7vw;
}

.footer-brand img {
  width: min(300px, 80%);
  height: auto;
}

.footer-brand p {
  max-width: 450px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-grid h2 {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  width: fit-content;
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 1150;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 9px 17px 9px 9px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: #178c4a;
  color: var(--white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.27);
  transition: transform 0.3s var(--ease), background 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #11793f;
}

.whatsapp-float > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.17);
  font-size: 0.7rem;
  font-weight: 800;
}

.whatsapp-float strong {
  font-size: 0.72rem;
}

.lightbox {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: default;
  backdrop-filter: blur(10px);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1050px, 96vw);
  max-height: calc(100svh - 36px);
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: var(--deep);
  color: var(--white);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.5);
}

.lightbox__bar,
.lightbox__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 17px;
}

.lightbox__bar {
  border-bottom: 1px solid var(--line-dark);
}

.lightbox__bar p {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lightbox__bar .icon-button {
  width: 42px;
  height: 42px;
}

.lightbox figure {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1fr);
  margin: 0;
  overflow: hidden;
  background: #02100f;
}

.lightbox figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox figcaption {
  position: absolute;
  left: 26px;
  bottom: 73px;
  max-width: calc(100% - 52px);
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(3, 21, 19, 0.64);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  backdrop-filter: blur(8px);
}

.lightbox__controls {
  border-top: 1px solid var(--line-dark);
}

.lightbox__controls button {
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-size: 0.68rem;
}

.lightbox__controls button:hover {
  border-color: var(--gold);
}

.lightbox__controls span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.65rem;
}

.toast {
  position: fixed;
  z-index: 3500;
  left: 50%;
  bottom: max(25px, env(safe-area-inset-bottom));
  max-width: calc(100vw - 32px);
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: var(--deep);
  color: var(--white);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.28);
  font-size: 0.7rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.enhanced .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.enhanced .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero__content { grid-template-columns: 1fr; gap: 30px; }
  .host-card { max-width: 490px; }
  .hero__scroll { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 520px 340px 360px;
  }
  .gallery-card--main {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .gallery-card--wide { grid-column: 1 / -1; }
  .journey-section,
  .journey-inner { min-height: 880px; }
  .journey-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    align-content: center;
  }
  .journey-copy h2 { max-width: 820px; }
  .journey-copy > p:last-child { max-width: 680px; }
  .concierge-grid,
  .booking-card,
  .social-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (min-width: 1081px) and (max-height: 800px) {
  .hero,
  .hero__content { min-height: 100svh; }
  .hero__content { gap: 4vw; padding: 100px 0 30px; }
  .hero h1 { margin: 16px 0 19px; font-size: clamp(4rem, 6.3vw, 5.8rem); }
  .hero__lead { font-size: 1rem; line-height: 1.55; }
  .hero .button-row { margin-top: 20px; }
  .hero-facts { margin-top: 20px; }
  .host-card { padding: 23px; }
  .host-card h2 { font-size: 2rem; }
  .host-card > p:not(.host-card__kicker) { margin-bottom: 15px; line-height: 1.5; }
}

@media (max-width: 760px) {
  .container { width: calc(100% - 36px); }
  .site-header { min-height: 70px; padding: 11px 18px; }
  .brand { width: 174px; }
  .hero { min-height: max(960px, 100svh); }
  .hero__content {
    width: calc(100% - 36px);
    min-height: max(960px, 100svh);
    padding: 114px 0 42px;
  }
  .hero h1 { font-size: clamp(3.35rem, 15vw, 5.4rem); }
  .hero h1 em { margin-left: 0; }
  .hero-offer { width: 100%; }
  .hero__shade {
    background:
      linear-gradient(180deg, rgba(2, 14, 13, 0.32), rgba(2, 14, 13, 0.28) 38%, rgba(2, 14, 13, 0.95) 100%),
      linear-gradient(90deg, rgba(3, 23, 20, 0.67), rgba(3, 23, 20, 0.1));
  }
  .hero .button-row .button { width: 100%; }
  .hero-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 12px; }
  .host-card { padding: 22px; }
  .trust-strip { padding-inline: 18px; }
  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .trust-strip__grid > div:nth-child(2) { border-right: 0; }
  .trust-strip__grid > div:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .section { padding: 82px 0; }
  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 540px 410px 410px 390px;
  }
  .gallery-card--main,
  .gallery-card--wide {
    grid-column: auto;
    grid-row: auto;
  }
  .journey-section,
  .journey-inner { min-height: 980px; }
  .journey-inner {
    gap: 38px;
    align-content: end;
    padding-block: 100px 58px;
  }
  .journey-slide img { object-position: center; }
  .journey-shade {
    background:
      linear-gradient(180deg, rgba(3, 23, 21, 0.22), rgba(3, 23, 21, 0.78) 45%, rgba(3, 23, 21, 0.98) 100%),
      linear-gradient(90deg, rgba(3, 23, 21, 0.66), rgba(3, 23, 21, 0.1));
  }
  .journey-copy h2 {
    margin-block: 15px 20px;
    font-size: clamp(3.7rem, 17vw, 5.5rem);
  }
  .journey-copy > p:last-child { line-height: 1.62; }
  .journey-tab {
    grid-template-columns: 44px 1fr auto;
    gap: 12px;
    padding: 18px 0;
  }
  .journey-tab strong { font-size: 1.75rem; }
  .journey-tab small { font-size: 0.67rem; }
  .service-grid,
  .concierge-list,
  .booking-form,
  .social-links { grid-template-columns: 1fr; }
  .guest-fields,
  .service-options { grid-template-columns: 1fr; }
  .service-card { min-height: 205px; }
  .booking-card { width: calc(100% - 24px); padding: 28px 18px; border-radius: 24px; }
  .field--full { grid-column: auto; }
  .booking-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { width: 56px; padding: 9px; }
  .whatsapp-float > span { width: 36px; }
  .whatsapp-float strong { display: none; }
  .lightbox { padding: 8px; }
  .lightbox__dialog { width: 100%; max-height: calc(100svh - 16px); border-radius: 18px; }
  .lightbox figcaption { left: 12px; bottom: 72px; max-width: calc(100% - 24px); border-radius: 12px; }
}

@media (max-width: 410px) {
  .hero h1 { font-size: 3.35rem; }
  .hero__lead { font-size: 0.94rem; }
  .section h2,
  .social-section h2 { font-size: 2.8rem; }
  .trust-strip__grid > div { padding: 22px 14px; }
  .trust-strip strong { font-size: 1.72rem; }
}

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

/* Official Villa Calypso identity — Riviera mexicana contemporánea */
:root {
  --deep: #355f50;
  --deep-soft: #477464;
  --ink: #3c302c;
  --gold: #c96f61;
  --gold-light: #efa47d;
  --sand: #f5ede5;
  --sand-dark: #ead9cf;
  --white: #fffaf5;
  --muted: #71635d;
  --line: rgba(92, 68, 60, 0.15);
  --line-dark: rgba(255, 250, 245, 0.24);
  --shadow: 0 28px 75px rgba(93, 61, 49, 0.16);
  --coral: #c96f61;
  --coral-dark: #9f5148;
  --peach: #efa47d;
  --peach-soft: #f7d8c5;
  --sage: #82a086;
  --sage-dark: #355f50;
  --ivory: #f8f1e8;
  --shell: #fffaf5;
}

html {
  background: var(--sage-dark);
}

body {
  background:
    radial-gradient(circle at 10% 12%, rgba(239, 164, 125, 0.12), transparent 25rem),
    var(--ivory);
  color: var(--ink);
}

.site-header {
  min-height: 88px;
  padding: 12px 4vw;
  border-bottom: 1px solid rgba(94, 74, 66, 0.1);
  background: rgba(248, 241, 232, 0.9);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(87, 61, 51, 0.06);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  min-height: 76px;
  border-color: rgba(94, 74, 66, 0.12);
  background: rgba(248, 241, 232, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 35px rgba(87, 61, 51, 0.1);
}

.brand {
  display: inline-flex;
  width: auto;
  align-items: center;
  gap: 12px;
}

.brand__seal {
  display: block;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(201, 111, 97, 0.18);
  border-radius: 50%;
  background: var(--ivory);
}

.brand__seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.brand__wordmark {
  display: grid;
  color: var(--coral-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.brand__wordmark small {
  margin-top: 7px;
  color: var(--sage-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.desktop-nav > a:not(.button) {
  color: #5e504a;
}

.desktop-nav > a:not(.button)::after {
  background: var(--coral);
}

.desktop-nav > a:not(.button):hover {
  color: var(--coral-dark);
}

.menu-button span {
  background: var(--coral-dark);
}

.mobile-menu {
  background:
    radial-gradient(circle at 100% 0%, rgba(239, 164, 125, 0.26), transparent 24rem),
    var(--ivory);
  color: var(--ink);
}

.mobile-menu__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu__brand img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.mobile-menu__brand span {
  display: grid;
  color: var(--coral-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-menu__brand small {
  margin-top: 5px;
  color: var(--sage-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.47rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.mobile-menu__label,
.mobile-menu nav a {
  color: var(--ink);
}

.mobile-menu nav a {
  border-color: rgba(92, 68, 60, 0.15);
}

.menu-backdrop {
  background: rgba(53, 95, 80, 0.44);
}

.button--gold {
  background: var(--coral);
  color: var(--shell);
  box-shadow: 0 14px 30px rgba(159, 81, 72, 0.2);
}

.button--gold:hover {
  background: var(--coral-dark);
  color: var(--shell);
}

.button--outline,
.button--glass {
  border-color: rgba(53, 95, 80, 0.38);
  background: rgba(255, 250, 245, 0.82);
  color: var(--sage-dark);
  backdrop-filter: blur(14px);
}

.button--outline:hover,
.button--glass:hover {
  border-color: var(--sage-dark);
  background: var(--sage-dark);
  color: var(--shell);
}

.button--dark-outline {
  border-color: rgba(53, 95, 80, 0.42);
  color: var(--sage-dark);
}

.button--dark-outline:hover {
  border-color: var(--sage-dark);
  background: var(--sage-dark);
  color: var(--shell);
}

.hero {
  min-height: 900px;
  background:
    radial-gradient(circle at 20% 23%, rgba(239, 164, 125, 0.22), transparent 19rem),
    linear-gradient(145deg, #fbf4ec 0%, #f4e8df 100%);
  color: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: -90px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(201, 111, 97, 0.22);
  border-radius: 50%;
}

.hero__poster {
  inset: 116px 3vw 48px auto;
  width: 48%;
  height: auto;
  overflow: hidden;
  border: 8px solid rgba(255, 250, 245, 0.88);
  border-radius: 260px 260px 34px 34px;
  box-shadow: 0 35px 80px rgba(97, 63, 51, 0.22);
}

.hero__poster img {
  object-position: 58% center;
  filter: saturate(0.92) contrast(0.98) brightness(1.03);
}

.hero__shade {
  inset: 116px 3vw 48px auto;
  width: 48%;
  height: auto;
  border-radius: 260px 260px 34px 34px;
  background: linear-gradient(180deg, transparent 40%, rgba(48, 54, 45, 0.56) 100%);
}

.hero__content {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  gap: clamp(44px, 7vw, 108px);
  align-items: end;
  width: min(1420px, calc(100% - 8vw));
  min-height: 900px;
  padding: 130px 0 64px;
}

.hero__copy {
  position: relative;
  z-index: 4;
  max-width: 790px;
}

.hero__brand-seal {
  width: 118px;
  height: 118px;
  margin-bottom: 18px;
  border: 1px solid rgba(201, 111, 97, 0.16);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(118, 78, 63, 0.1);
}

.eyebrow {
  color: var(--coral-dark);
}

.eyebrow::before {
  background: var(--sage);
}

.hero h1 {
  max-width: 790px;
  margin: 21px 0 24px;
  color: var(--coral-dark);
  font-size: clamp(4.15rem, 7.25vw, 7.45rem);
  line-height: 0.87;
}

.hero h1 em {
  margin-left: clamp(0px, 3vw, 45px);
  color: var(--sage-dark);
}

.hero__lead {
  max-width: 675px;
  color: #695a54;
  font-size: clamp(1rem, 1.28vw, 1.2rem);
  line-height: 1.68;
}

.hero-offer {
  border-color: rgba(201, 111, 97, 0.28);
  background: rgba(255, 250, 245, 0.86);
  box-shadow: 0 18px 45px rgba(100, 66, 54, 0.1);
}

.hero-offer span,
.hero-offer b {
  color: var(--coral-dark);
}

.hero-offer strong {
  color: var(--ink);
}

.hero-offer small {
  color: var(--muted);
}

.hero-facts {
  gap: clamp(18px, 2.4vw, 34px);
}

.hero-facts dt {
  color: var(--coral-dark);
}

.hero-facts dd {
  color: var(--muted);
}

.host-card {
  position: relative;
  z-index: 4;
  margin: 0 1.5vw 8px 0;
  border-color: rgba(255, 250, 245, 0.72);
  background: rgba(255, 250, 245, 0.93);
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(65, 58, 46, 0.22);
}

.host-card__kicker {
  color: var(--coral-dark);
}

.host-card h2 {
  color: var(--sage-dark);
}

.host-card > p:not(.host-card__kicker),
.host-card small {
  color: var(--muted);
}

.hero__scroll {
  color: var(--sage-dark);
}

.hero__scroll span {
  background: var(--coral);
}

.trust-strip {
  padding: 30px 4vw;
  background: var(--coral);
  color: var(--shell);
}

.trust-strip__grid {
  border: 1px solid rgba(255, 250, 245, 0.24);
  border-radius: 24px;
  overflow: hidden;
}

.trust-strip__grid > div {
  border-color: rgba(255, 250, 245, 0.2);
}

.trust-strip strong {
  color: var(--shell);
}

.trust-strip span {
  color: rgba(255, 250, 245, 0.74);
}

.brand-story {
  padding: clamp(84px, 9vw, 132px) 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(130, 160, 134, 0.16), transparent 22rem),
    var(--peach-soft);
}

.brand-story__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.05fr);
  gap: clamp(46px, 8vw, 120px);
  align-items: center;
}

.brand-story__mark {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(255, 250, 245, 0.72);
  border-radius: 44px 44px 180px 44px;
  box-shadow: var(--shadow);
}

.brand-story__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(159, 81, 72, 0.12);
  border-radius: inherit;
  pointer-events: none;
}

.brand-story__mark img {
  width: 100%;
  height: auto;
}

.brand-story__copy {
  max-width: 700px;
}

.brand-story h2 {
  margin: 18px 0 25px;
  color: var(--coral-dark);
  font-size: clamp(3.5rem, 6vw, 6.3rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.brand-story__copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #6a5750;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.text-link span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50%;
  transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease;
}

.text-link:hover span {
  background: var(--sage-dark);
  color: var(--shell);
  transform: translateX(4px);
}

.villa-section {
  background: var(--shell);
}

.section h2,
.social-section h2 {
  color: var(--coral-dark);
}

.section-intro {
  color: var(--muted);
}

.gallery {
  gap: 16px;
}

.gallery-card {
  border: 6px solid var(--ivory);
  border-radius: 26px;
  box-shadow: 0 20px 55px rgba(78, 60, 51, 0.13);
}

.gallery-card--main {
  border-radius: 190px 26px 26px 26px;
}

.gallery-card--wide {
  border-radius: 26px 190px 26px 26px;
}

.gallery-card::after {
  background: linear-gradient(180deg, transparent 50%, rgba(53, 95, 80, 0.75));
}

.gallery-card__action {
  border-color: rgba(255, 250, 245, 0.8);
  background: var(--coral);
  color: var(--shell);
}

.journey-section {
  background: var(--sage-dark);
}

.journey-shade {
  background:
    linear-gradient(90deg, rgba(37, 70, 58, 0.9), rgba(37, 70, 58, 0.28) 62%, rgba(37, 70, 58, 0.14)),
    linear-gradient(180deg, rgba(37, 70, 58, 0.12), rgba(37, 70, 58, 0.76));
}

.journey-copy .eyebrow {
  color: var(--peach);
}

.journey-copy h2 {
  color: var(--peach-soft);
}

.journey-tab {
  border-color: rgba(255, 250, 245, 0.18);
}

.journey-tab span,
.journey-tab b,
.journey-tab.is-active strong {
  color: var(--peach);
}

.journey-tab.is-active {
  border-color: var(--peach);
}

.services-section {
  background:
    radial-gradient(circle at 8% 88%, rgba(201, 111, 97, 0.12), transparent 22rem),
    var(--ivory);
}

.service-card {
  border-color: rgba(201, 111, 97, 0.17);
  border-radius: 28px;
  background: var(--shell);
  box-shadow: 0 16px 40px rgba(94, 69, 57, 0.08);
}

.service-card:nth-child(2n) {
  background: #f8e4d8;
}

.service-card span {
  color: var(--coral);
}

.service-card h3 {
  color: var(--sage-dark);
}

.concierge-section {
  background: var(--sage-dark);
}

.concierge-section__media::after {
  background: linear-gradient(90deg, rgba(53, 95, 80, 0.08), rgba(53, 95, 80, 0.42));
}

.concierge-content .eyebrow {
  color: var(--peach);
}

.concierge-content h2,
.concierge-list h3 {
  color: var(--peach-soft);
}

.concierge-list article {
  border-color: rgba(255, 250, 245, 0.18);
}

.booking-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(130, 160, 134, 0.16), transparent 24rem),
    #efd9cc;
}

.booking-card {
  border: 1px solid rgba(201, 111, 97, 0.18);
  border-radius: 34px;
  background: rgba(255, 250, 245, 0.96);
  box-shadow: 0 30px 85px rgba(105, 71, 58, 0.15);
}

.channel-note {
  border-color: var(--sage);
}

.web-benefit {
  border-color: rgba(201, 111, 97, 0.32);
  background: linear-gradient(145deg, rgba(247, 216, 197, 0.9), var(--shell));
}

.web-benefit__label {
  color: var(--coral-dark);
}

.promo-code {
  background: var(--sage-dark);
  color: var(--shell);
}

.field input,
.field select,
.field textarea {
  border-color: rgba(92, 68, 60, 0.2);
  background: var(--shell);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--coral);
  outline-color: rgba(201, 111, 97, 0.18);
}

.social-section {
  background:
    radial-gradient(circle at 90% 20%, rgba(239, 164, 125, 0.16), transparent 24rem),
    var(--sage-dark);
}

.social-section h2 {
  color: var(--peach-soft);
}

.social-section .eyebrow {
  color: var(--peach);
}

.social-link {
  border-color: rgba(255, 250, 245, 0.18);
}

.social-link:hover {
  border-color: var(--peach);
  background: rgba(239, 164, 125, 0.12);
}

.site-footer {
  background: #284b40;
}

.footer-brand img {
  width: 158px;
  height: 158px;
  border: 8px solid rgba(255, 250, 245, 0.1);
  border-radius: 50%;
  object-fit: cover;
  filter: none;
}

.site-footer h2 {
  color: var(--peach);
}

.whatsapp-float {
  border-color: rgba(255, 250, 245, 0.45);
  background: var(--sage-dark);
}

.whatsapp-float:hover {
  background: #274c40;
}

.lightbox__dialog {
  background: var(--sage-dark);
}

.lightbox__bar,
.lightbox__controls {
  border-color: rgba(255, 250, 245, 0.16);
}

@media (max-width: 1080px) {
  .desktop-nav { gap: 14px; }
  .brand__wordmark { font-size: 1.05rem; }
  .hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
    gap: 34px;
  }
  .hero h1 { font-size: clamp(3.9rem, 7.4vw, 6.2rem); }
  .host-card { max-width: none; }
  .brand-story__inner { grid-template-columns: minmax(300px, 0.78fr) 1fr; gap: 54px; }
}

@media (max-width: 900px) {
  .hero {
    min-height: max(980px, 100svh);
    background: var(--sage-dark);
    color: var(--shell);
  }
  .hero::before { display: none; }
  .hero__poster,
  .hero__shade {
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .hero__poster { box-shadow: none; }
  .hero__poster img {
    object-position: center;
    filter: saturate(0.94) contrast(1.02);
  }
  .hero__shade {
    background:
      linear-gradient(180deg, rgba(40, 75, 64, 0.32), rgba(40, 75, 64, 0.76) 48%, rgba(40, 75, 64, 0.98) 100%),
      linear-gradient(90deg, rgba(40, 75, 64, 0.76), rgba(40, 75, 64, 0.12));
  }
  .hero__content {
    grid-template-columns: 1fr;
    min-height: max(980px, 100svh);
    padding: 120px 0 48px;
  }
  .hero__copy { max-width: 720px; }
  .hero__brand-seal { width: 100px; height: 100px; }
  .hero .eyebrow { color: var(--peach-soft); }
  .hero h1 { color: var(--peach-soft); }
  .hero h1 em { color: var(--shell); }
  .hero__lead { color: rgba(255, 250, 245, 0.82); }
  .hero-offer {
    border-color: rgba(255, 250, 245, 0.3);
    background: rgba(40, 75, 64, 0.62);
  }
  .hero-offer span,
  .hero-offer b { color: var(--peach); }
  .hero-offer strong { color: var(--shell); }
  .hero-offer small { color: rgba(255, 250, 245, 0.68); }
  .hero-facts dt { color: var(--peach); }
  .hero-facts dd { color: rgba(255, 250, 245, 0.65); }
  .hero__scroll { display: none; }
  .host-card { margin: 0; }
  .brand-story__inner { grid-template-columns: 1fr; }
  .brand-story__mark { max-width: 560px; }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 76px;
    padding: 8px 18px;
  }
  .brand { gap: 9px; }
  .brand__seal { width: 52px; height: 52px; }
  .brand__wordmark { font-size: 0.91rem; }
  .brand__wordmark small { font-size: 0.4rem; letter-spacing: 0.14em; }
  .hero,
  .hero__content { min-height: max(1040px, 100svh); }
  .hero__content {
    width: calc(100% - 36px);
    padding: 106px 0 38px;
  }
  .hero__brand-seal { width: 88px; height: 88px; margin-bottom: 14px; }
  .hero h1 {
    margin-block: 16px 20px;
    font-size: clamp(3.35rem, 15.5vw, 5.2rem);
  }
  .hero__lead { font-size: 0.96rem; }
  .hero-offer { width: 100%; margin-top: 18px; }
  .hero .button-row { margin-top: 22px; }
  .hero-facts { margin-top: 24px; }
  .host-card { padding: 22px; }
  .trust-strip { padding: 22px 18px; }
  .trust-strip__grid { border-radius: 20px; }
  .brand-story { padding: 82px 0; }
  .brand-story__inner { gap: 42px; }
  .brand-story__mark { border-width: 7px; border-radius: 32px 32px 110px 32px; }
  .brand-story h2 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .gallery-card--main,
  .gallery-card--wide { border-radius: 90px 24px 24px 24px; }
  .booking-card { border-radius: 26px; }
  .footer-brand img { width: 132px; height: 132px; }
}

@media (max-width: 410px) {
  .brand__wordmark { font-size: 0.78rem; }
  .brand__wordmark small { display: none; }
  .hero h1 { font-size: 3.18rem; }
  .brand-story h2 { font-size: 3rem; }
}
