/* ============================================
   THE BLIZ — GLOBAL STYLES
   Mobile-first fixed-width layout (430px)
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Layout */
  --content-width: 630px;

  /* Colors */
  --color-bg-outer: #0a0604;
  --color-bg-dark: #100b08;
  --color-bg-section: #1a1210;
  --color-bg-light: #fff8ed;
  --color-bg-grey: #eaeaea;
  --color-text-primary: #f5efe8;
  --color-text-dark: #2a2622;
  --color-text-secondary: #c9b99a;
  --color-text-muted: #8a7b6b;
  --color-accent-warm: #d4a96a;
  --color-overlay-dark: rgba(10, 6, 4, 0.45);
  --color-overlay-deep: rgba(10, 6, 4, 0.25);

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;

  /* Timing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --duration-slow: 1.2s;
  --duration-medium: 0.8s;
  --duration-fast: 0.5s;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--color-bg-outer);
  color: var(--color-text-primary);
  font-family: var(--font-serif);
  line-height: 1.5;
  overflow-x: hidden;
}

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

/* --- Section Layout System --- */
.section {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--color-bg-outer);
}

.section__container {
  width: var(--content-width);
  max-width: var(--content-width);
  position: relative;
  overflow: hidden;
}


/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--content-width);
  height: 80px;
  z-index: 1000;
  transition: background-color var(--duration-medium) var(--ease-out-expo),
    box-shadow var(--duration-medium) var(--ease-out-expo),
    height var(--duration-medium) var(--ease-out-expo);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background-color: transparent;
}

.header--scrolled {
  height: 80px;
  background-color: #d5cdb8;
  /* Warm beige background from screenshot */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header__container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-link {
  display: block;
}

.header__logo-img {
  height: 70px;
  width: auto;
  transition: opacity var(--duration-medium) var(--ease-out-expo);
}

.header__logo-img--light {
  display: block;
}

.header__logo-img--dark {
  display: none;
  filter: brightness(0) opacity(0.8);
  /* Turns the white logo into a beautiful soft black matching the scrolled header design */
}

/* Header state changes */
.header--scrolled .header__logo-img--light {
  display: none;
}

.header--scrolled .header__logo-img--dark {
  display: block;
}

/* Language Toggle Container */
.header__lang-toggle {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 3px;
  transition: all var(--duration-medium) var(--ease-out-expo);
}

.header--scrolled .header__lang-toggle {
  background-color: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}

/* Language Button */
.header__lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 6px 12px;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
  transition: all var(--duration-medium) var(--ease-out-expo);
}

.header--scrolled .header__lang-btn {
  color: #4a3c31;
  /* Dark brown text to match brand aesthetics */
}

/* Active Language Button */
.header__lang-btn.active {
  background-color: #9c7150;
  /* Active warm brown color from screenshot */
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(156, 113, 80, 0.25);
}

.header--scrolled .header__lang-btn.active {
  background-color: #9c7150;
  color: #ffffff;
}

/* Flag Icon SVG */
.header__flag {
  height: 12px;
  width: auto;
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  display: block;
}

@media (max-width: 600px) {

  .header,
  .header--scrolled {
    height: 65px;
  }

  .header__logo-img {
    height: 60px;
  }
}


/* ============================================
   SECTION 1: HERO
   ============================================ */

.section--hero {
  background-color: var(--color-bg-outer);
}

.hero {
  position: relative;
  width: 100%;
  height: 932px;
  /* Approximate mobile viewport height for this section */
  overflow: hidden;
}

/* --- Hero Background --- */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 6, 4, 0.55) 0%,
      rgba(10, 6, 4, 0.15) 30%,
      rgba(10, 6, 4, 0.10) 50%,
      rgba(10, 6, 4, 0.35) 75%,
      rgba(10, 6, 4, 0.60) 100%);
}

/* --- Hero Content --- */
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 32px 140px;
}

/* --- Logo Block --- */
.hero__logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.hero__logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero__logo-img {
  height: 200px;
  width: auto;
  display: block;
}

.hero__logo-text {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--color-text-primary);
  line-height: 1;
}

