/* ==========================================================================
   EKAANTA RETREAT DESIGN SYSTEM (EXACT REPLICATION FOR CT OFFICIAL)
   Source: https://ekaanta.in/retreat/
   Fonts: self-hosted Cormorant Garamond + Adega (same files as Ekaanta)
   ========================================================================== */

@font-face {
  font-family: "Adega";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://ns-resource-static.s3.ap-south-1.amazonaws.com/hcl/ct/fonts/AdegaSerif.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("https://ns-resource-static.s3.ap-south-1.amazonaws.com/hcl/ct/fonts/CormorantGaramond-Light.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("https://ns-resource-static.s3.ap-south-1.amazonaws.com/hcl/ct/fonts/CormorantGaramond-LightItalic.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://ns-resource-static.s3.ap-south-1.amazonaws.com/hcl/ct/fonts/CormorantGaramond-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("https://ns-resource-static.s3.ap-south-1.amazonaws.com/hcl/ct/fonts/CormorantGaramond-Italic.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://ns-resource-static.s3.ap-south-1.amazonaws.com/hcl/ct/fonts/CormorantGaramond-Medium.woff2") format("woff2");
}

:root {
  /* Ekaanta Global Color Tokens */
  --e-global-color-primary: #223646;
  --e-global-color-secondary: #54595F;
  --e-global-color-text: #223646;
  --e-global-color-accent: #C37E56;
  --e-global-color-accent-hover: #A26644;

  --e-global-color-sand-light: #DFD3CA;
  --e-global-color-cream: #FFF7ED;
  --e-global-color-bg-page: #FFFFFB;
  --e-global-color-card-bg: #F5EEE5;
  --e-global-color-card-white: #FFFFFF;
  --e-global-color-dark-bar: #1A2B38;
  --e-global-color-footer-bg: #1B2B38;

  --e-global-color-border: rgba(34, 54, 70, 0.12);
  --e-global-color-border-light: rgba(255, 255, 255, 0.15);

  /* Exact Ekaanta type roles:
     Headings: Cormorant Garamond 300
     Body / hero support: DM Sans 300
     Eyebrows: DM Sans 500 uppercase
     Nav / buttons: Lato
     Brand secondary: Adega */
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-adega: "Adega", "Cormorant Garamond", Georgia, serif;
  --font-body: "Lato", Helvetica, Arial, sans-serif;
  --font-ui: "DM Sans", Helvetica, Arial, sans-serif;
  --font-support: "DM Sans", Helvetica, Arial, sans-serif;
  --font-sans: "DM Sans", Helvetica, Arial, sans-serif;
  --font-lato: "Lato", Helvetica, Arial, sans-serif;

  --h1-size: 76px;
  --h2-size: 44px;
  --h3-size: 22px;
  --h4-size: 20px;
  --eyebrow-size: 12px;
  --body-size: 14px;

  --container-max-width: 1280px;
  --section-spacing: 90px 0;

  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-pill: 9999px;

  --transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-soft: 0 8px 24px rgba(34, 54, 70, 0.06);
  --shadow-card: 0 14px 36px rgba(34, 54, 70, 0.09);
}

/* Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--e-global-color-bg-page);
  color: var(--e-global-color-text);
  font-family: var(--font-body);
  font-size: var(--body-size);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--e-global-color-primary);
  line-height: 1.15;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

picture {
  display: contents;
}

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

/* Skip rendering work for below-the-fold sections until near viewport */
.programmes-section,
.experiences-section,
.testimonials-section,
.partners-section,
.gallery-strip-section,
.enquiry-section,
.ctp-directory-section {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   BUTTONS (EXACT EKAANTA STYLING)
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--radius-xs);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--e-global-color-accent);
  color: #ffffff;
  border: 1px solid var(--e-global-color-accent);
}

