/* ============================================================
   MISTRESS TANTRA SPLASH — Custom Stylesheet
   Aman-Vibe Aesthetic · Earthy · Sensual · Holistic
   Optimized for Google PageSpeed 90+ & Mobile SEO
   ============================================================ */

/* --- CSS CUSTOM PROPERTIES --- */
:root {
  --deep-forest: #0f1f0f;
  --warm-earth: #3d3428;
  --linen: #ede8df;
  --ivory-mist: #faf7f2;
  --aman-gold: #c9a96e;
  --aman-gold-light: #d4b87e;
  --font-display: 'Allonges', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* --- ALLONGES FONT (self-hosted, hero title only) --- */
@font-face {
  font-family: 'Allonges';
  src: url('../fonts/Allonges.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  color: #000;
  background-color: var(--linen);
  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; }

/* --- TYPOGRAPHY --- */
h1 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
}

h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  font-size: clamp(2rem, 6vw, 4rem);
}

h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

.section-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--aman-gold);
  margin-bottom: 0.5rem;
}

/* --- DIVIDER --- */
.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem auto;
  width: 100%;
  max-width: 280px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--aman-gold) 100%);
}
.divider::after {
  background: linear-gradient(to left, transparent 0%, var(--aman-gold) 100%);
}

.divider-ornament {
  color: var(--aman-gold);
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.85;
  flex-shrink: 0;
}

.divider-light::before,
.divider-light::after {
  background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.5) 100%);
}
.divider-light::after {
  background: linear-gradient(to left, transparent 0%, rgba(255,255,255,0.5) 100%);
}
.divider-light .divider-ornament { color: rgba(255,255,255,0.7); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, #b8954f 0%, #c9a96e 30%, #d4b87e 50%, #c9a96e 70%, #b8954f 100%);
  color: var(--deep-forest);
  background-size: 200% 200%;
  transition: background-position 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-gold:hover {
  background-position: 100% 100%;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.35);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  border-color: var(--aman-gold);
  color: var(--aman-gold);
  background: rgba(201, 169, 110, 0.08);
}

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  position: relative;
  overflow: hidden;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(160, 120, 40, 0.12);
  border-bottom: none;
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  transition: background 0.5s ease, padding 0.4s ease, backdrop-filter 0.5s ease;
}

