:root {
  --bg: #f7f7f3;
  --ink: #1f3133;
  --muted: #687573;
  --aqua: #dbe8e5;
  --stone: #d6d2ca;
  --gold: #c5a56a;
  --white: #ffffff;
  --line: rgba(31, 49, 51, 0.14);
  --shadow: 0 26px 70px rgba(31, 49, 51, 0.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Plus Jakarta Sans", Arial, sans-serif;
}

html[lang="el"] {
  --serif: "Noto Serif Display", Georgia, serif;
  --sans: "Noto Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal-lift {
  transform: translateY(44px) scale(0.985);
  transition-duration: 900ms;
}

.reveal-on-scroll.reveal-slide {
  transform: translateX(-34px);
  transition-duration: 860ms;
}

.reveal-on-scroll.reveal-pop {
  transform: translateY(34px) scale(0.96);
  transition-duration: 820ms;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 58px);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.solid {
  background: rgba(247, 247, 243, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 35px rgba(31, 49, 51, 0.08);
  backdrop-filter: blur(16px);
  padding-top: 6px;
  padding-bottom: 6px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 136px;
  object-fit: contain;
  transition: width 220ms ease, height 220ms ease;
}

.site-header.is-scrolled .brand img,
.site-header.solid .brand img {
  width: 82px;
  height: 65px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--gold);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.language-switcher button {
  min-width: 34px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
}

.language-switcher button.active {
  background: var(--gold);
  color: #101817;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--gold);
  color: #101817;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #d0b67b;
}

.btn.ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

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

.hero {
  min-height: 94vh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 168px clamp(20px, 5vw, 72px) 56px;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 29, 31, 0.78), rgba(18, 29, 31, 0.2) 54%, rgba(18, 29, 31, 0.04));
  z-index: 1;
}

.hero-image,
.page-hero .hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1;
  font-weight: 700;
  margin: 0;
}

h1 {
  font-size: clamp(52px, 8vw, 112px);
  max-width: 820px;
}

h2 {
  font-size: clamp(38px, 5vw, 72px);
}

h3 {
  font-size: clamp(28px, 3vw, 44px);
}

p {
  margin: 0;
}