.btn-primary:hover {
  background-color: var(--e-global-color-accent-hover);
  border-color: var(--e-global-color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(195, 126, 86, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--e-global-color-primary);
  border: 1px solid var(--e-global-color-primary);
}

.btn-outline:hover {
  background-color: var(--e-global-color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--e-global-color-primary);
  border-color: #ffffff;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 12px;
  letter-spacing: 2px;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 11px;
}

.btn-block {
  width: 100%;
}

/* Eyebrow Label Style (h6 — matches ekaanta a36f403 / f8b3209) */
.eyebrow,
h6.eyebrow,
h6.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: var(--eyebrow-size);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--e-global-color-accent);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

h6.hero-eyebrow {
  margin-bottom: 20px;
}

h6.hero-eyebrow::before {
  content: "";
  flex: 0 0 30px;
  width: 30px;
  max-width: 30px;
  height: 1px;
  background: var(--e-global-color-accent);
}

/* remove old em-dash pseudo if present elsewhere */
h6.hero-eyebrow::after {
  content: none;
}

.eyebrow-white {
  color: var(--e-global-color-sand-light);
}

.eyebrow-accent {
  color: var(--e-global-color-accent);
}

/* ==========================================================================
   SECTION 1: UNIFIED DARK HERO CANVAS (#223646) & FOUR PILLARS BAR
   ========================================================================== */

.hero-wrapper-dark {
  background-color: var(--e-global-color-primary);
  color: #ffffff;
  width: 100%;
  position: relative;
}

/* Site Header */
.site-header {
  height: 90px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: var(--transition);
  background: transparent;
  width: 100%;
}

.site-header .header-container {
  width: 100%;
}

