/* Earthbound Wellness — layout (Xandari tokens) */
:root {
  --ew-teal: #18abb5;
  --ew-teal-dark: #0ba6b5;
  --ew-cream: #f1efea;
  --ew-dark: #333333;
  --ew-dark-deep: #2c2c2c;
  --ew-text: #333333;
  --ew-text-muted: #666666;
  --ew-white: #ffffff;
  --ew-section-y: 50px;
  --ew-section-y-md: 40px;
  --ew-image-bleed: 40px;
}

body.home.ew-landing {
  background-color: var(--ew-cream);
  color: var(--ew-text);
}

body.ew-landing .book-now {
  display: none;
}

body.ew-preloading {
  overflow: hidden;
}

body.ew-preloading .ew-book-fab {
  visibility: hidden;
  pointer-events: none;
}

.ew-preloader {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    to bottom,
    rgb(20, 50, 40) 0%,
    rgb(0, 0, 0) 100%
  );
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.ew-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ew-preloader__inner {
  text-align: center;
}

.ew-preloader__logo {
  display: block;
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  animation: ew-preloader-breathe 2.4s ease-in-out infinite;
}

@keyframes ew-preloader-breathe {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(0.94);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ew-preloader__logo {
    animation: none;
  }
}

@media (max-width: 767.98px) {
  .ew-preloader__logo {
    max-width: 140px;
  }
}

.ew-home-promo {
  background-color: var(--ew-cream);
}

.ew-home-promo__kicker {
  font-size: 28px;
  font-weight: 300;
  color: var(--ew-text);
  line-height: 1.25;
  margin: 0 0 8px;
}

.ew-home-promo__tagline {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--ew-text-muted);
  margin: 0 0 20px;
}

/* Homepage roadblock popup */
body.modal-open .modal-backdrop {
  z-index: 99990 !important;
}

.ew-home-popup.modal {
  z-index: 100000 !important;
}

.ew-home-popup .modal-dialog,
.ew-home-popup__dialog {
  max-width: 880px;
  margin: 1rem auto;
}

.ew-home-popup__content {
  position: relative;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ew-cream);
  pointer-events: auto;
  display: flex;
  flex-direction: column;
}

body.modal-open .whatsapp-float {
  display: none;
}

.ew-home-popup .modal-content .ew-home-popup__close {
  position: absolute;
  top: 10px !important;
  right: 10px !important;
  z-index: 10;
  margin: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  border: none !important;
  border-radius: 50%;
  background: var(--ew-teal) !important;
  color: var(--ew-white);
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  opacity: 1;
  text-shadow: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ew-home-popup .modal-content .ew-home-popup__close:hover,
.ew-home-popup .modal-content .ew-home-popup__close:focus {
  background: var(--ew-teal-dark) !important;
  color: var(--ew-white);
  opacity: 1;
}

.ew-home-popup .modal-content .ew-home-popup__close span {
  display: block;
  float: none;
  width: auto;
  line-height: 30px;
  background: transparent;
  border-radius: 0;
  font-size: 22px;
  font-family: inherit;
  text-transform: none;
}

.ew-home-popup__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ew-home-popup__media {
  min-height: 260px;
}

.ew-home-popup__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.ew-home-popup__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 32px;
  text-align: left;
}

.ew-home-popup__copy .ew-title {
  font-size: 30px;
  margin-bottom: 12px;
}

.ew-home-popup__copy .ew-home-promo__kicker {
  font-size: 22px;
}

.ew-home-popup__copy .ew-home-promo__tagline {
  font-size: 13px;
}

.ew-home-popup__copy .ew-lead {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.ew-home-popup__cta {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .ew-home-popup.modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  .ew-home-popup__content {
    max-height: calc(100vh - 2rem);
  }

  .ew-home-popup__cta {
    display: inline-block;
    width: auto;
    align-self: center;
  }
}

@media (max-width: 767.98px) {
  .ew-home-popup.modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
  }

  .ew-home-popup.modal.show .modal-dialog {
    transform: none !important;
    margin: 0 auto;
    flex: 0 0 auto;
    width: calc(100% - 1rem);
    max-width: calc(100% - 1rem);
  }

  .ew-home-popup__content {
    max-height: calc(100vh - 1rem);
    height: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ew-home-popup__grid {
    display: block;
  }

  .ew-home-popup__media {
    height: auto;
    min-height: 0;
    padding: 14px 14px 0;
  }

  .ew-home-popup__media img {
    display: block;
    width: 100%;
    height: 200px;
    min-height: 0;
    object-fit: cover;
    object-position: center 62%;
    border-radius: 4px;
  }

  .ew-home-popup__copy {
    padding: 18px 18px 16px;
  }

  .ew-home-popup__copy .ew-title {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .ew-home-popup__copy .ew-home-promo__kicker {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .ew-home-popup__copy .ew-home-promo__tagline {
    font-size: 11px;
    margin-bottom: 10px;
    letter-spacing: 0.08em;
  }

  .ew-home-popup__copy .ew-lead {
    font-size: 12px;
    line-height: 1.5;
  }

  .ew-home-popup__cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 16px;
    padding: 14px 18px;
    box-sizing: border-box;
  }
}

/* Cinematic hero banner */
.ew-hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 100px);
  padding: 100px 20px 60px;
  background: url('../images/spa/Ayurveda Spa copy.jpg') center center / cover no-repeat;
  text-align: center;
}

