/* =========================================
   VAF DESIGN TOKENS — COLOR, TYPOGRAPHY, SPACING
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  /* Color Tokens */
  --color-text-primary: #1C0F0F;
  --color-text-muted: #7A5C58;
  --color-text-inverse: #FAF7F4;
  --color-bg-primary: #FAF7F4;
  --color-bg-ivory: #fdfaf7;
  --color-bg-subtle: #E9D7C9;
  --color-bg-oat: #e9d7c9;
  --color-bg-nude: #dfaa98;
  --color-accent-blush: #b56271;
  --color-border-subtle: rgba(110, 27, 37, 0.08);
  --color-brand-primary: #6e1b25;
  --color-primary: var(--color-brand-primary);
  --color-state-error: var(--color-brand-primary);
  --shadow-card: 0 12px 32px rgba(110, 27, 37, 0.10);
  --radius-base: 12px;

  /* Font Family Tokens */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  /* Font Weight Tokens */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;

  /* Font Sizes */
  --fs-small: 14px;

  /* Line Heights */
  --lh-tight: 1.2;
  --lh-heading: 1.3;
  --lh-ui: 1.4;
  --lh-copy-tight: 1.5;
  --lh-body: 1.6;
  --lh-content: 1.7;
  --lh-list: 1.8;

  /* Spacing Tokens */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;
  --space-xxxl: 96px;
  --space-xxxxl: 128px;

  /* Container + Layout Tokens */
  --container-max: 1280px;
  --container-gutter: var(--space-lg);
  --content-measure: 700px;
  --content-measure-narrow: 520px;
  --media-max: 420px;
  --header-height: 80px;
  --wp-admin-bar-height-desktop: 32px;
  --wp-admin-bar-height-mobile: 46px;

  /* Mobile-first typography baseline */
  --fs-h1: 32px;
  --fs-h2: 26px;
  --fs-h3: 20px;
  --fs-h4: 18px;
  --fs-h1-single: 32px;
  --fs-title-sm: 20px;
  --fs-body-lg: 16px;
  --fs-body-md: 16px;
  --fs-body: 16px;
  --fs-body-sm: 15px;
}


/* =========================================
   BASE STYLES
========================================= */

body {
  margin: 0;
  padding-top: var(--header-height);
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

p {
  max-width: var(--content-measure);
  margin-bottom: var(--space-sm);
  color: var(--color-text-muted);
}

small {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

/* =========================================
   ACCESSIBILITY — GLOBAL FOCUS
========================================= */

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.btn:focus-visible,
.form-input:focus-visible,
a:focus-visible,
.mobile-toggle:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}


/* =========================================
   TYPOGRAPHY
========================================= */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: var(--fw-light);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
}

h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-heading);
}

h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-heading);
}

h4 {
  font-size: var(--fs-h4);
  line-height: var(--lh-ui);
}


/* =========================================
   LAYOUT
========================================= */

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

.container--narrow {
  max-width: 760px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--header-height);
  background-color: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-sticky {
  box-shadow: var(--shadow-card);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-sm);
}

.site-header-inner > * {
  min-width: 0;
}

.site-logo__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.site-logo__text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.25em;
  color: var(--color-brand-primary);
  line-height: 1;
}

.site-logo__sub {
  font-family: var(--font-body);
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  font-weight: var(--fw-regular);
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-top: -2px;
  line-height: 1.2;
}

.site-main {
  padding: var(--space-xl) 0;
}

.home .site-main {
  padding-top: 0;
  padding-bottom: 0;
}

.section {
  padding: var(--space-xl) 0;
}

.home .section {
  padding: clamp(5.5rem, 8vw, 7.5rem) 0;
}

.home .section.about-snapshot {
  padding: 0;
}

.home .section.signature-treatments {
  padding-top: clamp(6rem, 8.5vw, 8rem);
  padding-bottom: clamp(5rem, 7.5vw, 6.5rem);
}

.home .section.treatment-process {
  padding-top: clamp(6rem, 8.5vw, 8rem);
  padding-bottom: clamp(6rem, 8.5vw, 8rem);
}

.home .section.produk-section {
  padding-top: clamp(7rem, 10vw, 8.5rem);
  padding-bottom: clamp(7rem, 10vw, 8.5rem);
}

.home .section.interior-section {
  padding-top: clamp(6.2rem, 9vw, 8rem);
  padding-bottom: clamp(6rem, 8.5vw, 7.5rem);
}

.home .section.location-section {
  padding-top: clamp(7rem, 10vw, 8.5rem);
  padding-bottom: clamp(7rem, 10vw, 8.5rem);
}

.home .section.final-cta-section {
  padding-top: clamp(7.2rem, 10.5vw, 9rem);
  padding-bottom: clamp(7.2rem, 10.5vw, 9rem);
}

.section a {
  cursor: pointer;
}


/* =========================================
   NAVIGATION
========================================= */

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu--desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.menu--desktop > li {
  position: relative;
}