.site-header.scrolled {
  background-color: rgba(34, 54, 70, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-container {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  min-width: 160px;
  max-width: 240px;
}

.brand-logo .header-logo,
.brand-logo .logo-img {
  height: 58px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 6px;
  padding: 4px 8px;
}

.drawer-logo {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 6px;
  padding: 4px 8px;
}

.footer-brand-link {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 6px;
  padding: 6px 10px;
}

.brand-wordmark {
  font-family: var(--font-adega);
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: none;
}

.brand-tagline {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: rgba(255, 255, 255, 0.55);
}

.desktop-nav {
  justify-self: center;
}

.desktop-nav .nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 22px;
  justify-content: center;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  display: none;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link.active {
  color: var(--e-global-color-accent);
}

.nav-caret {
  font-size: 10px;
  margin-left: 2px;
  opacity: 0.7;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.mobile-toggle-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle-btn .bar {
  width: 24px;
  height: 2px;
  background-color: var(--e-global-color-sand-light);
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 22, 30, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

@media (max-width: 768px) {
  .mobile-drawer {
    display: flex;
  }
}

.mobile-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 360px;
  height: 100%;
  background: var(--e-global-color-primary);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition);
  color: #ffffff;
}

.mobile-drawer.open .mobile-drawer-inner {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-close-btn {
  color: #ffffff;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.drawer-logo {
  height: 44px;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.mobile-nav-link {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--e-global-color-sand-light);
}

.mobile-nav-link:hover {
  color: var(--e-global-color-accent);
}

.mobile-drawer-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

/* Hero — full viewport width 50/50 split (ekaanta e1cea18) */
.hero-section {
  min-height: 75vh;
  display: flex;
  align-items: stretch;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 75vh;
}

.hero-content {
  display: flex;
  align-items: center;
  padding: 48px 6% 48px 5%;
  background-color: var(--e-global-color-primary);
}

.hero-content-inner {
  max-width: 640px;
}

.hero-eyebrow {
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: var(--h1-size);
  font-weight: 300;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0;
  max-width: none;
  text-transform: none;
}

.hero-subtext {
  font-family: var(--font-support);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-media-wrapper {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.hero-photo,
.hero-video-player {
  width: 100%;
  height: 100%;
  min-height: 75vh;
  object-fit: cover;
  display: block;
}

.highlight-serif {
  color: var(--e-global-color-primary);
  font-style: italic;
}

/* 4 Pillars Bar */
.pillars-bar-dark {
  background-color: #1a2b38;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pillars-bar-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.pillar-col {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.pillar-circle-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--e-global-color-accent);
  color: var(--e-global-color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.pillar-circle-icon svg {
  width: 18px;
  height: 18px;
}

.pillar-col:hover .pillar-circle-icon {
  background-color: var(--e-global-color-accent);
  color: #ffffff;
}

.pillar-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.pillar-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.45;
}

.pillar-col:last-child {
  border-right: none;
}

.pillar-text-group {
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   SECTION 2: OUR PHILOSOPHY (STAGGERED DUAL PHOTOS + 3 NUMBERED ITEMS)
   ========================================================================== */

.philosophy-section {
  padding: 100px 0;
  background-color: var(--e-global-color-bg-page);
}

.philosophy-container {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 72px;
  align-items: center;
}

.philosophy-visual-staggered {
  position: relative;
  min-height: 580px;
}

.staggered-main-frame {
  width: 72%;
  height: 500px;
  overflow: hidden;
}

.staggered-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staggered-sub-frame {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 300px;
  overflow: hidden;
  border: 5px solid var(--e-global-color-bg-page);
  box-shadow: 0 12px 32px rgba(34, 54, 70, 0.12);
}

.staggered-sub-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-content {
  padding-right: 12px;
}

.philosophy-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.philosophy-eyebrow-row .eyebrow {
  margin-bottom: 0;
  flex-shrink: 0;
}

.eyebrow-line {
  flex: 1;
  height: 1px;
  background-color: var(--e-global-color-accent);
  opacity: 0.55;
  max-width: 120px;
}

.philosophy-title {
  font-family: var(--font-serif);
  font-size: var(--h2-size);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--e-global-color-primary);
  margin-bottom: 24px;
}

.philosophy-intro-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--e-global-color-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.philosophy-numbered-list {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.numbered-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--e-global-color-border);
  align-items: start;
}

.numbered-item:last-child {
  border-bottom: 1px solid var(--e-global-color-border);
}

.num-digit {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--e-global-color-accent);
  line-height: 1;
  padding-top: 2px;
}

.num-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--e-global-color-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.num-desc {
  font-family: var(--font-lato);
  font-size: 14px;
  font-weight: 400;
  color: var(--e-global-color-secondary);
  line-height: 1.7;
}

.quote-callout {
  background: var(--e-global-color-card-bg);
  border-left: 3px solid var(--e-global-color-accent);
  padding: 18px 22px;
  border-radius: var(--radius-xs);
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
  color: var(--e-global-color-primary);
}

.quote-text strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-style: normal;
  color: var(--e-global-color-accent);
}

.section-title {
  font-family: var(--font-serif);
  font-size: var(--h2-size);
  font-weight: 300;
  line-height: 1.15;
  color: var(--e-global-color-primary);
  margin-bottom: 20px;
}

/* ==========================================================================
   SECTION 3: WELLNESS PROGRAMMES (PHOTO BANNER CARDS & DIRECTORY)
   ========================================================================== */

.programmes-section {
  padding: var(--section-spacing);
  background-color: var(--e-global-color-cream);
}

.section-heading-center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--e-global-color-secondary);
  line-height: 1.8;
  margin-top: 12px;
}

.programmes-grid-photo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

/* Ekaanta image-box cards (matches elementor-image-box) */
.ekaanta-image-box {
  display: flex;
  flex-direction: column;
}

.ekaanta-image-box-img {
  margin: 0;
  aspect-ratio: 10 / 7;
  overflow: hidden;
  border-radius: var(--radius-xs);
}

.ekaanta-image-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ekaanta-image-box:hover .ekaanta-image-box-img img {
  transform: scale(1.04);
}

.ekaanta-image-box-content {
  padding: 16px 0 0;
}

.ekaanta-image-box-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--e-global-color-primary);
  margin-bottom: 8px;
  line-height: 1.25;
}