.ew-hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 50, 40, 0.55) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.ew-hero-banner__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.ew-hero-banner__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ew-teal);
  margin-bottom: 20px;
}

.ew-hero-banner__logo {
  display: block;
  max-width: 160px;
  width: 100%;
  height: auto;
  margin: 0 auto 16px;
}

.ew-hero-banner h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--ew-white);
  margin: 0 0 16px;
  line-height: 1.15;
}

.ew-hero-banner__tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ew-white);
  margin: 0 0 32px;
}

.ew-hero-banner__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.ew-hero-banner__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--ew-white);
  font-size: 20px;
  text-decoration: none !important;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.ew-hero-banner__scroll:hover {
  opacity: 1;
  color: var(--ew-white);
}

.ew-btn-outline--light {
  border-color: var(--ew-white);
  color: var(--ew-white) !important;
}

.ew-btn-outline--light:hover {
  background: var(--ew-white);
  color: var(--ew-dark) !important;
  border-color: var(--ew-white);
}

.ew-btn {
  display: inline-block;
  background-color: var(--ew-teal);
  color: var(--ew-white) !important;
  border: 2px solid var(--ew-teal);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s;
}

.ew-btn:hover {
  background-color: var(--ew-teal-dark);
  border-color: var(--ew-teal-dark);
  color: var(--ew-white) !important;
}

.ew-btn-outline {
  background: transparent;
  border: 2px solid var(--ew-teal);
  color: var(--ew-teal) !important;
}

.ew-btn-outline:hover {
  background: var(--ew-teal);
  color: var(--ew-white) !important;
}

.ew-btn-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: var(--ew-white) !important;
}

.ew-btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
}

/* Section utilities */
.ew-section {
  padding: var(--ew-section-y) 0;
}

.ew-section-dark {
  background: var(--ew-dark);
  color: var(--ew-white);
}

.ew-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ew-teal);
  margin-bottom: 12px;
}

.ew-section-dark .ew-eyebrow {
  color: var(--ew-teal);
}

.ew-title {
  font-size: 36px;
  font-weight: 300;
  color: var(--ew-text);
  line-height: 1.25;
  margin-bottom: 20px;
}

.ew-section-dark .ew-title {
  color: var(--ew-white);
}

.ew-title-accent {
  font-family: 'Caveat', cursive !important;
  font-style: italic;
  color: var(--ew-teal-dark);
}

.ew-section-dark .ew-title-accent {
  color: var(--ew-teal);
}

.ew-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ew-text-muted);
}

.ew-section-dark .ew-lead,
.ew-section-dark p {
  color: rgba(255, 255, 255, 0.85);
}

.ew-text-center-block {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Philosophy banner */
.ew-philosophy-copy {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  max-width: 480px;
}

.ew-philosophy-copy .ew-title-accent {
  font-size: 1.35em;
  line-height: 1;
  vertical-align: baseline;
}

.ew-philosophy-banner__image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
}

/* Hero */
.ew-hero {
  padding: 60px 0 80px;
}

.ew-hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 160px;
  gap: 12px;
}

.ew-hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.ew-hero-collage .ew-collage-main {
  grid-column: 1 / -1;
  grid-row: 1;
}

/* About checkmarks */
.ew-checklist {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}

.ew-checklist li {
  font-size: 14px;
  font-weight: 600;
  color: var(--ew-text);
}

.ew-checklist li:before {
  content: "\f00c";
  font-family: FontAwesome;
  color: var(--ew-teal);
  margin-right: 8px;
}

.ew-about-checklist {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

/* Property cards */
.ew-property-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
}

.ew-property-location {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ew-teal);
  margin-bottom: 8px;
}

.ew-property-location i {
  margin-right: 6px;
}