.menu--desktop .sub-menu {
  position: absolute;
  top: calc(100% + var(--space-xs));
  left: 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: var(--space-xs);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-base);
  background-color: var(--color-bg-primary);
  box-shadow: var(--shadow-card);
  display: none;
}

.menu--desktop .menu-item-has-children:hover > .sub-menu,
.menu--desktop .menu-item-has-children:focus-within > .sub-menu {
  display: block;
}

.menu--desktop .sub-menu li a {
  display: block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-base);
}

.menu--desktop .sub-menu li a:hover,
.menu--desktop .sub-menu li a:focus-visible {
  background-color: var(--color-bg-subtle);
}

.menu--desktop .sub-menu .sub-menu {
  display: none;
}

.menu li a {
  text-decoration: none;
  color: var(--color-text-primary);
  text-transform: none;
  letter-spacing: normal;
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
}

.site-header .menu li a {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: var(--fw-regular);
}

.site-header .menu li a:hover,
.site-header .menu li a:focus-visible {
  color: var(--color-brand-primary);
}

.header-cta .btn {
  padding: var(--space-sm) var(--space-md);
}

.header-cta {
  align-items: center;
  gap: 10px;
}

.header-cta__primary {
  min-height: 40px;
  padding: 0.62rem 1.1rem;
  border-width: 1px;
  font-size: 0.7rem;
  font-weight: var(--fw-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--color-border-subtle);
  border-radius: 0;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  cursor: pointer;
  position: relative;
  z-index: 1001;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  padding: 0;
  font-family: inherit;
}

.menu-toggle:hover {
  background-color: var(--color-bg-subtle);
  border-color: var(--color-brand-primary);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: -1px;
}

.menu-toggle:active {
  transform: scale(0.98);
}

.menu-toggle__line {
  width: 18px;
  height: 2px;
  background-color: currentColor;
  transition: all 0.3s ease;
}

.site-header.is-menu-open .menu-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-panel {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--color-bg-primary);
  border-top: 1px solid var(--color-border-subtle);
  transform: translateX(100%);
  transition: transform 0.28s ease, visibility 0.28s ease;
  visibility: hidden;
  pointer-events: none;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 1000;
  -webkit-user-select: text;
  user-select: text;
}

body.admin-bar {
  padding-top: var(--header-height);
}

#wpadminbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}

body.admin-bar .site-header {
  top: var(--wp-admin-bar-height-desktop);
}

body.admin-bar .mobile-menu-panel {
  top: calc(var(--header-height) + var(--wp-admin-bar-height-desktop));
}

@media (max-width: 782px) {
  body.admin-bar {
    padding-top: var(--header-height);
  }

  body.admin-bar .site-header {
    top: var(--wp-admin-bar-height-mobile);
  }

  body.admin-bar .mobile-menu-panel {
    top: calc(var(--header-height) + var(--wp-admin-bar-height-mobile));
  }
}

.site-header.is-menu-open .mobile-menu-panel {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto !important;
}

body.is-menu-open {
  overflow: hidden;
}

.mobile-menu-panel .container {
  width: 100%;
  padding: var(--space-lg) var(--container-gutter) 0;
}

.mobile-menu-panel__inner {
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xl);
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.menu--mobile {
  display: grid;
  gap: var(--space-sm);
}

.menu--mobile > li > a {
  display: flex;
  align-items: center;
  padding: var(--space-sm) 0;
  font-size: var(--fs-body-lg);
  color: var(--color-text-primary);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
  min-height: 44px;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.menu--mobile > li > a:hover,
.menu--mobile > li > a:focus-visible {
  color: var(--color-brand-primary);
}

.menu--mobile .sub-menu {
  list-style: none;
  margin: var(--space-xs) 0 0;
  padding: 0 0 0 var(--space-md);
  display: grid;
  gap: var(--space-xs);
}

.menu--mobile .sub-menu li a {
  display: flex;
  align-items: center;
  padding: var(--space-sm) 0;
  color: var(--color-text-primary);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
  min-height: 40px;
  font-size: var(--fs-body);
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.menu--mobile .sub-menu li a:hover,
.menu--mobile .sub-menu li a:focus-visible {
  color: var(--color-brand-primary);
}

.menu--mobile .sub-menu .sub-menu {
  display: none;
}

.mobile-menu-actions {
  display: grid;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.header-mobile-cta__primary {
  justify-self: center;
  width: 100%;
  max-width: 320px;
  pointer-events: auto !important;
}

body.is-menu-open {
  overflow: hidden;
}

.primary-navigation--desktop,
.header-cta {
  display: none;
}

.primary-navigation--mobile {
  display: block;
}

.menu li {
  margin: 0;
  padding: 0;
}

.breadcrumb {
  margin-bottom: var(--space-md);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  margin-right: var(--space-xs);
  color: var(--color-text-muted);
}

.breadcrumb a {
  text-decoration: none;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--color-text-primary);
}

.breadcrumb-item.is-current span {
  color: var(--color-text-primary);
  font-weight: var(--fw-semibold);
}

.single-hero-section .breadcrumb {
  margin-bottom: var(--space-lg);
}


/* =========================================
   FORM SYSTEM
========================================= */

label {
  color: var(--color-text-primary);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-ui);
}

input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-base);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  padding: var(--space-sm);
}

