/* ═══════════════════════════════════════════════════
   MADUVVAREE WATERFRONT SANDS — Styles
   Colors: Ocean Teal #1a4d5c, Soft Sand #f5f1ea, White
   ═══════════════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ocean-900: #07232d;
  --ocean-800: #113645;
  --ocean-700: #1a4d5c;
  --ocean-600: #2b6a7d;
  --ocean-500: #3d879d;
  --ocean-400: #5ea4b8;
  --ocean-300: #8ac2d3;
  --ocean-200: #b8dce6;
  --ocean-100: #e3f2f5;

  --coral-600: #d67158;
  --coral-500: #e38873;
  --coral-400: #f09f8d;

  --sand-700: #d4c9b8;
  --sand-600: #e0d6c8;
  --sand-500: #ede4d6;
  --sand-400: #f5f1ea;
  --sand-300: #f9f7f2;
  --sand-200: #fcfbf9;
  --sand-100: #fefefe;

  --cream: #f5f1ea;
  --cream-dark: #ede4d6;
  --white: #FFFFFF;
  --black: #0d0d0d;
  --text: #2d2d2d;
  --text-light: #6b6b6b;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-height: 80px;
  --nav-height-max: 150px;

  --container-max: 1280px;
  --section-pad: 120px;
  --section-pad-mobile: 72px;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  scroll-behavior: smooth;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

[x-cloak] {
  display: none !important;
}

/* ─── Utility ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

.section {
  padding: var(--section-pad-mobile) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--section-pad) 0;
  }
}

.section__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--coral-500);
  margin-bottom: 16px;
}

.section__label--light {
  color: #d4b896;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 500;
  color: var(--ocean-700);
  line-height: 1.15;
  margin-bottom: 24px;
  text-wrap: balance;
}

.section__title em {
  font-style: italic;
  color: var(--ocean-500);
}

.section__title--light {
  color: var(--cream);
}

.section__title--light em {
  color: var(--ocean-300);
}

.section__title--center {
  text-align: center;
}

.section__intro {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.group {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}

.centre {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Navigation ───────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height-max);
  transition: all 0.4s var(--ease-out);
  background: transparent;
}

.nav--scrolled {
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(26, 77, 92, 0.08);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .nav__inner {
    padding: 0 48px;
  }
}

.nav__logo {
  display: flex;
  align-items: center;
  z-index: 101;
}

.nav__logo-mark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__logo-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.nav__logo-subtitle {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}

.nav__logo-img {
  display: block;
  width: auto;
  height: calc(var(--nav-height-max) - 30px);
  max-height: 120px;
  object-fit: contain;
  padding: 0.85rem;
  width: auto;
  transition: height 0.4s var(--ease-out), max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out), filter 0.3s var(--ease-out);
}

.nav:not(.nav--scrolled) .nav__logo-mark {
  color: var(--white);
}

.nav--scrolled .nav__logo-mark {
  color: var(--ocean-900);
}

.nav--scrolled .nav__logo-img {
  height: calc(var(--nav-height) - 18px);
  max-height: 62px;
  padding: 0.35rem;
  filter: none;
}

.nav:not(.nav--scrolled) .nav__logo-img {
  filter: brightness(0) invert(1);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.3s;
  position: relative;
}

.nav:not(.nav--scrolled) .nav__link {
  color: var(--white);
}

.nav--scrolled .nav__link {
  color: var(--ocean-700);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--ocean-500);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  padding: 10px 24px;
  border: 1.5px solid currentColor;
  border-radius: 0;
  transition: all 0.3s;
  background: var(--coral-500);
  color: var(--white) !important;
  border-color: var(--coral-500);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--coral-600);
  border-color: var(--coral-600);
  color: var(--white) !important;
}

/* Language Switcher */
.language-switcher {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

@media (min-width: 1024px) {
  .language-switcher {
    display: flex;
  }
}

@media (max-width: 1023px) {
  .language-switcher {
    color: var(--white);
    display: flex;
    align-self: center;
    margin: 1em;
    position: absolute;
    bottom: 1em;
  }

  .language-switcher a {
    color: var(--white) !important;
  }
}

.language-switcher a {
  padding: 6px 12px;
  border-radius: 4px;
  transition: all 0.3s;
}

.nav:not(.nav--scrolled) .language-switcher a {
  color: var(--white);
}

.nav--scrolled .language-switcher a {
  color: var(--ocean-900);
}

.language-switcher a:hover {
  background: rgba(42, 171, 179, 0.1);
}

.language-switcher a.active {
  background: var(--coral-500);
  color: var(--white) !important;
}

/* Burger */
.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

@media (min-width: 1024px) {
  .nav__burger {
    display: none;
  }
}

.nav__burger-line {
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav--scrolled .nav__burger-line {
  background: var(--ocean-700);
}

.nav__burger-line--open:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__burger-line--open:nth-child(2) {
  opacity: 0;
}

.nav__burger-line--open:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 44, 56, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99;
  height: 100dvw;
  width: 100dvw;
  max-height: 100dvh;
  max-width: 100dvw;
  min-height: 100dvh;
  min-width: 100dvw;

  opacity: 100 !important;
}

.nav__mobile--enter {
  transition: opacity 0.3s ease;
}
.nav__mobile--enter-start {
  opacity: 0;
}
.nav__mobile--enter-end {
  opacity: 1;
}
.nav__mobile--leave {
  transition: opacity 0.2s ease;
}
.nav__mobile--leave-start {
  opacity: 1;
}
.nav__mobile--leave-end {
  opacity: 0;
}

.nav__mobile-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav__mobile-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--cream);
  font-weight: 400;
  transition: color 0.3s;
}

