/* =====================================================
   AURA WELLNESS & AESTHETICS — Luxury Custom Design
   $10K-grade UI | Emerald + Gold | 2026
   ===================================================== */

:root {
  --emerald: #0A3D2E;
  --emerald-light: #1A5C4A;
  --emerald-dark: #06261C;
  --gold: #C9A227;
  --gold-bright: #D4AF37;
  --gold-soft: #E8D5A3;
  --black: #0D0D0D;
  --ivory: #F5F0E6;
  --cream: #E8E4D9;
  --white: #FFFFFF;
  --gray: #8A8A8A;
  --glass: rgba(10, 61, 46, 0.75);
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--black);
  color: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, .serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

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

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

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(6, 38, 28, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  padding: 0.85rem 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img, .logo svg {
  height: 48px;
  width: auto;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cream);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

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

.nav-cta {
  background: var(--gold);
  color: var(--emerald-dark) !important;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.nav-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 162, 39, 0.3);
}

.nav-cta::after { display: none !important; }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 11px; }
.menu-toggle span:nth-child(3) { top: 22px; }

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--emerald-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(26, 92, 74, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 40%),
    linear-gradient(160deg, #06261C 0%, #0A3D2E 40%, #051F17 100%);
}

.hero-malachite {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url('../images/branding-bg.jpg');
  background-size: cover;
  background-position: center;
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--cream);
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--emerald-dark);
}

.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(201, 162, 39, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid rgba(245, 240, 230, 0.35);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.stat {
  text-align: left;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--cream);
  opacity: 0.75;
  margin-top: 0.25rem;
  letter-spacing: 0.04em;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(10, 61, 46, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 24px;
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-logo-lg {
  width: 120px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.3));
}

.hero-card h3 {
  text-align: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.hero-card p {
  text-align: center;
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.hero-features {
  display: grid;
  gap: 0.75rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--ivory);
}

.hero-feature svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ========== SECTIONS ========== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-dark {
  background: var(--emerald-dark);
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--ivory);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--cream);
  opacity: 0.85;
  line-height: 1.7;
}

/* ========== SERVICES GRID ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: linear-gradient(165deg, rgba(26, 92, 74, 0.25) 0%, rgba(6, 38, 28, 0.6) 100%);
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.35rem;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.8;
  flex-grow: 1;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

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

.service-link:hover {
  gap: 0.7rem;
}

/* ========== WHY AURA ========== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
  color: var(--ivory);
}

.why-content p {
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.why-list {
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

.why-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-list .check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

.why-list strong {
  display: block;
  color: var(--ivory);
  margin-bottom: 0.2rem;
}

.why-list span {
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.8;
}

.why-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--emerald);
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.why-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(6, 38, 28, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 12px;
  padding: 1.25rem;
}

.why-badge h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.why-badge p {
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.85;
  margin: 0;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.06) 0%, transparent 50%);
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  font-size: 1.15rem;
  color: var(--cream);
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* ========== FOOTER ========== */
.footer {
  background: #051A13;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(201, 162, 39, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--cream);
  opacity: 0.75;
  font-size: 0.95rem;
  margin: 1.25rem 0 1.5rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}

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

.footer h4 {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 162, 39, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.65;
}

.footer-bottom a {
  color: var(--gold);
  opacity: 0.9;
}

/* SMS Disclosure */
.sms-disclosure {
  background: rgba(6, 38, 28, 0.5);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--cream);
  opacity: 0.85;
  line-height: 1.6;
}

.sms-disclosure strong {
  color: var(--gold);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 7rem;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--emerald-dark);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(201, 162, 39, 0.2);
  }
  .nav-links.open {
    right: 0;
  }
  .menu-toggle {
    display: block;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
}

/* Utility */
.text-gold { color: var(--gold); }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* Page specific */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(180deg, var(--emerald-dark) 0%, var(--black) 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--cream);
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* Membership cards */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.membership-card {
  background: linear-gradient(165deg, rgba(26, 92, 74, 0.3) 0%, rgba(6, 38, 28, 0.7) 100%);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
}