input:not([type="checkbox"]):not([type="radio"]):focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: var(--color-brand-primary);
}

.form {
  display: grid;
  gap: var(--space-sm);
  width: 100%;
  max-width: 600px;
}

.form-group {
  display: grid;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.form-label {
  display: inline-block;
  color: var(--color-text-primary);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-ui);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-base);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  padding: var(--space-sm);
  transition: border-color 0.2s ease;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible {
  border-color: var(--color-brand-primary);
}

.form-error {
  display: none;
  margin: 0;
  color: var(--color-state-error);
  font-size: var(--fs-small);
  line-height: var(--lh-ui);
}

.form-group.is-error .form-input,
.form-group.is-error .form-select,
.form-group.is-error .form-textarea,
.form-input[aria-invalid="true"],
.form-select[aria-invalid="true"],
.form-textarea[aria-invalid="true"] {
  border-color: var(--color-state-error);
}

.form-group.is-error .form-error,
.form-input[aria-invalid="true"] + .form-error,
.form-select[aria-invalid="true"] + .form-error,
.form-textarea[aria-invalid="true"] + .form-error {
  display: block;
}

.form .btn {
  align-self: flex-start;
}


/* =========================================
   BUTTONS
========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  min-height: 44px;
  padding: var(--space-sm) var(--space-lg);
  border: 2px solid transparent;
  border-radius: 0;
  font-weight: var(--fw-regular);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.btn--primary {
  background-color: var(--color-brand-primary);
  color: var(--color-text-inverse);
  font-weight: var(--fw-light);
}

.btn--primary:hover {
  opacity: 0.9;
}

.btn--secondary {
  background-color: transparent;
  border-color: var(--color-brand-primary);
  color: var(--color-brand-primary);
}

.btn--secondary:hover {
  background-color: var(--color-brand-primary);
  color: var(--color-text-inverse);
}

.btn--outline {
  background-color: transparent;
  border-color: var(--color-brand-primary);
  color: var(--color-brand-primary);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--outline:hover {
  background-color: var(--color-bg-subtle);
  border-color: var(--color-brand-primary);
  color: var(--color-brand-primary);
}

.btn--large {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--fs-body-lg);
}

/* =========================================
   HERO SECTIONS
========================================= */

.hero-section {
  padding: 0;
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  min-height: calc(100vh - var(--header-height));
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-sm);
}

.hero-content h1 em {
  color: var(--color-brand-primary);
}

.hero-content p {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  margin-bottom: var(--space-xl);
  max-width: var(--content-measure-narrow);
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-cta .btn--primary {
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-cta .btn--primary:hover,
.hero-cta .btn--primary:focus-visible {
  background-color: var(--color-accent-blush);
  transform: translateY(-2px);
  opacity: 1;
}

.hero-cta .btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-brand-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: gap 0.3s ease, color 0.3s ease;
}

.hero-cta .btn--ghost::after {
  content: '\2192';
}

.hero-cta .btn--ghost:hover,
.hero-cta .btn--ghost:focus-visible {
  gap: 1rem;
  opacity: 1;
  background: transparent;
  color: var(--color-brand-primary);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: clamp(360px, 64vw, 760px);
}

.hero-image-panel {
  position: relative;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg-oat) 0%, var(--color-bg-nude) 55%, var(--color-accent-blush) 100%);
  box-shadow: 0 24px 64px rgba(110, 27, 37, 0.18);
}

.hero-image-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 72% 35%, rgba(110, 27, 37, 0.18) 0%, rgba(110, 27, 37, 0) 62%);
}

.hero-image-arch {
  position: absolute;
  left: -12%;
  bottom: 0;
  width: 78%;
  padding-bottom: 90%;
  background: rgba(110, 27, 37, 0.08);
  border-radius: 50% 50% 0 0;
}

.hero-image-badge {
  position: absolute;
  left: var(--space-sm);
  bottom: var(--space-md);
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  background: var(--color-bg-primary);
  box-shadow: 0 14px 38px rgba(110, 27, 37, 0.16);
  max-width: 230px;
}

.hero-image-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
  color: var(--color-brand-primary);
}

.hero-image-badge-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.hero-image-stats {
  position: absolute;
  top: var(--space-md);
  right: var(--space-sm);
  display: grid;
  gap: var(--space-sm);
}

.hero-image-stat {
  display: grid;
  text-align: right;
}

.hero-image-stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  line-height: 1;
  color: rgba(250, 247, 244, 0.94);
}

.hero-image-stat-label {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(250, 247, 244, 0.72);
}

/* Running Text (Concern Marquee) */
.marquee-wrap {
  background: var(--color-brand-primary);
  padding: 0.9rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: var(--fw-light);
}