.nav__mobile-link:hover {
  color: var(--teal-400);
}

.nav__mobile-link--cta {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 40px;
  border: 1.5px solid var(--teal-400);
  color: var(--teal-400);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 20, 16, 0.4) 0%,
    rgba(26, 20, 16, 0.2) 40%,
    rgba(26, 20, 16, 0.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: var(--white);
  padding: 0 24px;
  width: 100%;
  max-width: var(--container-max);
}

.hero__ornament {
  display: flex;
  justify-content: flex-start;
  margin: 12px 0;
}

.hero__ornament-svg {
  width: 120px;
  height: 20px;
  color: var(--coral-500);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--coral-500);
  margin-bottom: 8px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.hero__scroll {
  display: inline-block;
  margin-top: 48px;
  width: 1px;
  height: 64px;
  position: relative;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, var(--coral-500), transparent);
  animation: scrollPulse 2s var(--ease-in-out) infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── Booking Widget ───────────────────────────── */
.booking-widget {
  background: var(--white);
  padding: 24px 32px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  margin: -60px auto 0;
  max-width: 1000px;
  width: calc(100% - 48px);
  position: relative;
  z-index: 10;
  border-radius: 12px;
}

.booking-widget__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: end;
}

@media (min-width: 640px) {
  .booking-widget__form {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .booking-widget__form {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

.booking-widget__field {
  display: flex;
  flex-direction: column;
}

.booking-widget__field label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.booking-widget__field input,
.booking-widget__field select {
  padding: 14px 16px;
  border: 1px solid #ddd;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.3s;
}

.booking-widget__field input:focus,
.booking-widget__field select:focus {
  outline: none;
  border-color: var(--ocean-500);
}

.booking-widget__button {
  padding: 16px 32px;
  background: var(--ocean-800);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.booking-widget__button:hover {
  background: var(--ocean-900);
}

/* ─── About ────────────────────────────────────── */
.about__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about__lead {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--ocean-900);
  margin-bottom: 20px;
}

.about__body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
}

.about__instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 24px;
  border: 2px solid var(--ocean-500);
  border-radius: 6px;
  color: var(--ocean-600);
  font-size: 0.9375rem;
  font-weight: 500;
  background: transparent;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}

.about__instagram-btn svg {
  flex-shrink: 0;
}

.about__instagram-btn:hover {
  background: var(--ocean-500);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 135, 157, 0.2);
}

.about__image-wrap {
  position: relative;
}

.about__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.about__image-accent {
  position: absolute;
  top: 20px;
  right: -16px;
  bottom: -20px;
  left: 16px;
  border: 2px solid var(--ocean-500);
  z-index: 0;
  opacity: 0.4;
}

@media (max-width: 767px) {
  .about__image-accent {
    display: none;
  }
}

/* ─── Experiences Grid ─────────────────────────── */
.experiences__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .experiences__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .experiences__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.experiences__card {
  text-align: center;
  transition: transform 0.3s;
}