.ew-property-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Monsoon benefit cards */
.ew-benefit-card {
  background: var(--ew-white);
  border-radius: 6px;
  padding: 28px 20px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.ew-benefit-card i {
  font-size: 28px;
  color: var(--ew-teal);
  margin-bottom: 16px;
  display: block;
}

.ew-benefit-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ew-benefit-card p {
  font-size: 14px;
  color: var(--ew-text-muted);
  margin: 0;
}

/* Package cards */
.ew-package-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ew-package-card {
  background: var(--ew-dark-deep);
  color: var(--ew-white);
  border-radius: 6px;
  padding: 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.ew-package-days {
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
}

.ew-package-days span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.ew-package-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 16px 0 12px;
  color: var(--ew-white);
}

.ew-package-card > p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.ew-package-privilege-box {
  flex: 1 1 auto;
  min-height: 88px;
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(45, 156, 156, 0.12);
  border: 1px solid rgba(45, 156, 156, 0.3);
  border-left: 3px solid var(--ew-teal);
  border-radius: 4px;
}

.ew-package-privilege-box__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ew-teal);
  margin-bottom: 6px;
}

.ew-package-privilege-box__text {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.ew-package-privilege-box__text strong {
  color: var(--ew-teal);
  font-weight: 700;
}

.ew-package-card a {
  color: var(--ew-teal);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  margin-top: auto;
  padding-top: 16px;
}

.ew-package-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--ew-teal);
  color: var(--ew-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 3px;
}

.ew-packages-reserve {
  margin-top: 56px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: var(--ew-dark-deep) url('../images/spa/Ayurveda Spa copy.jpg') center / cover no-repeat;
}

.ew-packages-reserve::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 50, 40, 0.92) 0%, rgba(44, 44, 44, 0.88) 100%);
}

.ew-packages-reserve__inner {
  position: relative;
  z-index: 1;
  padding: 56px 48px;
}

.ew-packages-reserve .ew-eyebrow {
  color: var(--ew-teal);
}

.ew-packages-reserve__urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 20px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ew-white);
  background: rgba(24, 171, 181, 0.15);
  border: 1px solid rgba(24, 171, 181, 0.45);
  border-radius: 100px;
}

.ew-packages-reserve__urgency i {
  color: var(--ew-teal);
  font-size: 13px;
}

.ew-packages-reserve__title {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--ew-white);
  margin-bottom: 16px;
}

.ew-packages-reserve__title .ew-title-accent {
  color: var(--ew-teal);
}

.ew-packages-reserve__lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 36px;
}

.ew-packages-reserve__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 0;
}

.ew-packages-reserve__ctas .ew-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.ew-packages-reserve__btn-primary {
  box-shadow: 0 4px 20px rgba(24, 171, 181, 0.45);
}

.ew-packages-reserve__divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 44px auto 20px;
}

.ew-packages-reserve__contacts-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.ew-packages-reserve__contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.ew-packages-reserve__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: var(--ew-white);
  text-decoration: none !important;
  transition: background 0.2s, border-color 0.2s;
}

.ew-packages-reserve__contact:hover {
  background: rgba(24, 171, 181, 0.2);
  border-color: var(--ew-teal);
  color: var(--ew-white);
}

.ew-packages-reserve__contact i {
  font-size: 18px;
  color: var(--ew-teal);
}

.ew-packages-reserve__contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.ew-packages-reserve__contact-value {
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
}

/* Inclusions collage */
.ew-inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 140px 140px;
  gap: 10px;
}

.ew-inclusions-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.ew-inclusions-grid .ew-inc-main {
  grid-row: 1 / 3;
  grid-column: 1;
}

.ew-inclusions-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.ew-inclusions-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.ew-inclusions-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ew-teal);
}

/* Cuisine */
.ew-cuisine-image-wrap {
  position: relative;
}

.ew-cuisine-image-wrap img {
  width: 100%;
  border-radius: 6px;
}

.ew-cuisine-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--ew-teal);
  color: var(--ew-white);
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 12px;
  max-width: 220px;
}

.ew-cuisine-badge strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.ew-amenities-box {
  background: rgba(24, 171, 181, 0.08);
  border-left: 3px solid var(--ew-teal);
  padding: 20px 24px;
  margin-top: 24px;
}

.ew-amenities-box h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ew-amenities-box ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
}

/* Tariff table */
.ew-tariff-note {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ew-text-muted);
}

.ew-tariff-note--footer {
  text-align: left;
  margin: 24px 0 0;
  max-width: 100%;
}

.ew-tariff-note__asterisk {
  color: #c0392b;
  font-weight: 700;
  margin-right: 4px;
}

.ew-tariff-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--ew-white);
}

.ew-tariff-table thead th {
  background: var(--ew-dark);
  color: var(--ew-white);
  font-size: 13px;
  font-weight: 700;
  padding: 14px 16px;
  text-align: center;
  border: none;
}

.ew-tariff-table thead th:first-child {
  text-align: left;
}

.ew-tariff-table tbody td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid #e8e8e8;
  text-align: center;
}

.ew-tariff-table tbody td:first-child {
  text-align: left;
}

.ew-tariff-table tbody tr:nth-child(even):not(.ew-tariff-group) {
  background: #f8f8f6;
}

