:root {
  --espresso: #1a0f0a;
  --espresso-mid: #2d1f16;
  --gold: #d4a853;
  --gold-light: #e8c87a;
  --cream: #faf6f0;
  --cream-dark: #f0e8d8;
  --blush: #e8d5c4;
  --text-light: #f5ede3;
  --text-mid: #c4aa90;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--espresso);
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid rgba(212,168,83,0.15);
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex: 1;
}
.nav-cta {
  background: var(--gold);
  color: var(--espresso);
  padding: 0.55rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}
.nav-cta:hover {
  background: var(--gold-light);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 4rem 3rem 0;
  position: relative;
  overflow: hidden;
}
.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(212,168,83,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(212,168,83,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  flex: 1;
  position: relative;
}
.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 1.2rem;
}
.hero-social-proof {
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 1.75rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: 6px;
  background: rgba(212,168,83,0.06);
  display: inline-block;
  max-width: 480px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--espresso);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(212,168,83,0.3);
}
.hero-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212,168,83,0.4);
}
.hero-cta-note {
  font-size: 0.78rem;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}
.hero-prices {}
.hero-price-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: 8px;
  display: inline-flex;
}
.price-from { font-size: 0.75rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.1em; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.price-note { font-size: 0.8rem; color: var(--text-mid); }

.hero-right { display: flex; justify-content: center; }
.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 2rem; }

.braid-circle {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.braid-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(212,168,83,0.3);
}
.braid-ring-1 { width: 100%; height: 100%; animation: braidPulse 4s ease-in-out infinite; }
.braid-ring-2 { width: 75%; height: 75%; border-color: rgba(212,168,83,0.4); animation: braidPulse 4s ease-in-out infinite 0.5s; }
.braid-ring-3 { width: 50%; height: 50%; border-color: rgba(212,168,83,0.5); animation: braidPulse 4s ease-in-out infinite 1s; }
.braid-center {
  width: 110px;
  height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.braid-center-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--espresso);
}
@keyframes braidPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.04); opacity: 1; }
}

.hero-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 300px;
}
.hero-services-tag {
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: 20px;
  font-size: 0.72rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-bottom-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 3rem -3rem 0;
  background: rgba(212,168,83,0.07);
  border-top: 1px solid rgba(212,168,83,0.15);
  padding: 1.25rem 3rem;
}
.hero-stat { padding: 0 2.5rem; text-align: center; }
.hero-stat:first-child { padding-left: 0; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.stat-label { display: block; font-size: 0.72rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.15rem; }
.hero-divider { width: 1px; height: 40px; background: rgba(212,168,83,0.2); flex-shrink: 0; }

/* ── SECTION SHARED ── */
.section-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 3rem;
}

/* ── SERVICES ── */
.services { padding: 6rem 3rem; background: var(--espresso-mid); }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.service-card {
  padding: 2rem;
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: 12px;
  background: rgba(26,15,10,0.4);
  transition: border-color 0.2s;
}
.service-card:hover { border-color: rgba(212,168,83,0.5); }
.service-card-featured {
  border-color: rgba(212,168,83,0.4);
  background: rgba(212,168,83,0.05);
}
.service-icon { margin-bottom: 1.25rem; }
.service-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--cream); margin-bottom: 0.6rem; }
.service-desc { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1rem; }
.service-price { font-size: 0.8rem; color: var(--gold); font-weight: 600; letter-spacing: 0.05em; }

.services-travel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 8px;
  background: rgba(212,168,83,0.05);
}
.travel-icon { flex-shrink: 0; }
.travel-text { font-size: 0.875rem; color: var(--text-mid); }
.travel-text strong { color: var(--cream); }

/* ── PHILOSOPHY ── */
.philosophy { padding: 6rem 3rem; background: var(--espresso); }
.philosophy-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.philosophy-body { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
.philosophy-pillars { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 2rem; }
.pillar { display: flex; gap: 1.5rem; }
.pillar-num { font-family: 'Playfair Display', serif; font-size: 0.75rem; color: var(--gold); font-weight: 700; flex-shrink: 0; padding-top: 0.1rem; }
.pillar-title { font-size: 0.95rem; font-weight: 600; color: var(--cream); margin-bottom: 0.3rem; }
.pillar-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }

.philosophy-quote {
  padding: 2.5rem;
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: 12px;
  background: rgba(212,168,83,0.05);
  margin-bottom: 2rem;
}
.quote-mark { font-family: 'Playfair Display', serif; font-size: 4rem; line-height: 1; color: var(--gold); margin-bottom: 0.5rem; }
.quote-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; color: var(--cream); line-height: 1.5; }
.quote-cite { display: block; margin-top: 1rem; font-size: 0.8rem; color: var(--text-mid); font-style: normal; }

.philosophy-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.phil-stat { text-align: center; padding: 1rem; border: 1px solid rgba(212,168,83,0.15); border-radius: 8px; }
.phil-stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.phil-stat-label { display: block; font-size: 0.7rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem; }

/* ── OUTCOMES ── */
.outcomes { padding: 6rem 3rem; background: var(--espresso-mid); }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 3rem;
  max-width: 600px;
}
.outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.outcome-card { padding: 2rem; text-align: center; }
.outcome-visual { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.outcome-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,168,83,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.outcome-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.6rem; }
.outcome-desc { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }

/* ── CLOSING ── */
.closing { padding: 6rem 3rem; background: var(--espresso); text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  font-style: italic;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.closing-body { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 3rem; }
.closing-cta-strip {
  display: inline-block;
  padding: 1.5rem 3rem;
  border: 1px solid rgba(212,168,83,0.4);
  border-radius: 12px;
  background: rgba(212,168,83,0.07);
}
.closing-cta-text { display: block; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); margin-bottom: 0.5rem; }
.closing-cta-sub { display: block; font-size: 0.78rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── FOOTER ── */
.footer { padding: 3rem; border-top: 1px solid rgba(212,168,83,0.1); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: 0.3rem; }
.footer-desc { font-size: 0.8rem; color: var(--text-mid); }
.footer-copy { font-size: 0.78rem; color: var(--text-mid); display: block; margin-bottom: 0.2rem; }
.footer-tagline { font-size: 0.72rem; color: rgba(212,168,83,0.4); text-transform: uppercase; letter-spacing: 0.15em; }
.footer-instagram { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.9rem; color: var(--gold); text-decoration: none; font-size: 0.82rem; font-weight: 500; transition: color 0.2s; }
.footer-instagram:hover { color: var(--gold-light); }

/* ── SERVICES GALLERY ── */
.services-gallery {
  padding: 6rem 3rem;
  background: var(--espresso);
  border-top: 1px solid rgba(212,168,83,0.08);
}
.gallery-inner { max-width: 1100px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.gallery-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212,168,83,0.15);
  transition: border-color 0.25s, transform 0.25s;
  cursor: default;
}
.gallery-card:hover {
  border-color: rgba(212,168,83,0.45);
  transform: translateY(-3px);
}
.gallery-card-large { grid-column: span 1; }
.gallery-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.gallery-braid-art {
  opacity: 0.85;
  transition: opacity 0.25s;
}
.gallery-card:hover .gallery-braid-art { opacity: 1; }
.gallery-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.1rem;
  background: rgba(26,15,10,0.85);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(212,168,83,0.12);
}
.gallery-tag {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream);
}
.gallery-price {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
}
.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 12px;
  background: rgba(212,168,83,0.04);
  gap: 2rem;
}
.gallery-cta-text {
  font-size: 0.9rem;
  color: var(--text-mid);
}
.gallery-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--espresso);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(212,168,83,0.28);
  flex-shrink: 0;
}
.gallery-book-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(212,168,83,0.38);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero { padding: 2.5rem 1.5rem 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { display: none; }
  .hero-social-proof { font-size: 0.82rem; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .hero-cta-btn { font-size: 0.95rem; padding: 0.85rem 1.75rem; }
  .hero-bottom-bar { flex-wrap: wrap; gap: 1rem; margin: 2rem -1.5rem 0; padding: 1rem 1.5rem; }
  .hero-stat { padding: 0 1rem; flex: 0 0 calc(50% - 1rem); text-align: left; }
  .hero-divider { display: none; }
  .services { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .services-gallery { padding: 4rem 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-card-large { grid-column: span 1; }
  .gallery-cta { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.25rem; }
  .gallery-book-btn { width: 100%; justify-content: center; }
  .philosophy { padding: 4rem 1.5rem; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }
  .philosophy-stats { grid-template-columns: repeat(3, 1fr); }
  .outcomes { padding: 4rem 1.5rem; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 1rem; }
  .closing { padding: 4rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
}