.nav.scrolled {
  background: linear-gradient(135deg, #0d0a04 0%, #3a2c10 25%, #6b5530 50%, #3a2c10 75%, #0d0a04 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(201, 169, 110, 0.25), 0 4px 24px rgba(0, 0, 0, 0.18);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.5rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

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

.nav-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 3px;
  background: transparent;
  color: #fff;
  font-size: 0.75rem;
  transition: var(--transition-smooth);
}

.nav-social a:hover {
  color: var(--aman-gold);
  border-color: var(--aman-gold);
}

.nav-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-logo-img {
  height: 110px;
  width: auto;
  filter: drop-shadow(0 1px 12px rgba(0,0,0,0.45));
  transition: transform 0.4s ease, height 0.4s ease, opacity 0.4s ease;
}

.nav.scrolled .nav-logo-img { height: 80px; opacity: 0.85; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: flex-end;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 10px;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--aman-gold);
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links a::after {
  content: '✦';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  font-size: 0.55rem;
  color: var(--aman-gold);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
  text-shadow: 0 0 8px rgba(201,169,110,0.4);
  line-height: 1;
}

.nav-links a:hover { color: var(--aman-gold); }
.nav-links a:hover::before {
  transform: scaleX(1);
}
.nav-links a:hover::after {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

/* Mobile menu button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle:hover .hamburger span { background: var(--aman-gold); }

.nav-toggle.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active .hamburger span:nth-child(2) { opacity: 0; }
.nav-toggle.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #1a1408 0%, #2a1f0e 25%, #3d2e14 50%, #2a1f0e 75%, #1a1408 100%);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: rgba(255,255,255,0.72);
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.mobile-menu a::after {
  content: '✦';
  display: block;
  text-align: center;
  font-size: 0.7rem;
  color: var(--aman-gold);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 0.15rem;
  text-shadow: 0 0 8px rgba(201,169,110,0.4);
}

.mobile-menu a:hover {
  color: var(--aman-gold);
  transform: translateX(8px);
}

.mobile-menu a:hover::after {
  opacity: 1;
  transform: scale(1);
}

.mobile-menu .mobile-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--aman-gold), transparent);
}

.mobile-menu .mobile-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.mobile-menu .mobile-social a {
  font-size: 1rem;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.mobile-menu .mobile-social a:hover {
  color: var(--aman-gold);
  border-color: var(--aman-gold);
  transform: none;
}

/* ============================================================
   SECTION 1: HOME / HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  color: #fff;
  background: #1a1208;
  background-image: linear-gradient(135deg, #1a1208 0%, #2a1f0e 40%, #1a1208 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #1a1208 url('../images/hero-bg.webp') center 15% / cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.30) 0%,
      rgba(0,0,0,0.05) 35%,
      rgba(0,0,0,0.05) 60%,
      rgba(0,0,0,0.50) 100%
    ),
    linear-gradient(to right,
      rgba(0,0,0,0.40) 0%,
      rgba(0,0,0,0.0) 55%
    );
  z-index: 1;
}

.hero-mandala {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero-mandala-lg {
  bottom: -10%;
  right: -8%;
  width: min(420px, 50vw);
  height: min(420px, 50vw);
  opacity: 0.6;
}

.hero-mandala-lg img {
  animation: mandalaSpin 95s linear infinite;
  will-change: transform;
}

.hero-mandala-sm {
  top: 8%;
  left: 3%;
  width: min(180px, 28vw);
  height: min(180px, 28vw);
  opacity: 0.4;
}

.hero-mandala-sm img {
  animation: mandalaSpin 120s linear infinite reverse;
  will-change: transform;
}

.hero-content {
  position: absolute;
  bottom: 16%;
  left: 5%;
  z-index: 3;
  color: #fff;
}

.hero-title {
  font-family: 'Allonges', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.15rem, 7.5vw, 7.5rem);
  font-weight: 400;
  font-style: normal;
  color: #fff;
  line-height: 1.0;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  margin: 0 0 0.15rem;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 2.2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.97);
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
  margin: 0 0 0.25rem;
  display: block;
}

.hero-locations {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.9rem, 1.6vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  margin: 0;
}

.hero-mandala-dot {
  color: var(--aman-gold);
  font-size: 0.75em;
  vertical-align: middle;
  text-shadow: 0 0 6px rgba(201,169,110,0.4);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.70);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.70);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes mandalaSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* GPU-accelerated animations */
.hero-mandala-lg img,
.hero-mandala-sm img,
.offerings-mandala-center img,
.connect-mandala img {
  will-change: transform;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-scroll { animation: none; }
}

/* ============================================================
   SECTION 2: ABOUT / WELCOME
   ============================================================ */
.about {
  background: linear-gradient(180deg, var(--ivory-mist) 0%, #e8dfd0 25%, #ddd2bf 50%, #d4c8b0 75%, #cbbfa5 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-label { margin-bottom: 0.3rem; }

.about-heading {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  margin-bottom: 0.5rem;
}

.about-heading em {
  color: var(--aman-gold);
  font-style: italic;
}

.about-text {
  color: var(--warm-earth);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.about-image {
  position: relative;
  border-radius: 4px;
  overflow: visible;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  outline: 2px solid var(--aman-gold);
  outline-offset: 6px;
  border: 3px solid var(--aman-gold);
}

.about-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 1px;
}

/* About mandala decorations — prominent & animated with real mandala graphic */
.about-mandala-wrap {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: brightness(0.7) contrast(1.5) saturate(1.3);
}

.about-mandala-sm {
  top: 2%;
  left: -5%;
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  opacity: 0;
  transition: opacity 2.5s ease;
}

.about-mandala-sm img {
  will-change: transform;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-mandala-lg {
  bottom: -5%;
  right: -5%;
  width: min(550px, 70vw);
  height: min(550px, 70vw);
  opacity: 0;
  transition: opacity 2.5s ease;
}

.about-mandala-lg img {
  will-change: transform;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-mandala-sm.visible {
  opacity: 0.95;
}
.about-mandala-sm.visible img {
  animation: mandalaSpin 90s linear infinite reverse;
}

.about-mandala-lg.visible {
  opacity: 0.95;
}
.about-mandala-lg.visible img {
  animation: mandalaSpin 70s linear infinite;
}

/* ============================================================
   SECTION 3: OFFERINGS
   ============================================================ */
.offerings {
  background: var(--deep-forest);
  color: #fff;
  padding: 6rem 0;
  position: relative;
}

.offerings-mandala-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(600px, 70vw);
  height: min(600px, 70vw);
  pointer-events: none;
  opacity: 0.25;
  z-index: 0;
}

.offerings-mandala-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: mandalaSpin 120s linear infinite;
  will-change: transform;
}

.offerings-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.offerings-heading {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}

.offerings-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.offering-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 4px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.offering-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--aman-gold);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.offering-card:hover::before { opacity: 1; }

.offering-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,169,110,0.35);
  transform: translateY(-4px);
}

.offering-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--aman-gold);
}

