﻿/* =========================================================
   Top Design Salon — Glassmorphic UI
   ========================================================= */

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

:root {
  /* Brand */
  --gold: #c9a374;
  --gold-light: #e6cba0;
  --gold-deep: #8a6a40;
  --rose: #e6b8a7;
  --plum: #5a3148;

  --dark: #14110f;
  --charcoal: #211b16;
  --warm: #f6efe5;
  --cream: #fbf6ee;

  --text: #2b231d;
  --muted: #877a6f;

  /* Glass tokens — light surfaces */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.68);
  --glass-border: rgba(255, 255, 255, 0.65);
  --glass-border-soft: rgba(255, 255, 255, 0.35);

  /* Glass tokens — dark surfaces */
  --glass-dark-bg: rgba(20, 17, 15, 0.45);
  --glass-dark-bg-strong: rgba(20, 17, 15, 0.62);
  --glass-dark-border: rgba(255, 255, 255, 0.12);
  --glass-dark-border-strong: rgba(255, 255, 255, 0.2);

  /* Shadows */
  --shadow-glass:
    0 10px 32px rgba(40, 28, 16, 0.12),
    0 2px 6px rgba(40, 28, 16, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  --shadow-glass-hover:
    0 18px 48px rgba(40, 28, 16, 0.18),
    0 4px 10px rgba(40, 28, 16, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  --shadow-glass-dark:
    0 14px 44px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  /* Blur tokens */
  --blur-sm: blur(10px) saturate(140%);
  --blur-md: blur(18px) saturate(160%);
  --blur-lg: blur(28px) saturate(170%);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: "Rubik", sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* =========================================================
   Ambient aurora — visible through every glass surface
   ========================================================= */
body::before {
  content: "";
  position: fixed;
  inset: -15vh -10vw;
  z-index: -2;
  background:
    radial-gradient(38vw 38vw at 8% 12%, rgba(201, 163, 116, 0.42), transparent 62%),
    radial-gradient(46vw 46vw at 92% 18%, rgba(230, 184, 167, 0.35), transparent 65%),
    radial-gradient(40vw 40vw at 78% 78%, rgba(90, 49, 72, 0.28), transparent 65%),
    radial-gradient(50vw 50vw at 20% 88%, rgba(201, 163, 116, 0.30), transparent 65%),
    linear-gradient(180deg, #f8efe1 0%, #f1e4cf 45%, #ead7b8 100%);
  filter: blur(10px);
  pointer-events: none;
  animation: auroraDrift 28s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    radial-gradient(rgba(20, 17, 15, 0.04) 1px, transparent 1px);
  background-size: 32px 32px, 32px 32px;
  background-position: 0 0, 16px 16px;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

@keyframes auroraDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(2%, -1%, 0) scale(1.04); }
  100% { transform: translate3d(-1%, 2%, 0) scale(1.02); }
}

/* =========================================================
   Reusable glass utilities
   ========================================================= */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--blur-md);
  backdrop-filter: var(--blur-md);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
  border-radius: var(--radius-md);
}
.glass-light {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.62),
    rgba(255, 255, 255, 0.38));
  -webkit-backdrop-filter: var(--blur-md);
  backdrop-filter: var(--blur-md);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
  border-radius: var(--radius-md);
  color: var(--text);
}
.glass-dark {
  background: var(--glass-dark-bg);
  -webkit-backdrop-filter: var(--blur-md);
  backdrop-filter: var(--blur-md);
  border: 1px solid var(--glass-dark-border);
  box-shadow: var(--shadow-glass-dark);
  border-radius: var(--radius-md);
  color: #fff;
}

/* =========================================================
   Navigation — floating frosted pill
   ========================================================= */
header {
  position: sticky;
  top: 12px;
  z-index: 1000;
  pointer-events: none;
}
nav {
  position: relative;
  z-index: 100;
  margin: 18px clamp(16px, 5vw, 64px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 10px 12px 10px 22px;
  height: 64px;
  background: rgba(20, 17, 15, 0.42);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  box-shadow:
    0 14px 40px rgba(20, 17, 15, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  pointer-events: auto;
}
.nav-logo {
  display: inline-block;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.78) 0%,
    var(--gold-light) 22%,
    #ffffff 42%,
    var(--gold) 58%,
    var(--gold-light) 78%,
    rgba(255, 255, 255, 0.78) 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: navLogoShimmer 5.5s linear infinite;
}
.nav-logo span {
  font-weight: 300;
  color: inherit;
  -webkit-text-fill-color: transparent;
}
/* Override the standalone .salon-loop styles when used inside .nav-logo
   so the parent's unified shimmer flows through both words */
.nav-logo .salon-loop {
  font-weight: 700;
  background: none;
  background-size: auto;
  animation: none;
}

@keyframes navLogoShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 220% center; }
}
.nav-links {
  display: flex;
  gap: 0.4rem;
  list-style: none;
  padding: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
}
.nav-links a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.nav-links a[aria-current="page"] {
  color: #fff;
  background: rgba(230, 203, 160, 0.16);
}
.nav-cta {
  position: relative;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1410;
  padding: 10px 22px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: "Rubik", sans-serif;
  overflow: hidden;
  box-shadow:
    0 6px 18px rgba(201, 163, 116, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.nav-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 100%
  );
  transform: translateX(-180%) skewX(-18deg);
  animation: btnPrimaryShimmer 4.2s ease-in-out infinite;
  pointer-events: none;
}
.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    0 10px 24px rgba(201, 163, 116, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.nav-cta:hover::before {
  animation-duration: 1.8s;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-light);
  transform-origin: center;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}
