/* ==========================================================================
   Avlon Thai Spa — Luxury Wellness Sanctuary Landing Page
   Color Palette: Deep Forest Sanctuary (#13221B), Champagne Gold (#C5A47E),
   Linen Sand (#FBF9F5 / #F5F1EA), Botanical Sage (#496B58)
   ========================================================================== */

:root {
  /* Primary Luxury Spa Colors */
  --spa-dark: #13221b;
  --spa-dark-surface: #1a2c24;
  --spa-dark-card: #22372d;
  --spa-dark-deep: #0d1712;
  
  /* Gold & Warm Metallic Accents */
  --gold: #c5a47e;
  --gold-light: #dfc5a6;
  --gold-hover: #b59168;
  --gold-glow: rgba(197, 164, 126, 0.25);
  --gold-subtle: rgba(197, 164, 126, 0.12);
  
  /* Earthy Spa Neutrals */
  --sand: #fbf9f5;
  --sand-card: #f5f1ea;
  --sand-dark: #ebe4d8;
  --white: #ffffff;
  --ink: #19241e;
  --ink-soft: #384940;
  --muted: #6b7c73;
  --muted-light: #8e9e96;
  
  /* Botanical Sage Accents */
  --sage: #496b58;
  --sage-light: #eaf1ed;
  --sage-subtle: rgba(73, 107, 88, 0.08);

  /* Lines & Borders */
  --border-gold: rgba(197, 164, 126, 0.35);
  --border-subtle: rgba(25, 36, 30, 0.09);
  --border-dark-subtle: rgba(255, 255, 255, 0.12);

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(19, 34, 27, 0.06);
  --shadow-md: 0 12px 35px rgba(19, 34, 27, 0.09);
  --shadow-lg: 0 24px 60px rgba(19, 34, 27, 0.15);
  --shadow-gold: 0 10px 30px rgba(197, 164, 126, 0.25);

  /* Typography */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Transitions */
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background-color: var(--sand);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.text-gold {
  color: var(--gold);
}

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

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.announcement {
  background: var(--spa-dark-deep);
  color: var(--gold-light);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(197, 164, 126, 0.15);
}

.announcement-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.announcement-divider {
  opacity: 0.3;
}

.announcement-link {
  color: var(--gold-light);
  font-weight: 600;
}

.announcement-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* ==========================================================================
   Site Header / Navigation
   ========================================================================== */
.site-header {
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(19, 34, 27, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(197, 164, 126, 0.15);
  padding: 12px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  line-height: 1;
}

.brand-sub {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--spa-dark-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 30px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.nav-cta:hover {
  background: #fff;
  color: var(--spa-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold-light);
  margin-bottom: 5px;
  transition: var(--transition);
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 840px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 140px 0 90px;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroZoom 24s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 23, 18, 0.94) 0%,
    rgba(19, 34, 27, 0.88) 45%,
    rgba(19, 34, 27, 0.55) 100%
  );
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-copy {
  max-width: 630px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(197, 164, 126, 0.15);
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.badge-star {
  color: #f6c86a;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(58px, 6.8vw, 92px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.hero-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 35px;
  max-width: 520px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 28px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--spa-dark-deep);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: #fff;
  color: var(--spa-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--spa-dark);
  border: 1.5px solid var(--spa-dark);
}

.btn-outline:hover {
  background: var(--spa-dark);
  color: #fff;
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
}

.btn-arrow {
  transition: transform 0.25s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

/* Hero Art / Visual Card */
.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 12px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  transition: var(--transition);
}

.hero-card-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-card-image-wrap {
  position: relative;
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
}

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

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(19, 34, 27, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.hero-card-badge {
  color: #fff;
}

.card-star {
  color: #f6c86a;
  letter-spacing: 2px;
  font-size: 14px;
}

.hero-card-badge p {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin-top: 4px;
}

.hero-card-badge small {
  font-size: 11px;
  color: var(--gold-light);
}

.hero-card-footer {
  padding: 14px 8px 6px;
  text-align: center;
}

.hero-card-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-light);
}

/* Floating Notes */
.floating-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(19, 34, 27, 0.92);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  color: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  animation: floatSlow 6s ease-in-out infinite alternate;
}

