:root {
  --cream: #fff4ec;
  --cream-2: #fff9f4;
  --pink: #d9848f;
  --pink-dark: #b85d6b;
  --pink-soft: #f4c8cf;
  --pink-light: #fff0f3;
  --gold: #c3902f;
  --gold-dark: #9c6c16;
  --brown: #6d4a2d;
  --brown-dark: #3f2a1a;
  --text: #5b4638;
  --muted: #8a7463;
  --shadow: 0 14px 35px rgba(121, 70, 78, 0.13);
  --radius: 16px;
    --gold: #c99218;
      --gold-dark: #9f720b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--cream-2);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.section {
  padding: 85px 0;
  position: relative;
  overflow: hidden;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 1.2;
  color: var(--brown);
  margin-bottom: 15px;
}

.section-text {
  color: var(--muted);
  font-size: 15px;
  max-width: 760px;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(217, 132, 143, .28);
  transition: .25s ease;
} */

.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--pink-dark), var(--gold-dark));
}

.bg-line-art::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .13;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: left 30px top 70px, right 40px top 120px, right 60px bottom 70px;
  background-size: 260px, 260px, 300px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='240' viewBox='0 0 280 240'%3E%3Ccircle cx='140' cy='55' r='20' fill='none' stroke='%23d9848f' stroke-width='4'/%3E%3Cpath d='M140 82 C120 105 112 132 90 150' fill='none' stroke='%236d4a2d' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M140 82 C160 105 168 132 190 150' fill='none' stroke='%236d4a2d' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M92 150 C120 170 160 170 188 150' fill='none' stroke='%23c3902f' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M72 195 C110 172 170 172 208 195' fill='none' stroke='%23d9848f' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M115 205 C130 188 150 188 165 205' fill='none' stroke='%23c3902f' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='240' viewBox='0 0 280 240'%3E%3Cpath d='M30 190 L100 82 L145 150 L178 105 L250 190 Z' fill='none' stroke='%236d4a2d' stroke-width='4' stroke-linejoin='round'/%3E%3Cpath d='M52 205 C90 188 125 218 165 198 C195 182 220 198 250 188' fill='none' stroke='%23c3902f' stroke-width='3' stroke-linecap='round'/%3E%3Ccircle cx='220' cy='58' r='18' fill='none' stroke='%23c3902f' stroke-width='3'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='330' height='250' viewBox='0 0 330 250'%3E%3Cpath d='M50 190 V95 H145 V190' fill='none' stroke='%236d4a2d' stroke-width='4' stroke-linejoin='round'/%3E%3Cpath d='M80 190 V140 H115 V190' fill='none' stroke='%23d9848f' stroke-width='3'/%3E%3Cpath d='M165 90 C205 35 260 48 290 90' fill='none' stroke='%23d9848f' stroke-width='3' stroke-dasharray='7 8'/%3E%3Cpath d='M272 78 l28 8 -20 9 6 16 -15-12 -14 12 5-17 -18-8z' fill='none' stroke='%236d4a2d' stroke-width='3' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 22px 0;
}

.nav {
  width: min(1180px, 92%);
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.menu-left,
.menu-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-left {
  position: absolute;
  left: 0;
}

.menu-right {
  position: absolute;
  right: 0;
}

.nav a.menu-link {
  padding: 9px 13px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  transition: .25s ease;
  white-space: nowrap;
}

.nav a.menu-link:hover,
.nav a.active {
  background: rgba(255, 255, 255, .15);
  color: var(--pink-soft);
}

.center-logo {
  width: 150px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.center-logo img {
  width: 140px;
  height: 95px;
  object-fit: contain;
}

/* .nav-btn {
  padding: 11px 22px !important;
  border-radius: 999px;
  background: #fff;
  color: var(--pink-dark) !important;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

.nav-btn:hover {
  background: var(--pink-light) !important;
  color: var(--pink-dark) !important;
} */

.mobile-toggle {
  display: none;
  position: absolute;
  right: 0;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--pink-dark);
  font-size: 18px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 118px;
  width: min(92%, 420px);
  background: rgba(255, 249, 244, .98);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 22px 55px rgba(63, 42, 26, .20);
  border: 1px solid rgba(255, 255, 255, .72);
  z-index: 49;
}

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

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  color: var(--brown);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
}