.marquee-item::after {
  content: '✦';
  color: var(--color-bg-nude);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================================
   ABOUT SECTION
========================================= */

.about-snapshot {
  padding: 0;
  --about-snapshot-offset: max(var(--container-gutter), calc((100vw - var(--container-max)) / 2 + var(--container-gutter)));
}

.section.about-snapshot {
  padding: 0;
}

.about-snapshot > .container {
  max-width: 100%;
  padding: 0;
}

.about-snapshot-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 100vh;
  text-align: left;
  overflow: hidden;
}

.about-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(5rem, 12vh, 8rem);
  padding-bottom: clamp(5rem, 12vh, 8rem);
  padding-left: var(--about-snapshot-offset);
  padding-right: clamp(1.25rem, 4vw, 4rem);
  background: linear-gradient(160deg, var(--color-brand-primary) 0%, #1c0f0f 62%);
}

.about-text h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.15;
  margin-bottom: var(--space-md);
  color: var(--color-text-inverse);
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 var(--space-sm);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-bg-nude);
}

.about-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--color-bg-nude);
}

.about-text p {
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.9;
  margin-bottom: var(--space-sm);
  max-width: 420px;
  color: rgba(233, 215, 201, 0.78);
}

.about-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) 5%;
  background: var(--color-bg-primary);
}

.about-image .credibility-card {
  width: 100%;
  max-width: 760px;
  border-left: 2px solid var(--color-bg-oat);
  padding-left: 2rem;
  margin-bottom: 2.4rem;
}

.about-image .credibility-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  background: linear-gradient(135deg, var(--color-bg-oat), var(--color-bg-nude));
  color: var(--color-brand-primary);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1;
}

.about-image .credibility-name {
  margin: 0 0 0.3rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: var(--fw-medium);
  line-height: 1.2;
  color: var(--color-text-primary);
}

.about-image .credibility-title {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-blush);
}

.about-image .credibility-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-image .credibility-tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--color-brand-primary);
  background: var(--color-bg-oat);
  padding: 0.3rem 0.8rem;
}

.about-text::before,
.about-text::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-text::before {
  top: -18%;
  right: -18%;
  width: 66%;
  padding-bottom: 66%;
  border: 1px solid rgba(223, 170, 152, 0.15);
}

.about-text::after {
  top: -10%;
  right: -10%;
  width: 46%;
  padding-bottom: 46%;
  border: 1px solid rgba(223, 170, 152, 0.08);
}

.about-text .btn {
  align-self: flex-start;
  margin-top: var(--space-md);
}

.about-text .btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(233, 215, 201, 0.92);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: gap 0.3s ease, color 0.3s ease;
}

.about-text .btn--ghost::after {
  content: '\2192';
}

.about-text .btn--ghost:hover,
.about-text .btn--ghost:focus-visible {
  gap: 1rem;
  color: var(--color-bg-nude);
  background: transparent;
}

.about-image .values-grid {
  width: 100%;
  max-width: 760px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.about-image .value-item {
  border: 1px solid var(--color-bg-oat);
  background: var(--color-bg-primary);
  padding: 1.4rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.about-image .value-item:hover {
  border-color: var(--color-accent-blush);
  transform: translateY(-3px);
}

.about-image .value-num {
  margin: 0 0 0.9rem;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-bg-oat);
}

.about-image .value-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand-primary);
}

.about-image .value-desc {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  font-weight: var(--fw-light);
}

.single-about-content {
  max-width: var(--content-measure);
  margin: 0 auto;
  line-height: var(--lh-content);
  font-size: var(--fs-body);
}


/* =========================================
   SECTION COMPONENTS
========================================= */

.section-title {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.section-intro {
  max-width: var(--content-measure);
  margin: 0 auto var(--space-lg);
  text-align: center;
  font-size: var(--fs-body-md);
  line-height: var(--lh-body);
}

.signature-treatments .section-title,
.signature-treatments .section-intro {
  text-align: left;
}

.signature-treatments {
  --signature-surface: transparent;
  background: linear-gradient(180deg, rgba(233, 215, 201, 0.18) 0%, var(--color-bg-primary) 45%);
}

.signature-treatments .section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.2;
  font-weight: var(--fw-light);
  margin-left: 0;
  margin-bottom: var(--space-sm);
}

.signature-treatments .section-intro {
  max-width: 460px;
  font-size: 0.88rem;
  line-height: 1.9;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.signature-treatments__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.signature-treatments__header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
}

.signature-treatments .section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent-blush);
  font-weight: var(--fw-regular);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.signature-treatments .section-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--color-accent-blush);
}

.signature-treatments .section-title em {
  font-style: italic;
  color: var(--color-brand-primary);
}

.signature-treatments__header .section-intro {
  margin-bottom: 0;
}

.signature-treatments__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-brand-primary);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: var(--fw-regular);
  transition: gap 0.3s ease;
}

.signature-treatments__cta::after {
  content: '\2192';
}