.hero__logo-icon {
  width: 52px;
  height: 48px;
  color: var(--color-text-primary);
  margin-left: 2px;
  flex-shrink: 0;
}

.hero__tagline {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4.5px;
  color: var(--color-text-primary);
  text-transform: uppercase;
  margin-top: 2px;
  padding-left: 4px;
}

/* --- Heading Block --- */
.hero__text-block {
  display: flex;
  justify-content: end;
  padding-right: 30px;
  text-align: left;
}

.hero__heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 42px;
  line-height: 1.35;
  color: var(--color-text-primary);
  letter-spacing: 0.5px;
  max-width: 280px;
}

.hero__heading-line {
  display: block;
}

.hero__heading-line--italic {
  font-style: italic;
  font-weight: 400;
}


/* ============================================
   ANIMATION SYSTEM
   ============================================ */

/* --- Initial hidden states --- */
[data-animate] {
  opacity: 0;
  will-change: opacity, transform;
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-down"] {
  transform: translateY(-30px);
}

[data-animate="fade-in"] {
  transform: none;
}

[data-animate="fade-left"] {
  transform: translateX(-40px);
}

[data-animate="fade-right"] {
  transform: translateX(40px);
}

[data-animate="scale-in"] {
  transform: scale(0.92);
}

/* --- Animated (visible) states --- */
[data-animate].animated {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Fade up */
[data-animate="fade-up"].animated {
  transition:
    opacity var(--duration-slow) var(--ease-out-expo),
    transform var(--duration-slow) var(--ease-out-expo);
}

/* Fade down */
[data-animate="fade-down"].animated {
  transition:
    opacity var(--duration-slow) var(--ease-out-expo),
    transform var(--duration-slow) var(--ease-out-expo);
}

/* Fade in */
[data-animate="fade-in"].animated {
  transition:
    opacity var(--duration-slow) var(--ease-out-expo);
}

/* Fade left */
[data-animate="fade-left"].animated {
  transition:
    opacity var(--duration-slow) var(--ease-out-expo),
    transform var(--duration-slow) var(--ease-out-expo);
}

/* Fade right */
[data-animate="fade-right"].animated {
  transition:
    opacity var(--duration-slow) var(--ease-out-expo),
    transform var(--duration-slow) var(--ease-out-expo);
}

/* Scale in */
[data-animate="scale-in"].animated {
  transition:
    opacity var(--duration-slow) var(--ease-out-expo),
    transform var(--duration-slow) var(--ease-out-expo);
}

/* --- Stagger delays --- */
[data-animate-delay="1"] {
  transition-delay: 0.15s !important;
}

[data-animate-delay="2"] {
  transition-delay: 0.3s !important;
}

[data-animate-delay="3"] {
  transition-delay: 0.45s !important;
}

[data-animate-delay="4"] {
  transition-delay: 0.6s !important;
}

[data-animate-delay="5"] {
  transition-delay: 0.75s !important;
}

/* --- Hero-specific entrance animation (plays on load, not scroll) --- */
.section--hero [data-animate="fade-down"].animated {
  transition-delay: 0.3s;
}

.section--hero [data-animate="fade-up"].animated {
  transition-delay: 0.8s;
}

/* --- Hero background subtle zoom --- */
.hero__bg-img {
  transition: transform 8s var(--ease-out-quart);
  transform: scale(1.08);
}

.section--hero.in-view .hero__bg-img {
  transform: scale(1.0);
}


/* ============================================
   SECTION 2 & 3: LIGHT SECTIONS
   ============================================ */

.section--light {
  background-color: var(--color-bg-outer);
  /* Outer is dark */
}

.section--light .section__container {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}

/* --- Philosophy Section --- */
.philosophy {
  padding: 0 0 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: top;
}

.philosophy__img-wrapper {
  width: 32%;
}

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

.philosophy__content {
  margin-top: 30px;
  margin-bottom: 30px;
  margin-right: 15px;
  width: 55%;
  text-align: right;
  z-index: 2;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.philosophy__title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--color-text-dark);
}

.philosophy__subtitle {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
}

.philosophy__text {
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.6;
  font-weight: 300;
}