.note-one {
  top: 20px;
  left: -20px;
  animation-delay: 0s;
}

.note-two {
  bottom: 20px;
  right: -10px;
  animation-delay: 3s;
}

@keyframes floatSlow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.note-icon {
  font-size: 22px;
}

.note-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
}

.note-sub {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  letter-spacing: 0.2em;
  transition: var(--transition);
}

.scroll-cue:hover {
  color: var(--gold-light);
}

.scroll-line {
  width: 1px;
  height: 24px;
  background: var(--gold);
  animation: scrollPulse 2s infinite ease-in-out;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   Section Global Utilities
   ========================================================================== */
.section-pad {
  padding: 100px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.center-tag {
  justify-content: center;
}

.tag-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: var(--gold-subtle);
  padding: 3px 8px;
  border-radius: 3px;
}

.light-tag .tag-number {
  color: var(--gold-light);
  background: rgba(197, 164, 126, 0.2);
}

.tag-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.light-tag .tag-text {
  color: rgba(255, 255, 255, 0.65);
}

h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

h2 em {
  font-style: italic;
  color: var(--gold-hover);
}

.section-subtitle {
  font-size: 15px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

/* ==========================================================================
   About / Introduction Section
   ========================================================================== */
.intro {
  background: var(--sand-card);
  position: relative;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.intro-visual {
  position: relative;
}

.intro-img-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
}

.intro-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.intro-img-frame:hover .intro-img {
  transform: scale(1.03);
}

.intro-badge {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: var(--spa-dark);
  color: #fff;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  max-width: 220px;
}

.badge-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.badge-label {
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

.intro-copy .lead-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--spa-dark);
  margin-bottom: 14px;
  line-height: 1.6;
}

.intro-copy p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.intro-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.highlight-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.highlight-icon {
  font-size: 26px;
  line-height: 1;
}

.highlight-item h4 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--spa-dark);
  margin-bottom: 4px;
}

.highlight-item p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.btn-text-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--spa-dark);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}

.btn-text-gold:hover {
  color: var(--gold-hover);
  padding-bottom: 6px;
}

/* ==========================================================================
   Sanctuary Interior Gallery Showcase Section
   ========================================================================== */
.gallery-section {
  background: var(--sand-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.gallery-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.gallery-img-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}

.gallery-img-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.gallery-caption {
  padding: 24px;
}

.gallery-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.gallery-caption h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--spa-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.gallery-caption p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ==========================================================================
   Experiences / Services Section
   ========================================================================== */
.experience-section {
  background: var(--sand);
}

.section-header {
  margin-bottom: 50px;
}

.section-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.section-title-wrap p {
  max-width: 440px;
  font-size: 15px;
  color: var(--muted);
}

.service-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  color: var(--ink-soft);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--spa-dark);
}

.filter-btn.active {
  background: var(--spa-dark);
  border-color: var(--spa-dark);
  color: var(--gold-light);
}

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

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(19, 34, 27, 0.85);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(6px);
}

.service-duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--spa-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.service-num {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.service-badge-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--spa-dark);
  line-height: 1.15;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-benefit {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--sage);
}

.service-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  background: var(--sand-card);
  color: var(--spa-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.service-book-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--spa-dark-deep);
}

/* ==========================================================================
   The Sanctuary Ritual Process Section
   ========================================================================== */
.ritual-section {
  background: var(--sand-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.ritual-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.ritual-step {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.ritual-step:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.step-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.7;
}

.step-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.ritual-step h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--spa-dark);
  margin-bottom: 10px;
}

.ritual-step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ==========================================================================
   Statement Banner Section
   ========================================================================== */
.statement {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 80px 20px;
}

.statement-bg {
  position: absolute;
  inset: 0;
}

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

.statement-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 23, 18, 0.92) 0%, rgba(19, 34, 27, 0.88) 100%);
}