.mobile-menu .mobile-cta {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  color: #fff;
  justify-content: center;
  border-radius: 999px;
}

/* Home Hero */
.hero {
  min-height: 850px;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #3f2a1a;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(63, 42, 26, .90) 0%, rgba(63, 42, 26, .70) 45%, rgba(63, 42, 26, .25) 100%), linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .35));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  z-index: 2;
  background: linear-gradient(transparent, var(--cream-2));
}

/* .hero-content {
  position: relative;
  z-index: 3;
  width: min(1180px, 92%);
  margin: auto;
  padding-top: 130px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: center;
} */

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  color: var(--pink-soft);
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.hero-kicker i {
  color: var(--gold);
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 6.5vw, 86px);
  line-height: .98;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 span {
  display: block;
  color: var(--pink-soft);
}

.hero p {
  max-width: 650px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, .88);
  font-size: 16px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.hero-secondary span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .25);
}

.hero-info-card {
  justify-self: end;
  width: min(380px, 100%);
  background: rgba(255, 249, 244, .94);
  color: var(--brown);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .25);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .70);
}

.hero-info-card .tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-info-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.15;
  color: var(--brown-dark);
  margin-bottom: 12px;
}

.hero-info-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 22px;
}

.hero-card-points {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-card-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff;
  font-size: 13px;
  color: var(--text);
}

.hero-card-points i {
  color: var(--pink-dark);
}

.slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: .25s ease;
}

.slider-dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--pink-soft);
}

.hero-strip {
  background: linear-gradient(90deg, var(--pink-dark), var(--pink), var(--gold));
  color: #fff;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 500;
}

.strip-inner {
  display: flex;
  justify-content: center;
  gap: 38px;
  flex-wrap: wrap;
}

.strip-inner i {
  margin-right: 8px;
}

/* Page Hero / Breadcrumb Area */
.page-hero {
  min-height: auto;
  padding: 165px 0 78px;
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1900&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(63, 42, 26, .52);
  z-index: 0;
}

.page-hero-content {
  width: min(1180px, 92%);
  margin: auto;
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 18px;
  color: #fff;
}

.page-hero p {
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  max-width: 680px;
  margin: 0 auto;
}

.page-hero .eyebrow {
  color: var(--pink-soft);
}

.breadcrumb {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
  font-size: 13px;
  color: var(--muted);
  backdrop-filter: blur(10px);
}

.breadcrumb a {
  color: var(--pink-dark);
  font-weight: 500;
}

.breadcrumb i {
  font-size: 11px;
  color: var(--gold);
}

.about-page-hero {
  background-image: url("../images/gallery/23.avif");
}

.services-page-hero {
  background-image: url("../images/gallery/22.avif");
}

.packages-page-hero {
  background-image: url("../images/gallery/11.avif");
}

.contact-page-hero {
  background-image: url("../images/gallery/22.avif") !important;
  background-size: cover;
  background-position: center;
}

.enquiry-page-hero {
  background-image: url("../images/gallery/21.avif");
}

/* Common grids/cards */
.welcome-grid,
.intro-grid,
.about-intro,
.retreat-banner,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.image-card,
.intro-img,
.about-img-main {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  /* height: 430px; */
}

.image-card img,
.intro-img img,
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-card h3,
.intro-content h2,
.about-content h2 {
  font-family: "Playfair Display", serif;
  color: var(--brown-dark);
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.content-card p,
.intro-content p,
.about-content p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 15px;
}

.mini-features,
.intro-points,
.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.mini-features div,
.intro-points div,
.about-points div {
  background: #fff;
  padding: 14px 15px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .04);
  font-size: 14px;
  font-weight: 500;
  color: var(--brown);
}

.mini-features i,
.intro-points i,
.about-points i {
  color: var(--gold);
  margin-right: 8px;
}

.services-grid,
.why-grid,
.package-grid,
.experience-grid,
.process-grid,
.philosophy-grid {
  display: grid;
  gap: 24px;
  position: relative;
  z-index: 2;
}

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

.experience-grid,
.process-grid,
.philosophy-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.why-card,
.experience-card,
.process-card,
.philosophy-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 30px;
  transition: .25s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover,
.why-card:hover,
.experience-card:hover,
.package-card:hover,
.process-card:hover,
.philosophy-item:hover {
  transform: translateY(-5px);
}

