/* ============================================
   Lumina Aesthetics & Wellness
   Clean Clinical Luxury Design System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --sage: #7D8E7D;
  --sage-light: #9CAD9C;
  --sage-dark: #6B7E6B;
  --gold: #C5A572;
  --gold-light: rgba(197, 165, 114, 0.15);
  --cream: #FAF8F5;
  --blush: #E8C4C4;
  --blush-light: #F2DEDE;
  --blush-dark: #D4A8A8;
  --charcoal: #2D2D2D;
  --charcoal-light: #4A4A4A;
  --white: #FFFFFF;
  --off-white: #F8F6F2;
  --border: rgba(139, 158, 139, 0.15);
  --shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-lift: 0 20px 50px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --section-padding: 80px;
  --container-max: 1200px;
}

@media (min-width: 1024px) {
  :root {
    --section-padding: 120px;
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--sage);
  color: white;
  padding: 12px 24px;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
  text-decoration: none;
  font-size: 0.9rem;
}
.skip-link:focus {
  top: 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--charcoal-light);
  max-width: 65ch;
}

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

.text-blush {
  color: var(--blush-dark);
}

.label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 12px;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section--cream {
  background: var(--cream);
}

.section--white {
  background: var(--white);
}

.section--sage {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
  color: var(--white);
}

.section--sage h2,
.section--sage h3,
.section--sage h4 {
  color: var(--white);
}

.section--sage p,
.section--sage .label {
  color: rgba(255, 255, 255, 0.95);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-header p {
  margin: 16px auto 0;
  font-size: 1.1rem;
}

/* --- SVG Wave Dividers --- */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

@media (min-width: 768px) {
  .wave-divider svg {
    height: 80px;
  }
}

.wave-divider--cream svg path {
  fill: var(--cream);
}

.wave-divider--white svg path {
  fill: var(--white);
}

.wave-divider--sage svg path {
  fill: var(--sage);
}

.wave-divider--flip {
  transform: scaleY(-1);
  margin-top: 0;
  margin-bottom: -1px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--sage);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn--outline:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--sage);
}

.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 4px 20px rgba(255,255,255,0.2);
}

.btn--blush {
  background: var(--blush);
  color: var(--charcoal);
}

.btn--blush:hover {
  background: var(--blush-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 12px 24px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 20px 48px;
  font-size: 1.05rem;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1001;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 36px;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--charcoal-light);
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sage);
  transition: var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--charcoal);
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay — Luxury Full-Screen */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Layered background: solid with subtle gradient tint */
.nav-mobile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg,
    #FAF8F5 0%,
    #FFFFFF 40%,
    #FBF6F4 70%,
    #F5F8F5 100%
  );
}

/* Decorative gold line accent */
.nav-mobile::after {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  width: 1px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), rgba(197, 165, 114, 0.1));
  transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.nav-mobile.active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile.active::after {
  height: 100%;
}

.nav-mobile-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 100px 40px 40px 48px;
  overflow-y: auto;
}

/* Brand section at top */
.nav-mobile-brand {
  margin-bottom: 48px;
  transform: translateY(16px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.nav-mobile.active .nav-mobile-brand {
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile-logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  display: block;
}

.nav-mobile-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}

/* Navigation links — editorial numbered style */
.nav-mobile-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.nav-mobile-link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(197, 165, 114, 0.1);
  text-decoration: none;
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile-link:first-child {
  border-top: 1px solid rgba(197, 165, 114, 0.1);
}

.nav-mobile.active .nav-mobile-link {
  transform: translateX(0);
  opacity: 1;
}

.nav-mobile.active .nav-mobile-link:nth-child(1) { transition-delay: 0.15s; }
.nav-mobile.active .nav-mobile-link:nth-child(2) { transition-delay: 0.2s; }
.nav-mobile.active .nav-mobile-link:nth-child(3) { transition-delay: 0.25s; }
.nav-mobile.active .nav-mobile-link:nth-child(4) { transition-delay: 0.3s; }

.nav-mobile-link-number {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  min-width: 20px;
}

.nav-mobile-link-text {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 8vw, 2.8rem);
  color: var(--charcoal);
  line-height: 1.1;
  transition: color 0.3s ease;
}

.nav-mobile-link:hover .nav-mobile-link-text,
.nav-mobile-link:active .nav-mobile-link-text {
  color: var(--sage);
}