.experiences__card:hover {
  transform: translateY(-8px);
}

.experiences__card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
}

.experiences__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.experiences__card:hover .experiences__card-img {
  transform: scale(1.05);
}

.experiences__card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 155, 111, 0.1);
  border-radius: 50%;
  color: var(--coral-500);
  position: relative;
  z-index: 99;
}

.experiences__card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ocean-700);
  margin-bottom: 8px;
}

.experiences__card-desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── Island Map ───────────────────────────────── */
.island-map {
  background: #f8f6f3;
}

.island-map__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .island-map__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.island-map__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.island-map__feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  transition: transform 0.3s;
}

.island-map__feature:hover {
  transform: translateX(4px);
}

.island-map__feature-icon {
  font-size: 2rem;
}

.island-map__feature-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.island-map__image {
  width: 100%;
  height: auto;
}

/* ─── Sustainability ───────────────────────────── */
.sustainability {
  background: var(--sand-300);
  color: var(--ocean-900);
  padding: 80px 0;
}



.sustainability__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 64px;
}

@media (min-width: 640px) {
  .sustainability__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sustainability__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sustainability__item {
  text-align: center;
}

.sustainability__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  color: var(--coral-500);
}

.sustainability__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.sustainability__desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ─── Newsletter ──────────────────────────────── */
.newsletter {
  background: #f8f6f3;
  text-align: center;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 32px auto 48px;
}

@media (min-width: 640px) {
  .newsletter__form {
    flex-direction: row;
  }
}

.newsletter__input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid #ddd;
  font-family: var(--font-body);
  font-size: 1rem;
}

.newsletter__input:focus {
  outline: none;
  border-color: var(--ocean-500);
}

.newsletter__button {
  padding: 14px 32px;
  background: var(--coral-500);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter__button:hover {
  background: var(--coral-600);
}

.newsletter__social {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.newsletter__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ocean-700);
  color: var(--ocean-700);
  transition: all 0.3s;
}

.newsletter__social-link:hover {
  background: var(--ocean-700);
  color: var(--white);
}

/* ─── Features ─────────────────────────────────── */
.features {
  background: var(--ocean-900);
  position: relative;
  overflow: hidden;
}

.features__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.5) 39px, rgba(255,255,255,0.5) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.5) 39px, rgba(255,255,255,0.5) 40px);
  background-size: 40px 40px;
}

.features__grid {
  display: grid;
  gap: 40px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.feature {
  position: relative;
  z-index: 1;
}

.feature__icon {
  width: 48px;
  height: 48px;
  color: var(--teal-400);
  margin-bottom: 20px;
}

.feature__icon svg {
  width: 100%;
  height: 100%;
}

.feature__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
}

.feature__text {
  font-size: 0.9375rem;
  color: var(--brown-300);
  line-height: 1.65;
}

/* ─── Rooms ────────────────────────────────────── */
.rooms {
  background: var(--white);
}

.rooms__grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .rooms__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.room-card {
  background: var(--cream);
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease-out);
}

.room-card:hover {
  box-shadow: 0 20px 60px rgba(92, 61, 46, 0.12);
}

.room-card__image-wrap {
  overflow: hidden;
  height: 320px;
}

.room-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.room-card__image--hover {
  transform: scale(1.05);
}

.room-card__body {
  padding: 32px;
}

.room-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ocean-700);
  margin-bottom: 12px;
}

.room-card__desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}

.room-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-card__amenities li {
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ocean-600);
  background: var(--white);
  border: 1px solid var(--ocean-200);
}

/* Amenities strip */
.amenities-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--brown-200);
}

.amenities-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brown-500);
}

.amenities-strip__dot {
  width: 6px;
  height: 6px;
  background: var(--coral-500);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── Image Break ──────────────────────────────── */
.image-break {
  position: relative;
  height: 60vh;
  min-height: 400px;
  max-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-break__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-break__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 16, 0.55);
}

.image-break__quote {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 32px;
  text-align: center;
}

.image-break__quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 3vw, 1.625rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.6;
}

/* ─── Dining ───────────────────────────────────── */
.dining {
  background: var(--cream);
}

.dining__grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 768px) {
  .dining__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
}

.dining__images {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 16px;
}

.dining__img-main-wrap {
  height: 480px;
  overflow: hidden;
}