.signature-treatments__cta:hover,
.signature-treatments__cta:focus-visible {
  gap: 1rem;
  color: var(--color-brand-primary);
  background: transparent;
  opacity: 1;
}

.signature-treatments__carousel {
  --st-gap: var(--space-md);
  --st-visible: 1;
  position: relative;
}

.signature-treatments__controls {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  z-index: 2;
}

.signature-treatments__nav {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border-subtle);
  background: var(--color-bg-primary);
  color: var(--color-brand-primary);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.signature-treatments__nav:hover,
.signature-treatments__nav:focus-visible {
  transform: translateY(-1px);
  background: var(--color-brand-primary);
  color: var(--color-text-inverse);
}

.signature-treatments__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.signature-treatments__viewport {
  overflow: hidden;
}

.signature-treatments__track {
  display: flex;
  gap: var(--st-gap);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  touch-action: pan-y;
  cursor: grab;
}

.signature-treatments__track.is-dragging {
  cursor: grabbing;
}

.signature-treatments__slide {
  flex: 0 0 calc((100% - (var(--st-visible) - 1) * var(--st-gap)) / var(--st-visible));
}

.signature-treatments__slide .treatment-card {
  height: 100%;
  background: transparent;
}

.signature-treatments__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-md);
}

.signature-treatments__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(110, 27, 37, 0.22);
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.signature-treatments__dot[aria-current="true"] {
  width: 24px;
  background: var(--color-brand-primary);
}


/* =========================================
   CARDS & GRIDS
========================================= */

.treatment-grid {
  display: grid;
  gap: var(--space-md);
}

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

.card,
.treatment-card {
  background: var(--signature-surface, var(--color-bg-primary));
  border-radius: var(--radius-base);
  border: 1px solid var(--color-border-subtle);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  cursor: pointer;
}

.card:hover,
.treatment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(110, 27, 37, 0.14);
  border-color: rgba(110, 27, 37, 0.24);
}

.card--compact {
  padding: var(--space-md);
}

.card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-base);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 2;
}

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

.card__placeholder {
  max-width: none;
  height: 100%;
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  aspect-ratio: 4 / 3;
  margin-bottom: 0.9rem;
  color: var(--color-accent-blush);
  font-size: 1.2rem;
  line-height: 1;
  overflow: hidden;
  border-radius: var(--radius-base);
  position: relative;
  z-index: 2;
}

.card__icon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__title {
  font-size: var(--fs-title-sm);
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
  position: relative;
  z-index: 2;
}

.card__title-link {
  color: inherit;
  text-decoration: none;
}

.card__title-link:hover,
.card__title-link:focus {
  color: var(--color-primary);
}

.card__excerpt {
  font-size: var(--fs-body-sm);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-copy-tight);
  color: var(--color-text-muted);
  position: relative;
  z-index: 2;
}

.card__actions {
  margin-top: var(--space-xs);
  position: relative;
  z-index: 2;
}

.card__button {
  margin-top: var(--space-xs);
}

.card__text-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-bg-nude);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.35s ease;
}

.card__text-cta::after {
  content: '\2192';
}

.card__text-cta:hover,
.card__text-cta:focus-visible {
  gap: 0.85rem;
  color: #8B6B65;
}


.treatment-process {
  background: var(--color-bg-ivory);
}

.treatment-process__header {
  margin-bottom: var(--space-xxl);
}

.treatment-process__header-left {
  max-width: 760px;
}

.treatment-process-content .section-eyebrow {
  margin: 0 0 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent-blush);
  font-weight: var(--fw-regular);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.treatment-process-content .section-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--color-accent-blush);
}

.treatment-process-content .section-title {
  text-align: left;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.2;
  font-weight: var(--fw-light);
  margin: 0 0 var(--space-sm);
}

.treatment-process-content .section-intro {
  text-align: left;
  max-width: 460px;
  font-size: 0.88rem;
  line-height: 1.9;
  margin: 0;
  color: var(--color-text-muted);
}

.treatment-process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-lg);
}

.treatment-process-step {
  position: relative;
  padding-left: calc(var(--space-lg) + 10px);
}

.treatment-process-step::before {
  content: '';
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-brand-primary);
}

.treatment-process-step::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0.95rem;
  bottom: -1.8rem;
  width: 1px;
  background: rgba(110, 27, 37, 0.2);
}

.treatment-process-step:last-child::after {
  display: none;
}

.treatment-process-step__index {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-blush);
}

.treatment-process-step h3 {
  margin: 0 0 1rem;
  font-size: 1.4rem;
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  color: var(--color-text-primary);
}

.treatment-process-step p {
  margin: 0;
  max-width: 28ch;
  font-size: 0.83rem;
  line-height: 1.85;
  font-weight: var(--fw-light);
  color: var(--color-text-muted);
}

.section.produk-section {
  padding-top: clamp(7rem, 10vw, 8rem);
  padding-bottom: clamp(7rem, 10vw, 8rem);
  background: var(--color-bg-oat);
}