.ew-tariff-group td {
  background: var(--ew-teal) !important;
  color: var(--ew-white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: left !important;
}

.ew-tariff-property-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ew-dark);
}

.ew-tariff-table--occupancy {
  table-layout: fixed;
}

.ew-tariff-table--occupancy thead th:first-child,
.ew-tariff-table--occupancy tbody td:first-child {
  text-align: left;
  width: 46%;
  word-wrap: break-word;
}

.ew-tariff-table--occupancy th:nth-child(2),
.ew-tariff-table--occupancy td:nth-child(2),
.ew-tariff-table--occupancy th:nth-child(3),
.ew-tariff-table--occupancy td:nth-child(3) {
  width: 27%;
}

.ew-tariff-table--occupancy thead th:not(:first-child),
.ew-tariff-table--occupancy tbody td:not(:first-child) {
  text-align: right;
}

/* Experts */
.ew-expert-card {
  text-align: center;
}

.ew-expert-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 16px;
  transform: scale(1.12);
}

.ew-expert-photo--shijar {
  object-position: center 22%;
}

.ew-expert-photo--sheetal {
  object-position: center 18%;
}

.ew-expert-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.ew-expert-reg {
  font-size: 12px;
  color: var(--ew-text-muted);
  margin-bottom: 8px;
}

.ew-expert-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ew-teal);
  margin-bottom: 6px;
}

.ew-expert-location {
  font-size: 13px;
  color: var(--ew-text-muted);
}

/* Consult CTA band */
.ew-consult-band {
  text-align: center;
}

/* Testimonials */
.ew-testimonials-grid {
  align-items: stretch;
}

.ew-testimonials-grid > [class*="col-"] {
  display: flex;
}

.ew-testimonial-card {
  background: var(--ew-white);
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(44, 44, 44, 0.06);
  padding: 20px 22px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.ew-testimonial-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.ew-stars {
  color: var(--ew-teal);
  font-size: 11px;
  letter-spacing: 1px;
}

.ew-testimonial-property-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ew-teal);
  background: rgba(24, 171, 181, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1.3;
}

.ew-testimonial-headline {
  font-size: 15px;
  font-weight: 700;
  color: var(--ew-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.ew-testimonial-excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ew-text-muted);
  margin-bottom: 0;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ew-testimonial-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #eceae5;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ew-testimonial-footer cite {
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  color: var(--ew-dark);
}

.ew-testimonial-property {
  font-size: 12px;
  color: var(--ew-text-muted);
}

/* FAQ */
.ew-faq .card {
  border: none;
  border-bottom: 1px solid #d5d5d5;
  background: transparent;
  border-radius: 0 !important;
}

.ew-faq .card-header {
  background: transparent;
  border: none;
  padding: 18px 0;
}

.ew-faq .btn-link {
  color: var(--ew-text);
  font-weight: 600;
  text-decoration: none !important;
  width: 100%;
  text-align: left;
  padding: 0;
  font-size: 15px;
}

.ew-faq .btn-link i {
  float: right;
  color: var(--ew-teal);
  margin-top: 4px;
}

.ew-faq .card-body {
  padding: 0 0 18px;
  font-size: 14px;
  color: var(--ew-text-muted);
  line-height: 1.7;
}

/* Journal / blog */
.ew-journal-title {
  text-align: center;
  margin-bottom: 56px;
}

.ew-journal-title .ew-title {
  margin-bottom: 0;
}

.ew-journal-title .ew-title-accent {
  font-size: 52px;
  display: block;
  margin-top: 6px;
  line-height: 1.1;
}

.ew-blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 14px;
}

.ew-blog-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ew-teal);
  margin-bottom: 8px;
}

.ew-blog-meta .ew-read-time {
  color: var(--ew-text-muted);
  font-weight: 400;
  margin-left: 12px;
}

.ew-blog-card h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}

.ew-blog-card p {
  font-size: 14px;
  color: var(--ew-text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.ew-blog-card a.ew-read-more {
  color: var(--ew-teal);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none !important;
}

/* Journal carousel */
.ew-journal-carousel-wrap {
  max-width: 1120px;
  margin: 0 auto;
  min-height: 320px;
}

.ew-journal-carousel {
  padding: 12px 52px 64px;
  margin: 0;
}

/* Fallback grid if carousel JS has not loaded */
.ew-journal-carousel:not(.slick-initialized) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 0 24px;
}

.ew-journal-carousel:not(.slick-initialized) .ew-journal-slide {
  padding: 0;
}

.ew-journal-slide {
  padding: 0 14px;
  height: 100%;
}

.ew-journal-carousel .slick-list {
  overflow: hidden;
  margin: 0 -14px;
  padding: 8px 0 24px;
}

.ew-journal-carousel .slick-track {
  display: flex !important;
  align-items: stretch;
}

.ew-journal-carousel .slick-slide {
  height: auto;
}

.ew-journal-carousel .slick-slide > div {
  height: 100%;
}

.ew-journal-carousel .ew-blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--ew-white);
  border-radius: 8px;
  box-shadow: 0 6px 28px rgba(44, 44, 44, 0.07);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ew-journal-carousel .ew-blog-card:hover {
  box-shadow: 0 10px 36px rgba(44, 44, 44, 0.1);
  transform: translateY(-2px);
}

