:root {
  --bg: #f3eee6;
  --bg-soft: #ede5db;
  --surface: rgba(255, 251, 245, 0.9);
  --surface-strong: #f8f4ee;
  --deep: #10241d;
  --deep-soft: #163228;
  --deep-muted: #1f3f33;
  --night: #0b1411;
  --gold: #b9965f;
  --gold-soft: #d1b485;
  --gold-fade: rgba(185, 150, 95, 0.18);
  --line: rgba(16, 36, 29, 0.12);
  --line-strong: rgba(255, 247, 237, 0.16);
  --text: #2c322f;
  --text-soft: #5d605d;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(11, 20, 17, 0.15);
  --shadow-soft: 0 18px 50px rgba(11, 20, 17, 0.1);
  --radius-lg: 1.75rem;
  --radius-md: 1rem;
  --radius-sm: 0.7rem;
  --max: 1240px;
  --gutter: clamp(1.1rem, 2vw, 1.6rem);
  --section-space: clamp(4.5rem, 9vw, 7.5rem);
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Baskerville", serif;
  --sans: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: #f3eee6;
  line-height: 1.65;
  min-width: 320px;
}

body.page--dark {
  background: #f1e9dd;
}

body.is-nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(185, 150, 95, 0.5);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 120;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--deep);
  color: var(--white);
}

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

.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;
}

.page-shell {
  position: relative;
  overflow-x: clip;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mix-blend-mode: multiply;
}

.container,
.site-header__inner,
.hero__inner,
.page-hero__inner,
.site-footer__inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section--paper {
  background: #f8f2e9;
}

.section--deep {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(185, 150, 95, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(16, 36, 29, 0.96), rgba(11, 20, 17, 0.98));
}

.section--dark {
  color: var(--white);
  background:
    radial-gradient(circle at left center, rgba(185, 150, 95, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(11, 20, 17, 0.98), rgba(7, 13, 11, 1));
}

.section-heading {
  display: grid;
  gap: 0.85rem;
  max-width: 52rem;
  margin-bottom: clamp(2rem, 4vw, 3.1rem);
}

.section-heading--split {
  grid-template-columns: 1fr auto;
  align-items: end;
  max-width: none;
}

.section-heading h1,
.section-heading h2,
.section-heading h3,
.page-hero__copy h1,
.display-title,
.quote-card blockquote,
.feature-panel h2,
.price-card h2,
.story-card h3,
.contact-panel h2,
.legal-prose h1,
.legal-prose h2,
.detail-card h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.section-heading h2,
.page-hero__copy h1,
.display-title {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.section-heading p,
.page-hero__copy p,
.lead,
.feature-panel p,
.story-card p,
.detail-card p,
.contact-panel p,
.price-card p,
.prose p {
  margin: 0;
  color: inherit;
}

.eyebrow,
.section-index,
.meta-pill,
.hero-tag,
.inline-label {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  max-width: 100%;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.eyebrow::before,
.section-index::before,
.inline-label::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
}

.section-index {
  color: rgba(185, 150, 95, 0.92);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: inherit;
}

.text-link::after {
  content: ">";
  font-size: 0.95em;
  transform: translateY(-0.03em);
  transition: transform 160ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translate(0.25rem, -0.03em);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button-row--compact {
  gap: 0.7rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--night);
  box-shadow: 0 12px 28px rgba(185, 150, 95, 0.24);
}

.button--line {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
}

.button--line-dark {
  border-color: rgba(16, 36, 29, 0.18);
  color: var(--deep);
  background: rgba(16, 36, 29, 0.02);
}

.button--ghost {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(16, 36, 29, 0.12);
}

.button--small {
  min-height: 2.9rem;
  padding: 0.72rem 1.05rem;
  font-size: 0.92rem;
}

.button-row--compact .button {
  max-width: max-content;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 20, 17, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(11, 20, 17, 0.9);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  min-height: 5.45rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 240px;
}

.brand img {
  width: min(15.5rem, 40vw);
  border-radius: 0.35rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 251, 245, 0.86);
  font-size: 0.97rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 0.4rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold-soft);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.22rem auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(96svh, 56rem);
  color: var(--white);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--night);
  isolation: isolate;
}