.produk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.produk-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: var(--fw-light);
  line-height: 1.2;
  color: var(--color-text-primary);
  margin: 0 0 1.5rem;
}

.produk-title em {
  font-style: italic;
  color: var(--color-brand-primary);
}

.produk-desc {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--color-text-muted);
  font-weight: var(--fw-light);
  margin: 0 0 2.5rem;
  max-width: 460px;
}

.produk-series {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.produk-series-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(110, 27, 37, 0.1);
  transition: padding-left 0.3s ease;
}

.produk-series-item:hover {
  padding-left: 0.5rem;
}

.produk-series-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-text-primary);
  font-weight: var(--fw-medium);
}

.produk-series-count {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--color-accent-blush);
  text-transform: uppercase;
}

.produk-right {
  position: relative;
}

.produk-visual {
  background: linear-gradient(145deg, var(--color-bg-nude) 0%, var(--color-accent-blush) 100%);
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
}

.produk-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-brand-primary) 0%, transparent 50%);
  opacity: 0.6;
}

.produk-visual-text {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 2;
}

.produk-visual-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-bg-nude);
  margin-bottom: 0.5rem;
}

.produk-visual-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-text-inverse);
  font-weight: var(--fw-light);
  line-height: 1.2;
}

.produk-deco {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid var(--color-bg-nude);
  opacity: 0.4;
}

.section.interior-section {
  background: linear-gradient(180deg, var(--color-bg-oat) 0%, var(--color-bg-primary) 38%);
}

.interior__header {
  margin-bottom: var(--space-xxl);
}

.interior__header-left {
  max-width: 760px;
}

.interior-content .section-eyebrow {
  margin: 0 0 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent-blush);
  font-weight: var(--fw-regular);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.interior-content .section-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--color-accent-blush);
}

.interior-content .section-title {
  text-align: left;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.2;
  font-weight: var(--fw-light);
  margin: 0 0 var(--space-sm);
}

.interior-content .section-intro {
  text-align: left;
  max-width: 460px;
  font-size: 0.88rem;
  line-height: 1.9;
  margin: 0;
  color: var(--color-text-muted);
}

.interior-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.interior-item .image-placeholder {
  width: 100%;
  height: 280px;
  background-color: var(--color-bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  border-radius: var(--radius-base);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 4rem auto 0;
}

.section.location-section {
  padding-top: clamp(7rem, 10vw, 8rem);
  padding-bottom: clamp(7rem, 10vw, 8rem);
  background: linear-gradient(180deg, rgba(181, 98, 113, 0.05) 0%, var(--color-bg-primary) 35%);
}

.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-reveal-ready .reveal-delay-1 {
  transition-delay: 0.12s;
}

.js-reveal-ready .reveal-delay-2 {
  transition-delay: 0.24s;
}

.js-reveal-ready .reveal-delay-3 {
  transition-delay: 0.36s;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.location-content .section-title {
  text-align: left;
}

.location-content .section-title em {
  font-style: italic;
  color: var(--color-brand-primary);
}

/* =========================================
   EYEBROW — Standardized Reusable Component
========================================= */

.eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent-blush);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

/* Left-aligned eyebrow with single line on the left */
.eyebrow--left {
  justify-content: flex-start;
}

.eyebrow--left::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--color-accent-blush);
}

/* Center-aligned eyebrow with lines on both sides */
.eyebrow--center {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.eyebrow--center::before,
.eyebrow--center::after {
  content: '';
  flex: 1 1 0;
  max-width: 80px;
  height: 1px;
  background: var(--color-accent-blush);
}

/* Alias for backward compatibility */
.location-eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent-blush);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.location-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--color-accent-blush);
}

.location-item {
  padding: 3rem 2.5rem;
  border: 1px solid var(--color-bg-oat);
  position: relative;
  overflow: hidden;
  text-align: left;
  transition: border-color 0.4s ease;
}

.location-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--color-brand-primary);
  transition: height 0.4s ease;
}

.location-item:hover::before,
.location-item:focus-within::before {
  height: 100%;
}

.location-item:hover,
.location-item:focus-within {
  border-color: var(--color-brand-primary);
}

.location-city {
  margin: 0 0 0.8rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent-blush);
  font-style: normal;
}

.location-name {
  margin: 0 0 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-text-primary);
  font-weight: var(--fw-medium);
  line-height: 1.2;
}

.location-detail {
  margin: 0 0 2rem;
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  font-weight: var(--fw-light);
}

.location-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  color: var(--color-brand-primary);
  font-weight: var(--fw-regular);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: gap 0.3s ease;
}

.location-phone:hover,
.location-phone:focus-visible {
  gap: 1rem;
}

.location-phone::before {
  content: '\260E';
}

/* =========================================
   CTA SECTIONS
========================================= */

.section-cta {
  margin-top: var(--space-lg);
  text-align: center;
}

