/* ============================================================
   VIPASSANA — Premium Design System
   ============================================================ */

/* --- Google Fonts import (inline fallback if offline) --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --ivory:        #F7F5F2;
  --ivory-2:      #F0EDE8;
  --ivory-3:      #EAE5DC;
  --gold:         #C6A55C;
  --gold-dim:     #A8893D;
  --gold-light:   rgba(198, 165, 92, 0.15);
  --gold-glow:    rgba(198, 165, 92, 0.35);
  --charcoal:     #1C1C1C;
  --charcoal-2:   #2A2A2A;
  --charcoal-3:   #3A3A3A;
  --sage:         #7A8F7C;
  --sage-light:   #D4DDD4;
  --text-primary: #2A2420;
  --text-muted:   #6B6560;
  --text-light:   rgba(247, 245, 242, 0.75);

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-pill:  9999px;

  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 24px 64px rgba(0,0,0,0.14);
  --shadow-gold:  0 0 24px rgba(198,165,92,0.3);

  --nav-h:        72px;
  --section-pad:  120px;
  --section-pad-sm: 72px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Base --- */
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-primary);
  background: var(--ivory);
  overflow-x: hidden;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.font-serif { font-family: 'Playfair Display', Georgia, serif; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(42px, 6vw, 88px); }
h2 { font-size: clamp(32px, 4vw, 56px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 24px); }

.display { font-size: clamp(52px, 8vw, 110px); font-weight: 400; line-height: 1.05; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.italic { font-style: italic; }
p { max-width: 65ch; }
.prose { font-size: 18px; line-height: 1.85; color: var(--text-muted); }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(247, 245, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

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

.nav-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(198,165,92,0.4));
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  transition: color 0.4s;
}

.nav.scrolled .nav-logo-text { color: var(--charcoal); }

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

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(247,245,242,0.85);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; 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 { width: 100%; }

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

/* Active nav link */
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ivory);
  transition: all 0.3s;
}
.nav.scrolled .nav-hamburger span { background: var(--charcoal); }