/* --- Method Section --- */
.method {
  padding: 10px 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.method__header {
  width: 55%;
  padding-left: 20px;
  margin-bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.method__title-small {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 4px;
}

.method__title-large {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
}

.method__text {
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.6;
  font-weight: 300;
}

.method__gallery {
  position: relative;
  width: 38%;
  height: 240px;
  z-index: 1;
  background-image: url('assets/Section2Hero2.webp');
  background-size: cover;
  background-position: center;
}

.method__img-main {
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 90%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

@media (max-width: 600px) {
  .method__img-main {
    width: 100%;
    left: -15px;
  }
}

/* --- Consultation Banner --- */
.consultation-banner {
  margin-top: 10px;
  width: 65%;
}

.consultation-banner img,
.consultation-banner video {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

@media (max-width: 600px) {
  .consultation-banner {
    width: 60%;
  }

  .consultation-banner video {
    height: 100px;
  }
}

/* --- Features Section --- */
.features-section {
  padding: 20px 0 60px 20px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.features {
  width: 60%;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 10px;
}

.feature__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature__title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.feature__text {
  font-family: var(--font-sans);
  font-size: 9px;
  line-height: 1.4;
  font-weight: 300;
}

@media (min-width: 600px) {

  .feature__title {
    font-size: 20px;
  }

  .feature__text {
    font-size: 12px;
  }
}

/* --- Bottom Image --- */
.bottom-image {
  position: relative;
  width: 30%;
  background-image: url('assets/Section2JHero1.webp');
  background-size: cover;
  background-position: center;
  margin-top: -50px;
}

.bottom-image img {
  position: absolute;
  left: -20px;
  bottom: -120px;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .features {
    width: 55%;
  }

  .bottom-image {
    width: 35%;
  }

  .bottom-image img {
    height: 80%;
    bottom: -20px;
  }
}

/* ============================================
   SECTION 4: FOCUS PERAWATANMU
   ============================================ */

.section--focus {
  background-color: var(--color-bg-outer);
}

.section--focus .section__container {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}

.focus-header {
  padding: 20px 20px 30px;
}

.focus__title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.05;
  color: #4a331c;
  /* Distinct warm dark brown from the design */
  margin-bottom: 12px;
}

.focus__subtitle {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.focus-banners {
  display: flex;
  flex-direction: column;
}

.focus-banner {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

/* Overlay for the background image */
.focus-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #000000;
  /* Change overlay color here */
  opacity: 0.55;
  /* Adjust overlay intensity here (0.0 to 1.0) */
  z-index: 1;
}

.focus-banner--right {
  justify-content: flex-end;
  text-align: right;
}

.focus-banner__content {
  max-width: 65%;
  position: relative;
  z-index: 2;
}

.focus-banner__title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.focus-banner__text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .focus-banner {
    height: 250px;
  }
}

/* ============================================
   SECTION 5: MENU (PERFORMANCE RECOVERY)
   ============================================ */

.section--menu {
  background-color: var(--color-bg-outer);
}

.section--menu .section__container {
  background-color: #373837;
  /* Dark grey slate */
  color: #ffffff;
}

.menu-header {
  padding: 20px 20px 20px;
}

.menu__title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 12px;
}

.menu__subtitle {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  opacity: 0.9;
}

.menu-grid-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 20px 20px;
}

.menu-top-left {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.menu-img-tall {
  width: 100%;
  height: 380px;
  object-fit: cover;
  margin-bottom: 12px;
}

.certification-block {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.4;
}

.bnsp-logo-placeholder {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: #e53e3e;
  /* Approximation of logo color */
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.bnsp-logo-placeholder::before {
  content: "✦";
  /* Abstract icon */
  color: #d69e2e;
}

.menu-top-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 600px) {
  .menu-grid-top {
    flex-direction: row;
  }

  .menu-top-left {
    width: 38%;
  }

  .menu-top-right {
    width: 62%;
  }
}

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

.menu-card__flex {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.menu-card__img {
  width: 45%;
  height: auto;
  min-height: 150px;
  object-fit: cover;
}

.menu-card__content {
  width: 55%;
  display: flex;
  flex-direction: column;
}

.menu-card__title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.1;
}

.menu-card__desc {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  margin-bottom: 15px;
  line-height: 1.4;
  opacity: 0.9;
}

.menu-card__price-list {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  width: 100%;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}

.price-large {
  font-size: 14px;
  font-weight: 500;
}

/* Light Card Specific */
.menu-card--light {
  background-color: #d8d8d6;
}

.menu-card__flex {
  gap: 10px;
}

.menu-card__content {
  padding: 12px;
  width: 55%;
}

.dark-text {
  color: #1a1a1a;
}

.price-row-alt {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
  line-height: 1.3;
}

.price-desc {
  width: 70%;
}

.price-val {
  width: 30%;
  text-align: right;
}

.text-xs {
  font-size: 7.5px;
  opacity: 0.8;
}

.menu-card__note {
  font-family: var(--font-sans);
  font-size: 8px;
  font-style: italic;
  opacity: 0.6;
  margin-top: 8px;
  color: #1a1a1a;
}

/* Rows (Deep Tissue, Light Massage, etc) */
.menu-row {
  display: flex;
  padding: 0 20px 20px;
  gap: 8px;
  align-items: end;
}

.menu-row--reverse {
  flex-direction: row-reverse;
}

.menu-row__text {
  width: 35%;
  display: flex;
  flex-direction: column;
}

.menu-row__img-wrapper {
  width: 65%;
  display: flex;
}

.menu-row__img {
  width: 100%;
  min-height: 180px;
  max-height: 250px;
  object-fit: cover;
}

.menu-row--small .menu-row__img {
  min-height: 100px;
  height: 120px;
}


.price-note {
  font-size: 9px;
  opacity: 0.7;
  margin-bottom: 6px;
}

.object-cover {
  object-fit: cover;
}

/* ============================================
   SECTION 6: DEEP RELAXATION
   ============================================ */

.section--relaxation {
  background-color: var(--color-bg-outer);
}

.section--relaxation .section__container {
  background-color: var(--color-bg-grey);
  color: var(--color-text-dark);
}

/* Header: large image left, big title right */
.relax-header {
  display: flex;
  align-items: stretch;
  min-height: 280px;
}

.relax-header__img-wrapper {
  width: 45%;
  flex-shrink: 0;
  overflow: hidden;
}

.relax-header__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  min-height: 350px;
}

.relax-header__content {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 40px 30px 40px;
}

.relax__title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.05;
  color: #2e2416;
  margin-bottom: 12px;
}

.relax__subtitle {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-dark);
}