.ekaanta-image-box-desc {
  font-size: 13px;
  color: var(--e-global-color-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
}

.ekaanta-image-box-count {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: var(--e-global-color-accent);
  margin-bottom: 12px;
}

.ekaanta-explore-link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--e-global-color-primary);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}

.ekaanta-explore-link:hover {
  color: var(--e-global-color-accent);
}

.ekaanta-image-box--flat .ekaanta-image-box-content {
  padding-top: 14px;
}

.programmes-view-all {
  text-align: center;
  margin-top: 8px;
}

.programmes-view-all-link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--e-global-color-primary);
  background: none;
  border: none;
  border-bottom: 1px solid var(--e-global-color-accent);
  padding: 0 0 4px;
  cursor: pointer;
  transition: var(--transition);
}

.programmes-view-all-link:hover {
  color: var(--e-global-color-accent);
}

/* Ekaanta split sections (0a2079d, 8f1b375 patterns) */
.ekaanta-split-dark {
  background-color: var(--e-global-color-primary);
  color: #ffffff;
  padding: 0;
}

.ekaanta-split-full .ekaanta-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: none;
  align-items: stretch;
  min-height: 520px;
}

.ekaanta-split-full .ekaanta-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8%;
}

.ekaanta-split-full .ekaanta-split-media {
  min-height: 100%;
}

.ekaanta-split-full .ekaanta-split-photo {
  width: 100%;
  height: 100%;
  min-height: 520px;
  aspect-ratio: unset;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}

.ekaanta-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ekaanta-split-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 300;
  line-height: 1.15;
  color: #ffffff;
  margin: 8px 0 16px;
}

.ekaanta-split-desc {
  font-family: var(--font-support);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.ekaanta-split-video,
.ekaanta-split-photo {
  width: 100%;
  border-radius: var(--radius-xs);
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.programme-photo-card {
  background-color: #ffffff;
  border-radius: var(--radius-xs);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.programme-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.card-thumb-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #223646;
}

.card-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.programme-photo-card:hover .card-thumb-img {
  transform: scale(1.04);
}

.card-photo-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(34, 54, 70, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
}

.card-photo-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-photo-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--e-global-color-primary);
  margin-bottom: 10px;
  line-height: 1.25;
}

.card-photo-desc {
  font-size: 13px;
  color: var(--e-global-color-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
  flex-grow: 1;
}

.card-programme-count {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--e-global-color-accent);
  margin-bottom: 16px;
  display: block;
}

.card-photo-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--e-global-color-border);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--e-global-color-primary);
  background: none;
  border-left: none;
  border-right: none;
  border-bottom: none;
  cursor: pointer;
  transition: var(--transition);
}

.card-photo-link:hover {
  color: var(--e-global-color-accent);
}

/* 27 Cleanses Directory */
.cleanse-directory-box {
  background-color: var(--e-global-color-primary);
  border-radius: var(--radius-xs);
  padding: 40px 32px;
  color: #ffffff;
}

.directory-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 20px;
  flex-wrap: wrap;
}

.directory-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 300;
  color: #ffffff;
  margin-top: 4px;
}

.directory-sub {
  font-size: 13px;
  color: var(--e-global-color-sand-light);
  margin-top: 4px;
}

.cleanse-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cleanse-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 7px 14px;
  border-radius: var(--radius-xs);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
  cursor: pointer;
}

.cleanse-tag:hover, .cleanse-tag.active {
  background-color: var(--e-global-color-accent);
  border-color: var(--e-global-color-accent);
  color: #ffffff;
}

/* ==========================================================================
   FULL-BLEED FEATURE BANNER (like Ekaanta private ghaat)
   ========================================================================== */

.feature-banner-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.feature-banner-bg {
  position: absolute;
  inset: 0;
}