.hero__media,
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__media picture,
.page-hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__media img,
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center center);
  transform: scale(1.04);
  animation: hero-drift 18s ease forwards;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 13, 11, 0.82), rgba(7, 13, 11, 0.24) 46%, rgba(7, 13, 11, 0.52) 100%),
    radial-gradient(circle at 78% 24%, rgba(185, 150, 95, 0.18), transparent 22%);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(7, 13, 11, 0.05) 0%, rgba(7, 13, 11, 0.78) 100%);
}

.hero__inner,
.page-hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 24rem);
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: end;
  padding: clamp(7rem, 12vw, 9.5rem) 0 clamp(2.4rem, 5vw, 4rem);
}

.hero__copy,
.page-hero__copy {
  display: grid;
  gap: 1.35rem;
  max-width: 44rem;
  min-width: 0;
}

.hero__copy h1 {
  font-size: clamp(3.8rem, 10vw, 7.2rem);
}

.hero__subtitle {
  margin: 0;
  font-size: clamp(1.15rem, 2.3vw, 1.8rem);
  line-height: 1.25;
  max-width: 38rem;
  overflow-wrap: break-word;
}

.hero__lede,
.page-hero__copy p {
  font-size: 1.08rem;
  color: rgba(255, 247, 237, 0.84);
  max-width: 38rem;
  overflow-wrap: break-word;
}

.hero__side {
  display: grid;
  gap: 1rem;
}

.hero-note,
.panel,
.contact-panel,
.detail-card,
.price-card,
.story-card,
.legal-card {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-note h2,
.feature-panel h2,
.contact-panel h2,
.detail-card h3,
.price-card h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  margin-bottom: 0.8rem;
}

.hero-metrics {
  display: grid;
  gap: 0.8rem;
}

.hero-metrics div {
  display: grid;
  gap: 0.16rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-metrics strong {
  font-size: 1.6rem;
  font-family: var(--display);
  font-weight: 500;
}

.hero-metrics span {
  color: rgba(255, 247, 237, 0.72);
}

.authority-band {
  margin-top: -1.6rem;
  position: relative;
  z-index: 5;
}

.authority-band__inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(11, 20, 17, 0.2);
  box-shadow: 0 24px 70px rgba(11, 20, 17, 0.16);
}

.authority-band__item {
  min-width: 0;
  padding: 1.35rem 1.25rem;
  background: rgba(16, 36, 29, 0.96);
  color: rgba(255, 247, 237, 0.84);
  min-height: 9rem;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  overflow-wrap: anywhere;
}

.authority-band__item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.05;
}

.editorial-grid,
.split-layout,
.finca-layout,
.reserve-layout,
.contact-layout,
.page-grid,
.story-layout {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.6rem);
}

.editorial-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.72fr);
  align-items: start;
}

.quote-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 251, 245, 0.7);
  box-shadow: var(--shadow-soft);
}

.quote-card blockquote {
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  margin: 0 0 1rem;
}

.quote-card p,
.quote-card li,
.quote-card small,
.prose,
.prose li,
.meta-list,
.meta-list li {
  color: var(--text-soft);
}

.meta-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.meta-list li {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.mosaic {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 7rem;
}

.mosaic-tile {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 0.1rem);
  min-height: 16rem;
  background: var(--deep);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.mosaic-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 13, 11, 0.04), rgba(7, 13, 11, 0.72));
  z-index: 1;
}

.mosaic-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(7, 13, 11, 0.9));
  z-index: 2;
}

.mosaic-tile__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.mosaic-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
  filter: saturate(0.96) contrast(1.02);
}

.mosaic-tile:hover .mosaic-tile__media img,
.mosaic-tile:focus-visible .mosaic-tile__media img {
  transform: scale(1.08);
  filter: saturate(1.02) contrast(1.06);
}

.mosaic-tile__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  padding: 1.45rem;
  display: grid;
  gap: 0.45rem;
}

.mosaic-tile__content h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 0.98;
  font-weight: 500;
}

.mosaic-tile__content p {
  margin: 0;
  max-width: 22rem;
  color: rgba(255, 247, 237, 0.82);
}