.dining__img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dining__img-secondary-wrap {
  height: 480px;
  overflow: hidden;
}

.dining__img-secondary {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dining__lead {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--ocean-900);
  line-height: 1.6;
  margin-bottom: 32px;
}

.dining__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dining__feature {
  padding-left: 20px;
  border-left: 2px solid var(--coral-500);
}

.dining__feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ocean-900);
  margin-bottom: 6px;
}

.dining__feature p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── Gallery ──────────────────────────────────── */
.gallery {
  background: var(--white);
  overflow: hidden;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr); /* was 3 */
    gap: 6px;
  }
}

.gallery__item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: 280px;
}

@media (min-width: 768px) {
  .gallery__item {
    height: 360px;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .gallery__item--tall {
    grid-row: span 2;
    height: 100%;
  }
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.gallery__item:hover .gallery__img {
  transform: scale(1.06);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(92, 61, 46, 0);
  transition: background 0.4s;
}

.gallery__item:hover::after {
  background: rgba(92, 61, 46, 0.15);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 20, 16, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  cursor: pointer;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.lightbox__close:hover {
  color: var(--teal-400);
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  cursor: default;
}

/* ─── Explore ──────────────────────────────────── */
.explore {
  background: var(--cream);
}

.explore__grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .explore__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .explore__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.explore__card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.explore__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(92, 61, 46, 0.1);
}

.explore__card-image-wrap {
  overflow: hidden;
  height: 200px;
}

.explore__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.explore__card:hover .explore__card-image {
  transform: scale(1.06);
}

.explore__card {
    display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.explore__card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.explore__card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ocean-900);
  margin-bottom: 8px;
}

.explore__card-text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.explore__card-distance {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
}

/* ─── Business Strip ───────────────────────────── */
.business-strip {
  background: var(--brown-800);
  position: relative;
  overflow: hidden;
}

.business-strip__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z' fill='none' stroke='white' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.business-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .business-strip__grid {
    grid-template-columns: repeat(3, 1fr); 
  }
}

@media (min-width: 1024px) {
  .business-strip__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }
}

.business-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 500;
}

.business-strip__icon {
  width: 32px;
  height: 32px;
  color: var(--teal-400);
}

.business-strip__icon svg {
  width: 100%;
  height: 100%;
}

.business-strip .contact-btn {
  display: flex; justify-content: center;
  padding: 2rem 0;
  z-index: 1;
  position: relative;
}

/* ─── Contact ──────────────────────────────────── */
.contact {
  background: var(--white);
}

.contact__grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
}

.contact__desc {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact__detail-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal-600);
  margin-bottom: 4px;
}

.contact__detail p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}

.contact__detail a {
  transition: color 0.3s;
}

.contact__detail a:hover {
  color: var(--teal-600);
}

.contact__map-wrap {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.contact__map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(26, 20, 16, 0.8), transparent);
}

.contact__map-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cream);
  font-weight: 500;
}

.contact__map-sub {
  font-size: 0.875rem;
  color: var(--brown-300);
  margin-top: 4px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.btn--primary {
  background: var(--coral-500);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--coral-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 155, 111, 0.25);
}

.btn--secondary {
  border: 1px solid var(--white);
  color: var(--white);
  background-color: transparent;
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* ─── Footer ───────────────────────────────────── */
.footer {
  background: var(--ocean-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 0 0 40px;
}

.footer__top-ornament {
  padding: 0 48px;
  color: var(--ocean-600);
  overflow: hidden;
  height: 30px;
  margin-bottom: 60px;
}

.footer__ornament-svg {
  width: 100%;
  height: 30px;
}

.footer__grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
}

.footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.footer__social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s var(--ease-out);
}

.footer__social-link:hover {
  background: var(--coral-500);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links li {
  font-size: 0.875rem;
}

.footer__links a {
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--coral-500);
}

.footer__bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  color: var(--brown-500);
  text-align: center;
}

/* TBH Footer */


	#footer_tbg_section {
		display: flex;
		flex-direction: column;
		gap: 0.5em;
		justify-content: center;

		font-size: 13px;
		font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
		font-weight: 400;
	}

	#footer_tbg_section div {
		margin: 0;
		padding: 0;
		line-height: 1rem;
	}

	#footer_tbg_section .footer_tbh,
	#footer_tbg_section .footer_tbg {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}

	#footer_tbg_section h3 {
		margin: .5em;
		padding: 0;
		color: inherit;
		font: inherit;
	}

	#footer_tbg_section svg {
		height: 40px;
		margin: 0;
		padding: 0;
    filter: brightness(0) invert(1);
	}

	#footer_tbg_section a {
		padding: 0;
		margin: 0;
		text-decoration: none;
		color: inherit;
		font: inherit;
		font-size: 18px;
	}