nav.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
nav.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
nav.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 0 clamp(64px, 12vw, 220px);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
  animation: floatGlow 14s ease-in-out infinite alternate;
}
.hero-glow--one {
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(230, 203, 160, 0.85), transparent 65%);
}
.hero-glow--two {
  bottom: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(230, 184, 167, 0.7), transparent 65%);
  animation-delay: -6s;
}
@keyframes floatGlow {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(4%, -3%, 0) scale(1.08); }
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 18px 0 0;
  margin-left: 0;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.4rem;
  font-weight: 500;
  padding: 8px 16px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--blur-sm);
  backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-pill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  width: fit-content;
}
.hero-title {
  font-weight: 700;
  font-size: clamp(2.6rem, 4.6vw, 4.4rem);
  color: #1a1410;
  line-height: 1.05;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}
.hero-title em {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold), var(--plum));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 600;
  display: block;
  text-shadow: 0 0 28px rgba(184, 149, 106, 0.2);
  animation:
    artistryShimmer 3.8s ease-in-out infinite,
    artistryFloat 5s ease-in-out infinite,
    artistryPulse 2.6s ease-in-out infinite;
}
.hero-sub {
  color: #4a3f37;
  line-height: 1.8;
  font-size: 0.98rem;
  max-width: 440px;
  margin-bottom: 2.4rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.btn-primary {
  position: relative;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1410;
  padding: 14px 30px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: "Rubik", sans-serif;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  box-shadow:
    0 10px 26px rgba(201, 163, 116, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 100%
  );
  transform: translateX(-180%) skewX(-18deg);
  animation: btnPrimaryShimmer 4.2s ease-in-out infinite;
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 16px 36px rgba(201, 163, 116, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.btn-primary:hover::before {
  animation-duration: 1.8s;
}

@keyframes btnPrimaryShimmer {
  0%, 18% {
    transform: translateX(-180%) skewX(-18deg);
  }
  60%, 100% {
    transform: translateX(280%) skewX(-18deg);
  }
}
.btn-ghost {
  color: #4a3f37;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 13px 24px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--blur-sm);
  backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: "Rubik", sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-ghost:hover {
  color: #1a1410;
  background: var(--glass-bg-strong);
  transform: translateY(-2px);
}

.hero-proof {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-proof > div {
  flex: 1 1 auto;
  min-width: 110px;
  padding: 14px 18px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--blur-md);
  backdrop-filter: var(--blur-md);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glass);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: default;
}
.hero-proof > div:hover {
  transform: translateY(-8px) scale(1.02);
  background: var(--glass-bg-strong);
  border-color: var(--gold);
  box-shadow: var(--shadow-glass-hover);
}
.hero-proof strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-deep);
  line-height: 1.1;
}
.hero-proof span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

/* Hero right composition */
.hero-right {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(20, 17, 15, 0.72), rgba(33, 27, 22, 0.6));
  -webkit-backdrop-filter: var(--blur-lg);
  backdrop-filter: var(--blur-lg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 24px 60px rgba(20, 17, 15, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 50%;
  opacity: 0.76;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.02);
}
.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 17, 15, 0.12), rgba(20, 17, 15, 0.58)),
    linear-gradient(0deg, rgba(20, 17, 15, 0.58), transparent 46%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(230, 203, 160, 0.07) 0,
      rgba(230, 203, 160, 0.07) 1px,
      transparent 1px,
      transparent 38px),
    repeating-linear-gradient(-45deg,
      rgba(230, 203, 160, 0.07) 0,
      rgba(230, 203, 160, 0.07) 1px,
      transparent 1px,
      transparent 38px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}
.hero-rings {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 280px;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(230, 203, 160, 0.22);
  animation: ringPulse 6s ease-in-out infinite;
}
.ring-1 { width: 260px; height: 260px; }
.ring-2 {
  width: 180px; height: 180px;
  border-color: rgba(230, 203, 160, 0.32);
  animation-delay: -2s;
}
.ring-3 {
  width: 110px; height: 110px;
  border-color: rgba(230, 203, 160, 0.45);
  background: rgba(230, 203, 160, 0.08);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation-delay: -4s;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.04); opacity: 0.85; }
}
.ring-icon {
  position: relative;
  z-index: 2;
  font-size: 2.8rem;
  color: rgba(230, 203, 160, 0.75);
  text-shadow: 0 0 24px rgba(230, 203, 160, 0.4);
}

/* Floating look cards */
.look-card {
  position: absolute;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #fff;
  z-index: 3;
  min-width: 180px;
  animation: floatCard 7s ease-in-out infinite;
}
.look-card span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
  font-weight: 500;
}
.look-card strong {
  font-size: 0.92rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.35;
}
.look-card--top {
  top: 8%;
  right: 6%;
}
.look-card--bottom {
  bottom: 18%;
  left: 6%;
  animation-delay: -3.5s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(230, 203, 160, 0.14);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(230, 203, 160, 0.4);
  border-radius: var(--radius-md);
  padding: 1rem 1.6rem;
  text-align: center;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  z-index: 3;
}
.hero-badge-num {
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 0 18px rgba(230, 203, 160, 0.35);
}
.hero-badge-label {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
}