.membership-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(201, 162, 39, 0.15);
}

.membership-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  margin: 1rem 0;
}

.membership-card ul {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.membership-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
  font-size: 0.95rem;
  color: var(--cream);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.membership-card li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.2);
  height: 350px;
  background: var(--emerald);
}

/* Privacy */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.privacy-content h2 {
  color: var(--gold);
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

.privacy-content p, .privacy-content li {
  color: var(--cream);
  opacity: 0.9;
  margin-bottom: 1rem;
}

.privacy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
/* ========== FAQ ACCORDION ========== */
.faq-section {
  padding: 6rem 0;
  background: var(--black);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: linear-gradient(165deg, rgba(26, 92, 74, 0.2) 0%, rgba(6, 38, 28, 0.5) 100%);
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(201, 162, 39, 0.35);
}

.faq-item.active {
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gold);
}

.faq-item.active .faq-icon {
  background: var(--gold);
  color: var(--emerald-dark);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.6rem 1.5rem;
  color: var(--cream);
  opacity: 0.9;
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-answer-inner a {
  color: var(--gold);
  text-decoration: underline;
}

/* Suite photo enhancements */
.suite-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.hero-suite {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

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

/* ========== FAQ ACCORDION ========== */
.faq-section {
  padding: 5rem 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: linear-gradient(165deg, rgba(26, 92, 74, 0.2) 0%, rgba(6, 38, 28, 0.5) 100%);
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(201, 162, 39, 0.35);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--ivory);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  padding: 1.35rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.35s ease;
}

.faq-item.open .faq-question .icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--cream);
  opacity: 0.9;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ========== GOOGLE REVIEWS CAROUSEL ========== */
.reviews-section {
  padding: 5rem 0;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: linear-gradient(165deg, rgba(26, 92, 74, 0.25) 0%, rgba(6, 38, 28, 0.6) 100%);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 18px;
  padding: 1.75rem;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}

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

.review-text {
  font-size: 0.98rem;
  color: var(--cream);
  opacity: 0.92;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  min-height: 80px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid rgba(201, 162, 39, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
}

.review-name {
  font-weight: 500;
  color: var(--ivory);
  font-size: 0.95rem;
}

.review-source {
  font-size: 0.8rem;
  color: var(--cream);
  opacity: 0.7;
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.reviews-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.4);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.reviews-nav button:hover {
  background: var(--gold);
  color: var(--emerald-dark);
}

/* Suite photo */
.suite-photo {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: var(--shadow);
}

.suite-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Financing logos row */
.financing-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: rgba(26, 92, 74, 0.15);
  border-radius: 14px;
  border: 1px solid rgba(201, 162, 39, 0.15);
}

.financing-row span {
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.8;
}

.financing-row img {
  height: 32px;
  width: auto;
  opacity: 0.9;
  filter: brightness(1.1);
}

.why-visual.suite-photo {
  aspect-ratio: 4/5;
  min-height: 480px;
}

.why-visual.suite-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .why-visual.suite-photo {
    min-height: 360px;
    max-height: 450px;
  }
}

/* Suite Gallery */
.suite-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .suite-gallery, 
  .container > div[style*="grid-template-columns:1.2fr"] {
    grid-template-columns: 1fr 1fr !important;
  }
  .container > div[style*="grid-template-columns:1.2fr"] > div:first-child {
    grid-row: auto !important;
    min-height: 280px !important;
  }
  .container > div[style*="grid-template-columns:1.2fr"] > div:last-child {
    grid-column: span 2 !important;
  }
}

@media (max-width: 600px) {
  .container > div[style*="grid-template-columns:1.2fr"] {
    grid-template-columns: 1fr !important;
  }
  .container > div[style*="grid-template-columns:1.2fr"] > div:last-child {
    grid-column: auto !important;
  }
}

/* =====================================================
   V2 ELEVATION LAYER — full-bleed hero, dropdown nav,
   pricing tables, articles, forms  (Cowork build 2026-07)
   ===================================================== */