/* ─── Scroll animations (applied via JS) ───────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in-left--visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in-right--visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── Stagger for grid children ────────────────── */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stagger--visible > *:nth-child(1) { transition-delay: 0s; }
.stagger--visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger--visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger--visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger--visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger--visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger--visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Turkish geometric border pattern ─────────── */
.turkish-border {
  height: 8px;
  background: 
    repeating-linear-gradient(
      90deg,
      var(--coral-500) 0px,
      var(--coral-500) 8px,
      transparent 8px,
      transparent 16px
    );
  opacity: 0.3;
}

/* --- Experiences Layout --------------------------- */
.body,
body {
  background: var(--sand-200);
}

.nav {
  background: linear-gradient(180deg, rgba(7, 35, 45, 0.82) 0%, rgba(7, 35, 45, 0.3) 62%, rgba(7, 35, 45, 0) 100%);
}

.nav__links {
  gap: 28px;
}

.nav__link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.nav__mobile-link:hover {
  color: var(--coral-400);
}

.nav__mobile-link--cta {
  border-color: var(--coral-400);
  color: var(--coral-400);
}

.hero {
  min-height: 760px;
}

.logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 35, 45, 0.78) 0%, rgba(7, 35, 45, 0.38) 40%, rgba(7, 35, 45, 0.08) 72%),
    linear-gradient(180deg, rgba(7, 35, 45, 0.42) 0%, rgba(7, 35, 45, 0.04) 42%, rgba(7, 35, 45, 0.18) 100%);
}

.hero__content {
  padding: calc(var(--nav-height-max) + 72px) 24px 104px;
}

@media (min-width: 768px) {
  .hero__content {
    padding-left: 48px;
    padding-right: 48px;
  }
}

.hero__content > * {
  max-width: 520px;
}

.hero__title {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 5.25rem);
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-style: normal;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
}

.hero__actions {
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
}

.hero__scroll {
  display: none;
}

.btn {
  padding: 15px 26px;
  border-radius: 3px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.7);
}

.booking-widget {
  width: calc(100% - 40px);
  max-width: 1080px;
  margin: -72px auto 0;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(7, 35, 45, 0.16);
}

.booking-widget__form {
  gap: 0;
}

.booking-widget__field {
  padding: 14px 18px;
}

.booking-widget__field label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: rgba(7, 35, 45, 0.46);
}

.booking-widget__field input,
.booking-widget__field select {
  padding: 0;
  border: none;
  background: transparent;
  color: var(--ocean-800);
  font-size: 0.95rem;
}

.booking-widget__button {
  min-height: 64px;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

@media (min-width: 1024px) {
  .booking-widget__field + .booking-widget__field {
    border-left: 1px solid rgba(7, 35, 45, 0.08);
  }

  .booking-widget__button {
    margin-left: 14px;
  }
}

.section__label--center {
  display: block;
  text-align: center;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-500);
}

.rooms {
  background: radial-gradient(circle at top center, rgba(138, 194, 211, 0.16), transparent 42%), var(--sand-200);
  padding-top: 78px;
}

.rooms__grid {
  gap: 28px;
}

@media (min-width: 960px) {
  .rooms__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.room-card {
  background: var(--white);
  border: 1px solid rgba(7, 35, 45, 0.06);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(7, 35, 45, 0.1);
}

.room-card:hover {
  box-shadow: 0 22px 48px rgba(7, 35, 45, 0.14);
}

.room-card__image-wrap {
  height: 220px;
}

.room-card__body {
  padding: 24px 24px 22px;
}

.room-card__meta {
  margin-bottom: 12px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(7, 35, 45, 0.46);
}

.room-card__title {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.room-card__desc {
  margin-bottom: 22px;
}

.room-card__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  margin: 0;
  padding: 18px 0 0;
  list-style: none;
  border-top: 1px solid rgba(7, 35, 45, 0.08);
}

.room-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.room-card__feature-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(227, 242, 245, 0.88);
  color: var(--ocean-700);
}