/* =========================================================
   Location strip — gold glass bar
   ========================================================= */
.location-strip-wrap {
  display: flex;
  justify-content: center;
}

.location-strip {
  margin: 0;
  max-width: 960px;
  width: calc(100% - clamp(32px, 10vw, 128px));
  box-sizing: border-box;
  padding: 18px 28px;
  background: linear-gradient(135deg,
    rgba(201, 163, 116, 0.72),
    rgba(138, 106, 64, 0.62));
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow:
    0 12px 32px rgba(138, 106, 64, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  animation: locationStripPulse 3.4s ease-in-out infinite;
  transition: 
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    background 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  cursor: default;
}

.location-strip:hover {
  transform: translateY(-3px) scale(1.01);
  background: linear-gradient(135deg,
    rgba(201, 163, 116, 0.82),
    rgba(138, 106, 64, 0.72));
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 20px 48px rgba(138, 106, 64, 0.35),
    0 0 0 8px rgba(255, 220, 170, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  animation-play-state: paused;
}

@keyframes locationStripPulse {
  0%, 100% {
    box-shadow:
      0 12px 32px rgba(138, 106, 64, 0.25),
      0 0 0 0 rgba(255, 220, 170, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }
  50% {
    box-shadow:
      0 18px 44px rgba(201, 163, 116, 0.55),
      0 0 0 6px rgba(255, 220, 170, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }
}
.location-strip span {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}
.location-strip strong { font-weight: 600; }
.ldot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

/* =========================================================
   Services marquee — infinite scrolling ticker
   ========================================================= */
.services-marquee {
  position: relative;
  margin: 28px 0 0;
  padding: 14px 0;
  overflow: hidden;
  background: linear-gradient(135deg,
    rgba(20, 17, 15, 0.6),
    rgba(33, 27, 22, 0.42));
  -webkit-backdrop-filter: var(--blur-md);
  backdrop-filter: var(--blur-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 24px rgba(20, 17, 15, 0.18);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
}

.services-marquee-track {
  display: flex;
  width: max-content;
  animation: servicesMarquee 36s linear infinite;
  will-change: transform;
}

.services-marquee:hover .services-marquee-track,
.services-marquee:focus-within .services-marquee-track {
  animation-play-state: paused;
}

.services-marquee-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-marquee-list li {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  padding: 0 1.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  white-space: nowrap;
}

.services-marquee-list li::after {
  content: "\2726"; /* heavy four-pointed star ✦ */
  color: var(--gold);
  font-size: 0.78rem;
  opacity: 0.55;
  text-shadow: 0 0 12px rgba(201, 163, 116, 0.55);
}

@keyframes servicesMarquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* =========================================================
   Sections
   ========================================================= */
.section {
  padding: 100px clamp(16px, 5vw, 64px);
  position: relative;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--blur-sm);
  backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-pill);
}
.section-title {
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  color: #1a1410;
  line-height: 1.15;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold), var(--plum));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.section-title em.signature-loop {
  display: inline-block;
  background-size: 220% 100%;
  animation:
    signatureShimmer 3.2s ease-in-out infinite,
    signatureLift 2.8s ease-in-out infinite;
}
em.value-loop {
  display: inline-block;
  background-size: 220% 100%;
  animation:
    valueShimmer 3s ease-in-out infinite,
    valuePulse 2.4s ease-in-out infinite;
}

em.purpose-loop {
  display: inline-block;
  background: linear-gradient(120deg, var(--gold-light), var(--gold), var(--rose));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    purposeShimmer 3.5s ease-in-out infinite,
    purposeFloat 3s ease-in-out infinite;
}

@keyframes purposeShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes purposeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.salon-loop {
  display: inline-block;
  background: linear-gradient(120deg, var(--gold-light), #fff, var(--gold-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: salonShimmer 4s linear infinite;
  font-weight: 700;
}

.section-title .salon-loop {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold), var(--plum), var(--gold-deep));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes salonShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes signatureShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes signatureLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes artistryPulse {
  0%, 100% {
    filter: brightness(1);
    text-shadow: 0 0 28px rgba(184, 149, 106, 0.2);
  }
  50% {
    filter: brightness(1.16);
    text-shadow:
      0 0 18px rgba(230, 203, 160, 0.5),
      0 0 34px rgba(201, 163, 116, 0.34);
  }
}

@keyframes valueShimmer {
  0%, 100% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
}

@keyframes valuePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* =========================================================
   Services — glass grid
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.service-card {
  position: relative;
  padding: 1rem 1rem 1.4rem;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--blur-md);
  backdrop-filter: var(--blur-md);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  overflow: hidden;
  transition: 
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
    box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
    background 0.4s ease,
    border-color 0.4s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0) 40%,
    rgba(201, 163, 116, 0.4) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.8;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(230, 203, 160, 0.5), transparent 65%);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card.is-visible:hover {
  transform: translateY(-10px) scale(1.02);
  background: var(--glass-bg-strong);
  border-color: var(--gold);
  box-shadow: 
    0 22px 52px rgba(40, 28, 16, 0.2),
    0 10px 20px rgba(40, 28, 16, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.service-card.is-visible:hover::after {
  opacity: 1;
}
.service-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow:
    0 12px 24px rgba(40, 28, 16, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.6s ease;
}
.service-card.is-visible:hover .service-photo {
  transform: scale(1.04);
  filter: saturate(1.1);
}
.service-num {
  position: absolute;
  top: 1.55rem;
  right: 1.55rem;
  font-size: 0.7rem;
  color: #fff;
  letter-spacing: 0.16em;
  font-weight: 600;
  opacity: 0.94;
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius-md);
  background: rgba(20, 17, 15, 0.48);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.service-name {
  font-size: 1.08rem;
  font-weight: 600;
  color: #1a1410;
  margin-bottom: 0.6rem;
  letter-spacing: -0.005em;
}
.service-desc {
  font-size: 0.86rem;
  color: #5a4f47;
  line-height: 1.7;
  margin-bottom: 1.3rem;
  font-weight: 300;
}
.service-from {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-pill);
}
.service-from--link {
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease;
}
.service-from--link:hover {
  background: rgba(255, 255, 255, 0.7);
  color: var(--plum);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(138, 106, 64, 0.18);
}

/* =========================================================
   Membership — Spline 3D fan + tier cards
   ========================================================= */
.membership-block {
  position: relative;
  margin-top: clamp(48px, 6vw, 88px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}

/* Spline frame */
.membership-visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg,
    rgba(20, 17, 15, 0.72),
    rgba(33, 27, 22, 0.6));
  -webkit-backdrop-filter: var(--blur-lg);
  backdrop-filter: var(--blur-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 60px rgba(20, 17, 15, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  isolation: isolate;
  align-self: stretch;
  /* Fixed height stops <spline-viewer>'s ResizeObserver feedback loop.
     Media queries below adjust per breakpoint. */
  height: 680px;
  /* contain: prevents internal layout changes from bubbling out */
  contain: layout size;
}
.membership-visual::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle,
    rgba(230, 203, 160, 0.45),
    transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.membership-visual::after {
  content: "";
  position: absolute;
  inset: auto auto -25% -15%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle,
    rgba(90, 49, 72, 0.4),
    transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.membership-visual spline-viewer {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
}
/* Right info column */
.membership-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 2vw, 20px) 0;
}
.membership-title {
  font-weight: 700;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  color: #1a1410;
  line-height: 1.18;
  margin: 0.4rem 0 1rem;
  letter-spacing: -0.01em;
}
.membership-title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold), var(--plum));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.membership-lead {
  font-size: 0.95rem;
  color: #4a3f37;
  line-height: 1.75;
  margin-bottom: 0.5rem;
  max-width: 480px;
}
.membership-lead-zh {
  font-size: 0.88rem;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 1.6rem;
  letter-spacing: 0.02em;
}