/* Nav dropdown */
.nav-more { position: relative; }
.nav-more-btn {
  background: none; border: none; color: inherit; font: inherit;
  cursor: pointer; display: flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 0; opacity: 0.9;
}
.nav-dropdown {
  position: absolute; top: 100%; right: 0; min-width: 220px;
  background: rgba(6, 38, 28, 0.97); backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 162, 39, 0.2); border-radius: 12px;
  padding: 0.6rem 0; list-style: none; display: none; z-index: 1001;
  box-shadow: var(--shadow);
}
.nav-more:hover .nav-dropdown, .nav-more:focus-within .nav-dropdown { display: block; }
.nav-dropdown li a { display: block; padding: 0.55rem 1.25rem; font-size: 0.92rem; }
.nav-dropdown li a:hover { color: var(--gold); background: rgba(201, 162, 39, 0.08); }

/* Full-bleed photographic hero */
.hero-photo {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero-photo .hero-photo-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-photo .hero-photo-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.05); animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1.0); } }
.hero-photo .hero-photo-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,38,28,0.92) 0%, rgba(6,38,28,0.72) 42%, rgba(13,13,13,0.35) 100%);
}
.hero-photo .hero-content { position: relative; z-index: 1; }

/* Page hero (interior pages) */
.page-hero {
  position: relative; padding: 9.5rem 0 4.5rem; overflow: hidden;
  background: linear-gradient(165deg, var(--emerald-dark), var(--black) 85%);
}
.page-hero.has-photo { padding: 11rem 0 6rem; }
.page-hero .page-hero-bg { position: absolute; inset: 0; }
.page-hero .page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.page-hero .page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,38,28,0.55), rgba(13,13,13,0.92));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 0.75rem 0 1rem; }
.page-hero p.lead { max-width: 640px; opacity: 0.9; font-size: 1.1rem; line-height: 1.7; }

/* Pricing tables */
.price-category { margin-bottom: 3.5rem; }
.price-category > h3 {
  color: var(--gold); font-size: 1.6rem; margin-bottom: 1.5rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid rgba(201,162,39,0.25);
}
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.price-card {
  background: linear-gradient(165deg, rgba(26,92,74,0.22), rgba(6,38,28,0.5));
  border: 1px solid rgba(201,162,39,0.18); border-radius: var(--radius);
  padding: 1.75rem;
}
.price-card h4 { color: var(--gold-soft); font-size: 1.12rem; margin-bottom: 1rem; }
.price-card table { width: 100%; border-collapse: collapse; }
.price-card td { padding: 0.5rem 0; font-size: 0.95rem; vertical-align: top; border-bottom: 1px dashed rgba(232,228,217,0.12); }
.price-card tr:last-child td { border-bottom: none; }
.price-card td.amt { text-align: right; color: var(--gold-bright); white-space: nowrap; font-weight: 500; }
.price-card td small { display: block; opacity: 0.65; font-size: 0.82rem; }

/* Article / longform */
.article-body { max-width: 760px; margin: 0 auto; font-size: 1.06rem; line-height: 1.85; }
.article-body h2 { font-size: 1.75rem; color: var(--gold-soft); margin: 2.5rem 0 1rem; }
.article-body h3 { font-size: 1.3rem; color: var(--gold-soft); margin: 2rem 0 0.75rem; }
.article-body p { margin-bottom: 1.25rem; opacity: 0.94; }
.article-body ul, .article-body ol { margin: 0 0 1.25rem 1.5rem; opacity: 0.94; }
.article-body li { margin-bottom: 0.5rem; }
.article-body strong { color: var(--gold-soft); }
.article-body blockquote {
  border-left: 3px solid var(--gold); padding: 0.75rem 1.5rem; margin: 1.75rem 0;
  background: rgba(201,162,39,0.06); border-radius: 0 12px 12px 0; font-style: italic;
}
.article-meta { font-size: 0.88rem; opacity: 0.65; margin-bottom: 2rem; }
.article-cta {
  margin: 3rem 0 0; padding: 2rem; text-align: center; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(26,92,74,0.35), rgba(6,38,28,0.6));
  border: 1px solid rgba(201,162,39,0.25);
}