@media (max-width: 768px) {
  .relax-header__content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .relax__title {
    font-size: 38px;
  }
}

/* Generic row: text left / right, image right / left */
.relax-row {
  display: flex;
  padding: 40px 20px;
  gap: 0px;
  align-items: center;
}

.relax-row--small {
  padding: 30px 20px 40px;
}

.relax-row__text {
  width: 45%;
  display: flex;
  flex-direction: column;
  padding-right: 30px;
}

.relax-row__img-wrapper {
  width: 55%;
}

.relax-row__img-wrapper--small {
  width: 55%;
}

.relax-row__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.relax-row--small .relax-row__img {
  height: 130px;
}

/* Card title / desc / price (light theme) */
.relax-card__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  color: #2e2416;
  margin-bottom: 10px;
}

.relax-card__desc {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text-dark);
  margin-bottom: 14px;
}

.relax-card__price-list {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--color-text-dark);
}

.relax-card__price-list .price-row {
  margin-bottom: 4px;
}

/* Kids / special tag pill */
.relax-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  background-color: #2e2416;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* Split layout: tall image left, two stacked cards right */
.relax-split {
  display: flex;
  align-items: stretch;
  padding-left: 16px;
}

.relax-split__img-wrapper {
  width: 48%;
  flex-shrink: 0;
  overflow: hidden;
}

.relax-split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.relax-split__cards {
  width: 52%;
  display: flex;
  flex-direction: column;
}

.relax-card {
  padding: 24px 22px;
  flex: 1;
}