.nav-mobile-link:hover .nav-mobile-link-number {
  color: var(--sage);
}

/* Footer section — CTA + contact info */
.nav-mobile-footer {
  margin-top: 40px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.35s;
}

.nav-mobile.active .nav-mobile-footer {
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 24px;
  padding: 18px 36px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  box-shadow: 0 6px 28px rgba(139, 158, 139, 0.3);
}

.nav-mobile-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.nav-mobile-contact a {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-mobile-contact a:hover {
  color: var(--sage);
}

.nav-mobile-divider {
  color: var(--gold);
  font-size: 0.6rem;
}

.nav-mobile-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.nav-mobile-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--charcoal-light);
  border: 1px solid rgba(197, 165, 114, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-mobile-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(197, 165, 114, 0.3);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,
    rgba(139, 158, 139, 0.08) 0%,
    var(--cream) 60%,
    var(--white) 100%
  );
  padding: 140px 24px 100px;
  border-bottom: 1px solid rgba(139, 158, 139, 0.1);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(232, 196, 196, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(139, 158, 139, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(139, 158, 139, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sage-dark);
  margin-bottom: 28px;
  border: 1px solid rgba(139, 158, 139, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.15rem;
  margin: 0 auto 40px;
  max-width: 560px;
  color: var(--charcoal-light);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Hero trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  padding: 16px 28px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(139,158,139,0.1);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  animation: trustFadeIn 0.8s ease 0.6s both;
}

@keyframes trustFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-trust__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
  line-height: 1;
}

.hero-trust__score {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
}

.hero-trust__divider {
  width: 1px;
  height: 20px;
  background: rgba(139,158,139,0.2);
  flex-shrink: 0;
}

.hero-trust__stat {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.hero-trust__stat strong {
  color: var(--charcoal);
  font-weight: 600;
}

@media (max-width: 640px) {
  .hero-trust {
    flex-direction: column;
    gap: 10px;
    border-radius: 20px;
    padding: 16px 20px;
    margin-top: 32px;
  }
  .hero-trust__divider {
    width: 40px;
    height: 1px;
  }
}

/* --- Services Page Sticky Category Nav --- */
.services-sticky-nav {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 165, 114, 0.12);
}
.services-sticky-nav-inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 12px 24px;
  max-width: 900px;
  margin: 0 auto;
}
.services-sticky-nav-inner::-webkit-scrollbar {
  display: none;
}
.services-sticky-nav-item {
  flex-shrink: 0;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  background: transparent;
  border: 1px solid rgba(139, 158, 139, 0.15);
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}
.services-sticky-nav-item:hover {
  border-color: var(--sage);
  color: var(--sage);
}
.services-sticky-nav-item.active {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

@media (min-width: 768px) {
  .services-sticky-nav {
    top: 72px;
  }
  .services-sticky-nav-inner {
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
  }
  .services-sticky-nav-item {
    font-size: 0.88rem;
    padding: 10px 24px;
  }
}

/* --- Services Menu (mobile accordion) --- */
.services-menu {
  display: none;
}

.smenu-group {
  margin-bottom: 20px;
}
.smenu-group-title {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(139, 158, 139, 0.12);
  margin-bottom: 10px;
}

/* --- Collapsed item row --- */
.smenu-item {
  background: var(--white);
  border: 1px solid rgba(139, 158, 139, 0.08);
  border-radius: 16px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}
.smenu-item.open {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(139, 158, 139, 0.06);
  border-color: rgba(197, 165, 114, 0.25);
  transform: scale(1.01);
}
.smenu-item-header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 14px;
  text-align: left;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}
.smenu-item-info {
  flex: 1;
  min-width: 0;
}
.smenu-item-name {
  display: block;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.3;
}
.smenu-item-price {
  display: block;
  font-size: 0.76rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 3px;
  letter-spacing: 0.02em;
}
.smenu-item-meta {
  font-size: 0.72rem;
  color: var(--charcoal);
  opacity: 0.4;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.smenu-chevron {
  color: var(--sage);
  opacity: 0.35;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  flex-shrink: 0;
}
.smenu-item.open .smenu-chevron {
  transform: rotate(180deg);
  opacity: 0.7;
}

/* --- Expanded detail panel --- */
.smenu-item-detail {
  height: 0;
  overflow: hidden;
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height;
}
.smenu-item-detail-inner {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}
.smenu-item.open .smenu-item-detail-inner {
  opacity: 1;
  transform: translateY(0);
}

/* Hero image */
.smenu-detail-hero {
  position: relative;
  margin: 0 16px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.smenu-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.smenu-detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.08) 100%);
  pointer-events: none;
}