.service-card::before,
.why-card::before,
.experience-card::before,
.process-card::before,
.philosophy-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--pink-dark), var(--pink), var(--gold));
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light), #fff);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(217, 132, 143, .15);
  font-size: 18px;
}

.service-card h3,
.why-card h3,
.experience-card h3,
.process-card h3,
.philosophy-item h3 {
  font-family: "Playfair Display", serif;
  color: var(--brown-dark);
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card p,
.why-card p,
.experience-card p,
.process-card p,
.philosophy-item p {
  font-size: 14px;
  color: var(--muted);
}

.service-card ul,
.package-body ul {
  list-style: none;
  margin-top: 16px;
}

.service-card li,
.package-body li {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.service-card li i,
.package-body li i {
  color: var(--gold);
  margin-right: 8px;
}

.packages-section {
  background: radial-gradient(circle at top left, rgba(217, 132, 143, .18), transparent 32%), radial-gradient(circle at bottom right, rgba(195, 144, 47, .16), transparent 35%), linear-gradient(180deg, var(--cream), var(--cream-2));
}

.package-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .25s ease;
}

.package-img {
  height: 230px;
  position: relative;
}

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

.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.price {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(63, 42, 26, .84);
  color: #fff;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.package-body {
  padding: 24px;
}

.package-body small {
  color: var(--pink-dark);
  font-weight: 600;
}

.package-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: var(--brown-dark);
  margin: 6px 0 12px;
}

.package-body p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 15px;
}

/* .package-body .btn {
  width: 100%;
  background: linear-gradient(135deg, var(--pink-light), #fff);
  color: var(--pink-dark);
  box-shadow: none;
  border: 1px solid #ead7bd;
} */

.stats-wrap {
  position: relative;
  background: linear-gradient(rgba(63, 42, 26, .82), rgba(63, 42, 26, .78)), url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1800&q=80") center/cover;
  padding: 90px 0;
}

.stats-box {
  max-width: 1050px;
  margin: auto;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border-radius: 22px;
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  color: #fff;
}

.stat i {
  color: var(--pink-soft);
  font-size: 24px;
  margin-bottom: 10px;
}

.stat h4 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  margin-bottom: 4px;
}

.stat p {
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
}

.retreat-banner {
  background: #fff;
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.retreat-banner img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 22px;
}

.retreat-banner h2 {
  font-family: "Playfair Display", serif;
  color: var(--brown-dark);
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 15px;
}

.retreat-banner p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 15px;
}

.process-card {
  text-align: center;
}

.process-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-weight: 700;
}

.cta,
.about-cta {
  background: linear-gradient(rgba(63, 42, 26, .74), rgba(63, 42, 26, .74)), url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1800&q=80") center/cover;
  padding: 95px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta h2,
.about-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin-bottom: 12px;
}

.cta p,
.about-cta p {
  max-width: 650px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, .85);
}

/* Forms */
.contact-form-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 45px;
  align-items: stretch;
}

.contact-img img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.info-box {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow);
  font-size: 13px;
}

.info-box i {
  color: var(--pink-dark);
  font-size: 18px;
}

form {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

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

input,
textarea,
select {
  width: 100%;
  border: 1px solid #ead9c7;
  background: #fffaf4;
  border-radius: 10px;
  padding: 13px 14px;
  margin-bottom: 16px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--pink);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.alert {
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}

.alert-success {
  background: #ecfff0;
  color: #28743a;
  border: 1px solid #bce7c4;
}

.alert-danger {
  background: #fff0f0;
  color: #9b3030;
  border: 1px solid #efb7b7;
}

/* Modal */
.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.enquiry-modal.active {
  display: flex;
}

.enquiry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(63, 42, 26, .55);
  backdrop-filter: blur(6px);
}

.enquiry-box {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  background: #fff;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
}

.enquiry-box h2 {
  font-family: "Playfair Display", serif;
  color: var(--brown-dark);
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.enquiry-box p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}

.enquiry-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--pink-dark);
  cursor: pointer;
}

.enquiry-box form {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.enquiry-box .btn {
  width: 100%;
}

/* Footer */
footer {
  background: var(--brown-dark);
  color: rgba(255, 255, 255, .72);
  padding: 60px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 38px;
  margin-bottom: 35px;
}

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

.footer-brand img {
  width: 92px;
  height: 72px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  padding: 6px;
}

.footer-brand h3 {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 22px;
}

footer h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 16px;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 9px;
  font-size: 13px;
}