/* Addon price list (two-column) */
.relax-addon-list .price-row-alt {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 300;
  font-family: var(--font-sans);
  color: var(--color-text-dark);
}

/* ============================================
   SECTION 7: SCULPT & DETOX
   ============================================ */

.section--sculpt {
  background-color: var(--color-bg-outer);
}

.section--sculpt .section__container {
  background-color: var(--color-bg-grey);
  color: var(--color-text-dark);
}

/* Header: title left, tall image right */
.sculpt-header {
  display: flex;
  align-items: stretch;
  min-height: 300px;
}

.sculpt-header__left {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.sculpt-header__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 20px 0px 20px;
  flex-grow: 1;
}

.sculpt__title {
  font-family: var(--font-serif);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.0;
  color: #2e2416;
  margin-bottom: 20px;
}

.sculpt__subtitle {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-dark);
}

.sculpt-img-row {
  margin-top: 30px;
}

.sculpt-header__img-wrapper {
  width: 50%;
  overflow: hidden;
}

.sculpt-header__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 601px) {
  .sculpt-header__img-wrapper {
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .sculpt-header__content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sculpt__title {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .sculpt-header {
    flex-direction: column-reverse;
  }

  .sculpt-header__content {
    padding-top: 24px;
  }

  .sculpt-img-row {
    margin-top: 16px;
  }

  .sculpt-header__left,
  .sculpt-header__img-wrapper {
    width: 100%;
  }

  .sculpt-header__img-wrapper {
    height: 250px;
  }

}

/* Two side-by-side images below header */
.sculpt-img-row {
  display: flex;
  gap: 0;
}

.sculpt-img-row__left,
.sculpt-img-row__right {
  width: 50%;
  overflow: hidden;
}

.sculpt-img-row__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Service block: text left, price grid right */
.sculpt-service {
  display: flex;
  padding: 30px 20px;
  gap: 20px;
  align-items: flex-start;
}

.sculpt-service__left {
  width: 42%;
}

.sculpt-service__right {
  width: 58%;
}

.sculpt-card__title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
  color: #2e2416;
  margin-bottom: 10px;
}

.sculpt-card__desc {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--color-text-dark);
}

/* Two-column price grid */
.sculpt-price-grid {
  display: flex;
  gap: 16px;
}

.sculpt-price-col {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--color-text-dark);
}

.sculpt-price-zone {
  font-weight: 500;
  font-size: 11px;
  margin-top: 10px;
  margin-bottom: 3px;
  color: #2e2416;
}

.sculpt-price-col .price-row {
  margin-bottom: 2px;
}

/* Full-width banner image */
.sculpt-banner {
  width: 100%;
  overflow: hidden;
}

.sculpt-banner__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Lengkapi Sesimu addon row */
.sculpt-addon {
  display: flex;
  padding: 30px 20px 40px;
  gap: 20px;
  align-items: flex-start;
}

.sculpt-addon__text {
  width: 45%;
}

.sculpt-addon__img-wrapper {
  width: 55%;
}

.sculpt-addon__img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

/* ============================================
   SECTION 8: HERITAGE-BASED WELLNESS
   ============================================ */

.section--heritage {
  background-color: var(--color-bg-outer);
}

.section--heritage .section__container {
  background-color: var(--color-bg-grey);
  color: var(--color-text-dark);
}

/* Full-width hero banner */
.heritage-hero {
  position: relative;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.heritage-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 40%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.heritage-hero__content {
  position: relative;
  z-index: 2;
  padding: 30px 25px;
}

.heritage-hero__title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 10px;
  text-align: center;
}

.heritage-hero__subtitle {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  text-align: center;
}

/* Service rows: text left, image right */
.heritage-row {
  display: flex;
  padding: 35px 20px;
  gap: 20px;
  align-items: center;
}

.heritage-row--last {
  padding-bottom: 50px;
}

.heritage-row__text {
  width: 45%;
  display: flex;
  flex-direction: column;
}

.heritage-row__img-wrapper {
  width: 55%;
}

.heritage-row__img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.heritage-card__title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  color: #2e2416;
  margin-bottom: 10px;
}

.heritage-card__desc {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--color-text-dark);
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .heritage-row {
    padding: 24px 16px;
  }
}