/* Tier cards */
.membership-cards {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0 0 1.4rem;
  padding: 0;
}
.membership-card {
  position: relative;
  padding: 1.1rem 1.4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "row    amount"
    "footer amount";
  gap: 4px 1.2rem;
  align-items: center;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--blur-md);
  backdrop-filter: var(--blur-md);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  overflow: visible;
}
.membership-card:hover {
  transform: translateY(-3px);
  background: var(--glass-bg-strong);
  box-shadow: var(--shadow-glass-hover);
}
.membership-card-row {
  grid-area: row;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.membership-card-kicker {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-pill);
}
.membership-card-bonus {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: 0.02em;
}
.membership-card-amount {
  grid-area: amount;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 700;
  color: #1a1410;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: right;
}
.membership-card-currency {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--gold-deep);
  vertical-align: top;
  margin-right: 2px;
}
.membership-card-foot {
  grid-area: footer;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.membership-card-foot strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold-deep);
}

/* Featured tier */
.membership-card--featured {
  background: linear-gradient(135deg,
    rgba(255, 247, 232, 0.85),
    rgba(247, 226, 192, 0.7));
  border: 1px solid rgba(201, 163, 116, 0.55);
  box-shadow:
    0 20px 48px rgba(201, 163, 116, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  padding-top: 1.4rem;
}
.membership-card--featured .membership-card-kicker {
  color: #fff;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: rgba(255, 255, 255, 0.45);
}
.membership-card--featured .membership-card-foot strong {
  color: var(--plum);
}

/* Pulsing gold aura on the featured card (only after reveal) */
.membership-card--featured.is-visible {
  isolation: isolate;
}
.membership-card--featured.is-visible::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(135deg,
    rgba(255, 220, 170, 0.85),
    rgba(201, 163, 116, 0.55));
  filter: blur(16px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
  animation: featuredCardPulse 3.2s ease-in-out infinite;
}

@keyframes featuredCardPulse {
  0%, 100% {
    opacity: 0.35;
    transform: scale(0.99);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.025);
  }
}