.mosaic-tile--tall {
  grid-column: span 5;
  grid-row: span 5;
}

.mosaic-tile--wide {
  grid-column: span 7;
  grid-row: span 3;
}

.mosaic-tile--medium {
  grid-column: span 4;
  grid-row: span 3;
}

.mosaic-tile--square {
  grid-column: span 4;
  grid-row: span 4;
}

.feature-panel {
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 247, 237, 0.06);
}

.feature-panel--paper {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 251, 245, 0.82);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  min-width: 0;
  min-height: 8.8rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  align-content: start;
  gap: 0.45rem;
  overflow-wrap: anywhere;
}

.stat-card strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 247, 237, 0.74);
}

.feature-panel--paper .stat-card {
  border-color: var(--line);
  background: rgba(16, 36, 29, 0.03);
}

.feature-panel--paper .stat-card span {
  color: var(--text-soft);
}

.finca-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.85fr);
}

.image-stack,
.image-rows {
  display: grid;
  gap: 1rem;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(16, 36, 29, 0.08);
  box-shadow: var(--shadow-soft);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.image-frame:hover img,
.image-frame:focus-within img {
  transform: scale(1.04);
}

.image-frame--portrait {
  min-height: 34rem;
}

.image-frame--medium {
  min-height: 16rem;
}

.image-frame--short {
  min-height: 13rem;
}

.image-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: 18rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  background: rgba(7, 13, 11, 0.72);
  color: rgba(255, 247, 237, 0.9);
  font-size: 0.92rem;
}

.story-layout,
.contact-layout,
.reserve-layout,
.page-grid {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.86fr);
}

.story-card,
.detail-card,
.price-card,
.contact-panel,
.legal-card {
  border: 1px solid var(--line);
  background: rgba(255, 251, 245, 0.74);
  color: var(--text);
}

.story-card h3,
.detail-card h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  margin-bottom: 0.8rem;
}

.info-grid,
.story-grid,
.detail-grid,
.price-grid,
.contact-cards {
  display: grid;
  gap: 1rem;
}

.story-grid,
.detail-grid,
.price-grid,
.contact-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 1.5rem 0;
}

.data-list,
.timeline,
.quick-list {
  display: grid;
  gap: 0.95rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.data-list li,
.timeline li,
.quick-list li {
  padding-left: 1.05rem;
  position: relative;
}

.data-list li::before,
.timeline li::before,
.quick-list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--gold);
}

.timeline li {
  padding: 1rem 0 0 1rem;
  border-top: 1px solid var(--line);
}

.timeline strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--deep);
}

.price-card {
  display: grid;
  gap: 0.9rem;
}

.price-value {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.96;
  color: var(--deep);
}

.price-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 245, 0.72);
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

tr:last-child td {
  border-bottom: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.95rem;
  padding: 1.05rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 251, 245, 0.72);
}

.contact-card__icon {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 36, 29, 0.08);
  color: var(--deep);
  flex-shrink: 0;
}

.contact-card__text {
  display: grid;
  gap: 0.32rem;
  min-width: 0;
}

.contact-card span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}

.contact-card strong {
  font-size: 1.05rem;
  color: var(--deep);
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-card--accent {
  border-color: rgba(185, 150, 95, 0.26);
  background: rgba(255, 251, 245, 0.84);
}

.contact-card--accent .contact-card__icon {
  background: rgba(185, 150, 95, 0.18);
  color: var(--night);
}

.contact-card__icon--whatsapp {
  background: #25d366;
  color: #fff;
}

.contact-card__icon--instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 42%, #8134af 72%, #515bd4);
  color: #fff;
}

.contact-card__icon--phone,
.contact-card__icon--email,
.contact-card__icon--location,
.contact-card__icon--docs {
  background: rgba(16, 36, 29, 0.08);
  color: var(--deep);
}

.contact-layout .contact-cards {
  grid-template-columns: 1fr;
}

.contact-note-media {
  margin-top: 1.05rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 13.5rem;
  background: var(--deep);
}

.contact-note-media img {
  width: 100%;
  height: 100%;
  min-height: 13.5rem;
  object-fit: cover;
  object-position: center 42%;
}