.room-card__feature-icon i {
  font-size: 0.95rem;
  line-height: 1;
}

.room-card__feature-label {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean-900);
}

.rooms__shared-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 760px;
  margin: 28px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(7, 35, 45, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ocean-800);
  text-align: center;
}

.rooms__shared-note-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(227, 242, 245, 0.88);
  color: var(--coral-500);
}

.rooms__shared-note-icon i {
  font-size: 0.95rem;
  line-height: 1;
}

.rooms__shared-note-text {
  font-size: 0.84rem;
  line-height: 1.6;
}

@media (max-width: 639px) {
  .rooms__shared-note {
    border-radius: 18px;
    padding: 14px;
  }
}

.experiences-section {
  background: var(--white);
  padding-top: 42px;
}

.experiences-layout {
  display: grid;
  gap: 32px;
  align-items: end;
}

@media (min-width: 1100px) {
  .experiences-layout {
    grid-template-columns: minmax(250px, 300px) 1fr;
  }
}

.experiences-layout__lead {
  max-width: 280px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-light);
}

.experiences__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 0;
}

@media (min-width: 1024px) {
  .experiences__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.experiences__card {
  text-align: center;
}

.experiences__card-img-wrap {
  margin-bottom: 0;
  aspect-ratio: 1 / 0.82;
  border-radius: 10px;
  box-shadow: 0 18px 30px rgba(7, 35, 45, 0.12);
}

.experiences__card-icon {
  width: 52px;
  height: 52px;
  margin: -26px auto 14px;
  border: 1px solid rgba(7, 35, 45, 0.08);
  background: var(--white);
  box-shadow: 0 12px 24px rgba(7, 35, 45, 0.12);
  color: var(--ocean-700);
}

.experiences__card-icon i {
  font-size: 1.1rem;
  line-height: 1;
}

.experiences__card-icon svg {
  width: 20px;
  height: 20px;
}

.experiences__card-title {
  font-size: 1.15rem;
}

.experiences__card-desc {
  max-width: 220px;
  margin: 0 auto;
  font-size: 0.86rem;
}

.island-map {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(227, 242, 245, 0.72) 0%, rgba(249, 247, 242, 1) 100%);
}

.island-map::before {
  content: '';
  position: absolute;
  inset: auto auto 10% -6%;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.island-map__layout {
  display: grid;
  gap: 36px;
  align-items: center;
}

@media (min-width: 1180px) {
  .island-map__layout {
    grid-template-columns: 280px 1fr;
  }
}

.map__intro-text {
  max-width: 250px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
}

.map__compass {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  color: var(--ocean-300);
}

.map__compass i {
  font-size: 2.6rem;
  line-height: 1;
}

.map__cluster {
  display: grid;
  gap: 24px;
  align-items: center;
}

@media (min-width: 980px) {
  .map__cluster {
    grid-template-columns: minmax(200px, 1fr) minmax(320px, 460px) minmax(200px, 1fr);
  }
}

.map__side {
  display: grid;
  gap: 18px;
}

.map__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.map__feature-icon {
  display: flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 35, 45, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ocean-700);
  box-shadow: 0 8px 20px rgba(7, 35, 45, 0.08);
}

.map__feature-icon i {
  font-size: 1rem;
  line-height: 1;
}

.map__feature-icon svg {
  width: 18px;
  height: 18px;
}

.map__feature-title {
  margin-bottom: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean-900);
}

.map__feature-text {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-light);
}

.map__image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 45% 55% 52% 48% / 44% 42% 58% 56%;
  box-shadow: 0 32px 60px rgba(7, 35, 45, 0.18);
}