.ew-journal-carousel .ew-blog-card img {
  height: 210px;
  margin-bottom: 0;
  border-radius: 0;
}

.ew-journal-carousel .ew-blog-meta,
.ew-journal-carousel .ew-blog-card h5,
.ew-journal-carousel .ew-blog-card p {
  padding-left: 24px;
  padding-right: 24px;
}

.ew-journal-carousel .ew-blog-meta {
  margin-top: 22px;
  margin-bottom: 10px;
}

.ew-journal-carousel .ew-blog-card h5 {
  margin-bottom: 12px;
  color: var(--ew-dark);
}

.ew-journal-carousel .ew-blog-card p {
  flex-grow: 1;
  padding-bottom: 28px;
}

.ew-journal-carousel .slick-prev,
.ew-journal-carousel .slick-next {
  width: 44px;
  height: 44px;
  z-index: 2;
  top: 38%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--ew-white);
  box-shadow: 0 2px 14px rgba(44, 44, 44, 0.12);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.ew-journal-carousel .slick-prev:hover,
.ew-journal-carousel .slick-next:hover {
  background: var(--ew-white);
  box-shadow: 0 4px 18px rgba(44, 44, 44, 0.16);
}

.ew-journal-carousel .slick-prev {
  left: 0;
}

.ew-journal-carousel .slick-next {
  right: 0;
}

.ew-journal-carousel .slick-prev:before,
.ew-journal-carousel .slick-next:before {
  font-family: FontAwesome !important;
  font-size: 16px;
  line-height: 44px;
  opacity: 0.65;
}

.ew-journal-carousel .slick-prev:before {
  content: '\f053';
  color: var(--ew-teal);
}

.ew-journal-carousel .slick-next:before {
  content: '\f054';
  color: var(--ew-dark);
}

.ew-journal-carousel .slick-prev:hover:before,
.ew-journal-carousel .slick-next:hover:before {
  opacity: 1;
}

.ew-journal-carousel .slick-dots {
  bottom: 16px;
  line-height: 0;
}

.ew-journal-carousel .slick-dots li {
  margin: 0 5px;
}

.ew-journal-carousel .slick-dots li button:before {
  font-size: 9px;
  color: var(--ew-dark);
  opacity: 0.25;
}

.ew-journal-carousel .slick-dots li.slick-active button:before {
  color: var(--ew-teal);
  opacity: 1;
}

/* Campaign carousel */
.ew-campaign-carousel-wrap {
  border-radius: 6px;
  overflow: hidden;
  min-height: 380px;
}

.ew-campaign-carousel {
  margin: 0;
  min-height: 380px;
}

.ew-campaign-carousel:not(.slick-initialized) .ew-campaign-slide:not(:first-child) {
  display: none;
}

.ew-campaign-carousel:not(.slick-initialized) .ew-campaign-slide:first-child {
  display: block;
}

.ew-campaign-slide {
  height: 380px;
}

.ew-campaign-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.ew-campaign-carousel .slick-list,
.ew-campaign-carousel .slick-track,
.ew-campaign-carousel .slick-slide,
.ew-campaign-carousel .slick-slide > div {
  height: 100%;
}

.ew-campaign-carousel .slick-slide {
  height: 380px;
}

.ew-campaign-carousel .slick-dots {
  bottom: 14px;
  line-height: 0;
}

.ew-campaign-carousel .slick-dots li {
  margin: 0 5px;
}

.ew-campaign-carousel .slick-dots li button:before {
  font-size: 9px;
  color: var(--ew-white);
  opacity: 0.45;
}

.ew-campaign-carousel .slick-dots li.slick-active button:before {
  color: var(--ew-teal);
  opacity: 1;
}

.ew-campaign-content .ew-title {
  margin-bottom: 20px;
}

.ew-campaign-content .ew-lead {
  margin-bottom: 14px;
}

.ew-campaign-content .ew-lead:last-child {
  margin-bottom: 0;
}

#campaign.ew-section {
  padding-top: calc(var(--ew-section-y) + var(--ew-image-bleed));
  padding-bottom: calc(var(--ew-section-y) + var(--ew-image-bleed));
  overflow: visible;
}

/* Footer CTA / enquiry (in-page section) */
.ew-enquire-intro .ew-contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  margin: 30px 0;
}

.ew-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  text-decoration: none !important;
}