.form-shell {
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 23, 19, 0.88);
  color: var(--white);
  box-shadow: var(--shadow);
}

.form-shell h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 0 0 0.9rem;
  font-weight: 500;
  line-height: 0.98;
}

.form-shell p {
  margin: 0 0 1.25rem;
  color: rgba(255, 247, 237, 0.78);
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 0.45rem;
}

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

.field--hidden {
  position: absolute;
  left: -9999px;
}

.field label,
.field legend {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 247, 237, 0.82);
}

.input,
.select,
.textarea {
  padding: 0.95rem 1rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.input::placeholder,
.textarea::placeholder {
  color: rgba(255, 247, 237, 0.48);
}

.select option {
  color: var(--night);
}

.textarea {
  min-height: 10rem;
  resize: vertical;
}

.field--consent label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.92rem;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 247, 237, 0.8);
}

.field--consent input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.form-status {
  display: none;
  margin: 0 0 1rem;
  padding: 0.95rem 1rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.form-status.is-visible {
  display: block;
}

.form-status[data-tone="success"] {
  border-color: rgba(141, 185, 123, 0.35);
  background: rgba(141, 185, 123, 0.12);
}

.form-status[data-tone="warning"] {
  border-color: rgba(205, 169, 95, 0.3);
  background: rgba(205, 169, 95, 0.12);
}

.form-status[data-tone="error"] {
  border-color: rgba(196, 104, 104, 0.38);
  background: rgba(196, 104, 104, 0.12);
}

.embed-placeholder {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 251, 245, 0.72);
  align-content: start;
}

.embed-placeholder__frame {
  min-height: clamp(16rem, 30vw, 21rem);
  border-radius: 1rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 36, 29, 0.12), rgba(16, 36, 29, 0.28)),
    var(--embed-image) center center / cover no-repeat;
}

.embed-placeholder iframe {
  width: 100%;
  min-height: clamp(16rem, 30vw, 21rem);
  border: 0;
  border-radius: 1rem;
}

.visual-stack {
  display: grid;
  gap: 1rem;
}

.reviews-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(18rem, 1fr);
  gap: clamp(1.3rem, 3vw, 2.4rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 251, 245, 0.78);
  box-shadow: var(--shadow-soft);
}

.reviews-score {
  display: grid;
  gap: 0.75rem;
  align-content: center;
  min-height: 13rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top right, rgba(185, 150, 95, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(16, 36, 29, 0.96), rgba(11, 20, 17, 0.98));
  color: #fff7ed;
}

.reviews-stars {
  display: flex;
  gap: 0.18rem;
  color: #d8bd88;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: 0.04em;
}

.reviews-score strong {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 0.9;
}

.reviews-score span,
.reviews-copy p {
  color: var(--text-soft);
}

.reviews-score span {
  color: rgba(255, 247, 237, 0.78);
}

.reviews-copy {
  display: grid;
  gap: 1rem;
}

.reviews-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 0.98;
}

.reviews-copy p {
  margin: 0;
  max-width: 46rem;
}

.dossier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.dossier-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.3rem, 3vw, 1.8rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 251, 245, 0.78);
  box-shadow: var(--shadow-soft);
}

.dossier-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
}

.dossier-card p {
  margin: 0;
  color: var(--text-soft);
}

.download-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.download-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cta-panel {
  display: grid;
  gap: 1.2rem;
  justify-items: start;
}

.cta-panel .button {
  min-height: 2.9rem;
  padding-inline: 1.1rem;
}

.floating-actions,
.floating-translate {
  position: fixed;
  z-index: 90;
  display: grid;
  gap: 0.55rem;
}

.floating-actions {
  right: clamp(0.9rem, 2vw, 1.5rem);
  bottom: clamp(0.9rem, 2vw, 1.5rem);
}

.floating-translate {
  left: clamp(0.9rem, 2vw, 1.5rem);
  bottom: clamp(0.9rem, 2vw, 1.5rem);
}

.floating-action,
.translate-widget {
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(7, 13, 11, 0.18);
  backdrop-filter: blur(14px);
}