.map__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sustainability {
  background: linear-gradient(180deg, #fcfbf9 0%, #f6f1e7 100%);
  border-top: 1px solid rgba(7, 35, 45, 0.06);
  border-bottom: 1px solid rgba(7, 35, 45, 0.06);
}

.sustainability__intro {
  display: grid;
  gap: 24px;
  align-items: end;
  margin-bottom: 46px;
}

@media (min-width: 960px) {
  .sustainability__intro {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

.sustainability__copy p {
  max-width: 520px;
  color: var(--text-light);
  line-height: 1.75;
}

.sustainability__link {
  margin-top: 18px;
}

.sustainability__grid {
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 0;
}

@media (min-width: 700px) {
  .sustainability__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .sustainability__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .sustainability__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .sustainability__item + .sustainability__item {
    border-left: 1px solid rgba(7, 35, 45, 0.08);
  }
}

.sustainability__item {
  padding: 24px 18px;
  text-align: center;
}

.sustainability__icon {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(7, 35, 45, 0.08);
}

.sustainability__icon i {
  font-size: 1.45rem;
  line-height: 1;
}

.sustainability__icon svg {
  width: 24px;
  height: 24px;
}

.sustainability__title {
  font-size: 1.06rem;
  color: var(--ocean-900);
}

.sustainability__desc {
  font-size: 0.86rem;
  color: var(--text-light);
}

.dining,
.wellness,
.gallery {
  background: var(--white);
}

.offers {
  background: var(--sand-200);
}

.offers__panel {
  display: grid;
  gap: 28px;
  padding: 32px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(7, 35, 45, 0.1);
}

@media (min-width: 980px) {
  .offers__panel {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
  }
}

.offers__copy .section__intro {
  margin-bottom: 0;
}

.offers__facts {
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .offers__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.offers__fact {
  padding: 18px;
  border-radius: 12px;
  background: var(--sand-300);
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.offers__fact strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--ocean-900);
}

.offers__fact span {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-light);
}

.gallery {
  padding-top: 88px;
}

.gallery__grid {
  gap: 12px;
  margin: 44px auto 0;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0 48px;
  }
}

.gallery__item {
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .gallery__item {
    height: 260px;
  }
}

.gallery__item::after {
  background: rgba(7, 35, 45, 0);
}

.gallery__item:hover::after {
  background: rgba(7, 35, 45, 0.12);
}

.lightbox__close:hover {
  color: var(--coral-400);
}

.newsletter {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ocean-800) 0%, var(--ocean-900) 100%);
  color: var(--white);
  text-align: left;
}

.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(138, 194, 211, 0.16), transparent 25%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 100%);
  background-size: auto, 140px 140px;
  opacity: 0.4;
  pointer-events: none;
}

.newsletter .container {
  position: relative;
  z-index: 1;
}

.newsletter__content {
  display: grid;
  gap: 24px;
  align-items: center;
}

@media (min-width: 1100px) {
  .newsletter__content {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 440px) auto;
    gap: 40px;
  }
}

.newsletter__label {
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-600);
}

.newsletter .section__title {
  color: var(--white);
  margin-bottom: 10px;
}

.newsletter .section__title em {
  color: var(--sand-600);
}

.newsletter__text p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.72);
}

.newsletter__form {
  max-width: none;
  margin: 0;
}

.newsletter__input {
  min-height: 48px;
  border: none;
  border-radius: 3px 0 0 3px;
}

.newsletter__button {
  min-width: 140px;
  border-radius: 0 3px 3px 0;
}

.newsletter__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter__social h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--sand-600);
}

.social__links {
  display: flex;
  gap: 12px;
}

.social__links a {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: var(--white);
  transition: all 0.3s var(--ease-out);
}

.social__links i {
  font-size: 1rem;
  line-height: 1;
}

.social__links a:hover {
  color: var(--coral-400);
  border-color: var(--coral-400);
  background: rgba(255, 255, 255, 0.06);
}

.footer {
  background: #041a22;
  padding: 32px 0 24px;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr 0.9fr;
  }
}

.footer__heading {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.footer__brand {
  max-width: 320px;
}

.footer__detail p,
.footer__links p {
  font-size: 0.9rem;
  line-height: 1.75;
}

.footer__detail strong {
  color: var(--white);
  font-weight: 600;
}

.footer__links {
  gap: 6px;
}

.footer__detail a,
.footer__links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer__detail a:hover,
.footer__links a:hover {
  color: var(--sand-600);
}

.footer__bottom {
  margin-top: 32px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#footer_tbg_section {
  display: none;
}

@media (max-width: 639px) {
  .booking-widget {
    width: calc(100% - 24px);
    padding: 12px;
  }

  .booking-widget__field {
    padding: 12px 8px;
  }

  .newsletter__form {
    flex-direction: column;
  }

  .newsletter__input,
  .newsletter__button {
    width: 100%;
    border-radius: 3px;
  }
}