/* Learn index cards */
.learn-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.75rem; }
.learn-card {
  display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(165deg, rgba(26,92,74,0.2), rgba(6,38,28,0.55));
  border: 1px solid rgba(201,162,39,0.15); transition: var(--transition);
}
.learn-card:hover { transform: translateY(-6px); border-color: rgba(201,162,39,0.4); }
.learn-card .learn-card-body { padding: 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.learn-card h3 { font-size: 1.25rem; color: var(--gold-soft); }
.learn-card p { font-size: 0.93rem; opacity: 0.85; line-height: 1.65; flex: 1; }
.learn-card .tag { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

/* Forms (questionnaire) */
.aura-form { max-width: 720px; margin: 0 auto; }
.aura-form fieldset {
  border: 1px solid rgba(201,162,39,0.2); border-radius: var(--radius);
  padding: 1.75rem; margin-bottom: 1.75rem; background: rgba(10,61,46,0.18);
}
.aura-form legend { color: var(--gold); padding: 0 0.75rem; font-family: 'Playfair Display', serif; font-size: 1.15rem; }
.aura-form label { display: block; font-size: 0.92rem; margin: 1rem 0 0.35rem; }
.aura-form input[type=text], .aura-form input[type=email], .aura-form input[type=tel], .aura-form textarea {
  width: 100%; padding: 0.8rem 1rem; border-radius: 10px; font: inherit;
  background: rgba(13,13,13,0.5); border: 1px solid rgba(232,228,217,0.25); color: var(--ivory);
}
.aura-form input:focus, .aura-form textarea:focus { outline: none; border-color: var(--gold); }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 0.4rem 1rem; margin-top: 0.75rem; }
.checkbox-grid label, .aura-form .check-label {
  display: flex; align-items: center; gap: 0.6rem; margin: 0.25rem 0; font-size: 0.93rem; cursor: pointer;
}
.aura-form input[type=checkbox] { accent-color: var(--gold); width: 17px; height: 17px; }
.form-note { font-size: 0.82rem; opacity: 0.7; line-height: 1.6; margin-top: 0.75rem; }
.form-status { margin-top: 1rem; font-size: 0.95rem; display: none; }
.form-status.ok { display: block; color: #7ED9A7; }
.form-status.err { display: block; color: #E89A9A; }

/* FAQ category header */
.faq-cat { color: var(--gold); font-size: 1.45rem; margin: 3rem 0 1.25rem; }
.faq-list + .faq-cat { margin-top: 3.5rem; }

/* Hours / contact blocks */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.info-card {
  background: linear-gradient(165deg, rgba(26,92,74,0.22), rgba(6,38,28,0.5));
  border: 1px solid rgba(201,162,39,0.18); border-radius: var(--radius); padding: 1.75rem;
}
.info-card h4 { color: var(--gold); margin-bottom: 0.6rem; font-size: 1.05rem; }
.info-card a { color: var(--gold-soft); }
.info-card a:hover { color: var(--gold-bright); }

/* Map embed */
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(201,162,39,0.2); }
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; filter: grayscale(0.2); }

/* Medical disclaimer in footer */
.medical-disclaimer {
  text-align: center; font-size: 0.75rem; color: var(--cream); opacity: 0.5;
  margin: 2rem auto 0; max-width: 700px; line-height: 1.6;
}

/* Suite gallery grid */
.gallery-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 1.1rem; }
.gallery-grid .g-tall { grid-row: span 2; min-height: 440px; }
.gallery-grid .suite-photo { min-height: 210px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .g-tall { grid-row: auto; min-height: 260px; }
}