.hero p {
  margin-top: 22px;
  max-width: 650px;
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.quick-panel {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 44px;
  z-index: 3;
  width: min(390px, 34vw);
  padding: 22px;
  background: rgba(247, 247, 243, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.quick-panel strong {
  display: block;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.1;
  margin-bottom: 14px;
}

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

.quick-grid span {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.quick-grid b {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.section {
  padding: clamp(74px, 10vw, 140px) clamp(20px, 5vw, 72px);
}

.section.tight {
  padding-top: clamp(45px, 7vw, 86px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.section-text {
  max-width: 660px;
}

.section-text p {
  margin-top: 22px;
  color: var(--muted);
}

.media-frame {
  overflow: hidden;
  background: var(--stone);
  box-shadow: var(--shadow);
}

.media-frame.tall {
  aspect-ratio: 4 / 5;
}

.media-frame.wide {
  aspect-ratio: 16 / 10;
}

.staggered-media {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
  align-items: end;
}

.staggered-media .media-frame:first-child {
  aspect-ratio: 4 / 5;
}

.staggered-media .media-frame:last-child {
  aspect-ratio: 3 / 4;
  margin-bottom: 52px;
}

.highlight-band {
  background: var(--ink);
  color: var(--white);
}

.highlight-band .section-text p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.16);
}

.feature {
  min-height: 220px;
  padding: 30px;
  background: var(--ink);
}

.feature-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 46px;
  background: rgba(255, 255, 255, 0.16);
}

.feature-photo-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature h3 {
  font-size: 26px;
  margin-bottom: 18px;
}

.feature p {
  color: rgba(255, 255, 255, 0.68);
}

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

.fact {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.fact:last-child {
  border-right: 0;
}

.fact b {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.fact span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.image-rail {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
  margin-top: 48px;
}

.image-rail .media-frame {
  aspect-ratio: 4 / 5;
}

.image-rail .media-frame:nth-child(2) {
  margin-top: 60px;
}

.image-rail .media-frame:nth-child(3) {
  aspect-ratio: 4 / 3;
}

.aqua-panel {
  background: var(--aqua);
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.list-grid span,
.note-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(31, 49, 51, 0.16);
  color: var(--muted);
}

.gallery-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gallery-preview .media-frame {
  aspect-ratio: 1 / 1;
}

.gallery-preview .media-frame:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
}

.map-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background: var(--ink);
  color: var(--white);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location-panel .map-card {
  background: linear-gradient(180deg, rgba(18, 29, 31, 0.18), rgba(18, 29, 31, 0.78)), var(--map-image) center / cover;
}

.map-card h3 {
  font-size: 38px;
}

.map-card p {
  color: rgba(255, 255, 255, 0.68);
}

.cta-section {
  text-align: center;
  background: var(--stone);
}

.cta-section .section-text {
  margin: 0 auto;
}

.cta-section .btn {
  margin-top: 30px;
}

.page-hero {
  min-height: 62vh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 172px clamp(20px, 5vw, 72px) 52px;
  color: var(--white);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(18, 29, 31, 0.76), rgba(18, 29, 31, 0.18));
}

.page-hero .hero-content {
  max-width: 880px;
}

.page-hero p {
  margin-top: 20px;
  max-width: 720px;
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.84);
}

.villa-snapshot {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 30px clamp(20px, 5vw, 72px) 0;
  background: var(--line);
  box-shadow: var(--shadow);
}

.snapshot-item {
  min-height: 128px;
  padding: 26px;
  background: var(--white);
}

.snapshot-item b {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
}

.snapshot-item span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.text-columns {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.amenity-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 50px;
  background: var(--line);
}

.amenity-card {
  min-height: 285px;
  background: var(--white);
}

.amenity-card .media-frame {
  aspect-ratio: 16 / 10;
  box-shadow: none;
}

.amenity-card-content {
  padding: 30px;
}

.amenity-card h3 {
  font-size: 30px;
  margin-bottom: 18px;
}

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

.amenity-card li {
  position: relative;
  padding: 10px 0 10px 22px;
  color: var(--muted);
  border-bottom: 1px solid rgba(31, 49, 51, 0.1);
}

.amenity-card li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
}

.amenities-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: end;
}

.amenities-intro .media-frame {
  aspect-ratio: 16 / 11;
}

.amenity-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.amenity-feature.reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.amenity-feature.reverse .section-text {
  order: 2;
}

.amenity-feature.reverse .media-frame {
  order: 1;
}

.amenity-feature .media-frame {
  aspect-ratio: 16 / 11;
}

.amenity-detail-list {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.amenity-detail-list > span {
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) minmax(0, 1fr);
  column-gap: 26px;
  align-items: start;
  padding: 18px 20px;
  background: var(--white);
  color: var(--muted);
}

.amenity-detail-list b {
  color: var(--ink);
}

.amenity-detail-text {
  min-width: 0;
}

.amenities-band {
  background: var(--ink);
  color: var(--white);
}

.amenities-band .amenity-card {
  background: #172628;
}

.amenities-band .amenity-card h3 {
  padding: 28px 30px 18px;
  color: var(--white);
}

.amenities-band .amenity-card li {
  padding: 12px 30px 12px 52px;
  border-color: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.7);
}

.amenities-band .amenity-card li::before {
  left: 30px;
}

.amenities-band .section-text p {
  color: rgba(255, 255, 255, 0.72);
}

.amenity-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.14);
}

.amenity-group {
  min-height: 360px;
  padding: 28px;
  background: #172628;
}

.amenity-group-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.amenity-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(197, 165, 106, 0.48);
  border-radius: 50%;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.amenity-group h3 {
  font-size: 25px;
  color: var(--white);
}

.amenity-group ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.amenity-group li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.amenity-group li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
}

.essentials-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: var(--line);
}

.essential {
  min-height: 190px;
  padding: 26px;
  background: var(--white);
}