.membership-card-flag {
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--plum), #8a4d6b);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-pill);
  box-shadow:
    0 8px 18px rgba(90, 49, 72, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  z-index: 2;
  animation: membershipFlagPulse 2.6s ease-in-out infinite;
}

@keyframes membershipFlagPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
  }
  50% {
    transform: translateY(-4px) scale(1.04);
    filter: brightness(1.12);
  }
}

.membership-foot-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 12px 16px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--blur-sm);
  backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-pill);
  width: fit-content;
  max-width: 100%;
}
.membership-foot-note span[lang="zh"] {
  color: var(--gold-deep);
  font-weight: 500;
}
.membership-foot-divider {
  color: var(--gold);
  font-weight: 700;
}

/* Reveal-on-scroll for membership cards */
.membership-card {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.membership-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .membership-block {
    grid-template-columns: 1fr;
  }
  .membership-visual {
    height: 560px;
  }
}
@media (max-width: 720px) {
  .membership-visual {
    height: 440px;
  }
  .membership-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "row"
      "amount"
      "footer";
    text-align: left;
  }
  .membership-card-amount {
    text-align: left;
  }
  .membership-card-flag {
    right: 12px;
  }
}

/* =========================================================
   About — dark glass panel
   ========================================================= */
.about {
  position: relative;
}
.about::before {
  content: "";
  position: absolute;
  inset: 40px clamp(16px, 5vw, 64px);
  background: linear-gradient(135deg, rgba(20, 17, 15, 0.78), rgba(33, 27, 22, 0.65));
  -webkit-backdrop-filter: var(--blur-lg);
  backdrop-filter: var(--blur-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow:
    0 24px 60px rgba(20, 17, 15, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 0;
  pointer-events: none;
  transition: 
    transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
    background 0.5s ease,
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}

.about.is-visible:hover::before {
  transform: scale(1.015);
  background: linear-gradient(135deg, rgba(26, 22, 19, 0.82), rgba(38, 32, 26, 0.7));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.about .about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  padding: 48px clamp(20px, 4vw, 56px);
}
.about .section-eyebrow,
.about .section-eyebrow--gold,
.section-eyebrow--gold,
.glass-dark .section-eyebrow {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.about-visual {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 480px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.82;
  filter: saturate(1.02) contrast(1.02);
}
.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 17, 15, 0.48), transparent 58%);
  pointer-events: none;
}
.about-shine {
  position: absolute;
  inset: -40% -10% auto auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(230, 203, 160, 0.45), transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}
.about-badge-overlay {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  box-shadow:
    0 12px 30px rgba(201, 163, 116, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  z-index: 2;
}
.about-badge-n {
  font-weight: 700;
  font-size: 1.9rem;
  color: #1a1410;
  line-height: 1;
}
.about-badge-t {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 20, 16, 0.7);
  margin-top: 4px;
  font-weight: 500;
}
.about-title {
  font-weight: 700;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  color: #fff;
  line-height: 1.18;
  margin-bottom: 1.3rem;
  letter-spacing: -0.01em;
}
.about-title em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
  background: none;
  -webkit-text-fill-color: var(--gold-light);
}
.about-body {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.stat-item {
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: 
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
  cursor: default;
}

.stat-item.is-visible:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(230, 203, 160, 0.4);
  box-shadow: 
    0 16px 32px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(230, 203, 160, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.stat-n {
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--gold-light);
  line-height: 1;
}
.stat-l {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
}

/* =========================================================
   Contact — glass card + map
   ========================================================= */
.contact-section { position: relative; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact-card {
  padding: 2rem 2rem 1.4rem;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--blur-md);
  backdrop-filter: var(--blur-md);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  transition: 
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    background 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  background: var(--glass-bg-strong);
  border-color: var(--gold);
  box-shadow: 
    0 24px 56px rgba(40, 28, 16, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.info-block {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(20, 17, 15, 0.08);
}
.info-block:last-child { border-bottom: none; }
.info-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
  font-weight: 600;
}
.info-value {
  font-size: 0.94rem;
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
}
.info-value a {
  color: var(--gold-deep);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dashed rgba(138, 106, 64, 0.4);
  transition: color 0.2s, border-color 0.2s;
}
.info-value a:hover {
  color: var(--plum);
  border-color: var(--plum);
}
.info-note {
  color: var(--muted);
  font-size: 0.82rem;
}
.map-placeholder {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--blur-sm);
  backdrop-filter: var(--blur-sm);
}
.map-placeholder iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(0.95) contrast(0.98);
}

.floating-whatsapp {
  position: fixed;
  left: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 12px 22px;
  background: #25d366;
  color: #fff;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
  animation: whatsappPulse 2.4s ease-in-out infinite;
}
.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 55%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.44),
    transparent
  );
  transform: skewX(-20deg);
  animation: whatsappShimmer 2.8s ease-in-out infinite;
}
.floating-whatsapp::after {
  content: attr(data-prompt);
  position: absolute;
  left: 0;
  bottom: calc(100% + 12px);
  width: max-content;
  max-width: 220px;
  padding: 9px 14px;
  background: rgba(20, 17, 15, 0.82);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  backdrop-filter: blur(16px) saturate(170%);
  box-shadow: 0 10px 26px rgba(20, 17, 15, 0.28);
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.28s ease;
  animation: whatsappPromptFloat 2.8s ease-in-out infinite;
}
.floating-whatsapp.is-prompt-out::after {
  opacity: 0;
}