/* Price highlight row — flush with hero */
.smenu-detail-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  margin: 8px 16px 0;
  background: rgba(139, 158, 139, 0.05);
  border-radius: 10px;
}
.smenu-detail-price-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  opacity: 0.4;
  font-weight: 500;
}
.smenu-detail-price-value {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--charcoal);
}

/* Content area — same 16px inset */
.smenu-detail-content {
  padding: 16px;
  position: relative;
}
.smenu-detail-content::before {
  content: '';
  display: block;
  width: 40px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold));
  border-radius: 2px;
  margin: 0 auto 16px;
  opacity: 0.85;
}

/* Description */
.smenu-detail-content p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.8;
  margin-bottom: 16px;
  text-align: center;
}

/* Detail info grid */
.smenu-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 16px;
  border-top: 1px solid rgba(139, 158, 139, 0.08);
}
.smenu-detail-grid-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(139, 158, 139, 0.06);
}
.smenu-detail-grid-item:nth-child(odd) {
  padding-right: 12px;
}
.smenu-detail-grid-item:nth-child(even) {
  padding-left: 12px;
  border-left: 1px solid rgba(139, 158, 139, 0.06);
}
.smenu-detail-grid-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  opacity: 0.4;
  font-weight: 500;
  margin-bottom: 2px;
}
.smenu-detail-grid-value {
  display: block;
  font-size: 0.85rem;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.3;
}

/* Book button */
.smenu-detail-content .btn {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 13px 24px;
  border-radius: 12px;
  margin-top: 2px;
}

/* Mobile: show menu, hide full layout */
@media (max-width: 767px) {
  .services-menu {
    display: block;
    padding: 12px 0 0;
    background: var(--cream);
  }
  .services-full-layout {
    display: none !important;
  }
  .services-sticky-nav {
    display: none;
  }
}

/* --- Service Quick Nav (mobile only, homepage) --- */
.service-quick-nav {
  display: none;
}

/* --- Service Cards Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139, 158, 139, 0.08);
  backdrop-filter: blur(4px);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(197, 165, 114, 0.2);
}

.service-card-img {
  width: 100%;
  height: 240px;
  aspect-ratio: 3/2;
  height: auto;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.service-card-body {
  padding: 28px;
}

.service-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.service-card-body h3::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin-top: 8px;
  transition: width 0.3s ease;
}

.service-card:hover .service-card-body h3::after {
  width: 50px;
}

.service-card-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-link svg {
  transition: var(--transition);
}

.service-card-link:hover svg {
  transform: translateX(4px);
}

/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
  padding: 60px 0;
}

@media (min-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

.stat-item h3 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  background: linear-gradient(135deg, var(--sage-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.9rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .stat-item + .stat-item {
    border-left: 1px solid rgba(139, 158, 139, 0.15);
  }
}

/* --- Testimonials Horizontal Scroll --- */
.testimonials-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px 24px 40px;
  scrollbar-width: none;
}

.testimonials-scroll::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 320px;
  max-width: 400px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  border-top: 2px solid rgba(197, 165, 114, 0.3);
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--charcoal);
  flex: 1;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial-name {
  font-weight: 500;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--sage);
}

/* --- Results Showcase --- */
.results-showcase {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.result-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.result-feature--reverse {
  direction: rtl;
}

.result-feature--reverse > * {
  direction: ltr;
}

.result-feature__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.result-feature__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-feature:hover .result-feature__image img {
  transform: scale(1.04);
}

.result-feature__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(45, 45, 45, 0.3) 100%);
  pointer-events: none;
}

.result-feature__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(197, 165, 114, 0.2);
}

.result-feature__badge-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--sage-dark);
  line-height: 1;
}

.result-feature__badge-text {
  font-size: 0.75rem;
  color: var(--charcoal-light);
  line-height: 1.3;
  max-width: 100px;
}

.result-feature__content {
  display: flex;
  flex-direction: column;
}