.essential h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.essential p {
  color: var(--muted);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.area-card {
  background: var(--white);
  box-shadow: 0 20px 48px rgba(31, 49, 51, 0.08);
}

.area-card .media-frame {
  aspect-ratio: 4 / 3;
  box-shadow: none;
}

.area-card div:last-child {
  padding: 26px;
}

.area-card h3 {
  font-size: 30px;
}

.area-card p {
  margin-top: 12px;
  color: var(--muted);
}

.area-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.area-feature .media-frame {
  aspect-ratio: 16 / 11;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
}

.area-list span {
  padding: 18px 20px;
  background: var(--white);
  color: var(--muted);
}

.area-list b {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.route-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 1px;
  margin-top: 46px;
  background: rgba(255, 255, 255, 0.16);
}

.route-panel .map-card {
  min-height: 420px;
}

.route-list {
  display: grid;
  background: var(--line);
}

.route-list span {
  display: flex;
  gap: 20px;
  padding: 20px 24px;
  background: var(--white);
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.route-list b {
  flex: 0 0 170px;
  color: var(--ink);
}

.suite-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.bathroom-panel {
  padding: 30px;
  background: var(--ink);
  color: var(--white);
}

.bathroom-panel h3 {
  font-size: 34px;
  margin-bottom: 18px;
}

.bathroom-panel p,
.bathroom-panel li {
  color: rgba(255, 255, 255, 0.72);
}

.bathroom-panel ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.bathroom-panel li {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.outdoor-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.outdoor-showcase .media-frame {
  min-height: 620px;
  box-shadow: none;
}

.outdoor-copy {
  padding: clamp(32px, 5vw, 64px);
  background: var(--ink);
}

.outdoor-copy .list-grid span {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 46px;
}

.mini-gallery .media-frame {
  aspect-ratio: 4 / 3;
  box-shadow: none;
}

.mini-gallery .media-frame:first-child {
  grid-column: span 2;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.room-card {
  background: var(--white);
  box-shadow: 0 20px 48px rgba(31, 49, 51, 0.08);
}

.room-card .media-frame {
  aspect-ratio: 4 / 3;
  box-shadow: none;
}

.room-card div:last-child {
  padding: 26px;
}

.room-card h3 {
  font-size: 28px;
}

.room-card p {
  margin-top: 12px;
  color: var(--muted);
}

.note-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.booking-summary {
  position: sticky;
  top: 110px;
}

.booking-summary .media-frame {
  aspect-ratio: 4 / 5;
  margin-bottom: 28px;
}

.booking-summary .quick-grid {
  margin-top: 24px;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

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

.field.honeypot {
  display: none;
}

.field label {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fbfbf8;
  color: var(--ink);
  font: 500 15px/1.4 var(--sans);
  padding: 15px 14px;
  outline: none;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 165, 106, 0.16);
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.success-message {
  display: none;
  padding: 16px 18px;
  background: var(--aqua);
  color: var(--ink);
  font-weight: 700;
}

.success-message.visible {
  display: block;
}

.success-message.error {
  background: #f7ded8;
}

.contact-map {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-map iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  background: var(--stone);
}

.consent-embed {
  min-height: 380px;
  background: var(--stone);
}

.consent-embed iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
}

.consent-embed-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  min-height: 380px;
  padding: 30px;
  text-align: center;
  background: #f4f1ea;
}

.consent-embed-placeholder h3 {
  margin: 0;
  font-size: 28px;
}

.consent-embed-placeholder p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.static-map-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1fr);
  min-height: 380px;
  background: #f4f1ea;
  overflow: hidden;
}

.static-map-art {
  position: relative;
  display: block;
  min-height: 380px;
  background: #e6eee7;
  color: inherit;
  overflow: hidden;
}

.static-map-art img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform 320ms ease;
}

.static-map-art:hover img,
.static-map-art:focus-visible img {
  transform: scale(1.025);
}

.static-map-art:focus-visible {
  outline: 3px solid rgba(197, 165, 106, 0.72);
  outline-offset: -3px;
}

.static-map-content {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
}

.static-map-content h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.static-map-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.static-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.direct-contact-section {
  display: grid;
  gap: 30px;
}

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

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, background 180ms ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  background: #fbfbf8;
}

.contact-link svg {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: var(--gold);
  fill: currentColor;
}

.contact-link span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.contact-link b {
  font-size: 14px;
  line-height: 1.1;
}

.contact-link small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.gallery-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 11px 16px;
  font: 800 13px/1 var(--sans);
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

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