.final-cta-section {
  text-align: center;
  background: linear-gradient(160deg, var(--color-bg-oat) 0%, var(--color-bg-nude) 100%);
  border-bottom: 1px solid rgba(110, 27, 37, 0.12);
}

.section.final-cta-section {
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xxl);
}

.final-cta-section .section-title {
  color: var(--color-text-primary);
}

.final-cta-section .section-intro {
  color: rgba(28, 15, 15, 0.78);
}

.final-cta-section .cta-reassurance {
  color: rgba(28, 15, 15, 0.86);
}

.final-cta-wrapper {
  margin-top: var(--space-lg);
}

.single-final-cta-wrapper {
  margin-top: var(--space-lg);
  text-align: center;
}

.cta-reassurance {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0 0;
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  color: var(--color-text-primary);
}

.cta-reassurance li {
  position: relative;
}



/* =========================================
   FOOTER — REVISED
   Layout: Asymmetric (1 wide brand col + 3 nav cols)
   Tone: Elegant dark (brand primary)
========================================= */

/* ---- Wrapper ---- */
.site-footer {
  background: linear-gradient(160deg, var(--color-brand-primary) 0%, #1c0f0f 62%);
  color: var(--color-text-inverse);
}

/* Subtle top accent line */
.site-footer__rule {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(223, 170, 152, 0.35) 20%,
    rgba(223, 170, 152, 0.35) 80%,
    transparent
  );
}

.site-footer__top {
  padding: var(--space-xxl) 0 var(--space-xl);
}

/* ---- Asymmetric Grid ---- */
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    /* Brand column ~38%, nav group ~62% */
    grid-template-columns: 2fr 3fr;
    gap: var(--space-xxl);
    align-items: start;
  }
}

/* ---- Brand Column ---- */
.footer-col--brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.footer-brand__name {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-semibold);
  color: var(--color-bg-oat);
  letter-spacing: 0.01em;
}

.footer-brand__sub {
  font-size: var(--fs-small);
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  color: rgba(122, 92, 88, 0.95);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-brand__tagline {
  margin: 0;
  font-size: var(--fs-body-sm);
  color: rgba(233, 215, 201, 0.72);
  line-height: var(--lh-content);
  max-width: 34ch;
}

/* ---- Social Links ---- */
.footer-social {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(233, 215, 201, 0.82);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-regular);
  padding: 10px 0px var(--space-sm);
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
  width: fit-content;
}

.footer-social__link:hover {
  color: var(--color-bg-nude);
}

.footer-social__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---- WhatsApp CTA ---- */
.footer-wa-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
  background-color: rgba(223, 170, 152, 0.12);
  color: rgba(233, 215, 201, 0.92);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-regular);
  padding: 12px var(--space-md);
  border-radius: 0;
  border: 1px solid rgba(223, 170, 152, 0.38);
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  width: fit-content;
  margin-top: var(--space-xs);
}

.footer-wa-cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-wa-cta:hover {
  background-color: rgba(223, 170, 152, 0.2);
  border-color: rgba(223, 170, 152, 0.65);
  transform: translateY(-1px);
}