.statement-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.gold-lotus {
  font-size: 38px;
  margin-bottom: 12px;
}

.statement .eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  font-weight: 700;
  margin-bottom: 16px;
}

.statement h2 {
  color: #fff;
  font-size: clamp(42px, 5.5vw, 68px);
  margin-bottom: 20px;
}

.statement h2 em {
  color: var(--gold-light);
}

.statement p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 34px;
}

/* ==========================================================================
   Why Choose Avlon Section
   ========================================================================== */
.why {
  background: var(--sand);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-img-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.why-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.why-card-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(19, 34, 27, 0.9);
  color: #fff;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 16px 20px;
  backdrop-filter: blur(8px);
}

.why-card-badge span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.why-card-badge strong {
  font-family: var(--serif);
  font-size: 20px;
  color: #fff;
}

.why-desc {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 30px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit-item:hover {
  border-color: var(--border-gold);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  font-size: 26px;
  line-height: 1;
  padding-top: 4px;
}

.benefit-item h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--spa-dark);
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ==========================================================================
   Reviews / Testimonials Section
   ========================================================================== */
.reviews {
  background: var(--sand-card);
}

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

.review-card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.stars {
  color: #f6c86a;
  letter-spacing: 3px;
  font-size: 16px;
  margin-bottom: 16px;
}

.review-text {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--spa-dark);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 13px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-gold);
}

.reviewer-meta strong {
  display: block;
  font-size: 14px;
  color: var(--spa-dark);
}

.reviewer-meta small {
  font-size: 11px;
  color: var(--muted);
}

/* ==========================================================================
   Location Section
   ========================================================================== */
.location {
  background: var(--sand);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.location-card {
  background: var(--white);
  padding: 50px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.address-box, .timing-box {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
}

.address-icon, .timing-icon {
  font-size: 26px;
  line-height: 1;
}

.address-details strong, .timing-box strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--spa-dark);
  margin-bottom: 6px;
}

.address-details p, .timing-box p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.location-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.location-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-md);
}

.location-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

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

.location-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(19, 34, 27, 0.92);
  color: #fff;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 14px 20px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-pin {
  font-size: 24px;
}

.location-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  color: #fff;
}

.location-badge span {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold-light);
}

/* ==========================================================================
   Booking Form Section
   ========================================================================== */
.booking {
  background: var(--spa-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(197, 164, 126, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.6;
}

.booking-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.booking-copy h2 {
  color: #fff;
  font-size: clamp(40px, 4.8vw, 64px);
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  margin-bottom: 30px;
}

.booking-direct-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.direct-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-dark-subtle);
  border-radius: 8px;
  transition: var(--transition);
}

.direct-link-card:hover {
  background: rgba(197, 164, 126, 0.15);
  border-color: var(--gold);
  transform: translateX(4px);
}

.link-icon {
  font-size: 24px;
}

.direct-link-card small {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.15em;
  color: var(--gold-light);
}

.direct-link-card strong {
  font-size: 16px;
  color: #fff;
}

.link-arrow {
  margin-left: auto;
  font-size: 16px;
  color: var(--gold-light);
}

.booking-guarantee {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.booking-form-wrap {
  background: var(--white);
  color: var(--ink);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.form-header {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 16px;
}

.form-header h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--spa-dark);
}

.form-header p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.booking-form label {
  display: block;
  margin-bottom: 18px;
}

.booking-form label span {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

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

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  display: block;
  background: #faf8f5;
  border: 1.5px solid var(--border-subtle);
  border-radius: 6px;
  padding: 13px 15px;
  font-size: 13.5px;
  color: var(--ink);
  outline: none;
  transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px var(--gold-glow);
}

.form-note {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.5;
  text-align: center;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: var(--sage-light);
  color: var(--sage);
  border: 1px solid var(--sage);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--spa-dark-deep);
  color: #fff;
  border-top: 1px solid rgba(197, 164, 126, 0.2);
}

.footer-top {
  padding: 80px 0 50px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr;
  gap: 50px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.footer-brand-title {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
}

.footer-brand-tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold-light);
}