/* Ask page */
.ask-box {
  max-width: 640px; margin: 0 auto; text-align: center; padding: 3rem 2rem;
  background: linear-gradient(165deg, rgba(26,92,74,0.3), rgba(6,38,28,0.6));
  border: 1px solid rgba(201,162,39,0.3); border-radius: 20px;
}
.ask-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1.5rem; }
.ask-chips button {
  background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.35);
  color: var(--gold-soft); border-radius: 999px; padding: 0.5rem 1.1rem;
  font-size: 0.85rem; cursor: pointer; transition: var(--transition);
}
.ask-chips button:hover { background: rgba(201,162,39,0.25); }

/* Utility */
.center { text-align: center; }
.mt-3 { margin-top: 3rem; }
.max-720 { max-width: 720px; margin-left: auto; margin-right: auto; }

/* Nav drawer now engages at 1080px (9 top-level items) */
@media (max-width: 1080px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--emerald-dark);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.4rem;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(201, 162, 39, 0.2);
    overflow-y: auto;
    align-items: flex-start;
  }
  .nav-links.open { right: 0; }
  .menu-toggle { display: block; }
  /* dropdown renders inline inside the drawer */
  .nav-more-btn { display: none; }
  .nav-dropdown {
    display: block; position: static; background: none; border: none;
    box-shadow: none; padding: 0; min-width: 0;
  }
  .nav-dropdown li a { padding: 0.4rem 0; opacity: 0.85; }
}

/* =====================================================
   LIVING HERO — animated sun rays + gold motes
   ===================================================== */
.hero-rays { position: absolute; inset: 0; overflow: hidden; mix-blend-mode: screen; pointer-events: none; }
.hero-rays i {
  position: absolute; top: -30%; height: 160%; width: 18vw; min-width: 180px;
  background: linear-gradient(180deg, rgba(255,230,170,0.28), rgba(255,220,150,0.06) 60%, transparent);
  transform: rotate(24deg); filter: blur(18px);
  animation: rayDrift 14s ease-in-out infinite alternate;
}
.hero-rays i:nth-child(1) { left: 8%; animation-delay: 0s; }
.hero-rays i:nth-child(2) { left: 34%; width: 10vw; opacity: 0.75; animation-delay: -5s; animation-duration: 18s; }
.hero-rays i:nth-child(3) { left: 58%; width: 24vw; opacity: 0.5; animation-delay: -9s; animation-duration: 22s; }
@keyframes rayDrift {
  from { transform: rotate(22deg) translateX(-4vw); opacity: 0.55; }
  50%  { opacity: 0.95; }
  to   { transform: rotate(26deg) translateX(5vw); opacity: 0.65; }
}
.hero-motes { position: absolute; inset: 0; pointer-events: none; }
.hero-motes b {
  position: absolute; bottom: -3%; width: 7px; height: 7px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,225,150,0.95), rgba(255,215,120,0) 70%);
  animation: moteRise 16s linear infinite;
}
.hero-motes b:nth-child(1) { left: 12%; animation-delay: 0s; }
.hero-motes b:nth-child(2) { left: 28%; width: 5px; height: 5px; animation-delay: -4s; animation-duration: 20s; }
.hero-motes b:nth-child(3) { left: 46%; animation-delay: -9s; }
.hero-motes b:nth-child(4) { left: 63%; width: 9px; height: 9px; animation-delay: -13s; animation-duration: 24s; }
.hero-motes b:nth-child(5) { left: 78%; width: 4px; height: 4px; animation-delay: -6s; animation-duration: 18s; }
.hero-motes b:nth-child(6) { left: 90%; animation-delay: -15s; }
@keyframes moteRise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 0.9; }
  60%  { opacity: 0.55; }
  100% { transform: translateY(-92vh) translateX(3vw); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-rays i, .hero-motes b, .hero-photo .hero-photo-bg img { animation: none; }
}

/* =====================================================
   MOBILE HARDENING — hero-photo + stats + badge
   ===================================================== */
.hero-photo h1 { font-size: clamp(2.5rem, 5.5vw, 4.3rem); line-height: 1.12; color: var(--ivory); margin-bottom: 1.5rem; }
.hero-photo h1 em { font-style: italic; color: var(--gold); }
.hero-photo .hero-content { box-sizing: border-box; }
.hero-badge { max-width: 100%; flex-wrap: wrap; row-gap: 0.25rem; }
.hero-stats { flex-wrap: wrap; row-gap: 1.25rem; }
html, body { max-width: 100%; overflow-x: hidden; }