.gallery-item {
  position: relative;
  min-height: 220px;
  aspect-ratio: 1 / 1;
  border: 0;
  padding: 0;
  background: var(--stone);
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  transition: transform 360ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item::after {
  content: attr(data-title);
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  background: rgba(31, 49, 51, 0.74);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

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

.lightbox.open {
  display: flex;
}

.lightbox img {
  width: auto;
  max-width: min(1120px, 88vw);
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.lightbox button {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 26px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  font-size: 32px;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-caption {
  position: absolute;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  padding: 0 clamp(20px, 5vw, 72px);
  background: #172628;
  color: rgba(255, 255, 255, 0.7);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(180px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  padding: clamp(46px, 6vw, 72px) 0 34px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.footer-brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.footer-brand-block p {
  max-width: 260px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.7;
}

.footer-title {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.footer-links,
.footer-contact-primary {
  display: grid;
  gap: 12px;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.footer-links a:hover,
.footer-contact-primary a:hover {
  color: var(--white);
}

.footer-contact-primary a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-contact a:hover {
  border-color: rgba(197, 165, 106, 0.72);
  background: rgba(197, 165, 106, 0.1);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-contact svg {
  width: 19px;
  height: 19px;
  color: var(--gold);
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.52);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-legal-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.footer-legal-links span {
  color: rgba(255, 255, 255, 0.28);
}

.footer-legal-links a {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.58);
}

.footer-legal-links a[aria-current="page"] {
  color: var(--gold);
}

.footer-text-button,
.cookie-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.footer-text-button:hover,
.cookie-link-button:hover {
  color: var(--gold);
}

.policy-section {
  background: #fbfbf8;
}

.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.policy-content h2 {
  margin: 34px 0 12px;
  font-size: clamp(24px, 3vw, 36px);
}

.policy-content h2:first-of-type {
  margin-top: 0;
}

.policy-content p {
  color: var(--muted);
  line-height: 1.8;
}

.policy-content a {
  color: var(--ink);
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.policy-updated {
  color: var(--gold) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cookie-panel {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 120;
  display: none;
  width: min(620px, calc(100vw - 28px));
}

.cookie-panel.visible {
  display: block;
}

.cookie-card {
  padding: 24px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(16, 24, 24, 0.28);
}

.cookie-copy h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.cookie-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.cookie-copy a {
  display: inline-block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.cookie-actions.inline {
  margin-top: 16px;
}

.cookie-link-button {
  color: var(--muted);
  font-size: 13px;
}

.cookie-preferences {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cookie-preferences[hidden] {
  display: none;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  background: #fbfbf8;
  cursor: pointer;
}

.cookie-option.disabled {
  cursor: default;
}

.cookie-option span {
  display: grid;
  gap: 5px;
}

.cookie-option b {
  font-size: 14px;
}

.cookie-option small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.cookie-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
}

@media (max-width: 1080px) {
  .quick-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 560px);
    margin-top: 40px;
  }

  .hero {
    min-height: auto;
  }

  .split,
  .location-panel,
  .text-columns,
  .amenities-intro,
  .amenity-feature,
  .amenity-feature.reverse,
  .area-feature,
  .route-panel,
  .suite-layout,
  .outdoor-showcase {
    grid-template-columns: 1fr;
  }

  .amenity-feature.reverse .section-text,
  .amenity-feature.reverse .media-frame {
    order: initial;
  }

  .feature-grid,
  .feature-photo-strip,
  .rooms-grid,
  .area-grid,
  .amenity-matrix,
  .amenity-directory,
  .villa-snapshot,
  .essentials-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .booking-summary {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand img {
    width: 104px;
    height: 84px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 104px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--bg);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.is-scrolled .nav,
  .site-header.solid .nav {
    inset: 77px 14px auto;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .language-switcher {
    align-self: flex-start;
    margin-top: 12px;
  }

  .hero,
  .page-hero {
    padding: 110px 20px 44px;
  }

  .hero::before,
  .page-hero::before {
    background: linear-gradient(0deg, rgba(18, 29, 31, 0.82), rgba(18, 29, 31, 0.12));
  }

  .quick-panel {
    padding: 18px;
  }

  .feature-grid,
  .feature-photo-strip,
  .rooms-grid,
  .area-grid,
  .amenity-matrix,
  .amenity-directory,
  .villa-snapshot,
  .essentials-strip,
  .fact-strip,
  .area-list,
  .gallery-grid,
  .gallery-preview,
  .list-grid,
  .image-rail,
  .staggered-media,
  .mini-gallery {
    grid-template-columns: 1fr;
  }

  .villa-snapshot {
    margin-top: 20px;
  }

  .snapshot-item {
    min-height: auto;
  }

  .amenity-detail-list > span {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }

  .outdoor-showcase .media-frame {
    min-height: 360px;
  }

  .mini-gallery .media-frame:first-child {
    grid-column: auto;
  }

  .fact {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .image-rail .media-frame:nth-child(2),
  .staggered-media .media-frame:last-child {
    margin-top: 0;
    margin-bottom: 0;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

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

  .field-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-connect {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .contact-link-grid {
    grid-template-columns: 1fr;
  }

  .contact-link {
    min-height: 78px;
  }

  .static-map-preview {
    grid-template-columns: 1fr;
  }

  .static-map-art {
    min-height: 230px;
  }

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

  .footer-connect {
    grid-column: auto;
  }

  .footer-brand {
    font-size: 27px;
  }

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

@media (min-width: 761px) {
  h1 {
    font-size: clamp(42px, 6.4vw, 90px);
  }

  h2 {
    font-size: clamp(30px, 4vw, 58px);
  }

  h3 {
    font-size: clamp(22px, 2.4vw, 35px);
  }

  .feature h3 {
    font-size: 21px;
  }

  .map-card h3 {
    font-size: 30px;
  }

  .amenity-card h3 {
    font-size: 24px;
  }

  .essential h3 {
    font-size: 22px;
  }

  .area-card h3 {
    font-size: 24px;
  }

  .bathroom-panel h3 {
    font-size: 27px;
  }

  .room-card h3 {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