.footer-slogan {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 10px;
}

.footer-bio {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 340px;
}

.footer-nav-col h4,
.footer-contact-col h4 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-addr {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.footer-contact-links a {
  color: var(--gold-light);
  font-weight: 600;
}

.footer-contact-links a:hover {
  color: #fff;
}

.footer-contact-links span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-wa {
  position: fixed;
  z-index: 99;
  right: 26px;
  bottom: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: waPulse 3s infinite;
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6);
}

.wa-float-svg {
  width: 32px;
  height: 32px;
  display: block;
}

.wa-btn-svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.wa-card-icon svg {
  display: block;
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--spa-dark);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--transition);
}

.floating-wa:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Reveal Animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization
   ========================================================================== */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ritual-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 140px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero-art {
    margin-top: 10px;
  }
  
  .menu-toggle {
    display: block;
    z-index: 55;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: rgba(19, 34, 27, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 30px 40px;
    gap: 20px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--border-gold);
    transition: right 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 50;
    overflow-y: auto;
  }
  
  .nav.open {
    right: 0;
  }

  .nav-link {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-cta {
    margin-top: 15px;
    text-align: center;
    padding: 14px;
  }

  .intro-grid,
  .why-grid,
  .location-grid,
  .booking-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 600px) {
  .container {
    width: calc(100% - 32px);
  }

  .announcement {
    font-size: 10.5px;
    padding: 8px 12px;
  }

  .announcement-divider {
    display: none;
  }
  
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 5px 12px;
    margin-bottom: 18px;
  }

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

  .hero-text {
    font-size: 14.5px;
    margin-bottom: 25px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-features {
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
  }
  
  .hero-card-frame {
    max-width: 100%;
    transform: none;
  }

  .hero-card-image-wrap {
    height: 260px;
  }

  .floating-note {
    position: static;
    margin-top: 14px;
    animation: none;
    width: 100%;
    justify-content: flex-start;
  }

  .section-pad {
    padding: 60px 0;
  }

  .section-tag {
    margin-bottom: 12px;
  }

  h2 {
    font-size: 32px;
    line-height: 1.1;
  }

  .intro-img {
    height: 320px;
  }

  .intro-badge {
    position: static;
    margin-top: 16px;
    max-width: 100%;
  }

  .intro-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 20px 0;
    padding: 16px 0;
  }

  .service-filters {
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .filter-btn {
    font-size: 11px;
    padding: 7px 14px;
    white-space: nowrap;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-img-wrap {
    height: 200px;
  }

  .service-content {
    padding: 20px;
  }

  .service-card h3 {
    font-size: 22px;
  }

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

  .gallery-img-wrap img {
    height: 210px;
  }

  .gallery-caption {
    padding: 18px;
  }

  .ritual-steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .ritual-step {
    padding: 24px 20px;
  }

  .statement {
    min-height: auto;
    padding: 60px 16px;
  }

  .statement h2 {
    font-size: 34px;
  }

  .why-img {
    height: 320px;
  }

  .why-card-badge {
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 12px 16px;
  }

  .benefit-item {
    grid-template-columns: 36px 1fr;
    padding: 14px 16px;
  }

  .benefit-item h3 {
    font-size: 18px;
  }

  .review-card {
    padding: 26px 20px;
  }

  .review-text {
    font-size: 16px;
  }

  .location-card {
    padding: 28px 18px;
  }

  .location-visual .location-img-wrap {
    min-height: 280px;
  }

  .location-actions {
    flex-direction: column;
  }

  .location-actions .btn {
    width: 100%;
  }

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

  .booking-form-wrap {
    padding: 24px 16px;
  }

  /* Prevent iOS Safari automatic input zoom */
  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    font-size: 16px;
    padding: 12px 14px;
  }

  .direct-link-card {
    padding: 14px 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 50px 0 35px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 20px 0;
  }

  .floating-wa {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .wa-float-svg {
    width: 26px;
    height: 26px;
  }

  .wa-tooltip {
    display: none;
  }
}