/* Mobile overlay menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay a {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--ivory);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-overlay a:hover { color: var(--gold); }
.nav-overlay-close {
  position: absolute;
  top: 24px; right: 32px;
  color: var(--ivory);
  font-size: 28px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.nav-overlay-close:hover { opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  animation: heroZoom 22s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,6,0.55) 0%,
    rgba(10,8,6,0.45) 50%,
    rgba(10,8,6,0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-content .eyebrow { color: var(--gold); margin-bottom: 24px; display: block; }

.hero-content h1 {
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: 28px;
}

.hero-content .subtext {
  font-size: 18px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 48px;
  font-family: 'Playfair Display', serif;
}

/* Hero vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Page hero (smaller, used on inner pages) */
.page-hero {
  position: relative;
  padding: 180px 48px 100px;
  background: var(--charcoal);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

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

.page-hero-content .eyebrow { margin-bottom: 16px; display: block; }
.page-hero-content h1 { color: var(--ivory); }
.page-hero-content .subtext {
  margin-top: 20px;
  color: var(--text-light);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
}

/* Particle canvas */
#particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn:hover::before { transform: translateX(100%); }

.btn-gold {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-gold-solid {
  background: var(--gold);
  border: 1.5px solid var(--gold);
  color: var(--charcoal);
}
.btn-gold-solid:hover {
  background: var(--gold-dim);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-ivory {
  background: transparent;
  border: 1.5px solid rgba(247,245,242,0.5);
  color: var(--ivory);
}
.btn-ivory:hover {
  background: rgba(247,245,242,0.1);
  border-color: var(--ivory);
  box-shadow: 0 0 20px rgba(247,245,242,0.15);
}

/* ============================================================
   GOLD DIVIDER
   ============================================================ */

.gold-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.5;
  margin: 0 auto;
  max-width: 240px;
}

.gold-divider-full {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: 0.25;
  width: 100%;
}

/* ============================================================
   SECTION WRAPPERS
   ============================================================ */

.section {
  padding: var(--section-pad) 48px;
}

.section-narrow {
  padding: var(--section-pad) 48px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-dark {
  background: var(--charcoal);
  color: var(--ivory);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--ivory); }
.section-dark .prose { color: rgba(247,245,242,0.65); }
.section-dark p { color: rgba(247,245,242,0.65); }

.section-ivory-2 { background: var(--ivory-2); }
.section-ivory-3 { background: var(--ivory-3); }
.section-sage { background: #DDE5DA; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Section header */
.section-header {
  margin-bottom: 72px;
}
.section-header .eyebrow { display: block; margin-bottom: 16px; }
.section-header h2 { max-width: 600px; }
.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-header.centered h2 { max-width: 540px; }

/* ============================================================
   CARDS
   ============================================================ */

.card {
  border-radius: var(--radius-lg);
  padding: 40px;
  background: var(--ivory);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-matte {
  border-radius: var(--radius-lg);
  padding: 40px;
  background: var(--ivory-2);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.card-matte:hover {
  transform: translateY(-4px);
  border-color: rgba(198,165,92,0.4);
  box-shadow: 0 8px 32px rgba(198,165,92,0.12);
}

.card-dark {
  border-radius: var(--radius-lg);
  padding: 40px;
  background: var(--charcoal-2);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.card-dark:hover {
  transform: translateY(-4px);
  border-color: rgba(198,165,92,0.3);
}
.card-dark h3, .card-dark h4 { color: var(--ivory); }
.card-dark p { color: rgba(247,245,242,0.6); }

.card-glass {
  border-radius: var(--radius-lg);
  padding: 40px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.10);
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.card-glass:hover {
  transform: translateY(-4px);
  border-color: rgba(198,165,92,0.25);
}
.card-glass h3, .card-glass h4 { color: var(--ivory); }
.card-glass p { color: rgba(247,245,242,0.6); }

/* Card icon */
.card-icon {
  width: 48px; height: 48px;
  margin-bottom: 24px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon svg { width: 100%; height: 100%; }

/* ============================================================
   GRID LAYOUTS
   ============================================================ */

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: center; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: center; }
.grid-asym { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.grid-asym-r { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }

/* ============================================================
   IMAGE BLOCKS
   ============================================================ */

.img-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.img-block img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.img-block:hover img { transform: scale(1.03); }

.img-tall { aspect-ratio: 3/4; }
.img-wide { aspect-ratio: 16/9; }
.img-square { aspect-ratio: 1; }

/* Image float decoration */
.img-block-float {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.img-block-float::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(198,165,92,0.3), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   BLOCKQUOTE
   ============================================================ */

.blockquote {
  position: relative;
  padding: 48px 64px;
  text-align: center;
}
.blockquote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -20px; left: 20px;
  line-height: 1;
}
.blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-style: italic;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto 24px;
}
.blockquote cite {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.blockquote-dark .blockquote::before { color: var(--gold); opacity: 0.4; }
.blockquote-dark .blockquote p { color: var(--ivory); }

/* ============================================================
   TIMELINE
   ============================================================ */

.timeline {
  position: relative;
  padding-left: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 32px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -4px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(198,165,92,0.15);
}
.timeline-time {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-item h4 { margin-bottom: 6px; font-size: 17px; }
.timeline-item p { font-size: 15px; color: var(--text-muted); max-width: 50ch; }

/* ============================================================
   STEPPER
   ============================================================ */

.stepper {
  display: flex;
  gap: 0;
  align-items: flex-start;
  position: relative;
}
.stepper-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 24px;
}
.stepper-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -1px;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0.3;
}
.stepper-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--gold);
}
.stepper-item h4 { margin-bottom: 10px; }
.stepper-item p { font-size: 15px; color: var(--text-muted); }

/* ============================================================
   PRECEPT CARD (Discipline)
   ============================================================ */

.precept {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.precept:first-child { border-top: 1px solid rgba(0,0,0,0.07); }
.precept-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  min-width: 52px;
}
.precept h4 { margin-bottom: 8px; }
.precept p { font-size: 15px; color: var(--text-muted); max-width: 55ch; }

/* ============================================================
   STATS ROW
   ============================================================ */

.stats-row {
  display: flex;
  gap: 48px;
  align-items: center;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* ============================================================
   PHONE MOCKUP (Ask Dhamma)
   ============================================================ */

.phone-mockup {
  width: 280px;
  margin: 0 auto;
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.1);
  background: var(--charcoal-2);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding: 16px;
  position: relative;
}
.phone-notch {
  width: 80px; height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin: 0 auto 16px;
}
.chat-bubble {
  border-radius: 16px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
  max-width: 85%;
}
.chat-bubble.them {
  background: rgba(255,255,255,0.08);
  color: rgba(247,245,242,0.85);
  border-bottom-left-radius: 4px;
}
.chat-bubble.me {
  background: rgba(198,165,92,0.25);
  color: var(--gold);
  border-bottom-right-radius: 4px;
  margin-left: auto;
}
.chat-time {
  font-size: 11px;
  color: rgba(247,245,242,0.3);
  text-align: right;
  margin-bottom: 12px;
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */

.form-group {
  margin-bottom: 32px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding: 10px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.form-group select { cursor: pointer; }

/* ============================================================
   FOUNDATION CARDS (Sila/Samadhi/Panna)
   ============================================================ */

.foundation-card {
  text-align: center;
  padding: 48px 32px;
}
.foundation-pali {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 12px;
  font-style: italic;
}
.foundation-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ============================================================
   PARALLAX STRIP
   ============================================================ */

.parallax-strip {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-strip-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.4);
}
.parallax-strip-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  color: var(--ivory);
}
.parallax-strip-content h2 { margin-bottom: 24px; }

/* ============================================================
   AMBIENT GLOW ORBS
   ============================================================ */

.glow-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,165,92,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================================
   NOISE TEXTURE OVERLAY
   ============================================================ */

.noise-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   MANDALA BACKGROUND
   ============================================================ */

.mandala-bg {
  position: relative;
}
.mandala-bg::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='95' fill='none' stroke='%23C6A55C' stroke-width='0.5' stroke-dasharray='4 8'/%3E%3Ccircle cx='100' cy='100' r='75' fill='none' stroke='%23C6A55C' stroke-width='0.5' stroke-dasharray='3 6'/%3E%3Ccircle cx='100' cy='100' r='55' fill='none' stroke='%23C6A55C' stroke-width='0.5' stroke-dasharray='2 4'/%3E%3Ccircle cx='100' cy='100' r='35' fill='none' stroke='%23C6A55C' stroke-width='0.5'/%3E%3Cline x1='100' y1='5' x2='100' y2='195' stroke='%23C6A55C' stroke-width='0.3' opacity='0.5'/%3E%3Cline x1='5' y1='100' x2='195' y2='100' stroke='%23C6A55C' stroke-width='0.3' opacity='0.5'/%3E%3Cline x1='32' y1='32' x2='168' y2='168' stroke='%23C6A55C' stroke-width='0.3' opacity='0.5'/%3E%3Cline x1='168' y1='32' x2='32' y2='168' stroke='%23C6A55C' stroke-width='0.3' opacity='0.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 60px 48px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img { width: 28px; opacity: 0.8; }
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.7);
}

.footer-nav {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-nav a {
  font-size: 13px;
  color: rgba(247,245,242,0.45);
  letter-spacing: 0.04em;
  transition: color 0.25s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(247,245,242,0.3);
  letter-spacing: 0.04em;
}
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(247,245,242,0.25);
}

/* ============================================================
   UTILITY
   ============================================================ */

.text-gold { color: var(--gold); }
.text-ivory { color: var(--ivory); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-right { text-align: right; }

.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mb-80 { margin-bottom: 80px; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

.pt-nav { padding-top: var(--nav-h); }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .section { padding: var(--section-pad) 36px; }
  .page-hero { padding: 140px 36px 80px; }
  .nav { padding: 0 36px; }
  .grid-asym,
  .grid-asym-r,
  .grid-2-1,
  .grid-1-2 {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .grid-asym-r .img-block { order: -1; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; --nav-h: 60px; }
  .nav { padding: 0 24px; }
  .section { padding: var(--section-pad) 24px; }
  .page-hero { padding: 110px 24px 60px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stepper { flex-direction: column; gap: 32px; }
  .stepper-item:not(:last-child)::after { display: none; }
  .stats-row { flex-wrap: wrap; justify-content: center; gap: 32px; }
  .stat-divider { display: none; }
  .footer-top { flex-direction: column; gap: 32px; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .blockquote { padding: 32px 24px; }
  .blockquote::before { font-size: 80px; left: 8px; top: -10px; }
  .grid-2-1 .img-block { order: -1; }

  footer { padding: 48px 24px 32px; }
  .phone-mockup { width: 240px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 36px; }
  .section-narrow { padding: var(--section-pad) 20px; }
}