footer p {
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  color: #fff;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
}

@media(max-width:980px) {
  header {
    top: 0;
    padding: 16px 0;
  }

  .nav {
    display: flex;
    justify-content: center;
  }

  .menu-left,
  .menu-right {
    display: none;
  }

  .center-logo {
    width: 125px;
    height: 88px;
  }

  .center-logo img {
    width: 118px;
    height: 80px;
  }

  .mobile-toggle {
    display: grid;
    place-items: center;
  }

  .hero {
    min-height: 920px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 130px;
    gap: 36px;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons,
  .slider-dots {
    justify-content: center;
  }

  .hero-info-card {
    justify-self: center;
  }

  .page-hero {
    padding-top: 140px;
  }

  .welcome-grid,
  .intro-grid,
  .about-intro,
  .retreat-banner,
  .contact-form-wrap {
    grid-template-columns: 1fr;
  }

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

  .experience-grid,
  .process-grid,
  .philosophy-grid,
  .stats-box {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media(max-width:620px) {
  .section {
    padding: 65px 0;
  }

  .hero {
    min-height: 900px;
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-info-card {
    border-radius: 24px;
    padding: 22px;
  }

  .hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .section-title,
  .intro-content h2,
  .about-content h2 {
    font-size: 30px;
  }

  .image-card,
  .intro-img,
  .about-img-main {
    /* height: 330px; */
  }

  .mini-features,
  .intro-points,
  .about-points,
  .services-grid,
  .package-grid,
  .experience-grid,
  .process-grid,
  .philosophy-grid,
  .stats-box,
  .footer-grid,
  .contact-info,
  .form-row {
    grid-template-columns: 1fr;
  }

  .retreat-banner,
  .enquiry-box {
    padding: 24px;
  }

  .retreat-banner img {
    height: 280px;
  }

  .contact-img img {
    min-height: 360px;
  }

  .enquiry-box h2 {
    font-size: 28px;
  }
}

/* Contact Page */
.contact-overview-section {
  padding-top: 40px;
  padding-bottom: 35px;
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}

.contact-quick-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: .25s ease;
  border: 1px solid rgba(195, 144, 47, .10);
}

.contact-quick-card:hover {
  transform: translateY(-4px);
}

.contact-quick-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light), #fff);
  color: var(--gold);
  box-shadow: 0 8px 18px rgba(217, 132, 143, .15);
}

.contact-quick-card small {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  font-weight: 600;
}

.contact-quick-card strong {
  color: var(--brown-dark);
  font-size: 15px;
  line-height: 1.35;
}

.contact-main-section {
  padding-top: 55px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 46px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-left-panel h2 {
  font-family: "Playfair Display", serif;
  color: var(--brown-dark);
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.contact-left-panel p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.contact-feature-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}

.contact-feature-list div {
  background: #fff;
  border-radius: 14px;
  padding: 13px 15px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .04);
  font-size: 14px;
  color: var(--brown);
  font-weight: 500;
}

.contact-feature-list i {
  color: var(--gold);
  margin-right: 8px;
}

.contact-image-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.contact-image-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.contact-floating-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  background: rgba(255, 249, 244, .94);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brown-dark);
  font-size: 14px;
  font-weight: 500;
}

.contact-floating-note i {
  color: var(--pink-dark);
  font-size: 22px;
}

.contact-form-card {
  background: #fff;
  border-radius: 26px;
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(195, 144, 47, .12);
}

.contact-form-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--brown-dark);
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.contact-form-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}

.contact-form-card form {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.contact-form-card .btn {
  width: 100%;
}

@media(max-width:980px) {
  .contact-quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

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

  .contact-form-card {
    padding: 24px;
  }

  .contact-left-panel h2,
  .contact-form-card h3 {
    font-size: 30px;
  }
}

.retreat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
  margin-bottom: 45px;
  position: relative;
  z-index: 2;
}

.retreat-grid .eyebrow,
.retreat-grid .section-title {
  text-align: left;
}

.retreat-grid p {
  color: var(--muted);
  margin-bottom: 14px;
}

.retreat-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

@media (max-width:980px) {
  .menu {
    display: none;
  }

  .welcome-grid,
  .retreat-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}