/* Little chat-bubble tail under the prompt */
.floating-whatsapp .floating-whatsapp-tail {
  position: absolute;
  left: 18px;
  bottom: calc(100% + 6px);
  width: 10px;
  height: 10px;
  background: rgba(20, 17, 15, 0.82);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transform: rotate(45deg);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.28s ease;
}
.floating-whatsapp.is-prompt-out .floating-whatsapp-tail {
  opacity: 0;
}
.floating-whatsapp > * {
  position: relative;
  z-index: 1;
}
.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.04);
  filter: brightness(1.08);
  box-shadow: 0 18px 48px rgba(37, 211, 102, 0.55);
  color: #fff;
}
.floating-whatsapp-icon {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  fill: currentColor;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow:
      0 12px 32px rgba(37, 211, 102, 0.45),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
  50% {
    box-shadow:
      0 18px 44px rgba(37, 211, 102, 0.58),
      0 0 0 8px rgba(37, 211, 102, 0.18);
  }
}

@keyframes whatsappShimmer {
  0% { left: -70%; }
  55%, 100% { left: 125%; }
}

@keyframes whatsappPromptFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.botpress-live-agent-wrapper {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 2147483000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.botpress-live-agent-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 30%),
    linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1410;
  cursor: pointer;
  box-shadow:
    0 16px 38px rgba(201, 163, 116, 0.48),
    0 0 0 0 rgba(201, 163, 116, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
  animation: botpressLivePulse 2.2s ease-in-out infinite;
}

.botpress-live-agent-button::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(230, 203, 160, 0.34);
  border-radius: inherit;
  opacity: 0.8;
  animation: botpressLiveRing 2.2s ease-in-out infinite;
  pointer-events: none;
}

.botpress-live-agent-button::after {
  content: attr(data-prompt);
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: max-content;
  max-width: min(260px, calc(100vw - 40px));
  padding: 10px 14px;
  background: rgba(20, 17, 15, 0.88);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  backdrop-filter: blur(16px) saturate(170%);
  box-shadow: 0 14px 34px rgba(20, 17, 15, 0.32);
  font-size: 0.74rem;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  white-space: normal;
  pointer-events: none;
  animation: botpressLiveBubbleFloat 2.8s ease-in-out infinite;
}

.botpress-live-agent-tail {
  position: absolute;
  right: 18px;
  bottom: calc(100% + 8px);
  width: 12px;
  height: 12px;
  background: rgba(20, 17, 15, 0.88);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transform: rotate(45deg);
  pointer-events: none;
}

.botpress-live-agent-button svg {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.botpress-live-agent-button:hover {
  transform: translateY(-4px) scale(1.04);
  filter: brightness(1.06);
  box-shadow:
    0 20px 48px rgba(201, 163, 116, 0.58),
    0 0 0 10px rgba(201, 163, 116, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

@keyframes botpressLivePulse {
  0%, 100% {
    box-shadow:
      0 16px 38px rgba(201, 163, 116, 0.48),
      0 0 0 0 rgba(201, 163, 116, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.65);
  }
  50% {
    box-shadow:
      0 20px 48px rgba(201, 163, 116, 0.6),
      0 0 0 12px rgba(201, 163, 116, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }
}

@keyframes botpressLiveRing {
  0%, 100% {
    opacity: 0.6;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.18;
    transform: scale(1.16);
  }
}

@keyframes botpressLiveBubbleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* =========================================================
   Footer
   ========================================================= */
footer {
  position: relative;
  margin: 56px clamp(16px, 5vw, 64px) clamp(16px, 5vw, 28px);
  padding: 2.6rem clamp(20px, 4vw, 48px) 1.8rem;
  background: linear-gradient(135deg, rgba(20, 17, 15, 0.78), rgba(33, 27, 22, 0.66));
  -webkit-backdrop-filter: var(--blur-md);
  backdrop-filter: var(--blur-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(20, 17, 15, 0.28),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin-bottom: 2rem;
}
.footer-logo {
  font-weight: 600;
  color: var(--gold-light);
  font-size: 1.15rem;
  display: block;
  margin-bottom: 0.4rem;
}
.footer-logo span {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}
.footer-columns {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links-head {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer-copy {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-credit a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-credit a:hover {
  color: var(--gold-light);
}

/* =========================================================
   Animations & reveals
   ========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes artistryShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes artistryFloat {
  0%,
  100% {
    transform: translateY(0) skewX(-2deg);
  }
  50% {
    transform: translateY(-6px) skewX(1deg);
  }
}
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.25s; }
.d3 { animation-delay: 0.4s; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card,
.stat-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.35s ease,
              box-shadow 0.35s ease;
}
.service-card.is-visible,
.stat-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Accessibility
   ========================================================= */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }
  .hero-right { min-height: 420px; }
  .about .about-inner {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 90px; }
  nav {
    margin: 12px;
    padding: 8px 8px 8px 18px;
    height: 58px;
    align-items: center;
    border-radius: 28px;
  }
  .nav-logo {
    font-size: 0.96rem;
    position: relative;
    z-index: 2;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 12px;
    border-radius: 24px;
    background: rgba(20, 17, 15, 0.9);
    -webkit-backdrop-filter: blur(24px) saturate(170%);
    backdrop-filter: blur(24px) saturate(170%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
      0 22px 50px rgba(20, 17, 15, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    pointer-events: none;
    visibility: hidden;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }
  nav.menu-open .nav-links {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
  }
  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.05);
  }
  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.11);
  }
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }

  .hero { padding: 20px 16px 28px; }
  .hero-left { margin-left: 0; }
  .hero-right { min-height: 320px; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .hero-actions { margin-bottom: 2rem; }
  .hero-badge { display: none; }

  .location-strip {
    margin: 0;
    width: calc(100% - 32px);
    max-width: none;
    padding: 12px 18px;
    gap: 0.6rem;
    border-radius: var(--radius-md);
  }
  .ldot { display: none; }

  .section { padding: 64px 16px; }
  .about::before { inset: 24px 12px; }
  .about .about-inner { padding: 32px 18px; }
  .about-visual { max-height: 360px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 0.8rem; }

  .map-placeholder { min-height: 280px; }
  .map-placeholder iframe { min-height: 280px; }

  footer { margin: 32px 12px 12px; padding: 2rem 18px 1.4rem; }
  .footer-columns { gap: 1.6rem; }

}

/* =========================================================
   Forms & Inputs
   ========================================================= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-left: 4px;
}
.form-input, .form-textarea {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--blur-sm);
  backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: "Rubik", sans-serif;
  font-size: 0.94rem;
  color: var(--text);
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--glass-bg-strong);
  box-shadow: 0 0 0 4px rgba(201, 163, 116, 0.15);
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
}
.btn-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* WhatsApp action buttons — glassmorphic */
.whatsapp-actions {
  display: grid;
  gap: 0.85rem;
}
.btn-whatsapp {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 14px 20px 14px 14px;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0.32));
  -webkit-backdrop-filter: var(--blur-md);
  backdrop-filter: var(--blur-md);
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow:
    0 10px 26px rgba(40, 28, 16, 0.1),
    0 2px 6px rgba(37, 211, 102, 0.08),
    0 0 0 0 rgba(37, 211, 102, 0),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
  animation: btnWhatsappPulse 3.4s ease-in-out infinite;
}
.btn-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%);
  transform: translateX(-130%);
  pointer-events: none;
  z-index: 0;
  animation: btnWhatsappShimmer 4.5s ease-in-out infinite;
}
.btn-whatsapp > * {
  position: relative;
  z-index: 1;
}

