:root {
  --cream: #efe7d5;
  --cream-soft: #f6f1e4;
  --paper: #faf8f2;
  --warm: #f3ead8;
  --navy: #1f2536;
  --navy-soft: #2a3247;
  --gold: #c4a574;
  --gold-deep: #a88a5c;
  --muted: #8a8273;
  --ink-soft: #5f5a4e;
  --border: rgba(31, 37, 54, 0.12);
  --shadow: 0 18px 45px rgba(31, 37, 54, 0.12);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(196, 165, 116, 0.16), transparent 32rem),
    var(--paper);
  color: var(--navy);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  height: 70px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 16px 0 22px;
  border: 1px solid rgba(239, 231, 213, 0.3);
  border-radius: 999px;
  background: rgba(31, 37, 54, 0.82);
  color: var(--cream);
  box-shadow: 0 16px 36px rgba(22, 27, 41, 0.28);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, top 180ms ease, height 180ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  height: 62px;
  background: rgba(31, 37, 54, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 8px 16px;
  border: 1px solid rgba(196, 165, 116, 0.22);
  border-radius: 999px;
  background: var(--cream);
}

.brand img {
  width: 168px;
  height: auto;
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(239, 231, 213, 0.78);
  font-size: 13px;
  font-weight: 600;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover {
  color: var(--cream);
  background: rgba(239, 231, 213, 0.08);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.menu-toggle span {
  width: 17px;
  height: 2px;
  display: block;
  background: var(--gold);
  border-radius: 999px;
}

.menu-toggle em {
  margin-left: 6px;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 140px max(28px, calc((100vw - 1180px) / 2)) 54px;
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(22, 27, 41, 0.92) 0%, rgba(22, 27, 41, 0.58) 42%, rgba(22, 27, 41, 0.2) 100%),
    linear-gradient(0deg, rgba(22, 27, 41, 0.82), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(56px, 8vw, 118px);
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(239, 231, 213, 0.82);
  font-size: clamp(17px, 1.7vw, 22px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(196, 165, 116, 0.24);
}

.btn-light {
  color: var(--cream);
  border-color: rgba(239, 231, 213, 0.35);
  background: rgba(239, 231, 213, 0.08);
}

.btn-navy {
  color: var(--cream);
  background: var(--navy);
}

.btn-line {
  border-color: var(--border);
  color: var(--navy);
  background: transparent;
}

.hero-card {
  position: absolute;
  right: max(28px, calc((100vw - 1180px) / 2));
  bottom: 56px;
  z-index: 2;
  width: min(340px, calc(100% - 56px));
  padding: 24px;
  border: 1px solid rgba(239, 231, 213, 0.2);
  border-radius: 18px;
  background: rgba(250, 248, 242, 0.13);
  backdrop-filter: blur(16px);
}

.hero-card span {
  display: block;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
}

.hero-card p {
  margin: 12px 0 0;
  color: rgba(239, 231, 213, 0.76);
  font-size: 13px;
}

.section {
  padding: 100px max(28px, calc((100vw - 1180px) / 2));
}

.intro-grid,
.section-head,
.island-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.section h2 {
  font-size: clamp(42px, 5.2vw, 76px);
}

.intro-copy {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 17px;
}

.intro-copy p {
  margin: 0 0 18px;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.values article,
.services-grid article,
.apartment-card,
.contact-card,
.contact-note,
.video-section {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 2px rgba(31, 37, 54, 0.04);
}

.values article {
  padding: 26px;
}

.values span,
.services-grid span,
.tag {
  color: var(--gold-deep);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.values h3,
.services-grid h3,
.apartment-card h3 {
  margin: 16px 0 8px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
}

.values p,
.services-grid p,
.section-head > p,
.video-section p,
.contact-card p {
  color: var(--ink-soft);
}

.routes-section,
.apartments-section,
.services-section,
.island-guide-section,
.island-layers-section,
.experiences-section {
  background: var(--cream-soft);
}

.section-head {
  margin-bottom: 44px;
}

.section-head.compact {
  display: block;
  max-width: 650px;
}

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

.routes-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid rgba(196, 165, 116, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.routes-grid article:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(31, 37, 54, 0.96), rgba(42, 50, 71, 0.9));
  color: var(--cream);
}

.routes-grid span,
.trust-badges span {
  color: var(--gold-deep);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.routes-grid article:nth-child(2) span,
.routes-grid article:nth-child(2) p,
.routes-grid article:nth-child(2) a {
  color: var(--gold);
}

.routes-grid h3 {
  margin: 46px 0 12px;
  font-family: var(--display);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

.routes-grid p {
  margin: 0 0 22px;
  color: var(--ink-soft);
}

.routes-grid a {
  align-self: flex-start;
  color: var(--navy);
  font-weight: 800;
  border-bottom: 1px solid var(--gold);
}

.apartment-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.apartment-card {
  overflow: hidden;
}

.apartment-profile {
  transition: box-shadow 240ms ease, transform 240ms ease;
}

.apartment-profile[open] {
  box-shadow: var(--shadow);
}

.apartment-summary {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  min-height: 330px;
  cursor: pointer;
  list-style: none;
}

.apartment-summary::-webkit-details-marker {
  display: none;
}

.apartment-image {
  aspect-ratio: 1.06;
  overflow: hidden;
  background: var(--navy);
}

.apartment-profile .apartment-image {
  aspect-ratio: auto;
  min-height: 330px;
}

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

.apartment-card:hover .apartment-image img {
  transform: scale(1.045);
}

.apartment-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.apartment-body p {
  color: var(--ink-soft);
}

.apartment-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.apartment-body li {
  padding: 6px 10px;
  border: 1px solid rgba(196, 165, 116, 0.28);
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(196, 165, 116, 0.08);
  font-size: 12px;
  font-weight: 600;
}

.apartment-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0 18px;
}

.apartment-specs span {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 10px;
  border: 1px solid rgba(31, 37, 54, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink-soft);
  font-size: 12px;
  text-align: center;
}

.apartment-specs strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.apartment-body a {
  color: var(--navy);
  font-weight: 800;
  border-bottom: 1px solid var(--gold);
}

.apartment-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 2px 0 22px;
}

.apartment-meta span {
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(196, 165, 116, 0.2);
  border-radius: 12px;
  background: rgba(250, 248, 242, 0.7);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.35;
}

.apartment-meta strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -6px 0 20px;
}

.trust-badges span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(31, 37, 54, 0.06);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
}

.expand-label {
  align-self: flex-start;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
}

.apartment-profile[open] .expand-label {
  color: var(--gold-deep);
}

.apartment-profile[open] .expand-label::before {
  content: "Cerrar / ";
}

.apartment-detail {
  padding: 28px 30px 32px;
  border-top: 1px solid rgba(31, 37, 54, 0.08);
  background:
    linear-gradient(135deg, rgba(250, 248, 242, 0.86), rgba(239, 231, 213, 0.48)),
    var(--warm);
}

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

.detail-block {
  padding: 18px;
  border: 1px solid rgba(196, 165, 116, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.52);
}

.detail-block h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
}

.detail-block p,
.detail-list {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.detail-list {
  padding-left: 18px;
}

.detail-list li + li {
  margin-top: 6px;
}

.apartment-photos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.apartment-photos button {
  min-height: 148px;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
}

.apartment-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease, opacity 240ms ease;
}

.apartment-photos button:hover img {
  opacity: 0.92;
  transform: scale(1.04);
}

.detail-cta {
  display: inline-flex;
  margin-top: 22px;
  color: var(--navy);
  font-weight: 800;
  border-bottom: 1px solid var(--gold);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.amenity-list span {
  padding: 8px 11px;
  border: 1px solid rgba(31, 37, 54, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 700;
}

.photo-switcher {
  margin-top: 20px;
}

.photo-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: var(--navy);
  cursor: zoom-in;
}

.photo-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 360ms ease;
}

.photo-stage:hover img {
  transform: scale(1.018);
}

.photo-controls {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.photo-controls button {
  width: 48px;
  height: 42px;
  border: 1px solid rgba(31, 37, 54, 0.12);
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.photo-controls button:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

.photo-controls span {
  color: var(--gold-deep);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.island-section {
  align-items: stretch;
}

.island-story {
  min-height: 520px;
  padding: 48px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(196, 165, 116, 0.22), transparent 28rem),
    var(--navy);
  color: var(--cream);
}

.island-story h2 {
  color: var(--cream);
}

.island-story p {
  max-width: 590px;
  color: rgba(239, 231, 213, 0.78);
  font-size: 17px;
}

.island-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.island-points span {
  padding: 8px 12px;
  border: 1px solid rgba(239, 231, 213, 0.18);
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.island-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-auto-rows: 168px;
  gap: 14px;
}

.island-photo {
  position: relative;
  min-height: 168px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--navy);
}

.island-photo-large {
  grid-row: span 2;
}

.island-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 420ms ease;
}

.island-photo:hover img {
  transform: scale(1.035);
}

.island-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(22, 27, 41, 0.62));
}