.feature-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34, 54, 70, 0.92) 0%, rgba(34, 54, 70, 0.55) 55%, rgba(34, 54, 70, 0.25) 100%);
}

.feature-banner-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 80px 24px;
  color: #ffffff;
}

.feature-banner-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 300;
  line-height: 1.15;
  color: #ffffff;
  margin: 8px 0 16px;
}

.feature-banner-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

/* ==========================================================================
   SECTION 4: 2-COLUMN SPLIT FEATURE (DARK SLATE LHS + LIGHT CREAM RHS)
   ========================================================================== */

.split-feature-section {
  background-color: #EDE5DC;
}

.split-feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.split-feature-lhs {
  background-color: var(--e-global-color-primary);
  color: #ffffff;
  padding: 80px 64px 80px 8%;
  display: flex;
  align-items: center;
}

.split-lhs-inner {
  max-width: 580px;
}

.split-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 300;
  line-height: 1.18;
  color: #ffffff;
  margin: 10px 0 18px;
}

.split-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 28px;
}

.split-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.spec-mini-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.spec-icon {
  color: var(--e-global-color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.spec-mini-card strong {
  display: block;
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 2px;
}

.spec-mini-card span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

.split-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cert-pill {
  font-size: 11px;
  color: var(--e-global-color-sand-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cert-pill i {
  color: #2E7D32;
}

.split-feature-rhs {
  background-color: #EDE5DC;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.split-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #000;
}

.split-video-player {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.split-video-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 5px 12px;
  border-radius: var(--radius-xs);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--e-global-color-primary);
}

.split-video-badge i {
  color: var(--e-global-color-accent);
}

/* ==========================================================================
   SECTION 5: SIGNATURE EXPERIENCES (4 PHOTO CARDS)
   ========================================================================== */

.experiences-section {
  padding: var(--section-spacing);
  background-color: var(--e-global-color-bg-page);
}

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

.exp-card {
  display: flex;
  flex-direction: column;
}

.exp-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-xs);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}

.exp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.exp-card:hover .exp-img {
  transform: scale(1.05);
}

.exp-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--e-global-color-primary);
  margin-bottom: 8px;
  line-height: 1.25;
}

.exp-desc {
  font-size: 13px;
  color: var(--e-global-color-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 6: LARGE SPLIT BANNER (CTP PRACTITIONER / TRAINING)
   ========================================================================== */

.corporate-split-section {
  background-color: var(--e-global-color-primary);
  color: #ffffff;
}

.corporate-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.corp-img-col {
  height: 100%;
}

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

.corp-content-col {
  padding: 80px 8% 80px 60px;
  display: flex;
  align-items: center;
}

.corp-content-inner {
  max-width: 540px;
}

.corp-title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 300;
  line-height: 1.18;
  color: #ffffff;
  margin: 10px 0 16px;
}

.highlight-gold {
  color: var(--e-global-color-sand-light);
  font-style: italic;
}

.corp-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}

.corp-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.corp-feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.corp-feat i {
  color: var(--e-global-color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.corp-feat strong {
  display: block;
  font-size: 13px;
  color: #ffffff;
}

.corp-feat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
}

.corp-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   SECTION 7: GUEST VOICES (TESTIMONIALS)
   ========================================================================== */

.testimonials-section {
  padding: var(--section-spacing);
  background-color: var(--e-global-color-cream);
}

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

.testimonial-card {
  background: transparent;
  padding: 0 24px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  transition: none;
}

.testimonial-card:hover {
  transform: none;
  box-shadow: none;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 1;
  color: var(--e-global-color-accent);
  margin-bottom: 8px;
}

.test-text {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.65;
  color: var(--e-global-color-primary);
  margin-bottom: 24px;
}

.test-author {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--e-global-color-secondary);
  margin-top: auto;
}

/* ==========================================================================
   SECTION 8: PARTNERS LOGO ROW
   ========================================================================== */