/* Inline two-column price layout */
.heritage-price-inline {
  display: flex;
  gap: 10px;
}

.heritage-price-col2 {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--color-text-dark);
}

.heritage-price-col2 .price-row {
  margin-bottom: 3px;
}

.heritage-price-col2 .price-note {
  margin-top: 2px;
  margin-bottom: 0;
}

.heritage-price-col2 .relax-tag {
  display: inline-block;
  margin-top: 6px;
}

/* ============================================
   SECTION 9: PENGALAMAN DI THE BLIZ
   ============================================ */

.section--experience {
  background-color: var(--color-bg-outer);
}

.section--experience .section__container {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  padding-bottom: 30px;
}

/* Header */
.exp-header {
  padding: 50px 25px 35px;
}

.exp__title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  color: #2e2416;
  margin-bottom: 8px;
}

.exp__subtitle {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: #2e2416;
}

/* Top Intro Row: Image left, two stacked cards right */
.exp-intro-row {
  display: flex;
  margin: 0 20px 20px;
  gap: 20px;
}

.exp-intro-row__img-wrapper {
  width: 65%;
}

.exp-intro-row__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.exp-intro-row__text {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding-top: 8px;
  gap: 24px;
}

/* Common service rows: Text left, Image right */
.exp-row {
  display: flex;
  padding: 30px 20px;
  gap: 20px;
  align-items: center;
}

.exp-row-alt {
  display: flex;
  padding: 0px 20px;
  gap: 20px;
  align-items: end;
}

.exp-row-alt-start {
  align-items: start;
  padding-top: 20px;
}

.exp-row__text {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.exp-row__img-wrapper {
  width: 65%;
}

.exp-row__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {

  .exp-row__text,
  .exp-intro-row__text {
    gap: 12px;
    width: 50%;
  }

  .exp-row__img-wrapper,
  .exp-intro-row__img-wrapper {
    width: 50%
  }
}

/* Card typography inside rows */
.exp-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: #2e2416;
  margin-bottom: 8px;
  line-height: 1.2;
  text-align: end;
}

.exp-card__desc {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text-dark);
  text-align: end;
}

.exp-row-alt .exp-card__title {
  text-align: start;
}

.exp-row-alt .exp-card__desc {
  text-align: start;
}

@media (max-width: 768px) {
  .exp-card__title {
    font-size: 18px;
  }
}

/* Loyalty section */
.exp-loyalty {
  display: flex;
  padding: 40px 20px 20px 20px;
  gap: 20px;
  align-items: flex-start;
}

.exp-loyalty__left {
  width: 35%;
}

.exp-loyalty__title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  color: #2e2416;
}

.exp-loyalty__right {
  width: 65%;
}

.exp-loyalty__subtitle {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: #2e2416;
  margin-bottom: 10px;
  line-height: 1.2;
}