.island-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.island-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.island-guide-grid article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 2px rgba(31, 37, 54, 0.04);
}

.island-guide-grid article:first-child,
.island-guide-grid article:nth-child(8) {
  background:
    linear-gradient(180deg, rgba(31, 37, 54, 0.92), rgba(42, 50, 71, 0.92));
  color: var(--cream);
}

.island-guide-grid article:first-child h3,
.island-guide-grid article:nth-child(8) h3 {
  color: var(--cream);
}

.island-guide-grid article:first-child p,
.island-guide-grid article:nth-child(8) p {
  color: rgba(239, 231, 213, 0.78);
}

.island-guide-grid span {
  color: var(--gold-deep);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.island-guide-grid h3 {
  margin: 24px 0 10px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 500;
}

.island-guide-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.island-guide-grid em,
.experience-card em {
  display: block;
  margin-top: 18px;
  color: var(--gold-deep);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.island-guide-grid article:first-child em,
.island-guide-grid article:nth-child(8) em {
  color: var(--gold);
}

.island-map-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(196, 165, 116, 0.24);
  border-radius: 22px;
  background: var(--paper);
}

.island-map-panel h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.island-map-panel p {
  margin: 0;
  color: var(--ink-soft);
}

.emotional-map {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(196, 165, 116, 0.22);
  border-radius: 20px;
  background: var(--cream);
  box-shadow: 0 18px 45px rgba(31, 37, 54, 0.1);
}

.emotional-map img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
}