.partners-section {
  padding: 56px 0;
  background-color: var(--e-global-color-bg-page);
}

.partners-title {
  text-align: center;
  font-family: var(--font-sans);
  font-size: var(--eyebrow-size);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--e-global-color-accent);
  margin-bottom: 32px;
}

.partners-logos-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px 48px;
  flex-wrap: wrap;
  max-width: 980px;
  margin: 0 auto;
}

.partner-logo {
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ==========================================================================
   SECTION 9: FULL-WIDTH DARK STATS SECTION
   ========================================================================== */

.location-dark-section {
  padding: var(--section-spacing);
  background-color: var(--e-global-color-primary);
  color: #ffffff;
}

.location-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
}

.location-title {
  font-family: var(--font-serif);
  font-size: var(--h2-size);
  font-weight: 300;
  color: #ffffff;
  margin-top: 6px;
}

.location-sub {
  font-size: 14px;
  color: var(--e-global-color-sand-light);
  margin-top: 8px;
}

.location-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.loc-stat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 0 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.loc-stat-card:first-child {
  border-left: none;
}

.loc-stat-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 10px;
}

.loc-stat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 10: SPACES GALLERY STRIP
   ========================================================================== */

.gallery-strip-section {
  padding: var(--section-spacing);
  background-color: var(--e-global-color-bg-page);
}

.gallery-eyebrow {
  text-align: center;
  margin-bottom: 32px;
}

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

.gallery-grid-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-grid-img:hover {
  transform: scale(1.02);
}

/* ==========================================================================
   SECTION 11: PLAN YOUR STAY / RESERVATION ENQUIRY FORM
   ========================================================================== */

.enquiry-section {
  padding: var(--section-spacing);
  background-color: var(--e-global-color-cream);
}

.enquiry-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.enquiry-subtext {
  font-size: 14px;
  color: var(--e-global-color-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.booking-inline-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field-wrap label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--e-global-color-primary);
}

.field-wrap input, .field-wrap select, .field-wrap textarea {
  background: #ffffff;
  border: 1px solid var(--e-global-color-border);
  padding: 11px 14px;
  border-radius: var(--radius-xs);
  font-size: 13px;
  font-family: var(--font-sans);
}

.field-wrap input:focus, .field-wrap select:focus, .field-wrap textarea:focus {
  outline: none;
  border-color: var(--e-global-color-accent);
}

.form-status {
  min-height: 20px;
  font-size: 13px;
  margin: 4px 0 0;
}

.form-status.is-success {
  color: #2f7a4f;
}

.form-status.is-error {
  color: #b42318;
}

.modal-form .form-status {
  margin-bottom: 12px;
}

/* RHS Staggered Visual */
.enquiry-staggered-wrap {
  position: relative;
  min-height: 480px;
}

.enquiry-img-top {
  width: 82%;
  height: 380px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.enquiry-img-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 220px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(34, 54, 70, 0.18);
  border: 4px solid #ffffff;
}

.enquiry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enquiry-doc-badge {
  position: absolute;
  top: 20px;
  right: 16px;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}

.doc-badge-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.enquiry-doc-badge strong {
  display: block;
  font-size: 12px;
  color: var(--e-global-color-primary);
}

.enquiry-doc-badge span {
  font-size: 10px;
  color: var(--e-global-color-accent);
}

/* ==========================================================================
   SECTION 12: LUXURY FOOTER (#1B2B38)
   ========================================================================== */

.site-footer {
  background-color: var(--e-global-color-footer-bg);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 48px;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-wordmark {
  font-family: var(--font-adega);
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-contact-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-contact-label {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--eyebrow-size);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--e-global-color-sand-light);
  margin-bottom: 4px;
}

.footer-brand-col .footer-socials {
  margin-top: 16px;
}

