/*
Theme Name: empressw
Theme URI: https://empressw.com/
Author: empressw
Author URI: https://empressw.com/
Description: Theme premium pour location de villa de luxe a Koh Samui.
Version: 1.0.0
Text Domain: empressw
*/

:root {
  --ink: #1a1a1a;
  --sand: #f4efe8;
  --linen: #e9e2d8;
  --ocean: #8e2730;
  --lagoon: #9e4344;
  --coral: #a1514d;
  --gold: #bf8061;
  --mist: rgba(255, 255, 255, 0.7);
  --shadow: 0 25px 70px rgba(10, 20, 30, 0.15);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --transition: 260ms ease;
}

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

body {
  margin: 0;
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  color: rgba(0, 0, 0, 0.65);
  background: radial-gradient(circle at top, #ffffff, #f3f1ec 45%, #efe5d8 100%);
  line-height: 1.6;
}

h1,
h2,
h3,
.section-title,
.site-title {
  color: var(--ink);
}

html {
  scroll-behavior: smooth;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(142, 39, 48, 0.08), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(191, 128, 97, 0.08), transparent 45%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: -1;
}

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

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

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: none;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  width: 18px;
  height: 1px;
  background: var(--ink);
  display: block;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.brand .custom-logo {
  max-height: 48px;
  width: auto;
}

.brand-secondary-logo {
  height: 40px;
  width: auto;
  display: block;
}

.footer-secondary-logo {
  height: 52px;
  width: auto;
  display: block;
  margin: 6px 0 10px;
  filter: brightness(0) invert(1) contrast(1.08);
  opacity: 0.95;
}

.site-title {
  font-weight: 600;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu a {
  position: relative;
  padding-bottom: 0px;
  display: inline-block;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after,
.nav-menu .current-menu-ancestor > a::after {
  opacity: 0.7;
  transform: translateY(0);
}

.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-cta:hover {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}

.nav-cta-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.08);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 320ms ease;
  z-index: 100;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-inner {
  position: relative;
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-menu-close {
  width: 42px;
  height: 42px;
  border-radius: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 16px;
  right: 16px;
}

.mobile-menu-close span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: var(--ink);
}

.mobile-menu-close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu-brand {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
}

.mobile-menu .nav-menu {
  display: block;
}

.mobile-menu .nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
}

.mobile-menu-cta {
  margin-top: auto;
  justify-content: center;
  border-color: rgba(0, 0, 0, 0.3) !important;
  background: transparent;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 85vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-radius: 0;
}

.hero video,
.hero .hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-media {
  background-position: center;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 90px 0;
  display: grid;
  gap: 22px;
  max-width: 560px;
}

.hero-eyebrow {
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  line-height: 1.05;
  margin: 0;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

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

#contact .hero-actions {
  margin-top: 18px;
}

.btn {
  height: 44px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(158, 67, 68, 0.45);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--lagoon);
  color: #fff;
  border-color: transparent;
}

.btn-primary:hover {
  background: var(--ocean);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(158, 67, 68, 0.12);
}

.section {
  padding: 90px 0;
}

.section-alt {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.8), rgba(233, 226, 216, 0.6));
}

.section-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 0 0 16px;
}

.section-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 12px;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(158, 67, 68, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.card-icon img {
  width: 22px;
  height: 22px;
  display: block;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.card-title-row h3 {
  margin: 0;
}

.kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 14px;
}

.section-lead {
  max-width: 640px;
  font-size: 1.05rem;
  color: rgba(0, 0, 0, 0.62);
}

.page-hero-image {
  margin: 24px 0 34px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 360px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 28px;
  min-height: 150px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow);
}

.stat-header {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(158, 67, 68, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
}

.stat-icon svg {
  width: 20px;
  height: 20px;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.2;
}

.stat-value {
  margin-top: 10px;
}

.stat-value {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 2.2rem;
  color: var(--ocean);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.media-card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-md);
  background: linear-gradient(140deg, rgba(158, 67, 68, 0.12), rgba(255, 255, 255, 0.95));
  min-height: 260px;
  overflow: hidden;
}

.media-card > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  display: block;
}

.card-carousel {
  position: relative;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 18px;
  background: #f1ede8;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  cursor: pointer;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.media-card-feature {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 450px;
  padding-bottom: 18px;
}