/* Stagger the three buttons so they don't sync */
.btn-whatsapp:nth-of-type(2) {
  animation-delay: -1.1s;
}
.btn-whatsapp:nth-of-type(2)::before {
  animation-delay: -1.5s;
}
.btn-whatsapp:nth-of-type(3) {
  animation-delay: -2.2s;
}
.btn-whatsapp:nth-of-type(3)::before {
  animation-delay: -3s;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.68),
    rgba(255, 255, 255, 0.42));
  border-color: rgba(37, 211, 102, 0.45);
  box-shadow:
    0 18px 40px rgba(40, 28, 16, 0.14),
    0 6px 14px rgba(37, 211, 102, 0.22),
    0 0 0 4px rgba(37, 211, 102, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: var(--text);
  animation-play-state: paused;
}
.btn-whatsapp:hover::before {
  animation-duration: 1.8s;
}
.btn-whatsapp:focus-visible {
  outline: 2px solid rgba(37, 211, 102, 0.6);
  outline-offset: 3px;
}

@keyframes btnWhatsappShimmer {
  0%, 22% {
    transform: translateX(-130%);
  }
  60%, 100% {
    transform: translateX(130%);
  }
}

@keyframes btnWhatsappPulse {
  0%, 100% {
    box-shadow:
      0 10px 26px rgba(40, 28, 16, 0.1),
      0 2px 6px rgba(37, 211, 102, 0.08),
      0 0 0 0 rgba(37, 211, 102, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }
  50% {
    box-shadow:
      0 14px 34px rgba(40, 28, 16, 0.14),
      0 4px 12px rgba(37, 211, 102, 0.32),
      0 0 0 6px rgba(37, 211, 102, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.75);
  }
}

.btn-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34e57a, #128c41);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 6px 14px rgba(18, 140, 65, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
.btn-whatsapp-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.btn-whatsapp-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  min-width: 0;
}
.btn-whatsapp-label strong {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--text);
}
.btn-whatsapp-label small {
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-weight: 400;
}

.btn-whatsapp-arrow {
  color: var(--gold-deep);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.25s ease, color 0.25s ease;
}
.btn-whatsapp:hover .btn-whatsapp-arrow {
  transform: translateX(4px);
  color: #128c41;
}

/* Chat card — extra glass polish */
.contact-card--chat {
  position: relative;
  display: flex;
  flex-direction: column;
}
.contact-card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 6px 12px;
  margin-bottom: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--blur-sm);
  backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-pill);
}
.contact-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: chatStatusPulse 2s ease-out infinite;
}
@keyframes chatStatusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.contact-card-footnote {
  margin-top: 1.4rem;
  text-align: center;
}