.ew-contact-item:hover {
  color: var(--ew-teal);
}

.ew-contact-item i {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.ew-enquiry-wrap {
  max-width: 480px;
  margin: 40px auto 0;
  padding: 0 15px 50px;
}

.ew-enquiry-wrap .enquiry-box,
.location-sec5 .enquiry-box {
  background: var(--ew-white);
  padding: 30px;
  border-radius: 6px;
}

body.home.ew-landing .location-sec5 {
  padding: var(--ew-section-y) 0;
  position: relative;
}

body.home.ew-landing .location-sec5::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.72) 100%
  );
  pointer-events: none;
}

body.home.ew-landing .location-sec5 > .container {
  position: relative;
  z-index: 1;
}

body.home.ew-landing .ew-enquiry-row {
  align-items: stretch;
}

body.home.ew-landing .ew-location-col,
body.home.ew-landing .ew-enquiry-col {
  padding-top: 1rem;
  margin-top: 0;
}

body.home.ew-landing .ew-enquiry-col {
  display: flex;
  flex-direction: column;
}

body.home.ew-landing .ew-location-heading {
  font-family: 'Caveat', cursive !important;
  font-size: 42px;
  line-height: 1.1;
  color: var(--ew-white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

body.home.ew-landing .ew-location-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

body.home.ew-landing .ew-location-tab {
  flex: 1 1 auto;
  min-width: 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  background: rgba(44, 44, 44, 0.55);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

body.home.ew-landing .ew-location-tab:hover {
  background: rgba(44, 44, 44, 0.75);
  color: var(--ew-white);
}

body.home.ew-landing .ew-location-tab.is-active {
  background: var(--ew-teal);
  border-color: var(--ew-teal);
  color: var(--ew-white);
}

body.home.ew-landing .ew-location-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 8px;
}

body.home.ew-landing .ew-location-map:not(.is-active) {
  display: none;
}

body.home.ew-landing .ew-location-panel {
  margin-top: 16px;
  padding: 18px 20px;
  background: rgba(44, 44, 44, 0.88);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
}

body.home.ew-landing .ew-location-panel:not(.is-active) {
  display: none;
}

body.home.ew-landing .ew-location-panel strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--ew-white);
}

body.home.ew-landing .ew-location-panel p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}

body.home.ew-landing .location-sec5 .enquiry-box,
body.home.ew-landing .location-sec5 .ew-enquiry-box {
  width: 100%;
  float: none;
  margin: 0;
  background: var(--ew-white);
  padding: 28px 30px;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

@media (min-width: 768px) {
  body.home.ew-landing .ew-enquiry-col .ew-enquiry-box {
    margin-top: 7.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}

body.home.ew-landing .ew-enquiry-box__title {
  color: var(--ew-teal);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 8px;
}

body.home.ew-landing .ew-enquiry-box__lead {
  text-align: left;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ew-text-muted);
  margin: 0 0 22px;
}

body.home.ew-landing .ew-enquiry-box input,
body.home.ew-landing .ew-enquiry-box .ew-enquiry-select {
  font-size: 14px;
  display: block;
  margin: 0 auto 10px;
  width: 100%;
  max-width: 100%;
  height: 42px;
  padding: 8px 12px;
  color: var(--ew-text);
  border: 1px solid #d8d8d7;
  border-radius: 4px;
  background: var(--ew-white);
}

body.home.ew-landing .ew-enquiry-box .ew-enquiry-select {
  appearance: auto;
  cursor: pointer;
}

body.home.ew-landing .ew-enquiry-box input::placeholder {
  color: var(--ew-text-muted);
}

body.home.ew-landing .ew-enquiry-submit {
  width: 100%;
  margin-top: 4px;
  border: none;
  cursor: pointer;
}

body.home.ew-landing .ew-enquiry-box .boxerrror {
  color: #c0392b;
  font-size: 13px;
  margin-bottom: 12px;
}

.ew-about-image img {
  width: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
}

#about.ew-section {
  padding-top: calc(var(--ew-section-y) + var(--ew-image-bleed));
  padding-bottom: calc(var(--ew-section-y) + var(--ew-image-bleed));
  overflow: visible;
}

#about .ew-about-header {
  margin-bottom: 24px;
}

#about .ew-about-header .ew-title {
  margin-bottom: 16px;
}

#about .ew-lead {
  margin-bottom: 14px;
}

#about .ew-lead:last-of-type {
  margin-bottom: 0;
}

.ew-about-row {
  align-items: flex-start;
}