.result-feature__treatment {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.result-feature__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  line-height: 1.5;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}

.result-feature__author {
  margin-bottom: 32px;
}

.result-feature__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  display: block;
  margin-bottom: 2px;
}

.result-feature__detail {
  font-size: 0.85rem;
  color: var(--sage);
}

.result-feature__stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.result-feature__stat {
  flex: 1;
  text-align: center;
  position: relative;
}

.result-feature__stat + .result-feature__stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.result-feature__stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--sage-dark);
  line-height: 1.2;
  margin-bottom: 2px;
}

.result-feature__stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal-light);
}

@media (max-width: 768px) {
  .result-feature {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .result-feature--reverse {
    direction: ltr;
  }
  .result-feature__image img {
    height: 360px;
  }
  .results-showcase {
    gap: 56px;
  }
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: var(--section-padding) 24px;
  background: linear-gradient(165deg, #2D332D 0%, #1a1f1a 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197,165,114,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139,158,139,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  margin: 0 auto 36px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
}

.cta-section .hero-buttons {
  position: relative;
}

.cta-section .btn {
  margin: 0 8px;
}

.cta-section .btn--cta-primary {
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.cta-section .btn--cta-primary:hover {
  background: #d4b37f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197,165,114,0.3);
}

.cta-section .btn--cta-secondary {
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  background: transparent;
}
.cta-section .btn--cta-secondary:hover {
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- About Page: Cinematic Hero --- */
.about-hero-cinematic {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.55) saturate(1.1);
  transform: scale(1.05);
  animation: aboutHeroZoom 20s ease-out forwards;
}

@keyframes aboutHeroZoom {
  to { transform: scale(1); }
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(45,45,45,0.3) 0%, rgba(45,45,45,0.15) 40%, rgba(45,45,45,0.6) 100%),
    radial-gradient(ellipse at 50% 80%, rgba(139,158,139,0.2) 0%, transparent 60%);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 160px 24px 80px;
  max-width: 720px;
}

.about-hero-content .label {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: inline-block;
}

.about-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.about-hero-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.about-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.about-hero-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(197,165,114,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- Stats Ribbon --- */
.about-stats {
  background: var(--white);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .about-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--sage-dark);
  line-height: 1.1;
}

.about-stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--charcoal-light);
  font-weight: 500;
}

/* --- Editorial Story Section --- */
.about-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-editorial {
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
  }
}

.about-editorial-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .about-editorial-images {
    grid-template-columns: 3fr 2fr;
    grid-template-rows: auto;
    gap: 20px;
    min-height: 520px;
  }
}

.about-editorial-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-editorial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-editorial-img:hover img {
  transform: scale(1.04);
}

.about-editorial-img--main {
  aspect-ratio: 3/4;
}

@media (min-width: 768px) {
  .about-editorial-img--main {
    aspect-ratio: auto;
    grid-row: 1 / 2;
  }
}

.about-editorial-img--accent {
  aspect-ratio: 4/3;
}

@media (min-width: 768px) {
  .about-editorial-img--accent {
    aspect-ratio: auto;
    align-self: end;
    height: 65%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md), 0 0 0 6px rgba(197,165,114,0.12);
  }
}

.about-editorial-text h2 {
  margin-bottom: 20px;
}

.about-editorial-text p {
  margin-bottom: 16px;
}

.about-editorial-text p:last-of-type {
  margin-bottom: 32px;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  text-align: center;
  transition: transform 0.4s ease;
}

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

.team-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border-bottom: 2px solid transparent;
  transition: border-color 0.4s ease;
}

.team-card:hover .team-card-img {
  border-bottom-color: var(--gold);
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.team-card:hover .team-card-img img {
  transform: scale(1.03);
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.team-card .team-role {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.team-card p {
  font-size: 0.9rem;
  max-width: 320px;
  margin: 0 auto;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(139, 158, 139, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.value-card h4 {
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  margin: 0 auto;
}

/* Credentials */
.credentials-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.credential-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Services Page --- */
.services-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, rgba(139, 158, 139, 0.06) 0%, var(--cream) 100%);
}

.service-category {
  margin-bottom: 80px;
}

.service-category:last-child {
  margin-bottom: 0;
}

.service-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.service-category-icon {
  width: 48px;
  height: 48px;
  background: rgba(139, 158, 139, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .service-detail-card {
    grid-template-columns: 300px 1fr;
  }
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
}

.service-detail-card + .service-detail-card {
  margin-top: 20px;
}

.service-detail-img {
  height: 220px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .service-detail-img {
    height: auto;
  }
}

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

.service-detail-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-body h3 {
  margin-bottom: 12px;
}

.service-detail-body p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.service-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--sage);
}

.service-meta-item svg {
  width: 16px;
  height: 16px;
}

.service-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sage);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(139, 158, 139, 0.2);
}