.exp-loyalty__desc {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.exp-loyalty__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exp-loyalty__link-item {
  display: flex;
  align-items: start;
  gap: 15px;
}

.exp-loyalty__link-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.exp-loyalty__link-label {
  font-family: var(--font-sans);
  font-size: 9px;
  color: var(--color-text-dark);
  line-height: 1.2;
}

.exp-loyalty__btn {
  display: inline-block;
  background-color: #2e2416;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 9px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: 0.3s ease;
}

.exp-loyalty__btn:hover {
  background-color: #584a37;
}

.exp-loyalty__arrowIcon {
  width: 12px;
  height: 12px;
  margin-bottom: -2px;
  color: #fff;
}

.exp-loyalty__youtubeIcon {
  width: 12px;
  height: 12px;
}

@media (max-width: 768px) {

  .exp-loyalty__left,
  .exp-loyalty__right {
    width: 50%;
  }

  .exp-loyalty__title {
    font-size: 28px;
  }
}

/* Reservasi section */
.exp-reservasi {
  display: flex;
  padding: 20px 20px 20px 20px;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.exp-reservasi__left {
  width: 55%;
}

.exp-reservasi__title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: #2e2416;
  margin-bottom: 10px;
}

.exp-reservasi__desc {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.exp-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.exp-contact__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 10px;
  color: #2e2416;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out-expo);
}

.exp-contact__item:hover {
  color: #9c7150;
}

.exp-contact__icon {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-reservasi__right {
  width: 35%;
}

.exp-reservasi__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* CTA Buttons */
.exp-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.exp-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--duration-medium) var(--ease-out-expo);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.exp-cta__btn--wa {
  background-color: #277a5b;
  /* Forest Green */
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(39, 122, 91, 0.35);
}

.exp-cta__btn--wa:hover {
  background-color: #1e5e45;
  transform: translateY(-2px);
}

.exp-cta__btn--web {
  background-color: #100b08;
  /* Theme dark brown/black */
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.exp-cta__btn--web:hover {
  background-color: #000000;
  transform: translateY(-2px);
}

.exp-cta__icon {
  width: 14px;
  height: 14px;
}

.exp-cta__arrow {
  height: 18px;
  width: 18px;
  transition: transform var(--duration-medium) var(--ease-out-expo);
  transform: rotate(45deg);
  margin-left: -6px;
}

@media (max-width: 768px) {
  .exp-reservasi__title {
    font-size: 28px;
  }

  .exp-reservasi__right,
  .exp-reservasi__left {
    width: 50%;
  }

  .exp-cta {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
  }

  .exp-reservasi__desc {
    margin-bottom: 14px;
  }
}

/*Outlet Component*/
.exp-outlet {
  display: flex;
  padding: 20px 20px 20px 20px;
  flex-direction: column;
}

.exp-outlet-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  margin-bottom: 16px;
}

.exp-outlet-header__left {
  width: 50%;
}

.exp-outlet-header__right {
  width: 50%;
  display: flex;
  justify-content: end;
}

.exp-outlet__title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: #2e2416;
}

.exp-outlet__desc {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text-dark);
}

.exp-outlet-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
}

.exp-outlet-card {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid #EFEAE4;
  border-radius: 8px;
  padding: 12px;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.exp-outlet-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transform: translateY(-4px);
}

/* Card Left Elements */
.card-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-circle {
  width: 35px;
  height: 35px;
  background-color: #F3ECE4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pin-icon {
  width: 16px;
  height: 16px;
  color: #8C6A5A;
}

/* Typography Inside Cards */
.outlet-info {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.outlet-name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #333333;
}

.outlet-desc {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text-dark);
}

/* Card Right Elements (Route Link) */
.card-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.route-text {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #BC9C8B;
}

.arrow-icon {
  width: 14px;
  height: 14px;
  color: #BC9C8B;
}

@media (max-width: 768px) {
  .exp-outlet-header {
    gap: 16px;
    margin-bottom: 12px;
  }

  .exp-outlet-header__left {
    width: 60%
  }

  .exp-outlet-header__right {
    width: 40%
  }

  .exp-outlet__title {
    font-size: 28px;
  }

  .exp-outlet-grid {
    flex-direction: column;
    gap: 6px;
  }
}

/*Footer Styling*/
.footer-content {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #000;
}

.footer-left {
  width: 58%;
}

.footer-right {
  width: 36%;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}

.footer-desc {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.footer-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background-color: #fff;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-cta:hover {
  opacity: 0.75;
}

.footer-cta_icon {
  width: 18px;
  height: 18px;
  flex-grow: 1;
}

.footer-cta_text {
  font-family: var(--font-sans);
  font-size: 14px;
  text-decoration: none;
  color: #000;
  flex-grow: 1;
  margin-bottom: -2px;
}

.footer-cta_logo {
  max-width: 93px;
  flex-shrink: 1
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    gap: 16px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-right {
    display: flex;
    justify-content: start;
  }
}


/* Floating WhatsApp Button */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: max(24px, calc(50% - 315px + 24px));
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color var(--duration-medium) var(--ease-out-expo);
  box-shadow: 0 8px 24px rgba(39, 122, 91, 0.4);
}

.floating-wa.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-wa:hover {
  background-color: #1e5e45;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .floating-wa {
    bottom: 16px;
    right: max(16px, calc(50% - 315px + 16px));
  }
}