@media (min-width: 992px) {
  .ew-about-row {
    position: relative;
    align-items: center;
  }

  .ew-about-image {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: calc(100% + var(--ew-image-bleed) * 2);
    display: flex;
  }

  .ew-about-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;
    flex: 1;
    min-height: 0;
  }

  .ew-campaign-row {
    position: relative;
    align-items: center;
  }

  .ew-campaign-row > .col-lg-6:first-child {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: calc(100% + var(--ew-image-bleed) * 2);
    margin-bottom: 0;
  }

  .ew-campaign-content {
    margin-left: 50%;
  }

  .ew-campaign-carousel-wrap,
  .ew-campaign-carousel,
  .ew-campaign-slide,
  .ew-campaign-carousel .slick-slide {
    height: 100%;
    min-height: 0;
  }

  .ew-campaign-carousel-wrap {
    min-height: 0;
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  #about.ew-section {
    padding-top: var(--ew-section-y);
    padding-bottom: var(--ew-section-y);
  }

  #campaign.ew-section {
    padding-top: var(--ew-section-y);
    padding-bottom: var(--ew-section-y);
  }

  .ew-campaign-content {
    margin-left: 0;
  }

  .ew-campaign-row > .col-lg-6:first-child {
    position: static;
    transform: none;
    height: auto;
  }

  .ew-package-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .ew-journal-carousel:not(.slick-initialized) {
    grid-template-columns: repeat(2, 1fr);
  }

  .ew-hero-collage {
    margin-top: 30px;
  }

  .ew-inclusions-grid {
    grid-template-rows: 120px 120px;
  }
}

@media (max-width: 767.98px) {
  .ew-hero-banner {
    padding: 70px 16px 50px;
    min-height: 70vh;
  }

  .ew-hero-banner__logo {
    max-width: 120px;
    margin-bottom: 12px;
  }

  .ew-hero-banner h1 {
    font-size: 36px;
  }

  .ew-hero-banner__tagline {
    letter-spacing: 0.1em;
  }

  .ew-hero-banner__ctas {
    flex-direction: column;
    align-items: center;
  }

  .ew-hero-banner__ctas .ew-btn {
    width: 100%;
    max-width: 280px;
  }

  .ew-philosophy-copy {
    font-size: 19px;
    line-height: 1.7;
    max-width: 100%;
  }

  .ew-philosophy-banner__image {
    height: 220px;
  }

  .ew-hero {
    padding: 40px 0 50px;
  }

  .ew-hero h1.ew-title {
    font-size: 28px;
  }

  .ew-hero-collage {
    grid-template-rows: 160px 120px;
    margin-top: 24px;
  }

  .ew-about-image {
    margin-top: 24px;
  }

  .ew-about-image img {
    max-height: 260px;
  }

  .ew-campaign-carousel-wrap,
  .ew-campaign-carousel,
  .ew-campaign-slide,
  .ew-campaign-carousel .slick-slide {
    min-height: 260px;
    height: 260px;
  }

  .ew-title {
    font-size: 28px;
  }

  .ew-section {
    padding: var(--ew-section-y-md) 0;
  }

  #about.ew-section {
    padding-top: var(--ew-section-y-md);
    padding-bottom: var(--ew-section-y-md);
  }

  #campaign.ew-section {
    padding-top: var(--ew-section-y-md);
    padding-bottom: var(--ew-section-y-md);
  }

  body.home.ew-landing .location-sec5 {
    padding: var(--ew-section-y-md) 0;
  }

  .ew-package-cards {
    grid-template-columns: 1fr;
  }

  .ew-package-card {
    min-height: auto;
    padding: 22px 18px;
  }

  .ew-package-privilege-box {
    min-height: 72px;
  }

  .ew-package-days {
    font-size: 36px;
  }

  .ew-packages-reserve__inner {
    padding: 40px 24px;
  }

  .ew-packages-reserve__title {
    font-size: 26px;
  }

  .ew-packages-reserve__ctas {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .ew-packages-reserve__ctas .ew-btn {
    width: 100%;
    max-width: 280px;
  }

  .ew-packages-reserve__divider {
    margin: 36px auto 16px;
  }

  .ew-packages-reserve__contacts {
    grid-template-columns: 1fr;
  }

  .ew-inclusions-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
    margin-top: 30px;
  }

  .ew-inclusions-grid .ew-inc-main {
    grid-row: auto;
    grid-column: auto;
    height: 220px;
  }

  .ew-inclusions-grid img {
    height: 160px;
  }

  .ew-cuisine-badge {
    position: static;
    margin-top: 12px;
    max-width: 100%;
  }

  .ew-tariff-table {
    min-width: 560px;
  }

  .ew-tariff-table thead th,
  .ew-tariff-table tbody td {
    padding: 10px 8px;
    font-size: 12px;
  }

  .ew-journal-title .ew-title-accent {
    font-size: 36px;
    margin-top: 4px;
  }

  .ew-journal-carousel {
    padding: 8px 40px 56px;
  }

  .ew-journal-carousel .ew-blog-card img {
    height: 190px;
  }

  .ew-journal-carousel .slick-prev,
  .ew-journal-carousel .slick-next {
    width: 38px;
    height: 38px;
    top: 36%;
  }

  .ew-journal-carousel .slick-prev:before,
  .ew-journal-carousel .slick-next:before {
    font-family: FontAwesome !important;
    font-size: 14px;
    line-height: 38px;
  }

  .ew-testimonial-card {
    padding: 18px 18px;
  }

  .ew-faq .card-header {
    position: relative;
  }

  .ew-faq .btn-link {
    font-size: 14px;
    padding-right: 28px;
    white-space: normal;
  }

  .ew-faq .btn-link i {
    float: none;
    position: absolute;
    right: 0;
    top: 2px;
  }

  body.home.ew-landing .location-sec5 iframe {
    height: 280px;
  }

  body.home.ew-landing .ew-location-map iframe {
    height: 280px;
  }

  body.home.ew-landing .ew-location-heading {
    font-size: 32px;
  }

  body.home.ew-landing .ew-location-tab {
    flex: 1 1 100%;
    font-size: 11px;
  }

  body.home.ew-landing .ew-enquiry-col .ew-enquiry-box {
    margin-top: 0;
    min-height: 0;
    flex: none;
  }

  body.home.ew-landing .location-sec5 .ew-enquiry-col {
    padding-top: 1.5rem !important;
    margin-top: 0 !important;
  }

  body.home.ew-landing .location-sec5 .enquiry-box {
    padding: 20px;
  }

  .ew-checklist {
    flex-direction: column;
  }

  .ew-about-checklist {
    grid-template-columns: 1fr;
  }

  .ew-contact-row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 575.98px) {
  .ew-hero-banner__eyebrow {
    font-size: 10px;
  }

  .ew-hero-banner h1 {
    font-size: 32px;
  }

  .ew-hero-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .ew-hero-collage .ew-collage-main {
    height: 200px;
  }

  .ew-package-days {
    font-size: 32px;
  }

  .ew-journal-title .ew-title-accent {
    font-size: 32px;
  }

  .ew-journal-carousel {
    padding: 4px 36px 52px;
  }

  .ew-testimonial-card__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .ew-journal-carousel:not(.slick-initialized) {
    grid-template-columns: 1fr;
  }

  .ew-journal-slide {
    padding: 0 8px;
  }

  .ew-journal-carousel .slick-list {
    margin: 0 -8px;
  }

  .ew-journal-carousel .ew-blog-meta,
  .ew-journal-carousel .ew-blog-card h5,
  .ew-journal-carousel .ew-blog-card p {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ew-btn-whatsapp {
    font-size: 13px;
    padding: 10px 16px;
  }
}

/* Hide global WhatsApp widget on Earthbound landing page */
body.ew-landing .whatsapp-float {
  display: none !important;
}

/* Book Ayura Wellness FAB */
.ew-book-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
}