.media-card-feature .media-card-image {
  position: relative;
  z-index: 1;
  height: 140px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.media-card-feature .media-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-card-map {
  background: linear-gradient(120deg, rgba(142, 39, 48, 0.2), rgba(191, 128, 97, 0.05)),
    radial-gradient(circle at top left, rgba(191, 128, 97, 0.35), transparent 60%),
    #fff;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  min-height: 260px;
  position: relative;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

.map-controls {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.map-toggle {
  border: none;
  background: transparent;
  padding: 6px 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  border-radius: 999px;
}

.map-toggle.is-active {
  background: var(--ink);
  color: #fff;
}

@media (max-width: 768px) {
  .map-embed {
    min-height: 220px;
    border-radius: var(--radius-sm);
  }

  .map-embed iframe {
    min-height: 220px;
  }

  .map-controls {
    top: 12px;
    left: 12px;
    padding: 4px;
  }
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
  opacity: 0.7;
  pointer-events: none;
}

.media-card h3 {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.5rem;
}

.media-card p {
  position: relative;
  z-index: 1;
  color: rgba(0, 0, 0, 0.7);
}

.media-card .btn {
  margin-top: auto;
}

.feature-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-title-row h3 {
  margin: 0;
}

.media-card-feature p {
  margin-bottom: 8px;
}

.media-card-feature .btn {
  margin-top: auto;
  margin-bottom: 6px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 16px;
  color: rgba(0, 0, 0, 0.75);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ocean);
}

.amenity-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card-title-row h3 {
  white-space: nowrap;
}

.amenity-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 24px;
}

.amenity-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
}

.amenity-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(0, 0, 0, 0.7);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: rgba(0, 0, 0, 0.7);
}

.info-list li strong {
  color: var(--ink);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-item {
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  display: block;
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  background: #e9e4dc;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:active img {
  transform: scale(1.03);
}

.gallery-item span {
  position: absolute;
  bottom: 14px;
  left: 16px;
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

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

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 18, 0.75);
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 1000px);
  max-height: 84vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  background: #000;
}

.lightbox-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 84vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.lightbox-nav:disabled {
  opacity: 0.4;
  cursor: default;
}

.booking-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.booking-modal.is-open {
  display: flex;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 18, 0.7);
}

.booking-panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 900px);
  max-height: 88vh;
  overflow: auto;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
  padding: 28px;
}

.booking-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 26, 32, 0.08);
  color: #111;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.booking-content {
  display: grid;
  gap: 16px;
}

.booking-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 2rem;
  margin: 0;
}

.booking-lead {
  margin: 0;
  color: rgba(0, 0, 0, 0.65);
}

.booking-widget {
  border-radius: var(--radius-sm);
  padding: 16px;
  background: rgba(11, 111, 138, 0.06);
}

.booking-details {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 16px;
}

.booking-details-title {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
}

.experience {
  padding: 40px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow);
}

.experience-carousel {
  position: relative;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
  background: #f4f2ef;
}

.experience-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.experience-slide.is-active {
  opacity: 1;
}

.quote {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.6rem;
}

.cta {
  background: linear-gradient(120deg, rgba(142, 39, 48, 0.95), rgba(161, 81, 77, 0.95));
  color: #fff;
  padding: 80px 0;
  border-radius: 0;
  margin-bottom: 0;
}

.cta .section-title,
.cta .section-lead {
  color: #fff;
}

.cta .btn {
  height: 44px;
  padding: 0 26px;
  font-size: 0.85rem;
  line-height: 1;
}

.cta .grid {
  align-items: center;
}

.cta .hero-actions {
  justify-content: center;
}

.cta .btn {
  border-color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  background: #0f1d23;
  color: #fff;
  padding: 50px 0;
}

.site-footer .nav-menu ul {
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.post-list {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.post-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow);
  align-items: center;
}

.post-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  margin: 0 0 10px;
}

.post-meta {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.5);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 600ms ease;
}

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

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu ul {
    flex-wrap: wrap;
  }

  .hero-content {
    padding: 60px 0;
  }

  .post-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .hero {
    align-items: end;
  }

  .navbar {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
  }

  .burger {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
  }

  .brand {
    flex: 1;
    justify-content: center;
    text-align: center;
  }

  .nav-cta {
    padding: 8px 12px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }

  .nav-cta-label {
    display: inline;
  }

  .nav-cta-icon {
    display: none;
  }

  .hero-content {
    padding: 0 0 28px;
  }

  .hero-eyebrow {
    display: none;
  }

  .hero-title,
  .hero-subtitle,
  .hero-eyebrow {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }

  .hero-title {
    color: #fff;
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.45;
    max-width: 42ch;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.32em;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 70vh;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.grid-2-villa {
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.grid-2-villa .experience {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.grid-2-villa .experience-carousel {
  flex: 1;
  min-height: 320px;
}

.grid-2-villa .experience-carousel img {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .grid-2-villa {
    grid-template-columns: 1fr;
  }

  .grid-2-villa .experience-carousel {
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .grid-2-villa .experience-carousel {
    min-height: 220px;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}
.amenity-card {
  display: grid;
  gap: 12px;
}

#activities .amenity-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

#activities .amenity-card h3 {
  margin: 0;
}