.footer-logo {
  height: 34px;
  width: auto;
  background: #ffffff;
  padding: 4px 8px;
  border-radius: var(--radius-xs);
  object-fit: contain;
}

.footer-bio {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}

.footer-motto {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: var(--e-global-color-sand-light);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: var(--eyebrow-size);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--e-global-color-sand-light);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--e-global-color-sand-light);
  padding-left: 4px;
}

.footer-small {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.footer-newsletter-form {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}

.footer-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 9px 12px;
  border-radius: var(--radius-xs);
  color: #ffffff;
  font-size: 12px;
  width: 100%;
}

.footer-input:focus {
  outline: none;
  border-color: var(--e-global-color-accent);
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--e-global-color-accent);
}

.footer-bottom {
  background-color: #121E27;
  padding: 18px 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 10px;
}

.footer-bottom-links a:hover {
  color: var(--e-global-color-sand-light);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (MATCHING EKAANTA)
   ========================================================================== */

.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: var(--radius-pill);
  padding: 8px 18px 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  transition: var(--transition);
}

.floating-whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.wa-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.wa-text-box strong {
  font-size: 13px;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.wa-text-box span {
  font-size: 10px;
  opacity: 0.9;
}

/* ==========================================================================
   MODALS SYSTEM
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 22, 30, 0.75);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background-color: var(--e-global-color-bg-page);
  border-radius: var(--radius-xs);
  width: min(560px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  padding: 28px 20px;
  position: relative;
  box-shadow: var(--shadow-card);
  max-height: 90vh;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(34, 54, 70, 0.08);
  color: var(--e-global-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.modal-close-btn:hover {
  background-color: var(--e-global-color-accent);
  color: #ffffff;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--e-global-color-primary);
  margin-top: 4px;
}

.modal-subtitle {
  font-size: 13px;
  color: var(--e-global-color-secondary);
  margin-top: 4px;
  margin-bottom: 20px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Theme feedback dialog — no horizontal scroll */
.theme-dialog-backdrop {
  padding: 16px;
}

.feedback-dialog {
  width: min(400px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  margin: 0 auto;
  padding: 0;
  text-align: center;
  background: var(--e-global-color-bg-page);
  border-top: 4px solid var(--e-global-color-accent);
  overflow-x: hidden;
  box-sizing: border-box;
}

.feedback-dialog.is-success {
  border-top-color: #2f7a4f;
}

.feedback-dialog.is-error {
  border-top-color: #b42318;
}

.feedback-dialog.is-info {
  border-top-color: var(--e-global-color-accent);
}

.feedback-dialog.is-info .feedback-icon-wrap {
  background: rgba(195, 126, 86, 0.14);
  color: var(--e-global-color-accent);
}

.feedback-dialog-inner {
  padding: 36px 24px 28px;
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}

.feedback-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  line-height: 1;
  flex-shrink: 0;
}

.feedback-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.feedback-dialog.is-success .feedback-icon-wrap {
  background: rgba(47, 122, 79, 0.12);
  color: #2f7a4f;
}

.feedback-dialog.is-error .feedback-icon-wrap {
  background: rgba(180, 35, 24, 0.12);
  color: #b42318;
}

.feedback-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--e-global-color-primary);
  line-height: 1.25;
  margin: 0 0 12px;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.feedback-message {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--e-global-color-secondary);
  margin: 0 0 24px;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
  white-space: pre-line;
}

.feedback-ok-btn {
  min-width: 140px;
  max-width: 100%;
}

.feedback-close-btn {
  top: 12px;
  right: 12px;
}

body.dialog-open {
  overflow: hidden;
  overflow-x: hidden;
}

html.dialog-open {
  overflow-x: hidden;
}

#bookingModal .modal-dialog,
#brochureModal .modal-dialog {
  overflow-x: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  max-width: 100%;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--e-global-color-primary);
}