.floating-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  min-height: 0;
  padding: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  transition: transform 180ms ease, background-color 180ms ease;
}

.floating-action:hover,
.floating-action:focus-visible {
  transform: translateY(-2px);
}

.floating-action--instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 42%, #8134af 72%, #515bd4);
}

.floating-action--whatsapp {
  background: #25d366;
}

.floating-action__icon {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: transparent;
}

.translate-widget {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 0.32rem;
  background: rgba(255, 251, 245, 0.94);
  border: 1px solid rgba(16, 36, 29, 0.12);
}

.translate-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.52rem 0.72rem 0.52rem 0.55rem;
  border: 1px solid rgba(16, 36, 29, 0.12);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.94);
  color: var(--deep);
  box-shadow: var(--shadow);
}

.translate-toggle__icon {
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(16, 36, 29, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.translate-toggle__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.translate-current,
.translate-option {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 2.1rem;
  padding: 0.46rem 0.64rem;
  border: 0;
  border-radius: 999px;
  color: var(--deep);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  background: transparent;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.translate-current {
  border: 1px solid rgba(16, 36, 29, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.translate-current:hover,
.translate-current:focus-visible,
.translate-option:hover,
.translate-option:focus-visible,
.translate-option[aria-selected="true"] {
  background: rgba(172, 134, 59, 0.14);
  outline: none;
}

.translate-current:focus-visible,
.translate-option:focus-visible {
  box-shadow: 0 0 0 3px rgba(172, 134, 59, 0.24);
}

.translate-current:hover {
  transform: translateY(-1px);
}

.translate-flag {
  width: 18px;
  height: 12px;
  display: block;
  flex: 0 0 auto;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(16, 36, 29, 0.16), 0 1px 3px rgba(7, 13, 11, 0.12);
}

.translate-menu {
  position: absolute;
  left: 0;
  bottom: calc(100% + 0.45rem);
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.2rem;
  min-width: 8.6rem;
  padding: 0.32rem;
  border: 1px solid rgba(16, 36, 29, 0.12);
  border-radius: 1.2rem;
  background: rgba(255, 251, 245, 0.98);
  box-shadow: 0 18px 38px rgba(7, 13, 11, 0.18);
  backdrop-filter: blur(14px);
}

.translate-picker.is-picker-open .translate-menu {
  display: grid;
}

#google_translate_element {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

body {
  top: 0 !important;
}

.translated-ltr body,
.translated-rtl body,
html.translated-ltr,
html.translated-rtl {
  top: 0 !important;
}

.goog-te-banner-frame,
.goog-te-menu-frame,
.goog-te-balloon-frame,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
body > .skiptranslate,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame {
  height: 0 !important;
  display: none !important;
  visibility: hidden !important;
}

.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.site-footer {
  color: #f8f1e7;
  background:
    radial-gradient(circle at top left, rgba(185, 150, 95, 0.22), transparent 32%),
    linear-gradient(180deg, #0b1411, #050807);
}

.site-footer__inner {
  padding: clamp(3rem, 5vw, 4rem) 0 clamp(5.4rem, 7vw, 6.6rem);
  display: grid;
  gap: 2rem;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.7fr));
  gap: 1.5rem;
}

.site-footer__brand {
  display: grid;
  gap: 1rem;
}

.site-footer__brand img {
  width: min(15rem, 60vw);
  border-radius: 0.35rem;
}

.site-footer__column {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.site-footer__column h2 {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d8bd88;
}

.site-footer__column a,
.site-footer__column p,
.site-footer__brand p {
  margin: 0;
  color: rgba(255, 247, 237, 0.9);
}

.site-footer__column a {
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(216, 189, 136, 0.85);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.3rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.legal-prose {
  display: grid;
  gap: 1.4rem;
}

.legal-prose h1 {
  font-size: clamp(2.5rem, 4vw, 4.3rem);
}

.legal-prose h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.45rem);
}

.legal-prose p,
.legal-prose li {
  margin: 0;
  color: var(--text-soft);
}

.legal-prose ul {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.65rem;
}

.legal-note {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(185, 150, 95, 0.28);
  background: rgba(185, 150, 95, 0.08);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.55rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(16, 36, 29, 0.06);
  border: 1px solid var(--line);
  color: var(--deep);
  font-size: 0.88rem;
  font-weight: 700;
}

.page-hero {
  position: relative;
  min-height: 34rem;
  color: var(--white);
  display: grid;
  align-items: end;
  background: var(--night);
  overflow: hidden;
  isolation: isolate;
}

.page-hero--compact {
  min-height: 29rem;
}

.page-hero__panel {
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 247, 237, 0.08);
}

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

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

@keyframes hero-drift {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    position: fixed;
    inset: 5.45rem 1rem auto;
    padding: 1.2rem;
    border-radius: 1.2rem;
    background: rgba(11, 20, 17, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 0.9rem;
    transform: translateY(-1rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.nav-open .site-nav {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero__inner,
  .page-hero__inner,
  .editorial-grid,
  .finca-layout,
  .story-layout,
  .contact-layout,
  .reserve-layout,
  .reviews-panel,
  .page-grid,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .authority-band__inner,
  .stat-grid,
  .story-grid,
  .detail-grid,
  .price-grid,
  .contact-cards,
  .dossier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__copy h1 {
    font-size: clamp(3.2rem, 10vw, 5.4rem);
  }
}

@media (max-width: 820px) {
  .home-hero {
    --hero-position: 58% 45% !important;
  }

  .experience-hero {
    --hero-position: 24% 44% !important;
  }

  .collaborators-hero {
    --hero-position: 56% 48% !important;
  }

  .mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .mosaic-tile,
  .mosaic-tile--tall,
  .mosaic-tile--wide,
  .mosaic-tile--medium,
  .mosaic-tile--square {
    grid-column: auto;
    grid-row: auto;
    min-height: 20rem;
  }

  .authority-band__inner,
  .stat-grid,
  .story-grid,
  .detail-grid,
  .price-grid,
  .contact-cards,
  .form-grid,
  .dossier-grid {
    grid-template-columns: 1fr;
  }

  .authority-band__item {
    min-height: auto;
    padding-right: 2.35rem;
  }

  .page-hero,
  .hero {
    min-height: auto;
  }

  .hero__inner,
  .page-hero__inner {
    padding-top: 6.8rem;
  }

  .image-frame--portrait {
    min-height: 24rem;
  }
}

@media (max-width: 580px) {
  .container,
  .site-header__inner,
  .hero__inner,
  .page-hero__inner,
  .site-footer__inner,
  .authority-band__inner {
    width: min(calc(100vw - 2rem), var(--max));
  }

  .brand img {
    width: min(12.5rem, 50vw);
  }

  .button-row,
  .form-actions,
  .site-footer__bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .eyebrow,
  .section-index,
  .meta-pill,
  .hero-tag,
  .inline-label {
    gap: 0.55rem;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .eyebrow::before,
  .section-index::before,
  .inline-label::before {
    width: 1.45rem;
  }

  .button,
  .button--small {
    width: 100%;
  }

  .button-row--compact {
    flex-direction: row;
    align-items: center;
  }

  .button-row--compact .button,
  .button-row--compact .button--small {
    width: auto;
    max-width: 100%;
  }

  .floating-actions {
    right: 0.75rem;
    left: auto;
    bottom: 0.75rem;
  }

  .floating-action {
    width: 2.85rem;
    height: 2.85rem;
    padding: 0;
  }

  .floating-action__icon {
    width: 2.15rem;
    height: 2.15rem;
  }

  .floating-translate {
    left: 0.75rem;
    bottom: 0.75rem;
    max-width: calc(100vw - 5.5rem);
  }

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

  .floating-translate .translate-widget {
    display: none;
    min-width: 0;
  }

  .floating-translate.is-open .translate-widget {
    display: inline-flex;
  }

  .translate-widget {
    min-width: 0;
    padding: 0.32rem;
  }

  .translate-toggle__label {
    display: none;
  }

  .hero__copy {
    max-width: 22rem;
  }

  .hero__subtitle,
  .hero__lede {
    max-width: 21rem;
  }

  .hero__subtitle,
  .hero__lede,
  .page-hero__copy p {
    font-size: 1rem;
  }
}