/* Page Header */
.page-header {
  padding: 140px clamp(16px, 5vw, 64px) 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #1a1410;
  margin-bottom: 1rem;
}
.page-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================================
   About Page
   ========================================================= */
.about-page-header {
  overflow: hidden;
}

.about-page-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8rem;
  width: min(38rem, 80vw);
  height: min(38rem, 80vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 163, 116, 0.22), transparent 68%);
  transform: translateX(-50%);
  pointer-events: none;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 1.4rem;
  align-items: stretch;
}

.about-story-card,
.about-signature-card,
.about-cta-card {
  padding: clamp(1.6rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
}

.about-story-card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-story-card p:last-child {
  margin-bottom: 0;
}

.about-signature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.about-signature-card::before {
  content: "";
  position: absolute;
  inset: -35% -20% auto auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 203, 160, 0.28), transparent 70%);
  animation: floatingGlow 8s ease-in-out infinite;
}
.signature-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 50%;
  opacity: 0.34;
  filter: saturate(1.08) contrast(1.08);
}
.about-signature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 17, 15, 0.82), rgba(20, 17, 15, 0.24));
  pointer-events: none;
}

.signature-kicker {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.about-signature-card strong {
  display: block;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 9ch;
  position: relative;
  z-index: 1;
}

.signature-list {
  display: grid;
  gap: 0.65rem;
  position: relative;
  z-index: 1;
}

.signature-list span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 0.65rem;
  font-size: 0.9rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  min-height: 240px;
  padding: 1.5rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glass-hover);
  background: rgba(255, 255, 255, 0.72);
}

.value-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(255, 247, 232, 0.85),
    rgba(247, 226, 192, 0.65));
  -webkit-backdrop-filter: var(--blur-sm);
  backdrop-filter: var(--blur-sm);
  border: 1px solid rgba(201, 163, 116, 0.45);
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  box-shadow:
    0 6px 14px rgba(201, 163, 116, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  margin-bottom: 1.4rem;
}

.value-card h3 {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.value-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.about-process-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: start;
}

.process-steps {
  display: grid;
  gap: 1rem;
}

.process-step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.3rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.52);
  -webkit-backdrop-filter: var(--blur-md);
  backdrop-filter: var(--blur-md);
  box-shadow: var(--shadow-glass);
}

.process-step span {
  color: var(--plum);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.process-step p {
  color: var(--muted);
}

.about-cta-section {
  padding-top: 0;
}

.about-cta-card {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.about-cta-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(1.02) contrast(1.02);
}

.about-cta-card > :not(.about-cta-photo) {
  position: relative;
  z-index: 1;
}

.about-cta-card h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 1rem;
}

.about-cta-card p {
  color: rgba(255, 255, 255, 0.62);
  max-width: 620px;
  margin: 0 auto 1.6rem;
}

.about-cta-card .hero-actions {
  justify-content: center;
}

.value-card,
.process-step {
  opacity: 0;
  transform: translateY(18px);
}

.value-card.is-visible,
.process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    background 0.3s ease;
}

/* =========================================================
   FAQ Page
   ========================================================= */
.faq-page-header {
  overflow: hidden;
}

.faq-page-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8rem;
  width: min(36rem, 80vw);
  height: min(36rem, 80vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 163, 116, 0.2), transparent 68%);
  transform: translateX(-50%);
  pointer-events: none;
}

.faq-section {
  padding-top: 48px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  overflow: hidden;
}

.faq-intro-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 50%;
  opacity: 0.34;
  filter: saturate(1.08) contrast(1.05);
}

.faq-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 17, 15, 0.86), rgba(20, 17, 15, 0.22));
  pointer-events: none;
}

.faq-intro > :not(.faq-intro-photo) {
  position: relative;
  z-index: 1;
}

.faq-intro h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.faq-intro p:not(.section-eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  max-width: 28rem;
}

.faq-intro .btn-primary {
  width: fit-content;
  margin-top: 0.4rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.2rem 1.35rem;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--blur-md);
  backdrop-filter: var(--blur-md);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glass);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.faq-item.is-animating {
  overflow: hidden;
}

.faq-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item:hover,
.faq-item[open] {
  background: var(--glass-bg-strong);
  box-shadow: var(--shadow-glass-hover);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #1a1410;
  font-weight: 600;
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 163, 116, 0.16);
  color: var(--gold-deep);
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] summary::after {
  content: "-";
  transform: rotate(180deg);
  background: rgba(201, 163, 116, 0.26);
}

.faq-answer {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    height 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    transform 0.24s ease;
}

.faq-item[open] .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.94rem;
}

@media (max-width: 1024px) {
  .about-story-grid,
  .about-process-section,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: relative;
    top: auto;
    min-height: 380px;
  }

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

@media (max-width: 720px) {
  .page-header { padding: 100px 16px 40px; }
  .btn-submit { width: 100%; }

  .about-story-card,
  .about-signature-card,
  .about-cta-card {
    padding: 1.4rem;
  }

  .about-signature-card {
    min-height: 300px;
  }

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

  .process-step {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .faq-section {
    padding-top: 24px;
  }

  .faq-intro,
  .faq-item {
    padding: 1.25rem;
  }

  .faq-intro {
    min-height: 320px;
  }
}