.ew-book-fab__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: none;
  border-radius: 100px;
  background: var(--ew-teal);
  color: var(--ew-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(24, 171, 181, 0.45);
  transition: background 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.ew-book-fab__toggle:hover {
  background: var(--ew-teal-dark);
  box-shadow: 0 10px 28px rgba(24, 171, 181, 0.55);
}

.ew-book-fab__toggle:focus,
.ew-book-fab__toggle:active {
  outline: none;
  border: none;
  box-shadow: 0 8px 24px rgba(24, 171, 181, 0.45);
}

.ew-book-fab__toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.ew-book-fab__icon {
  font-size: 16px;
  transition: transform 0.25s ease;
}

.ew-book-fab.is-open .ew-book-fab__icon {
  transform: rotate(45deg);
}

.ew-book-fab__options {
  position: absolute;
  bottom: calc(100% + 14px);
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.ew-book-fab.is-open .ew-book-fab__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.ew-book-fab__option {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ew-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ew-book-fab__option:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.ew-book-fab__option:focus {
  outline: none;
}

.ew-book-fab__option:focus-visible {
  outline: 2px solid var(--ew-teal);
  outline-offset: 2px;
}

.ew-book-fab__option i {
  font-size: 22px;
}

.ew-book-fab__option--whatsapp {
  color: #25d366;
}

.ew-book-fab__option--phone {
  color: #e74c3c;
}

.ew-book-fab__option--email {
  color: #3498db;
}

@media (max-width: 575.98px) {
  .ew-book-fab {
    bottom: 16px;
    right: 16px;
  }

  .ew-book-fab__toggle {
    padding: 12px 16px;
    font-size: 13px;
  }

  .ew-book-fab__options {
    bottom: calc(100% + 12px);
    gap: 8px;
  }

  .ew-book-fab__option {
    width: 46px;
    height: 46px;
  }

  .ew-book-fab__option i {
    font-size: 20px;
  }
}