.island-layers-section {
  padding-top: 0;
}

.layers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.layers-grid article {
  min-height: 310px;
  padding: 24px;
  border: 1px solid rgba(196, 165, 116, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(250, 248, 242, 0.78));
}

.layers-grid span {
  color: var(--gold-deep);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.layers-grid h3 {
  margin: 54px 0 12px;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
}

.layers-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.experiences-section {
  padding-top: 0;
}

.experience-hero {
  max-width: 860px;
  margin-bottom: 34px;
}

.experience-hero h2 {
  max-width: 760px;
}

.experience-hero p {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 17px;
}

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

.experience-card {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.featured-experience {
  grid-column: span 2;
  background:
    linear-gradient(120deg, rgba(31, 37, 54, 0.96), rgba(42, 50, 71, 0.88)),
    var(--navy);
  color: var(--cream);
}

.experience-card span {
  color: var(--gold-deep);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.featured-experience span,
.featured-experience em {
  color: var(--gold);
}

.experience-card h3 {
  margin: 58px 0 12px;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.experience-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.featured-experience p {
  max-width: 620px;
  color: rgba(239, 231, 213, 0.76);
}

.experience-footer {
  display: grid;
  grid-template-columns: 0.7fr 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(196, 165, 116, 0.26);
  border-radius: 18px;
  background: var(--paper);
}

.experience-footer strong {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.experience-footer p {
  margin: 0;
  color: var(--ink-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.services-grid article {
  padding: 24px;
}

.owner-section {
  padding-top: 0;
  background: var(--cream-soft);
}

.owner-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  padding: 48px;
  border: 1px solid rgba(196, 165, 116, 0.26);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(31, 37, 54, 0.96), rgba(42, 50, 71, 0.94)),
    var(--navy);
  color: var(--cream);
}

.owner-panel h2 {
  color: var(--cream);
}

.owner-copy p {
  margin: 0 0 18px;
  color: rgba(239, 231, 213, 0.76);
  font-size: 16px;
}

.owner-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.owner-list span {
  padding: 10px 12px;
  border: 1px solid rgba(239, 231, 213, 0.16);
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.owner-panel .detail-cta {
  color: var(--cream);
}

.gallery-section {
  background: var(--paper);
}

.mosaic {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr;
  grid-auto-rows: 210px;
  gap: 14px;
}

.mosaic button {
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: var(--navy);
  cursor: zoom-in;
}

.mosaic button:first-child {
  grid-row: span 2;
}

.mosaic button:nth-child(4) {
  grid-column: span 2;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease, opacity 360ms ease;
}

.mosaic button:hover img {
  transform: scale(1.04);
  opacity: 0.9;
}

.video-section {
  margin: 0 max(28px, calc((100vw - 1180px) / 2)) 100px;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(239, 231, 213, 0.88), rgba(255, 255, 255, 0.8));
}

.video-head {
  max-width: 760px;
}

.video-head p:last-child {
  color: var(--ink-soft);
}

.video-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.video-strip article {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--paper);
}

.video-strip video {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  background: var(--navy);
}

.video-strip span {
  display: block;
  margin: 18px 18px 0;
  color: var(--gold-deep);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.video-strip h3 {
  margin: 8px 18px 20px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.contact-section {
  padding-top: 0;
  align-items: stretch;
}

.contact-card {
  padding: 48px;
  background: var(--navy);
  color: var(--cream);
}

.contact-card h2 {
  color: var(--cream);
}

.contact-card p {
  max-width: 620px;
  color: rgba(239, 231, 213, 0.72);
  font-size: 17px;
}

.contact-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px;
  padding: 42px;
  text-align: center;
  background: var(--cream);
}

.contact-note img {
  width: min(280px, 80%);
}

.contact-note p {
  margin: 0;
  color: var(--gold-deep);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer {
  padding: 58px max(28px, calc((100vw - 1180px) / 2)) 28px;
  background:
    radial-gradient(circle at top left, rgba(196, 165, 116, 0.18), transparent 28rem),
    var(--navy);
  color: var(--cream);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.7fr));
  gap: 44px;
  align-items: start;
}

.footer-brand a:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(270px, 100%);
  padding: 12px 18px;
  border: 1px solid rgba(196, 165, 116, 0.24);
  border-radius: 999px;
  background: var(--cream);
}

.footer-brand img {
  width: 220px;
}

.footer-brand p {
  max-width: 390px;
  margin: 24px 0 0;
  color: rgba(239, 231, 213, 0.76);
  font-size: 16px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  padding: 8px 12px;
  border: 1px solid rgba(239, 231, 213, 0.18);
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(239, 231, 213, 0.72);
  font-size: 14px;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column a:hover {
  color: var(--cream);
  transform: translateX(2px);
}

.footer-contact a:first-of-type {
  color: var(--cream);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(239, 231, 213, 0.14);
  color: rgba(239, 231, 213, 0.5);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.made-in-venezuela {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(239, 231, 213, 0.72);
}

.venezuela-flag {
  position: relative;
  width: 21px;
  height: 14px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(239, 231, 213, 0.18);
  background:
    linear-gradient(
      to bottom,
      #f4c542 0 33.333%,
      #214b9b 33.333% 66.666%,
      #c92b2b 66.666% 100%
    );
}

.venezuela-flag::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    -6px 0 rgba(255, 255, 255, 0.86),
    -3px 0 rgba(255, 255, 255, 0.88),
    3px 0 rgba(255, 255, 255, 0.88),
    6px 0 rgba(255, 255, 255, 0.86);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 14px 32px rgba(31, 37, 54, 0.22);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(22, 27, 41, 0.86);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(239, 231, 213, 0.2);
  border-radius: 50%;
  background: rgba(239, 231, 213, 0.08);
  color: var(--cream);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 22px;
  }

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

  .site-nav {
    position: fixed;
    top: 86px;
    left: 10px;
    right: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 18px;
    background: rgba(31, 37, 54, 0.97);
    box-shadow: var(--shadow);
  }

  body.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 860px;
    padding-top: 126px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 36px;
  }

  .intro-grid,
  .section-head,
  .island-section,
  .contact-section,
  .video-section,
  .owner-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .values,
  .routes-grid,
  .apartment-list,
  .services-grid,
  .island-guide-grid,
  .experience-grid,
  .video-strip {
    grid-template-columns: 1fr;
  }

  .featured-experience {
    grid-column: span 1;
  }

  .apartment-summary {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .apartment-profile .apartment-image {
    min-height: 260px;
  }

  .apartment-meta,
  .detail-grid,
  .layers-grid {
    grid-template-columns: 1fr;
  }

  .apartment-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-footer {
    grid-template-columns: 1fr;
  }

  .island-map-panel {
    grid-template-columns: 1fr;
  }

  .apartment-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .island-gallery {
    grid-auto-rows: 220px;
  }

  .mosaic button:first-child,
  .mosaic button:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 34px 28px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 126px;
  }

  .brand {
    min-width: 148px;
    padding: 7px 12px;
  }

  .section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-copy,
  .intro-copy,
  .contact-card p {
    font-size: 15px;
  }

  .island-story,
  .island-map-panel,
  .contact-card,
  .contact-note,
  .video-section,
  .owner-panel {
    padding: 28px;
  }

  .owner-list {
    grid-template-columns: 1fr;
  }

  .emotional-map img {
    min-height: 220px;
  }

  .apartment-specs {
    grid-template-columns: 1fr 1fr;
  }

  .apartment-body,
  .apartment-detail {
    padding: 22px;
  }

  .apartment-photos {
    grid-template-columns: 1fr;
  }

  .apartment-photos button {
    min-height: 220px;
  }

  .footer {
    padding-top: 44px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

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

  .island-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .island-photo-large {
    grid-row: span 1;
  }

  .mosaic button:first-child,
  .mosaic button:nth-child(4) {
    grid-column: span 1;
  }
}