.offering-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--aman-gold);
  margin-bottom: 0.75rem;
}

.offering-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* Pillars subsection */
.pillars {
  background: var(--linen);
  padding: 5rem 0;
  position: relative;
}

.pillars::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/pillars-bg.webp') center center / cover no-repeat;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

.pillars-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.pillars-heading {
  color: #000;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 3rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.pillar-item {
  text-align: center;
  padding: 0 1rem;
}

.pillar-icon {
  font-size: 1.6rem;
  color: var(--aman-gold);
  margin-bottom: 1rem;
  display: block;
}

.pillar-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--aman-gold);
  margin-bottom: 0.6rem;
}

.pillar-desc {
  font-size: 0.88rem;
  color: var(--warm-earth);
  line-height: 1.6;
}

/* ============================================================
   SECTION 4: CONNECT
   ============================================================ */
.connect {
  background: linear-gradient(160deg, #1a1408 0%, #2a1f0e 25%, #3d2e14 50%, #2a1f0e 75%, #1a1408 100%);
  color: #fff;
  padding: 6rem 0;
  position: relative;
  text-align: center;
}

.connect::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/connect-bg.webp') center center / cover no-repeat;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.connect-mandala {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, 60vw);
  height: min(500px, 60vw);
  pointer-events: none;
  opacity: 0.22;
  z-index: 1;
}

.connect-mandala img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: mandalaSpin 120s linear infinite;
  will-change: transform;
}

.connect-inner {
  position: relative;
  z-index: 2;
}

.connect-heading {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}

.connect-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.connect-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.connect-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.connect-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.connect-social a:hover {
  color: var(--aman-gold);
  border-color: var(--aman-gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--deep-forest);
  color: rgba(255,255,255,0.6);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(201,169,110,0.1);
}

.footer p {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.footer a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.footer a:hover { color: var(--aman-gold); }

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .about-inner {
    gap: 2.5rem;
  }

  .offerings-grid {
    gap: 1.5rem;
  }

  .pillars-grid {
    gap: 1.5rem;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-social { display: none; }
  .nav-inner {
    padding: 0.5rem 1.2rem;
    grid-template-columns: auto 1fr;
  }
  .nav-logo { justify-content: flex-start; }
  .nav-logo-img { height: 95px; }

  .hero-content {
    bottom: 25%;
    left: 19px;
    right: 19px;
  }
  .hero-title { font-size: clamp(3.8rem, 15vw, 6.5rem); }
  .hero-subtitle { font-size: clamp(1.15rem, 4.5vw, 1.6rem); }
  .hero-locations { font-size: clamp(0.85rem, 3vw, 1.15rem); }
  .hero-mandala-dot { font-size: 0.6em; }

  .hero-mandala-lg {
    right: -12%;
    width: min(280px, 65vw);
    height: min(280px, 65vw);
  }

  .hero-mandala-sm {
    top: 12%;
    left: 2%;
    width: min(140px, 35vw);
    height: min(140px, 35vw);
  }

  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .about-text { margin: 0 auto 1.5rem; }

  .about-mandala-lg {
    right: -15%;
    width: min(300px, 60vw);
    height: min(300px, 60vw);
  }
  .about-mandala-sm {
    width: min(250px, 50vw);
    height: min(250px, 50vw);
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 3rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .connect-buttons {
    flex-direction: column;
    align-items: center;
  }

  h1 { font-size: clamp(2rem, 7vw, 3rem); }
  h2 { font-size: clamp(2rem, 8vw, 3rem); }
  .about-heading { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .pillars-heading { font-size: clamp(2rem, 7.5vw, 3rem); }
  .offerings-heading { font-size: clamp(2rem, 7.5vw, 3rem); }
  .connect-heading { font-size: clamp(2rem, 7vw, 3rem); }
}

@media (max-width: 480px) {
  .hero-mandala-sm { display: none; }
  .nav-logo-img { height: 80px; }
  .hero-title { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-subtitle { font-size: clamp(1.05rem, 5vw, 1.35rem); }
  .hero-locations { font-size: clamp(0.8rem, 3.2vw, 1rem); }

  .container { padding: 0 1rem; }

  .nav-inner { padding: 0.5rem 1rem; }

  .about, .offerings, .pillars, .connect {
    padding: 4rem 0;
  }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .nav, .hero-scroll, .hero-mandala, .about-mandala-wrap,
  .offerings-mandala-center, .connect-mandala, .mobile-menu { display: none; }
  body { color: #000; background: #fff; }
  .hero { min-height: auto; background: #f5f0e5; color: #000; }
  .offerings { background: #f5f0e5; color: #000; }
  .connect { background: #f5f0e5; color: #000; }
}