@media (max-width: 640px) {
  .hero-photo { min-height: 88vh; }
  .hero-photo .hero-content { padding: 7rem 1.25rem 3rem; }
  .hero-stats { gap: 1.5rem; }
  .page-hero h1 { font-size: 2.1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .g-tall { min-height: 300px; }
  .price-grid { grid-template-columns: 1fr; }
  .nav-container { padding: 0 1.25rem; }
}

/* =====================================================
   GLASSMORPHISM LAYER (Option 1 / dark theme only)
   Marble underlay + frosted floating cards
   ===================================================== */
body:not(.theme-light) {
  background:
    linear-gradient(rgba(13,13,13,0.30), rgba(13,13,13,0.30)),
    url('../images/aura-marble-sunbeam.webp') center / cover fixed no-repeat,
    var(--black);
}
/* let the marble show through the section bands */
body:not(.theme-light) .section-black { background: rgba(13, 13, 13, 0.78); }
body:not(.theme-light) .section-dark  { background: rgba(6, 38, 28, 0.72); }
body:not(.theme-light) .section-black,
body:not(.theme-light) .section-dark { backdrop-filter: blur(2px); }

/* frosted floating cards */
body:not(.theme-light) .service-card,
body:not(.theme-light) .price-card,
body:not(.theme-light) .info-card,
body:not(.theme-light) .learn-card,
body:not(.theme-light) .membership-card,
body:not(.theme-light) .review-card,
body:not(.theme-light) .faq-item,
body:not(.theme-light) .aura-form fieldset,
body:not(.theme-light) .ask-box,
body:not(.theme-light) .article-cta,
body:not(.theme-light) .hero-card,
body:not(.theme-light) .why-badge {
  background: linear-gradient(160deg, rgba(26, 92, 74, 0.30), rgba(10, 61, 46, 0.18) 55%, rgba(6, 38, 28, 0.30));
  border: 1px solid rgba(201, 162, 39, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 230, 0.08),
    inset 0 0 0 1px rgba(245, 240, 230, 0.02),
    0 24px 48px -20px rgba(0, 0, 0, 0.65);
}
@supports (backdrop-filter: blur(1px)) {
  body:not(.theme-light) .service-card,
  body:not(.theme-light) .price-card,
  body:not(.theme-light) .info-card,
  body:not(.theme-light) .learn-card,
  body:not(.theme-light) .membership-card,
  body:not(.theme-light) .review-card,
  body:not(.theme-light) .faq-item,
  body:not(.theme-light) .aura-form fieldset,
  body:not(.theme-light) .ask-box,
  body:not(.theme-light) .article-cta,
  body:not(.theme-light) .hero-card,
  body:not(.theme-light) .why-badge {
    backdrop-filter: blur(16px) saturate(1.25);
    -webkit-backdrop-filter: blur(16px) saturate(1.25);
  }
}
body:not(.theme-light) .service-card:hover,
body:not(.theme-light) .learn-card:hover,
body:not(.theme-light) .membership-card:hover {
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 230, 0.12),
    0 32px 60px -22px rgba(0, 0, 0, 0.75),
    0 0 40px -18px rgba(201, 162, 39, 0.35);
}
/* keep article long-form readable on a solid panel */
body:not(.theme-light) .article-body { position: relative; }
/* fixed-attachment perf fallback on touch devices */
@media (hover: none) and (pointer: coarse) {
  body:not(.theme-light) { background-attachment: scroll; }
}

/* Find Us photo layout — natural aspect ratios, no cropping */
.findus-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; align-items: start; }
.findus-photos .findus-wide { grid-column: 1 / -1; }
.findus-photos .suite-photo { min-height: 0; }
.findus-photos img { width: 100%; height: auto; object-fit: unset; display: block; }
@media (max-width: 640px) { .findus-photos { grid-template-columns: 1fr; } }