.form-group input,
.form-group select,
.form-group textarea,
.form-select {
  background: #ffffff;
  border: 1px solid var(--e-global-color-border);
  padding: 9px 12px;
  border-radius: var(--radius-xs);
  font-size: 13px;
  font-family: var(--font-body);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--e-global-color-accent);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-dialog {
    padding: 24px 16px;
  }
}

/* Video Lightbox */
.video-dialog {
  max-width: 840px;
  padding: 10px;
  background: #000;
}

.video-responsive-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-responsive-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   AUTHORISED CTP DIRECTORY PAGE
   ========================================================================== */

.site-header--solid {
  background-color: var(--e-global-color-primary);
  position: sticky;
  top: 0;
}

.inner-page {
  background-color: var(--e-global-color-bg-page);
}

.ctp-page-hero {
  background-color: var(--e-global-color-primary);
  color: #ffffff;
  padding: 72px 0 56px;
  text-align: center;
}

.ctp-page-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.15;
  margin: 8px 0 16px;
}

.ctp-page-lead {
  font-family: var(--font-support);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto;
}

.ctp-directory-section {
  padding: var(--section-spacing);
  background-color: var(--e-global-color-cream);
}

.ctp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.ctp-card {
  background: #ffffff;
  border-radius: var(--radius-xs);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.ctp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.ctp-card-thumb {
  margin: 0;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-bottom: 1px solid var(--e-global-color-border);
}

.ctp-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ctp-card-body {
  padding: 18px 16px 22px;
  text-align: center;
}

.ctp-card-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--e-global-color-primary);
  line-height: 1.25;
  margin-bottom: 8px;
}

.ctp-card-code {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--e-global-color-accent);
  margin-bottom: 8px;
}

.ctp-card-city {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--e-global-color-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ctp-card-city i,
.ctp-card-city svg {
  width: 14px;
  height: 14px;
  color: var(--e-global-color-accent);
}

.ctp-page-cta {
  background-color: var(--e-global-color-primary);
  padding: 56px 0;
  color: rgba(255, 255, 255, 0.85);
}

.ctp-page-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.ctp-page-cta p {
  font-family: var(--font-support);
  font-size: 15px;
  font-weight: 300;
  max-width: 520px;
  line-height: 1.7;
}

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  :root {
    --h1-size: 44px;
    --h2-size: 34px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 40px 24px;
  }

  .hero-photo,
  .hero-video-player {
    min-height: 320px;
  }

  .header-container {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .pillars-bar-container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }

  .pillar-col {
    border-right: none;
  }

  .philosophy-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .philosophy-visual-staggered {
    min-height: 420px;
  }

  .staggered-main-frame {
    width: 78%;
    height: 360px;
  }

  .staggered-sub-frame {
    width: 55%;
    height: 220px;
  }

  .num-digit {
    font-size: 36px;
  }

  .programmes-grid-photo {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .ekaanta-split-full .ekaanta-split-grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .ekaanta-split-full .ekaanta-split-content {
    padding: 60px 24px;
    order: 1;
  }

  .ekaanta-split-full .ekaanta-split-media {
    order: 2;
  }

  .ekaanta-split-full .ekaanta-split-photo {
    min-height: 320px;
  }

  .ekaanta-split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ekaanta-split-title {
    font-size: 30px;
  }

  .loc-stat-card {
    border-left: none;
    text-align: center;
    align-items: center;
  }

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

  .split-feature-grid {
    grid-template-columns: 1fr;
  }

  .split-feature-lhs {
    padding: 60px 24px;
  }

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

  .corporate-split-grid {
    grid-template-columns: 1fr;
  }

  .location-stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .enquiry-container {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  :root {
    --h1-size: 34px;
    --h2-size: 28px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-toggle-btn {
    display: flex;
  }

  .pillars-bar-container {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .pillar-col {
    padding: 0 10px;
  }

  .programmes-grid-photo {
    grid-template-columns: 1fr;
  }

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

  .ctp-page-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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

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

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }
}