/* ---- Nav Group (3 columns) ---- */
.footer-nav-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 540px) {
  .footer-nav-group {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- Individual Nav Column ---- */
.footer-nav-col__heading {
  margin: 0 0 var(--space-sm) 0;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: rgba(223, 170, 152, 0.84);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-nav-col__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-col__list a {
  text-decoration: none;
  color: rgba(233, 215, 201, 0.72);
  font-size: var(--fs-body-sm);
  line-height: var(--lh-ui);
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-nav-col__list a:hover {
  color: var(--color-bg-nude);
  padding-left: 4px;
}

/* ---- Bottom Bar ---- */
.site-footer__bottom {
  border-top: 1px solid rgba(223, 170, 152, 0.2);
  padding: var(--space-md) 0;
}

.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .site-footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.site-footer__bottom small {
  font-size: var(--fs-small);
  color: rgba(233, 215, 201, 0.5);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-legal-links a {
  color: rgba(233, 215, 201, 0.52);
  text-decoration: none;
  font-size: var(--fs-small);
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--color-bg-nude);
}


/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* =========================================
   IMAGES
========================================= */

.image-placeholder {
  width: 100%;
  max-width: var(--media-max);
  height: 420px;
  background-color: var(--color-bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
}


/* =========================================
   UTILITIES
========================================= */

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

.d-none { display: none; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.pt-sm { padding-top: var(--space-sm); }
.pt-md { padding-top: var(--space-md); }
.pt-lg { padding-top: var(--space-lg); }

.pb-sm { padding-bottom: var(--space-sm); }
.pb-md { padding-bottom: var(--space-md); }
.pb-lg { padding-bottom: var(--space-lg); }


/* =========================================
   BREAKPOINTS (MOBILE-FIRST)
   Mobile: 0-767
   Tablet: >=768
   Desktop: >=1024
   Large Desktop: >=1280
========================================= */

@media (min-width: 768px) {
  :root {
    --container-gutter: var(--space-lg);
  }

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

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

  .cta-reassurance {
    flex-direction: row;
  }

  .about-image .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --fs-h1: 72px;
    --fs-h2: 46px;
    --fs-h3: 32px;
    --fs-h4: 24px;
    --fs-h1-single: 44px;
    --fs-title-sm: 24px;
    --fs-body-lg: 18px;
    --fs-body-md: 17px;
    --fs-body: 16px;
    --fs-body-sm: 15px;
  }

  .section {
    padding: var(--space-xxxl) 0;
  }

  .home .section {
    padding: clamp(7rem, 9vw, 9rem) 0;
  }

  .home .section.signature-treatments {
    padding-top: clamp(7rem, 8vw, 9rem);
    padding-bottom: clamp(6rem, 7vw, 7.5rem);
  }

  .home .section.treatment-process {
    padding-top: clamp(7rem, 8.5vw, 9.2rem);
    padding-bottom: clamp(7rem, 8.5vw, 9.2rem);
  }

  .home .section.produk-section {
    padding-top: clamp(8rem, 9.5vw, 10rem);
    padding-bottom: clamp(8rem, 9.5vw, 10rem);
  }

  .home .section.interior-section {
    padding-top: clamp(7rem, 8.5vw, 9rem);
    padding-bottom: clamp(6.8rem, 8vw, 8.5rem);
  }

  .home .section.location-section {
    padding-top: clamp(8rem, 9.5vw, 10rem);
    padding-bottom: clamp(8rem, 9.5vw, 10rem);
  }

  .home .section.final-cta-section {
    padding-top: clamp(8.2rem, 10vw, 10.5rem);
    padding-bottom: clamp(8.2rem, 10vw, 10.5rem);
  }

  .section.about-snapshot {
    padding: 0;
  }

  .primary-navigation--desktop {
    display: block;
  }

  .header-cta {
    display: flex;
  }

  .menu-toggle,
  .mobile-menu-panel,
  .primary-navigation--mobile {
    display: none;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    justify-content: normal;
    align-items: stretch;
    text-align: left;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .hero-image {
    justify-content: flex-start;
  }

  .about-snapshot-inner {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .about-image {
    padding-top: clamp(3rem, 6vw, 5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
    padding-left: clamp(1.25rem, 4vw, 4rem);
    padding-right: var(--about-snapshot-offset);
    align-items: flex-end;
  }

  .about-text {
    padding-left: var(--about-snapshot-offset);
  }

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

  .treatment-grid {
    gap: var(--space-lg);
  }

  .signature-treatments__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .signature-treatments__header-left {
    max-width: var(--content-measure);
  }

  .signature-treatments__header-right {
    align-items: flex-end;
    flex-shrink: 0;
  }

  .signature-treatments__cta {
    text-align: right;
  }

  .signature-treatments__carousel {
    --st-visible: 2;
  }

  .interior-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  .treatment-process__header {
    margin-bottom: var(--space-xxxl);
  }

  .treatment-process-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-lg);
  }

  .treatment-process-step {
    padding-left: 0;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(110, 27, 37, 0.2);
  }

  .treatment-process-step::before {
    top: 0;
    left: 0;
    transform: translateY(-50%);
  }

  .treatment-process-step::after {
    display: none;
  }

  .produk-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 5.5rem;
  }

  .location-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .card,
  .treatment-card {
    padding: var(--space-lg);
  }

  .card--compact {
    padding: var(--space-md);
  }

}

@media (min-width: 1280px) {
  :root {
    --container-gutter: var(--space-xl);
  }

  .signature-treatments__carousel {
    --st-visible: 3;
  }
}


/* ============================================================================
   Accessibility Utilities
   ============================================================================ */

.aria-live-region {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: white;
  padding: var(--space-sm);
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* ============================================================================
   Floating WhatsApp Button
   ============================================================================ */

.floating-wa-btn {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 52px;
  height: 52px;
  padding: 0;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1), width 0.42s cubic-bezier(0.22, 1, 0.36, 1), padding 0.42s cubic-bezier(0.22, 1, 0.36, 1), gap 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0.3s ease;
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.floating-wa-btn:hover,
.floating-wa-btn:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
  color: #ffffff;
  text-decoration: none;
  animation: none;
}

.floating-wa-btn__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.floating-wa-btn__label {
  display: none;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .floating-wa-btn:hover,
  .floating-wa-btn:focus-visible {
    width: 148px;
    padding: 14px var(--space-md);
    gap: var(--space-xs);
    border-radius: 50px;
    justify-content: flex-start;
  }

  .floating-wa-btn:hover .floating-wa-btn__label,
  .floating-wa-btn:focus-visible .floating-wa-btn__label {
    display: inline;
  }
}

.floating-wa-btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

@media (max-width: 767px) {
  .floating-wa-btn {
    bottom: var(--space-md);
    right: var(--space-md);
  }

  .floating-wa-btn__label {
    display: none;
  }

  .home .section {
    padding: 0;
  }

}