/* --- Contact Page --- */
.contact-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, rgba(139, 158, 139, 0.06) 0%, var(--cream) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* Contact form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 18px 20px 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--charcoal);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  background: var(--white);
}

.form-group label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  color: var(--charcoal-light);
  pointer-events: none;
  transition: var(--transition);
}

.form-group textarea ~ label {
  top: 18px;
  transform: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 8px;
  transform: none;
  font-size: 0.75rem;
  color: var(--sage);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 24px;
}

.form-group select {
  appearance: none;
  padding-top: 22px;
  cursor: pointer;
}

.form-group .select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--charcoal-light);
}

.form-error {
  font-size: 0.8rem;
  color: #c44;
  margin-top: 4px;
  display: none;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #c44;
}

.form-group.error .form-error {
  display: block;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(139, 158, 139, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

/* Contact info sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(139, 158, 139, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage);
}

.contact-info-item h4 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.contact-info-item p {
  font-size: 0.95rem;
}

.contact-info-item a {
  color: var(--sage);
}

.contact-info-item a:hover {
  color: var(--sage-dark);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  background: var(--off-white);
  border: 1px solid var(--border);
  position: relative;
}

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

.hours-table {
  width: 100%;
}

.hours-table tr {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-weight: 500;
}

.hours-table td:last-child {
  color: var(--charcoal-light);
}

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.6);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-column h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Reveal variants */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Hero word-by-word stagger */
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordReveal 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero parallax */
.hero-content {
  will-change: transform;
}

/* Section header gold accent line */
.section-header h2 {
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.reveal.visible .section-header h2::after,
.section-header.reveal.visible h2::after {
  width: 60px;
}

/* Service card image zoom on hover */
.service-card-img {
  overflow: hidden;
}
.service-card-img img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

/* Stat item scale pulse on count */
.stat-item.counted h3 {
  animation: statPulse 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes statPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Value card hover lift */
.value-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

/* --- Misc --- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
}

/* Page transition */
.page-transition {
  animation: fadeInPage 0.5s ease-out;
}

@keyframes fadeInPage {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ========================================================
   MOBILE OVERHAUL — Stunning, conversion-focused
   ======================================================== */
@media (max-width: 768px) {

  /* --- HERO: Cinematic full-screen presence --- */
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 110px 20px 50px;
    background: linear-gradient(170deg,
      rgba(139, 158, 139, 0.06) 0%,
      var(--cream) 40%,
      rgba(232, 196, 196, 0.08) 70%,
      var(--white) 100%
    );
  }
  .hero h1 {
    font-size: clamp(2.8rem, 10vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 18px;
  }
  .hero p {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 36px;
    color: var(--charcoal-light);
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-badge {
    font-size: 0.7rem;
    padding: 8px 18px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(197, 165, 114, 0.25);
    box-shadow: 0 2px 16px rgba(197, 165, 114, 0.1);
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    gap: 16px;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
  }
  .hero-buttons .btn--primary {
    box-shadow: 0 6px 28px rgba(139, 158, 139, 0.35),
                0 2px 8px rgba(139, 158, 139, 0.15);
  }
  .hero-buttons .btn--outline {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  /* --- SECTIONS: Spacious, editorial --- */
  .section {
    padding: 72px 0;
  }
  .container {
    padding: 0 24px;
  }
  .section-header {
    margin-bottom: 44px;
  }
  .section-header h2 {
    font-size: clamp(2rem, 7vw, 2.6rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    padding-bottom: 4px;
  }
  .section-header p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 28px;
  }

  /* --- STATS: Premium glass cards --- */
  .stats-bar {
    gap: 16px;
    padding: 44px 0;
  }
  .stat-item {
    padding: 24px 12px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius);
    border: 1px solid rgba(197, 165, 114, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  }
  .stat-item h3 {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
  }
  .stat-item p {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }

  /* --- SERVICE CARDS: Magazine-style --- */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-card {
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(197, 165, 114, 0.1);
    overflow: hidden;
  }
  .service-card-img {
    height: 220px;
  }
  .service-card-body {
    padding: 24px 24px 28px;
  }
  .service-card-body h3 {
    font-size: 1.25rem;
  }
  .service-card-body p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  /* --- SERVICE QUICK-NAV: Scrollable pill bar --- */
  .service-quick-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 0 20px;
    margin-bottom: 8px;
  }
  .service-quick-nav::-webkit-scrollbar {
    display: none;
  }
  .service-quick-nav a {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--sage);
    background: var(--white);
    border: 1px solid rgba(139, 158, 139, 0.2);
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
  }
  .service-quick-nav a:active {
    background: var(--sage);
    color: var(--white);
    border-color: var(--sage);
  }

  /* --- TESTIMONIALS: Luxury swipeable --- */
  .testimonials-scroll {
    padding: 16px 24px 32px;
    gap: 16px;
  }
  .testimonial-card {
    min-width: 300px;
    max-width: 330px;
    padding: 30px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(197, 165, 114, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  }
  .testimonial-card blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* --- RESULTS SHOWCASE: Stacked editorial --- */
  .results-showcase {
    gap: 48px;
  }
  .result-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .result-feature--reverse {
    direction: ltr;
  }
  .result-feature__image {
    border-radius: 20px;
  }
  .result-feature__image img {
    height: 380px;
  }
  .result-feature__badge {
    bottom: 16px;
    left: 16px;
    padding: 12px 16px;
    border-radius: 14px;
  }
  .result-feature__badge-number {
    font-size: 1.3rem;
  }
  .result-feature__quote {
    font-size: 1.15rem;
    padding-left: 20px;
    border-left-width: 2px;
  }
  .result-feature__stats {
    padding-top: 20px;
  }
  .result-feature__stat-value {
    font-size: 1.3rem;
  }

  /* --- CTA: Full-bleed dramatic --- */
  .cta-section {
    padding: 72px 24px;
    border-radius: 0;
  }
  .cta-section h2 {
    font-size: clamp(2rem, 7vw, 2.6rem);
    line-height: 1.12;
    margin-bottom: 14px;
  }
  .cta-section p {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }
  .cta-section .btn {
    width: 100%;
    max-width: 300px;
    padding: 18px 32px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
  }
  .cta-section .btn--cta-primary {
    box-shadow: 0 6px 28px rgba(197, 165, 114, 0.25);
  }

  /* --- VALUES / PROCESS: Clean stack --- */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .value-card {
    padding: 28px 18px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(197, 165, 114, 0.1);
  }
  .value-icon {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
    margin-bottom: 14px;
  }
  .value-card h4 {
    font-size: 1.05rem;
  }
  .value-card p {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  /* --- TEAM: 2-col grid --- */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .team-card-img {
    aspect-ratio: 3/4;
    border-radius: 16px;
    margin-bottom: 14px;
  }
  .team-card h3 {
    font-size: 1.1rem;
  }

  /* --- CONTACT: Clean form --- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form {
    padding: 24px 20px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(197, 165, 114, 0.1);
  }

  /* --- FOOTER: Elegant compact --- */
  .footer {
    padding: 64px 0 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  /* --- WAVE DIVIDERS: Shorter on mobile --- */
  .wave-divider svg {
    height: 40px;
  }

  /* --- NAV: Clean --- */
  .header .container {
    padding: 0 20px;
  }

  /* --- ABOUT PAGE --- */
  .about-hero-cinematic {
    min-height: 70vh;
  }
  .about-hero-content {
    padding: 130px 20px 60px;
  }
  .about-hero-content h1 {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
  }
  .about-editorial {
    gap: 32px;
  }
  .about-editorial-img--main {
    aspect-ratio: 16/10;
    border-radius: 20px;
  }
  .about-editorial-img--accent {
    aspect-ratio: 16/10;
    border-radius: 16px;
  }
  .about-stats-grid {
    gap: 24px;
  }

  /* --- SERVICES PAGE --- */
  .services-hero {
    padding: 140px 0 60px;
  }
  .services-hero h1 {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
  }
  .service-detail-card {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .service-detail-img {
    height: 220px;
  }
  .service-category {
    margin-bottom: 48px;
  }

  /* --- CONTACT PAGE --- */
  .contact-hero {
    padding: 140px 0 60px;
  }
  .contact-hero h1 {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(2.4rem, 9.5vw, 3rem);
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .result-feature__image img {
    height: 320px;
  }
  .result-feature__quote {
    font-size: 1.05rem;
  }
  .result-feature__badge {
    padding: 10px 14px;
  }
  .result-feature__badge-number {
    font-size: 1.2rem;
  }
  .result-feature__stat-value {
    font-size: 1.15rem;
  }
}



/* --- Form Error States --- */
.form-field.error input,
.form-field.error select,
.form-field.error textarea {
    border-color: #c53030;
    box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.1);
}

.form-error-msg {
    color: #c53030;
    font-size: 0.8rem;
    margin-top: 4px;
}

/* --- Accessibility Focus Styles --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 3px;
}

/* ========================================================
   PREMIUM LUXURY ENHANCEMENTS
   ======================================================== */


/* Service card premium glow */
.service-card {
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.4s ease;
  box-shadow: 0 8px 40px rgba(139, 158, 139, 0.15);
  pointer-events: none;
}
.service-card:hover::after {
  opacity: 1;
}

/* Stats animated number styling */
.stat-item h3 {
  transition: color 0.3s ease;
}
.stat-item {
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--sage-light);
  border-radius: 2px;
  transition: width 0.6s ease;
}
.stat-item.counted::after {
  width: 30px;
}

/* Testimonial card hover lift */
.testimonial-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

/* Testimonial dots indicator */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px 0 0;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.testimonial-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--sage);
}

/* Result feature hover */
.result-feature {
  transition: transform 0.4s ease;
}
.result-feature__image {
  transition: box-shadow 0.6s ease;
}
.result-feature:hover .result-feature__image {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

/* Value card number styling */
.value-icon {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--sage);
  background: linear-gradient(135deg, rgba(139, 158, 139, 0.08), rgba(232, 196, 196, 0.08));
}

/* CTA section animated gradient */
.section--sage {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 50%, var(--sage-light) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Footer social hover glow */
.footer-social a:hover {
  box-shadow: 0 0 20px rgba(197, 165, 114, 0.3);
}

/* Hero badge shimmer */
.hero-badge {
  position: relative;
  overflow: hidden;
}
.hero-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: badgeShimmer 4s ease-in-out infinite;
}
@keyframes badgeShimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

/* Mobile-specific premium enhancements */
@media (max-width: 768px) {
  /* Glassmorphism header on scroll */
  .header.scrolled {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    box-shadow: 0 1px 0 rgba(197, 165, 114, 0.1),
                0 4px 20px rgba(0, 0, 0, 0.03);
  }

  /* Service card entrance stagger */
  .service-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
  }
  .service-card.visible,
  .service-card.reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Testimonial snap feel */
  .testimonials-scroll {
    scroll-snap-type: x proximity;
    scroll-padding-left: 20px;
  }
  .testimonial-card {
    scroll-snap-align: center;
  }

  /* Result feature entrance */
  .result-feature {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .result-feature.visible,
  .result-feature.reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }


  /* Value card subtle interaction */
  .value-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .value-card:active {
    transform: scale(0.98);
  }

  /* Testimonial dots on mobile */
  .testimonial-dots {
    padding: 16px 0 0;
  }

  /* Mobile nav — override inner padding for small screens */
  .nav-mobile-inner {
    padding: 90px 32px 32px 40px;
  }
  .nav-mobile-link-text {
    font-size: clamp(1.8rem, 7.5vw, 2.6rem);
  }

  /* Footer centered on mobile */
  .footer {
    background: var(--charcoal);
  }
  .footer-brand {
    text-align: center;
  }
  .footer-brand p {
    max-width: 100%;
    margin: 0 auto 20px;
  }
  .footer-social {
    justify-content: center;
  }

  /* Mobile gold accents on section labels */
  .label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }

}

/* --- Global Luxury Touches --- */
::selection {
  background: rgba(197, 165, 114, 0.25);
  color: var(--charcoal);
}

a {
  cursor: pointer;
}

@media (max-width: 375px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
