/* Inner Peace Journey — base styles */
:root {
  --ivory: #FAF7F2;
  --cream: #FDFBF7;
  --beige: #F0E6D8;
  --soft-gold: #D4A85A;
  --gold-light: #E5C07B;
  --deep-purple: #3B2A5C;
  --purple-mid: #4A3B6B;
  --sage: #9CAF88;
  --sage-light: #BFD0AE;
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--deep-purple);
  background: var(--cream);
  line-height: 1.65;
}
h1, h2, h3, h4, .font-serif {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  letter-spacing: -0.01em;
}

/* Soft ambient gradient backgrounds */
.bg-aura {
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(212,168,90,0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 30%, rgba(59,42,92,0.12), transparent 60%),
    radial-gradient(ellipse 70% 55% at 50% 90%, rgba(156,175,136,0.18), transparent 60%),
    linear-gradient(180deg, #FDFBF7 0%, #F6EFE3 100%);
}
.bg-soft-purple {
  background: linear-gradient(135deg, #F4EEF7 0%, #FAF7F2 60%, #F0E6D8 100%);
}
.bg-gold-wash {
  background: linear-gradient(135deg, #FAF3E4 0%, #F0E6D8 100%);
}
.bg-deep-gradient {
  background: linear-gradient(135deg, #3B2A5C 0%, #4A3B6B 60%, #6B5482 100%);
}

/* Card */
.card {
  background: #FFFDF9;
  border: 1px solid rgba(212,168,90,0.18);
  border-radius: 1.5rem;
  box-shadow: 0 1px 2px rgba(59,42,92,0.04), 0 8px 24px -12px rgba(59,42,92,0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(59,42,92,0.06), 0 24px 40px -16px rgba(59,42,92,0.18);
  border-color: rgba(212,168,90,0.45);
}

.icon-bubble {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #F4E5C2, #E5C07B);
  color: #3B2A5C;
  font-size: 1.6rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4), 0 6px 16px -6px rgba(212,168,90,0.45);
}
.icon-bubble.purple { background: linear-gradient(135deg, #E0D6EE, #B7A6D4); color: #3B2A5C; }
.icon-bubble.sage   { background: linear-gradient(135deg, #DDE9CF, #9CAF88); color: #3B2A5C; }

/* Celestial — soft lavender base with a subtle gold glow on card hover */
.icon-bubble.celestial {
  background: linear-gradient(135deg, #E0D6EE, #B7A6D4);
  color: #3B2A5C;
  transition: box-shadow 0.45s ease, transform 0.35s ease;
}
.card:hover .icon-bubble.celestial,
.icon-bubble.celestial:hover {
  box-shadow: 0 0 22px rgba(214, 168, 90, 0.40), inset 0 0 16px rgba(255, 255, 255, 0.45);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, #3B2A5C, #4A3B6B);
  color: #FDFBF7;
  box-shadow: 0 8px 20px -8px rgba(59,42,92,0.55);
}
.btn-primary:hover { background: linear-gradient(135deg, #D4A85A, #E5C07B); color: #3B2A5C; transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(135deg, #D4A85A, #E5C07B);
  color: #3B2A5C;
  box-shadow: 0 8px 20px -8px rgba(212,168,90,0.6);
}
.btn-gold:hover { background: linear-gradient(135deg, #3B2A5C, #4A3B6B); color: #FDFBF7; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: #3B2A5C;
  border: 1px solid rgba(59,42,92,0.25);
}
.btn-outline:hover { border-color: #3B2A5C; background: rgba(59,42,92,0.04); }

/* Section spacing */
.section { padding: 5.5rem 1.5rem; }
@media (min-width: 768px) { .section { padding: 7rem 2rem; } }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--soft-gold);
  font-weight: 600;
}

/* FAQ accordion */
.faq-item { border-bottom: 1px solid rgba(59,42,92,0.12); }
.faq-question {
  width: 100%; text-align: left;
  padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--deep-purple);
  cursor: pointer;
  background: none; border: none;
}
.faq-icon { transition: transform 0.3s ease; color: var(--soft-gold); font-size: 1.2rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: rgba(59,42,92,0.78);
  font-size: 0.98rem;
}
.faq-item.open .faq-answer { padding-bottom: 1.25rem; max-height: 500px; }

/* Pricing highlight */
.pricing-highlight {
  background: linear-gradient(160deg, #3B2A5C 0%, #4A3B6B 60%, #6B5482 100%);
  color: #FDFBF7;
  border: 1px solid rgba(212,168,90,0.5);
  position: relative;
  transform: scale(1.02);
}
.pricing-highlight .check { color: #E5C07B; }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #D4A85A, #E5C07B);
  color: #3B2A5C; padding: 0.3rem 1rem;
  border-radius: 9999px; font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: 0 6px 16px -6px rgba(212,168,90,0.7);
}

/* Pricing list */
.feature-list li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  padding: 0.4rem 0; font-size: 0.95rem;
}
.feature-list .check { color: var(--soft-gold); margin-top: 2px; flex-shrink: 0; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Mobile menu */
.mobile-link {
  display: block; padding: 0.85rem 1.5rem;
  border-bottom: 1px solid rgba(59,42,92,0.08);
  color: var(--deep-purple); font-size: 1rem;
}
.mobile-link:hover { background: rgba(212,168,90,0.08); }

/* Subtle decorative dot pattern */
.dot-pattern {
  background-image: radial-gradient(rgba(59,42,92,0.10) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* Day pill for schedule */
.day-pill {
  background: linear-gradient(135deg, #FAF3E4, #F0E6D8);
  color: var(--deep-purple);
  border: 1px solid rgba(212,168,90,0.25);
  border-radius: 1.25rem;
  padding: 1.25rem 1.25rem;
}
.day-pill .day-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--deep-purple); }
.day-pill .day-meta { font-size: 0.88rem; color: rgba(59,42,92,0.7); margin-top: 0.25rem; }

/* Inputs */
.input {
  width: 100%; padding: 0.85rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(212,168,90,0.4);
  background: rgba(253,251,247,0.08);
  color: inherit; font-family: inherit;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.input::placeholder { color: rgba(253,251,247,0.55); }
.input:focus { border-color: var(--gold-light); background: rgba(253,251,247,0.14); }

/* Star row */
.stars { color: #E5C07B; letter-spacing: 0.15em; }

/* Tag */
.tag {
  display: inline-flex; align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: rgba(156,175,136,0.18);
  color: #5C7449; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.04em;
}
.tag.gold { background: rgba(212,168,90,0.18); color: #8C6A2B; }
.tag.purple { background: rgba(59,42,92,0.10); color: #3B2A5C; }

/* Divider mark */
.mark {
  display: inline-block; width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--soft-gold), transparent);
  margin: 0 0.75rem; vertical-align: middle;
}

/* Brand / logo lockup
   ----------------------------------------------------------------
   Uses the original uploaded Inner Peace Journey logo (assets/original-logo.png).
   Height-driven sizing with width: auto preserves the original aspect ratio,
   eye symbol, sacred geometry, spirals and typography exactly as designed.
   No drop-shadow / brightness filters — the original aesthetic is preserved.
*/
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: transform 0.25s ease;
}
.brand:hover { transform: translateY(-1px); }
.logo {
  height: 60px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.brand-title {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #4b2e63;
  letter-spacing: 0.005em;
}
.brand-subtitle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: #c9a46a;
  text-transform: uppercase;
  font-weight: 600;
}

/* Tablet */
@media (max-width: 768px) {
  .logo { height: 54px; max-width: 200px; }
  .brand-title { font-size: 1.32rem; }
  .brand { gap: 12px; }
}
/* Mobile */
@media (max-width: 480px) {
  .logo { height: 48px; max-width: 170px; }
  .brand-title { font-size: 1.18rem; }
  .brand-subtitle { font-size: 0.7rem; letter-spacing: 0.26em; }
  .brand { gap: 10px; }
  .brand-text { gap: 3px; }
}

/* Login card uses a larger version of the same original logo. */
.login-logo {
  height: 110px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  margin: 0 auto 1rem;
  display: block;
}

/* ============================================================
   Book Now button — used on service / package cards
   ============================================================ */
.book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.5rem;
  background: #4b2e63;
  color: #ffffff !important;
  border-radius: 9999px;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 16px -8px rgba(75, 46, 99, 0.5);
}
.book-btn:hover {
  background: linear-gradient(135deg, #D4A85A, #E5C07B);
  color: #4b2e63 !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(212, 168, 90, 0.55);
}
.book-btn .arrow { display: inline-block; transition: transform 0.25s ease; }
.book-btn:hover .arrow { transform: translateX(3px); }
.book-btn.full { width: 100%; }

/* ============================================================
   Booking page — form + payment summary
   ============================================================ */
.booking-grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .booking-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2.5rem;
  }
}

.booking-form {
  background: #FFFDF9;
  border: 1px solid rgba(212, 168, 90, 0.18);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 1px 2px rgba(59,42,92,0.04), 0 8px 24px -12px rgba(59,42,92,0.10);
}
@media (min-width: 768px) { .booking-form { padding: 2.5rem; } }

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.field label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--deep-purple);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.field label .req { color: var(--soft-gold); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(75,46,99,0.18);
  background: #FAF7F2;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--deep-purple);
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(59,42,92,0.4); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--soft-gold);
  background: #FFFDF9;
  box-shadow: 0 0 0 4px rgba(212, 168, 90, 0.15);
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.55; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

.field-error {
  display: none;
  font-size: 0.82rem;
  color: #b54848;
  margin-top: 0.15rem;
}
.field.has-error .field-error { display: block; }
.field.has-error .form-input,
.field.has-error .form-select,
.field.has-error .form-textarea {
  border-color: #c66161;
  background: #FCF6F4;
}

/* Summary card */
.summary-card {
  background: linear-gradient(160deg, #FAF3E4 0%, #F0E6D8 100%);
  border: 1px solid rgba(212, 168, 90, 0.35);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 1px 2px rgba(59,42,92,0.04), 0 8px 24px -12px rgba(59,42,92,0.10);
}
@media (min-width: 1024px) {
  .summary-card { position: sticky; top: 100px; padding: 2rem; }
}
.summary-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--deep-purple);
  font-weight: 600;
}
.summary-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.65rem 0;
  font-size: 0.95rem; color: rgba(59,42,92,0.85);
  border-bottom: 1px dashed rgba(75,46,99,0.15);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row strong { color: var(--deep-purple); font-weight: 500; }
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 1rem; margin-top: 0.5rem;
  border-top: 1px solid rgba(75,46,99,0.18);
}
.summary-total .total-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem; color: var(--deep-purple);
  font-weight: 600; line-height: 1;
}

/* Pay button — full width version of book-btn */
.pay-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #D4A85A, #E5C07B);
  color: #4b2e63;
  border: none; border-radius: 9999px;
  font-family: inherit; font-weight: 600; font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 22px -8px rgba(212, 168, 90, 0.6);
}
.pay-btn:hover {
  background: #4b2e63; color: #FDFBF7;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(75, 46, 99, 0.55);
}
.pay-btn:disabled {
  opacity: 0.6; cursor: not-allowed; transform: none;
}

/* Inline error banner on the booking page */
.error-banner {
  background: #FCF1EE;
  border: 1px solid #E2B4A8;
  color: #7a3a2c;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

/* Success state */
.success-card {
  background: linear-gradient(160deg, #FAF3E4 0%, #FFFDF9 100%);
  border: 1px solid rgba(156,175,136,0.4);
  border-radius: 1.5rem;
  padding: 3rem 1.75rem;
  text-align: center;
  box-shadow: 0 1px 2px rgba(59,42,92,0.04), 0 8px 24px -12px rgba(59,42,92,0.10);
}
@media (min-width: 768px) { .success-card { padding: 3.5rem 3rem; } }
.success-card .check-bubble {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #BFD0AE, #9CAF88);
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.4rem; line-height: 1;
  box-shadow: 0 12px 28px -10px rgba(156,175,136,0.65);
}
.payment-id {
  display: inline-block;
  background: rgba(75,46,99,0.06);
  border: 1px dashed rgba(75,46,99,0.2);
  color: var(--deep-purple);
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  margin-top: 1rem;
  word-break: break-all;
}

/* ============================================================
   Slot picker (booking page)
   ============================================================ */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.7rem;
}
.slot-card {
  display: block;
  padding: 0.95rem 1rem;
  border: 1.5px solid rgba(75,46,99,0.18);
  border-radius: 0.95rem;
  background: #FAF7F2;
  cursor: pointer;
  position: relative;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.slot-card:hover {
  border-color: var(--soft-gold);
  background: #FFFDF9;
  transform: translateY(-1px);
}
.slot-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.slot-card.selected {
  border-color: var(--deep-purple);
  background: linear-gradient(135deg, #F4EEF7, #FAF3E4);
  box-shadow: 0 0 0 3px rgba(75,46,99,0.12);
}
.slot-card .slot-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  color: var(--deep-purple);
  font-weight: 600;
  line-height: 1.1;
}
.slot-card .slot-time {
  font-size: 0.93rem;
  color: rgba(59,42,92,0.78);
  margin-top: 0.2rem;
}
.slot-card .slot-meta {
  font-size: 0.78rem;
  color: rgba(59,42,92,0.6);
  margin-top: 0.4rem;
  display: flex; gap: 0.4rem; align-items: center; flex-wrap: wrap;
}
.slot-empty {
  background: rgba(212,168,90,0.08);
  border: 1px dashed rgba(212,168,90,0.45);
  border-radius: 0.95rem;
  padding: 1.25rem;
  text-align: center;
  color: rgba(59,42,92,0.7);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Zoom link reveal in success panel */
.zoom-reveal {
  background: rgba(156,175,136,0.12);
  border: 1px solid rgba(156,175,136,0.4);
  border-radius: 1rem;
  padding: 1.25rem;
  margin: 1.75rem auto 0;
  max-width: 380px;
  text-align: center;
}

/* ============================================================
   Admin panel
   ============================================================ */
.admin-bg { background: var(--ivory); min-height: 100vh; }
.admin-shell { max-width: 1100px; margin: 0 auto; padding: 1.5rem; }
@media (min-width: 768px) { .admin-shell { padding: 2.5rem; } }

.admin-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(253,251,247,0.92);
  border-bottom: 1px solid rgba(212,168,90,0.25);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 50;
}
.admin-badge {
  display: inline-flex; align-items: center;
  padding: 0.3rem 0.8rem;
  background: rgba(75,46,99,0.08);
  color: var(--deep-purple);
  border-radius: 9999px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
}

.admin-card {
  background: #FFFDF9;
  border: 1px solid rgba(212,168,90,0.18);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 1px 2px rgba(59,42,92,0.04), 0 8px 24px -12px rgba(59,42,92,0.10);
}
@media (min-width: 768px) { .admin-card { padding: 2.25rem; } }

.admin-login-card {
  max-width: 420px; margin: 4rem auto 2rem;
  text-align: center;
}
/* Admin login logo uses the global .login-logo rule (original-logo.png). */
.admin-login-card h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem; color: var(--deep-purple);
  font-weight: 600;
}
.admin-login-card .security-note {
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  background: rgba(212,168,90,0.1);
  border: 1px dashed rgba(212,168,90,0.5);
  color: rgba(75,46,99,0.78);
  border-radius: 0.95rem;
  font-size: 0.78rem;
  text-align: left;
  line-height: 1.55;
}
.admin-login-card .security-note code {
  background: rgba(75,46,99,0.08);
  padding: 0.05rem 0.35rem;
  border-radius: 0.3rem;
  font-size: 0.75rem;
}

/* Slot table */
.slot-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  font-size: 0.92rem;
  min-width: 760px;
}
.slot-table th, .slot-table td {
  padding: 0.85rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid rgba(75,46,99,0.08);
  vertical-align: middle;
}
.slot-table th {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 0.95rem;
  color: var(--deep-purple);
  border-bottom: 1px solid rgba(212,168,90,0.4);
  background: rgba(212,168,90,0.05);
  white-space: nowrap;
}
.slot-table td { color: rgba(59,42,92,0.85); }
.slot-table td strong { color: var(--deep-purple); }
.slot-table tr.unavailable td { opacity: 0.55; }

.status-pill {
  display: inline-flex; padding: 0.2rem 0.65rem;
  border-radius: 9999px; font-size: 0.7rem;
  letter-spacing: 0.05em; font-weight: 600;
  text-transform: uppercase; white-space: nowrap;
}
.status-available   { background: rgba(156,175,136,0.2); color: #4f6638; }
.status-unavailable { background: rgba(75,46,99,0.10);   color: var(--deep-purple); }
.status-full        { background: rgba(212,168,90,0.2); color: #8C6A2B; }

.btn-mini {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.4rem 0.85rem; border-radius: 9999px;
  font-size: 0.78rem; font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer; background: none;
  transition: all 0.2s ease; white-space: nowrap;
  font-family: inherit;
}
.btn-mini.danger {
  border-color: rgba(192,73,73,0.35);
  color: #a04848;
}
.btn-mini.danger:hover { background: #a04848; color: #fff; border-color: #a04848; }
.btn-mini.toggle {
  border-color: rgba(75,46,99,0.25);
  color: var(--deep-purple);
}
.btn-mini.toggle:hover { background: var(--deep-purple); color: #fff; }

.zoom-cell { display: flex; align-items: center; gap: 0.5rem; }
.zoom-cell .zoom-text {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: var(--deep-purple);
  background: rgba(75,46,99,0.06);
  padding: 0.2rem 0.55rem; border-radius: 0.4rem;
  max-width: 170px; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap;
}

.empty-state {
  padding: 2.5rem 1rem;
  text-align: center;
  color: rgba(59,42,92,0.6);
  background: rgba(212,168,90,0.05);
  border: 1px dashed rgba(212,168,90,0.3);
  border-radius: 1rem;
}
.empty-state p:first-child { font-family: 'Cormorant Garamond', serif; }

.admin-status {
  position: fixed; left: 50%; bottom: 1.5rem;
  transform: translateX(-50%) translateY(20px);
  padding: 0.7rem 1.25rem; border-radius: 9999px;
  background: #fff; box-shadow: 0 12px 28px -10px rgba(59,42,92,0.35);
  font-size: 0.9rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
}
.admin-status.visible {
  opacity: 1; transform: translateX(-50%) translateY(0);
}
.admin-status.success { background: #ECF3E2; color: #4f6638; border: 1px solid rgba(156,175,136,0.45); }
.admin-status.error   { background: #FCF1EE; color: #7a3a2c; border: 1px solid rgba(192,73,73,0.4); }

/* Admin tabs */
.tabs {
  display: flex; gap: 0.4rem; flex-wrap: wrap;
  border-bottom: 1px solid rgba(75,46,99,0.12);
  margin-bottom: 1.75rem;
}
.tabs button {
  padding: 0.7rem 1.25rem;
  border: none; background: none;
  font-family: inherit; font-size: 0.95rem;
  color: rgba(59,42,92,0.6);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.tabs button:hover { color: var(--deep-purple); }
.tabs button.active {
  color: var(--deep-purple);
  border-bottom-color: var(--soft-gold);
  font-weight: 500;
}

/* Calendar */
.cal-nav {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.cal-nav .cal-month-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--deep-purple); font-weight: 600;
  flex: 1;
}
.cal-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(75,46,99,0.2);
  background: #FFFDF9;
  color: var(--deep-purple);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease; font-family: inherit;
}
.cal-arrow:hover { background: var(--deep-purple); color: #fff; border-color: var(--deep-purple); }
.cal-head {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
  font-size: 0.7rem; letter-spacing: 0.12em;
  color: var(--soft-gold); text-transform: uppercase; text-align: center;
  font-weight: 600; padding: 0.75rem 0 0.4rem;
}
.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-cell {
  min-height: 92px;
  background: #FAF7F2;
  border: 1px solid rgba(75,46,99,0.08);
  border-radius: 0.7rem;
  padding: 0.4rem;
  cursor: pointer;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  overflow: hidden;
}
.calendar { grid-auto-rows: minmax(92px, auto); }
.cal-slots {
  margin-top: 0.35rem;
  display: flex; flex-direction: column;
  gap: 2px;
}
.cal-slot {
  font-size: 0.66rem;
  color: var(--deep-purple);
  background: rgba(212,168,90,0.18);
  border: 1px solid rgba(212,168,90,0.32);
  border-radius: 0.3rem;
  padding: 1px 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.35;
  font-weight: 500;
}
.cal-slot.full {
  background: rgba(75,46,99,0.08);
  border-color: rgba(75,46,99,0.18);
  color: rgba(59,42,92,0.5);
  text-decoration: line-through;
}
.cal-slot-more {
  font-size: 0.6rem;
  color: rgba(59,42,92,0.6);
  padding: 1px 4px;
}
/* Private blocked time inside calendar cells */
.cal-slot.block {
  background: rgba(75,46,99,0.08);
  border-color: rgba(75,46,99,0.20);
  color: rgba(59,42,92,0.72);
  font-style: italic;
}
.cal-slot.block.full-day {
  background: rgba(75,46,99,0.16);
  border-color: rgba(75,46,99,0.30);
  color: rgba(59,42,92,0.82);
  font-style: normal;
  font-weight: 600;
}

/* Entry-type toggle (Available Slot vs Private Blocked Time) */
.entry-type-toggle {
  display: inline-flex;
  background: rgba(75,46,99,0.06);
  border: 1px solid rgba(75,46,99,0.10);
  border-radius: 9999px;
  padding: 4px;
  margin: 1rem 0 1.5rem;
  flex-wrap: wrap;
}
.entry-type-toggle button {
  padding: 0.55rem 1.1rem;
  border: none;
  background: none;
  border-radius: 9999px;
  font-family: inherit;
  font-size: 0.86rem;
  color: rgba(59,42,92,0.65);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.entry-type-toggle button:hover { color: var(--deep-purple); }
.entry-type-toggle button.active {
  background: linear-gradient(135deg, #D6B77C, #E5C77B);
  color: var(--deep-purple);
  font-weight: 600;
  box-shadow: 0 4px 12px -4px rgba(214,168,90,0.45);
}
.cal-cell:hover { border-color: var(--soft-gold); background: #FFFDF9; transform: translateY(-1px); }
.cal-cell.muted { opacity: 0.35; cursor: default; }
.cal-cell.muted:hover { transform: none; border-color: rgba(75,46,99,0.08); background: #FAF7F2; }
.cal-cell.today {
  border-color: var(--deep-purple);
  box-shadow: 0 0 0 2px rgba(75,46,99,0.12);
}
.cal-cell.selected {
  background: linear-gradient(135deg, #F4EEF7, #FAF3E4);
  border-color: var(--deep-purple);
}
.cal-cell .cal-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: var(--deep-purple); font-weight: 600;
  line-height: 1;
}
.cal-cell .cal-count {
  position: absolute; top: 0.35rem; right: 0.35rem;
  font-size: 0.7rem;
  background: linear-gradient(135deg, #D4A85A, #E5C07B);
  color: #4b2e63;
  min-width: 22px; height: 22px;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  padding: 0 6px;
}
@media (max-width: 480px) {
  .cal-cell { min-height: 76px; padding: 0.3rem; }
  .cal-cell .cal-day { font-size: 0.92rem; }
  .cal-slot { font-size: 0.58rem; padding: 1px 3px; }
}

/* ============================================================
   PREMIUM ECOSYSTEM THEME
   Used by academy / corporate / order / inner-science pages and
   by new sections on the home page (three-pillars, journey).
   Existing pages keep their cream/sage palette unchanged.
   ============================================================ */
:root {
  --indigo-deep:    #161A27;
  --indigo-mid:     #1E2333;
  --indigo-soft:    #2A2F44;
  --champagne:      #D6B77C;
  --champagne-light:#E5C77B;
  --ivory-new:      #F9F8F4;
  --violet-glow:    #6B5482;
  --soft-mist:      #ECECF0;
}

.font-display {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  letter-spacing: -0.012em;
}

.theme-indigo { background: var(--indigo-deep); color: var(--ivory-new); }
.bg-indigo { background: var(--indigo-deep); color: var(--ivory-new); }
.bg-indigo-mid { background: var(--indigo-mid); color: var(--ivory-new); }
.bg-mist { background: linear-gradient(180deg, #F9F8F4 0%, #ECECF0 100%); }
.bg-mist-blue { background: linear-gradient(135deg, #F4F5F8 0%, #E1E7F0 100%); }
.bg-ivory { background: var(--ivory-new); }
.text-champagne { color: var(--champagne); }
.text-ivory { color: var(--ivory-new); }
.text-indigo-deep { color: var(--indigo-deep); }

/* ---- Cinematic dark hero ---- */
.hero-cinematic {
  position: relative;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%,  rgba(214,183,124,0.10), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(107,84,130,0.20), transparent 70%),
    linear-gradient(180deg, #11141E 0%, #161A27 60%, #1E2333 100%);
  color: var(--ivory-new);
  overflow: hidden;
}
.hero-cinematic .hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.7rem;
  color: var(--champagne);
  font-weight: 600;
}
.hero-cinematic h1 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.012em;
  color: var(--ivory-new);
}
.hero-cinematic h1 em {
  font-style: italic;
  color: var(--champagne);
  font-weight: 500;
}

/* Soft light beam */
@keyframes beam-drift {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) translateY(0)   scaleY(1); }
  50%      { opacity: 0.85; transform: translateX(-50%) translateY(-8px) scaleY(1.04); }
}
.light-beam {
  position: absolute;
  top: -10%; left: 50%;
  width: 320px; height: 120%;
  background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(214,183,124,0.16), transparent 60%);
  animation: beam-drift 7s ease-in-out infinite;
  pointer-events: none;
}

/* Orbit rings */
@keyframes orbit-rotate { to { transform: rotate(360deg); } }
.orbit-ring {
  position: absolute;
  border: 1px solid rgba(214,183,124,0.10);
  border-radius: 50%;
  pointer-events: none;
  animation: orbit-rotate 60s linear infinite;
}
.orbit-ring.r2 { animation-duration: 90s;  animation-direction: reverse; border-color: rgba(214,183,124,0.07); }
.orbit-ring.r3 { animation-duration: 120s; border-color: rgba(214,183,124,0.05); }

/* Soft floating glow particles */
@keyframes float-soft {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%      { transform: translateY(-10px); opacity: 0.85; }
}
.float-soft { animation: float-soft 6s ease-in-out infinite; }

/* Navaratna 9-gem ring */
.navaratna {
  position: relative;
  width: 240px; height: 240px;
  margin: 0 auto;
}
.navaratna .ring-circle {
  position: absolute; inset: 0;
  border: 1px solid rgba(214,183,124,0.35);
  border-radius: 50%;
}
.navaratna .ring-inner {
  position: absolute; inset: 22%;
  border: 1px solid rgba(214,183,124,0.2);
  border-radius: 50%;
}
.navaratna .ring-center {
  position: absolute; inset: 44%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,183,124,0.5), transparent 70%);
}
.navaratna .gem {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 14px var(--champagne), 0 0 4px rgba(255,255,255,0.6) inset;
  top: 50%; left: 50%;
  margin: -7px 0 0 -7px;
}

/* ---- Pillar / premium dark cards ---- */
.pillar-card {
  background: linear-gradient(160deg, rgba(214,183,124,0.04), rgba(107,84,130,0.06));
  border: 1px solid rgba(214,183,124,0.18);
  border-radius: 1.25rem;
  padding: 2rem;
  position: relative;
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  overflow: hidden;
  color: var(--ivory-new);
}
.pillar-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(214,183,124,0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214,183,124,0.5);
  background: linear-gradient(160deg, rgba(214,183,124,0.08), rgba(107,84,130,0.10));
}
.pillar-card:hover::before { opacity: 1; }
.pillar-card .pillar-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(214,183,124,0.4);
  background: rgba(214,183,124,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--champagne);
  position: relative; z-index: 1;
}
.pillar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--ivory-new);
  margin-top: 1.25rem;
  font-weight: 500;
  position: relative; z-index: 1;
}
.pillar-card p {
  color: rgba(249,248,244,0.72);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-top: 0.6rem;
  position: relative; z-index: 1;
}

/* Light-theme pillar variant */
.pillar-card.light {
  background: #FFFFFF;
  border: 1px solid rgba(22,26,39,0.08);
  color: var(--indigo-deep);
  box-shadow: 0 1px 2px rgba(22,26,39,0.04), 0 18px 38px -22px rgba(22,26,39,0.18);
}
.pillar-card.light:hover { border-color: var(--champagne); background: #FFFFFF; }
.pillar-card.light h3 { color: var(--indigo-deep); }
.pillar-card.light p { color: rgba(22,26,39,0.7); }

/* ---- Buttons (dark / premium) ---- */
.btn-champagne {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  background: linear-gradient(135deg, #D6B77C, #E5C77B);
  color: var(--indigo-deep);
  font-weight: 600;
  border-radius: 9999px;
  font-size: 0.92rem;
  letter-spacing: 0.015em;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 22px -8px rgba(214,183,124,0.55);
}
.btn-champagne:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -8px rgba(214,183,124,0.7); }
.btn-ghost-light {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  background: transparent;
  color: var(--ivory-new);
  font-weight: 500;
  border: 1px solid rgba(214,183,124,0.32);
  border-radius: 9999px;
  font-size: 0.92rem;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.btn-ghost-light:hover { border-color: var(--champagne); background: rgba(214,183,124,0.08); }

/* ---- Eyebrow / display ---- */
.eyebrow-light {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.7rem;
  color: var(--champagne);
  font-weight: 600;
}
.display-h2 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.008em;
}

/* ---- Vertical journey / spiral timeline ---- */
.journey-spiral {
  position: relative;
  padding: 1rem 0;
  max-width: 760px;
  margin: 0 auto;
}
.journey-spiral::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(214,183,124,0.45) 12%, rgba(214,183,124,0.45) 88%, transparent);
}
.journey-step {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin: 1.8rem 0;
}
.journey-step .step-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 4px rgba(214,183,124,0.15), 0 0 18px rgba(214,183,124,0.55);
  margin: 0 auto;
  grid-column: 2;
}
.journey-step .step-content { padding: 0 1.25rem; }
.journey-step.left .step-content  { text-align: right; grid-column: 1; }
.journey-step.right .step-content { text-align: left;  grid-column: 3; }
.journey-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--ivory-new);
  font-weight: 500;
}
.journey-step p {
  color: rgba(249,248,244,0.72);
  font-size: 0.9rem; margin-top: 0.4rem; line-height: 1.5;
}
.journey-step .step-num {
  color: var(--champagne);
  font-size: 0.72rem; letter-spacing: 0.22em;
  font-weight: 600; text-transform: uppercase;
}
@media (max-width: 768px) {
  .journey-spiral::before { left: 20px; }
  .journey-step { grid-template-columns: 40px 1fr; gap: 0.5rem; }
  .journey-step .step-dot { grid-column: 1; }
  .journey-step.left  .step-content,
  .journey-step.right .step-content { grid-column: 2; text-align: left; }
}

/* ---- Faculty / executive ---- */
.exec-card {
  background: rgba(249,248,244,0.04);
  border: 1px solid rgba(214,183,124,0.18);
  border-radius: 1rem;
  padding: 1.5rem;
  color: var(--ivory-new);
}
.exec-card.light {
  background: #FFFFFF;
  border: 1px solid rgba(22,26,39,0.08);
  color: var(--indigo-deep);
  box-shadow: 0 1px 2px rgba(22,26,39,0.04), 0 14px 30px -18px rgba(22,26,39,0.16);
}
.exec-card .avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--champagne), var(--violet-glow));
  margin-bottom: 0.85rem;
}

/* ---- Premium nav adjustments ---- */
#site-header.nav-extended nav { gap: 1.4rem; }
.nav-link-active { color: var(--soft-gold) !important; }

/* Soft sacred geometry background pattern */
.geometry-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(214,183,124,0.05) 0%, transparent 60%),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 60px, rgba(214,183,124,0.04) 60px 61px);
  pointer-events: none;
}

/* ============================================================
   Corporate page (HBR-meets-CLI) overrides
   ============================================================ */

/* Soft indigo-to-ivory hero — premium corporate, not too mystical */
.corp-hero {
  min-height: 70vh;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(75, 46, 99, 0.18), transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(214, 168, 90, 0.10), transparent 60%),
    linear-gradient(180deg, #E8E4EE 0%, #F4EFE7 55%, #FAF7F2 100%);
}
.corp-hero .orbit-ring { border-color: rgba(214,168,90,0.18); }
@media (max-width: 768px) {
  .corp-hero { min-height: 56vh; }
}

/* Premium practice / service card — light variant with stronger shadow */
.practice-card {
  background: #FFFFFF;
  border: 1px solid rgba(22,26,39,0.07);
  border-radius: 1rem;
  padding: 1.75rem;
  position: relative;
  box-shadow: 0 1px 2px rgba(22,26,39,0.04), 0 12px 28px -16px rgba(22,26,39,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.practice-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214,168,90,0.45);
  box-shadow: 0 4px 8px rgba(22,26,39,0.06), 0 22px 44px -16px rgba(22,26,39,0.22);
}
.practice-card .practice-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F0E6D8, #D6B77C);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #3B2A5C;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6), 0 6px 14px -6px rgba(214,168,90,0.4);
}
.practice-card h3 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 1.42rem;
  color: #1E2333;
  margin-top: 1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.practice-card p {
  color: rgba(30,35,51,0.8);
  font-size: 0.96rem;
  line-height: 1.6;
  margin-top: 0.55rem;
}

/* Chakra row */
.chakra-row {
  display: flex; align-items: center; gap: 1rem;
  background: #FFFFFF;
  border: 1px solid rgba(22,26,39,0.06);
  border-radius: 0.85rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 1px 2px rgba(22,26,39,0.03);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.chakra-row:hover {
  border-color: rgba(214,168,90,0.45);
  transform: translateX(2px);
  box-shadow: 0 1px 2px rgba(22,26,39,0.04), 0 8px 18px -10px rgba(22,26,39,0.18);
}
.chakra-row .chakra-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.9), 0 0 0 4px rgba(22,26,39,0.07);
}
.chakra-row .chakra-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--violet-glow);
  font-weight: 700;
  width: 26px; text-align: center;
  flex-shrink: 0;
}
.chakra-row .chakra-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  color: #1E2333;
  font-weight: 600;
  letter-spacing: -0.003em;
}
.chakra-row .chakra-body {
  color: rgba(30,35,51,0.72);
  font-size: 0.9rem;
  margin-top: 1px;
  line-height: 1.45;
}

/* Premium case-study card */
.case-card {
  background: #FFFFFF;
  border: 1px solid rgba(22,26,39,0.08);
  border-radius: 1rem;
  padding: 1.85rem;
  box-shadow: 0 1px 2px rgba(22,26,39,0.04), 0 14px 30px -16px rgba(22,26,39,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214,168,90,0.45);
  box-shadow: 0 4px 8px rgba(22,26,39,0.06), 0 22px 44px -18px rgba(22,26,39,0.24);
}
.case-card h3 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: #1E2333;
  font-weight: 600;
  margin-top: 0.8rem;
  line-height: 1.2;
}
.case-card p {
  color: rgba(30,35,51,0.78);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0.6rem;
}

/* Tighten section padding on corporate-themed body for visual density */
body.corp .section { padding: 4.5rem 1.25rem; }
@media (min-width: 768px) {
  body.corp .section { padding: 5.5rem 2rem; }
}

/* ============================================================
   Order page (sacred · ceremonial · premium)
   ============================================================ */

body.order .section { padding: 3rem 1.25rem; }
@media (min-width: 768px) { body.order .section { padding: 5rem 2rem; } }

/* Hero — deep indigo with sacred geometry */
.order-hero {
  position: relative;
  min-height: 70vh;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(214,183,124,0.18), transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(107,84,130,0.30), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(75,46,99,0.30), transparent 60%),
    linear-gradient(180deg, #11141E 0%, #161A27 60%, #1E1733 100%);
  overflow: hidden;
}
@media (max-width: 768px) { .order-hero { min-height: 55vh; } }
.order-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(214,183,124,0.06) 0%, transparent 35%),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 80px, rgba(214,183,124,0.05) 80px 81px);
  pointer-events: none;
}

/* Floating particle field */
.particle-field { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle-field::before, .particle-field::after {
  content: '';
  position: absolute;
  width: 200%; height: 200%; top: -50%; left: -50%;
  background:
    radial-gradient(2px 2px at 12% 22%, rgba(214,183,124,0.7), transparent 50%),
    radial-gradient(2px 2px at 28% 78%, rgba(214,183,124,0.5), transparent 50%),
    radial-gradient(2px 2px at 42% 12%, rgba(214,183,124,0.6), transparent 50%),
    radial-gradient(1.5px 1.5px at 58% 62%, rgba(214,183,124,0.5), transparent 50%),
    radial-gradient(2px 2px at 75% 35%, rgba(214,183,124,0.7), transparent 50%),
    radial-gradient(1.5px 1.5px at 86% 88%, rgba(214,183,124,0.4), transparent 50%),
    radial-gradient(1.5px 1.5px at 18% 55%, rgba(214,183,124,0.5), transparent 50%),
    radial-gradient(2px 2px at 65% 18%, rgba(214,183,124,0.6), transparent 50%);
  animation: particle-drift 28s linear infinite;
}
.particle-field::after { animation-duration: 36s; animation-direction: reverse; opacity: 0.55; }
@keyframes particle-drift { to { transform: translate(-30px, -50px); } }

/* Glowing emblem for hero */
.order-emblem {
  width: 200px; height: 200px;
  position: relative;
  margin: 0 auto;
}
@media (min-width: 768px) { .order-emblem { width: 240px; height: 240px; } }
.order-emblem .core {
  position: absolute; inset: 35%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,183,124,0.6), rgba(214,183,124,0.15) 60%, transparent 80%);
  box-shadow: 0 0 40px rgba(214,183,124,0.45);
}
.order-emblem .ring-1 { position: absolute; inset: 14%;  border-radius: 50%; border: 1px solid rgba(214,183,124,0.5); }
.order-emblem .ring-2 { position: absolute; inset: 0%;   border-radius: 50%; border: 1px solid rgba(214,183,124,0.28); }
.order-emblem .ring-3 { position: absolute; inset: -15%; border-radius: 50%; border: 1px solid rgba(214,183,124,0.14); }

/* Virtue chip used in Navaratna section */
.virtue-chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  background: rgba(214,168,90,0.10);
  border: 1px solid rgba(214,168,90,0.45);
  color: var(--deep-purple);
  border-radius: 9999px;
  font-size: 0.84rem; font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.virtue-chip::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D6B77C, #E5C77B);
  box-shadow: 0 0 6px rgba(214,168,90,0.7);
  flex-shrink: 0;
}
.virtue-chip:hover {
  background: rgba(214,168,90,0.18);
  border-color: rgba(214,168,90,0.7);
  transform: translateY(-1px);
}

/* Initiation phase card (dark variant) */
.phase-card {
  position: relative;
  background: linear-gradient(160deg, #1E2333, #2A2540);
  border: 1px solid rgba(214,183,124,0.3);
  border-radius: 1.25rem;
  padding: 1.85rem;
  color: var(--ivory-new);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.phase-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214,183,124,0.65);
  box-shadow: 0 22px 50px -20px rgba(214,183,124,0.3);
}
.phase-card .phase-num {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  color: var(--champagne);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  font-weight: 700;
  text-transform: uppercase;
}
.phase-card .phase-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(214,183,124,0.2), rgba(214,183,124,0.05));
  border: 1px solid rgba(214,183,124,0.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--champagne);
  margin-top: 0.85rem;
}
.phase-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  color: var(--ivory-new);
  margin-top: 1rem;
  font-weight: 600;
}
.phase-card p {
  color: rgba(249,248,244,0.78);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0.55rem;
}

/* Phase timeline — horizontal on desktop with gold connector */
.phase-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
}
@media (min-width: 768px) {
  .phase-timeline { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .phase-timeline::before {
    content: '';
    position: absolute;
    top: 110px;
    left: 16.6%; right: 16.6%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(214,183,124,0.5) 18%, rgba(214,183,124,0.5) 82%, transparent);
    z-index: 0;
  }
}

/* Ceremony cards */
.ceremony-card {
  background: linear-gradient(160deg, rgba(214,183,124,0.07), rgba(75,46,99,0.07));
  border: 1px solid rgba(214,183,124,0.32);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  color: var(--ivory-new);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.ceremony-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214,183,124,0.7);
  box-shadow: 0 18px 40px -16px rgba(214,183,124,0.4);
}
.ceremony-card .icon { font-size: 1.7rem; color: var(--champagne); display: block; margin-bottom: 0.4rem; }
.ceremony-card h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--ivory-new); font-weight: 600; }
.ceremony-card p   { color: rgba(249,248,244,0.7); font-size: 0.85rem; margin-top: 0.4rem; }

/* Elder card */
.elder-card {
  background: linear-gradient(160deg, rgba(249,248,244,0.05), rgba(214,183,124,0.05));
  border: 1px solid rgba(214,183,124,0.28);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  color: var(--ivory-new);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.elder-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214,183,124,0.6);
  box-shadow: 0 18px 38px -16px rgba(214,183,124,0.3);
}
.elder-card .elder-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 0.85rem;
  background: linear-gradient(135deg, var(--champagne), var(--violet-glow));
  position: relative;
  box-shadow: 0 0 20px rgba(214,183,124,0.3);
}
.elder-card .elder-avatar::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(214,183,124,0.45);
}
.elder-card .elder-role {
  color: var(--champagne);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
}
.elder-card h4 { font-family: 'Playfair Display', serif; font-size: 1.12rem; color: var(--ivory-new); font-weight: 600; margin-top: 0.4rem; }
.elder-card p   { color: rgba(249,248,244,0.72); font-size: 0.86rem; margin-top: 0.55rem; line-height: 1.5; }

/* Global Order map plate */
.order-map-plate {
  position: relative;
  height: 320px;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(214,183,124,0.06), transparent 70%),
    linear-gradient(180deg, #1E2333, #161A27);
  border: 1px solid rgba(214,183,124,0.32);
  border-radius: 1rem;
  overflow: hidden;
}
.order-map-plate::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(214,183,124,0.08) 0%, transparent 50%),
    repeating-linear-gradient(0deg, rgba(214,183,124,0.05) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(214,183,124,0.05) 0 1px, transparent 1px 32px);
  pointer-events: none;
}
.order-pin {
  position: absolute;
  display: flex; flex-direction: column; align-items: center;
  gap: 5px;
  transform: translate(-50%, -50%);
}
.order-pin .pin-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 14px var(--champagne), 0 0 0 4px rgba(214,183,124,0.18);
  animation: pin-pulse 3s ease-in-out infinite;
}
.order-pin .pin-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: rgba(249,248,244,0.85);
  text-transform: uppercase;
  font-weight: 700;
}
@keyframes pin-pulse {
  0%, 100% { box-shadow: 0 0 14px var(--champagne), 0 0 0 4px rgba(214,183,124,0.18); }
  50%      { box-shadow: 0 0 22px var(--champagne), 0 0 0 7px rgba(214,183,124,0.3); }
}

/* Ritual card (light theme) */
.ritual-card {
  background: linear-gradient(160deg, #FFFDF9, #F4ECE0);
  border: 1px solid rgba(214,168,90,0.32);
  border-radius: 1rem;
  padding: 1.85rem;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.ritual-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214,168,90,0.65);
  box-shadow: 0 20px 44px -18px rgba(214,168,90,0.4);
}
.ritual-card .ritual-when {
  font-family: 'Inter', sans-serif;
  color: var(--soft-gold);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
}
.ritual-card h4 { font-family: 'Playfair Display', serif; font-size: 1.45rem; color: var(--deep-purple); margin-top: 0.55rem; font-weight: 600; }
.ritual-card p   { color: rgba(59,42,92,0.8); font-size: 0.95rem; line-height: 1.6; margin-top: 0.55rem; }

/* Membership benefit hover-glow override */
.benefit-glow {
  background: linear-gradient(160deg, #FFFDF9, #F4ECE0);
  border: 1px solid rgba(214,168,90,0.25);
  border-radius: 1.25rem;
  padding: 1.85rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.benefit-glow:hover {
  transform: translateY(-3px);
  border-color: rgba(214,168,90,0.6);
  box-shadow: 0 20px 50px -20px rgba(214,168,90,0.45), inset 0 0 22px rgba(214,168,90,0.06);
}

/* ============================================================
   Member Portal (login / register / member-dashboard / admin-dashboard)
   ============================================================ */
.portal-shell {
  min-height: 100vh;
  background: linear-gradient(180deg, #FAF7F2 0%, #F0E6D8 100%);
  display: flex; flex-direction: column;
}
.portal-page { max-width: 1200px; margin: 0 auto; padding: 1.5rem; width: 100%; }
@media (min-width: 768px) { .portal-page { padding: 2.5rem; } }

.portal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(253,251,247,0.92);
  border-bottom: 1px solid rgba(212,168,90,0.25);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 50;
}

/* Auth (login / register) card */
.auth-card {
  max-width: 460px;
  margin: 4rem auto;
  background: #FFFFFF;
  border: 1px solid rgba(22,26,39,0.08);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(22,26,39,0.04), 0 18px 38px -18px rgba(22,26,39,0.18);
}
@media (min-width: 768px) { .auth-card { padding: 2.5rem; margin-top: 5rem; } }
.auth-card h1 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 2.1rem; color: var(--deep-purple);
  font-weight: 600; letter-spacing: -0.005em;
  text-align: center;
}
.auth-card .auth-sub { text-align: center; color: rgba(59,42,92,0.7); margin: 0.4rem 0 1.5rem; font-size: 0.95rem; }

/* Subscription / status banner */
.sub-banner {
  background: linear-gradient(135deg, rgba(214,168,90,0.1), rgba(75,46,99,0.07));
  border: 1px solid rgba(214,168,90,0.32);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem;
  color: var(--deep-purple);
}
.sub-banner.inactive { background: linear-gradient(135deg, rgba(192,73,73,0.06), rgba(75,46,99,0.05)); border-color: rgba(192,73,73,0.3); }
.sub-banner h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--deep-purple); font-weight: 600; }
.sub-banner p   { font-size: 0.88rem; color: rgba(59,42,92,0.75); margin-top: 0.15rem; }

/* Plan pill */
.plan-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  background: linear-gradient(135deg, #D6B77C, #E5C77B);
  color: var(--deep-purple);
  border-radius: 9999px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
}
.plan-pill.muted { background: rgba(22,26,39,0.08); color: var(--deep-purple); }
.plan-pill.expired { background: rgba(192,73,73,0.15); color: #7a3a2c; }

/* Member content card */
.content-card {
  background: #FFFFFF;
  border: 1px solid rgba(22,26,39,0.08);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(22,26,39,0.04), 0 12px 26px -16px rgba(22,26,39,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column;
  position: relative;
}
.content-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214,168,90,0.45);
  box-shadow: 0 4px 8px rgba(22,26,39,0.06), 0 22px 44px -16px rgba(22,26,39,0.22);
}
.content-card .thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #D6B77C, #4B2E63);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  color: rgba(255,255,255,0.85);
  position: relative;
}
.content-card .thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.content-card .body { padding: 1rem 1.1rem; flex: 1; display: flex; flex-direction: column; }
.content-card .type-badge {
  display: inline-block;
  font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 700;
  color: var(--soft-gold);
}
.content-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  color: var(--deep-purple);
  font-weight: 600;
  margin-top: 0.3rem;
  line-height: 1.25;
}
.content-card p {
  color: rgba(59,42,92,0.72);
  font-size: 0.85rem;
  margin-top: 0.4rem;
  line-height: 1.5;
}
.content-card .actions { margin-top: auto; padding-top: 0.9rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.content-card .lock-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,26,39,0.55), rgba(22,26,39,0.85));
  color: #fff;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.5rem;
  padding: 1rem;
  text-align: center;
  backdrop-filter: blur(2px);
}
.content-card .lock-overlay .lock-icon { font-size: 1.7rem; opacity: 0.9; }
.content-card .lock-overlay span { font-size: 0.85rem; letter-spacing: 0.04em; }

/* Watch / Join / Download button */
.btn-watch {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  background: var(--deep-purple);
  color: #fff;
  border-radius: 9999px;
  font-size: 0.82rem; font-weight: 500;
  border: none; cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn-watch:hover { background: linear-gradient(135deg, #D6B77C, #E5C77B); color: var(--deep-purple); }
.btn-watch.live { background: linear-gradient(135deg, #d94e4e, #b83232); color: #fff; box-shadow: 0 0 0 3px rgba(217,78,78,0.18); }
.btn-watch.live:hover { background: #b83232; }

/* Tabs (member + admin dashboards) */
.member-tabs {
  display: flex; gap: 0.4rem; flex-wrap: wrap;
  border-bottom: 1px solid rgba(75,46,99,0.12);
  margin-bottom: 1.5rem;
  overflow-x: auto;
}
.member-tabs button {
  padding: 0.7rem 1rem;
  border: none; background: none;
  font-family: inherit; font-size: 0.92rem;
  color: rgba(59,42,92,0.65);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.member-tabs button:hover { color: var(--deep-purple); }
.member-tabs button.active { color: var(--deep-purple); border-bottom-color: var(--soft-gold); font-weight: 500; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--deep-purple);
  font-weight: 600;
  letter-spacing: -0.005em;
}

/* ============================================================
   Social media icon links — Instagram & Facebook
   ============================================================ */
.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: rgba(75,46,99,0.06);
  color: var(--deep-purple);
  border: 1px solid rgba(75,46,99,0.10);
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.social-link svg {
  width: 18px; height: 18px;
  display: block;
  stroke: currentColor;
}
.social-link:hover {
  transform: translateY(-2px);
  color: var(--soft-gold);
  background: rgba(212,168,90,0.10);
  border-color: rgba(212,168,90,0.45);
  box-shadow: 0 0 18px rgba(201,164,106,0.28);
}
/* Compact navbar variant */
.social-link.nav { width: 36px; height: 36px; }
.social-link.nav svg { width: 16px; height: 16px; }
/* Dark theme variant for use on the indigo footer */
.social-link.dark {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.10);
}
.social-link.dark:hover {
  background: rgba(212,168,90,0.16);
  color: var(--soft-gold);
  border-color: rgba(214,168,90,0.55);
  box-shadow: 0 0 22px rgba(214,168,90,0.32);
}

/* Soft fade-in entrance — applied to .social-fadein wrappers */
@keyframes social-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.social-fadein .social-link {
  opacity: 0;
  animation: social-fade-in 0.55s ease forwards;
}
.social-fadein .social-link:nth-child(1) { animation-delay: 0.10s; }
.social-fadein .social-link:nth-child(2) { animation-delay: 0.22s; }
.social-fadein .social-link:nth-child(3) { animation-delay: 0.34s; }

/* =====================================================================
   PREMIUM PHOTOGRAPHY — cinematic image system
   =====================================================================
   To swap any photo across the site, search for its data-photo-key
   (e.g. "hero-home") and replace the src URL. URLs are Unsplash CDN.
   ===================================================================== */

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: 0 20px 50px -22px rgba(59, 42, 92, 0.35), 0 8px 24px -14px rgba(59, 42, 92, 0.18);
  isolation: isolate;
  background: rgba(212, 168, 90, 0.06);
}
.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
  filter: saturate(0.93) contrast(1.02);
  animation: photo-fade-in 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.photo-frame:hover img { transform: scale(1.045); filter: saturate(1) contrast(1.04); }
.photo-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(250,247,242,0.02) 0%, rgba(212,168,90,0.05) 40%, rgba(59,42,92,0.18) 100%);
  pointer-events: none; z-index: 1;
}
@keyframes photo-fade-in {
  from { opacity: 0; transform: scale(1.06); }
  to   { opacity: 1; transform: scale(1); }
}

.aspect-portrait  { aspect-ratio: 4 / 5; }
.aspect-landscape { aspect-ratio: 16 / 10; }
.aspect-square    { aspect-ratio: 1 / 1; }
.aspect-wide      { aspect-ratio: 21 / 9; }
.aspect-tall      { aspect-ratio: 3 / 4; }

.service-thumb {
  position: relative;
  overflow: hidden;
  margin: -1.75rem -1.75rem 0.25rem -1.75rem;
  aspect-ratio: 16 / 10;
  border-radius: 1rem 1rem 0 0;
}
.service-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(0.95);
}
.card:hover .service-thumb img { transform: scale(1.06); }
.service-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(59,42,92,0.42) 100%);
  pointer-events: none;
}

.portrait {
  border-radius: 9999px;
  object-fit: cover;
  border: 2px solid rgba(212, 168, 90, 0.5);
  box-shadow: 0 6px 16px -4px rgba(59, 42, 92, 0.22);
}
.portrait.sm { width: 48px; height: 48px; }
.portrait.md { width: 64px; height: 64px; }
.portrait.lg { width: 88px; height: 88px; }

.atmosphere-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
@media (min-width: 768px) {
  .atmosphere-grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
}
.atmosphere-grid .photo-frame { border-radius: 0.85rem; }
.atmosphere-grid .photo-frame img { aspect-ratio: 4 / 5; }

.retreat-card-photo {
  position: relative;
  aspect-ratio: 5 / 3;
  overflow: hidden;
}
.retreat-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover .retreat-card-photo img { transform: scale(1.05); }
.retreat-card-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(59,42,92,0.55) 100%);
  pointer-events: none;
}

footer.with-texture { position: relative; }
footer.with-texture::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(212, 168, 90, 0.10), transparent 38%),
    radial-gradient(circle at 80% 75%, rgba(212, 168, 90, 0.07), transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(212, 168, 90, 0.04), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
footer.with-texture > * { position: relative; z-index: 1; }

.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-split { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
}
.hero-split .photo-frame { aspect-ratio: 4 / 5; }
@media (min-width: 1024px) {
  .hero-split .photo-frame { aspect-ratio: 4 / 5; max-height: 640px; }
}

/* =====================================================================
   HERO IMAGE SLIDER — pure-CSS cross-fade gallery
   ===================================================================== */
.hero-slider { position: relative; width: 100%; height: 100%; }
.hero-slider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.93) contrast(1.02);
  animation: hero-fade 24s infinite ease-in-out;
}
.hero-slider img:nth-child(1) { animation-delay: 0s; }
.hero-slider img:nth-child(2) { animation-delay: 6s; }
.hero-slider img:nth-child(3) { animation-delay: 12s; }
.hero-slider img:nth-child(4) { animation-delay: 18s; }
@keyframes hero-fade {
  0%   { opacity: 0; transform: scale(1.02); }
  8%   { opacity: 1; transform: scale(1); }
  25%  { opacity: 1; transform: scale(1.015); }
  33%  { opacity: 0; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(1.02); }
}
.hero-slider .slider-progress {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.5rem;
  z-index: 2;
}
.hero-slider .slider-progress span {
  width: 22px; height: 2px;
  background: rgba(250, 247, 242, 0.45);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.hero-slider .slider-progress span::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(250, 247, 242, 0.95);
  transform-origin: left center;
  animation: slider-tick 24s infinite linear;
}
.hero-slider .slider-progress span:nth-child(1)::after { animation-delay: 0s; }
.hero-slider .slider-progress span:nth-child(2)::after { animation-delay: 6s; }
.hero-slider .slider-progress span:nth-child(3)::after { animation-delay: 12s; }
.hero-slider .slider-progress span:nth-child(4)::after { animation-delay: 18s; }
@keyframes slider-tick {
  0%   { transform: scaleX(0); }
  25%  { transform: scaleX(1); }
  26%  { transform: scaleX(0); }
  100% { transform: scaleX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider img { animation: none; }
  .hero-slider img:nth-child(1) { opacity: 1; }
  .hero-slider .slider-progress { display: none; }
}

/* =====================================================================
   ATMOSPHERIC SECTION BACKGROUND — low-opacity photo wash
   ===================================================================== */
.bg-atmospheric {
  position: relative;
  isolation: isolate;
}
.bg-atmospheric::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--atmos-image, none);
  background-size: cover;
  background-position: center;
  opacity: 0.10;
  filter: saturate(0.6) contrast(0.95);
  mix-blend-mode: multiply;
  z-index: -1;
}
.bg-atmospheric::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(253, 251, 247, 0.55) 0%, rgba(253, 251, 247, 0.78) 50%, rgba(253, 251, 247, 0.95) 100%);
  pointer-events: none;
  z-index: -1;
}
.bg-atmospheric.dark::after {
  background: linear-gradient(180deg, rgba(59, 42, 92, 0.7) 0%, rgba(59, 42, 92, 0.55) 100%);
}

/* =====================================================================
   DAY PILLS — tiny ritual icons above each day name
   ===================================================================== */
.day-pill .day-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.65rem;
  width: 28px; height: 28px;
  color: var(--soft-gold);
  opacity: 0.85;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.day-pill:hover .day-icon { transform: translateY(-2px); }
.day-pill .day-icon svg { width: 22px; height: 22px; stroke-width: 1.4; }

/* =====================================================================
   FOOTER — sacred geometry texture (SVG concentric pattern, no HTTP)
   ===================================================================== */
footer.with-texture::before {
  /* Sacred geometry: flower-of-life inspired concentric circles, very subtle */
  background:
    radial-gradient(circle at 18% 22%, rgba(212, 168, 90, 0.09), transparent 38%),
    radial-gradient(circle at 82% 78%, rgba(212, 168, 90, 0.07), transparent 42%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240' width='240' height='240'><g fill='none' stroke='rgba(212,168,90,0.10)' stroke-width='0.7'><circle cx='120' cy='120' r='34'/><circle cx='120' cy='86' r='34'/><circle cx='120' cy='154' r='34'/><circle cx='90.5' cy='103' r='34'/><circle cx='90.5' cy='137' r='34'/><circle cx='149.5' cy='103' r='34'/><circle cx='149.5' cy='137' r='34'/></g></svg>");
  background-size: auto, auto, 240px 240px;
  background-position: 0 0, 0 0, center;
  background-repeat: no-repeat, no-repeat, repeat;
  opacity: 0.9;
}

/* Subtle film-grain layer on top of the geometry — atmospheric depth */
footer.with-texture::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.85 0 0 0 0 0.65 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
  background-repeat: repeat;
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

/* =====================================================================
   CINEMATIC DIVIDER BANDS — full-width photo with overlay quote
   =====================================================================
   Used between content blocks to break the rhythm of consecutive cards.
   Image attaches to viewport on desktop for parallax; falls back gracefully
   on mobile (fixed-attachment is iOS-hostile). */
.cinematic-band {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--deep-purple);
  background-image: var(--band-image, none);
  background-size: cover;
  background-position: center;
}
@media (min-width: 1024px) {
  .cinematic-band { background-attachment: fixed; min-height: 62vh; }
}
.cinematic-band::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(59, 42, 92, 0.35) 0%, rgba(59, 42, 92, 0.18) 45%, rgba(59, 42, 92, 0.55) 100%);
  pointer-events: none;
}
.cinematic-band .band-inner {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  padding: 5rem 1.5rem;
  text-align: center;
  color: var(--cream);
}
.cinematic-band .band-quote {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.85rem, 4.2vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(14px);
  animation: band-quote-rise 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.cinematic-band .band-mark {
  display: inline-block;
  width: 38px;
  height: 1px;
  background: rgba(229, 192, 123, 0.7);
  margin-bottom: 1.5rem;
}
@keyframes band-quote-rise {
  to { opacity: 1; transform: translateY(0); }
}

/* =====================================================================
   CTA SECTION — slow radial glow (gentle ambient motion)
   ===================================================================== */
.cta-glow { position: relative; overflow: hidden; }
.cta-glow::before {
  content: '';
  position: absolute;
  width: 140%; height: 140%;
  top: -20%; left: -20%;
  background:
    radial-gradient(circle at 30% 40%, rgba(212, 168, 90, 0.18), transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(156, 175, 136, 0.10), transparent 38%);
  filter: blur(40px);
  animation: cta-glow-drift 22s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes cta-glow-drift {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(2%, -1%) rotate(2deg); }
  100% { transform: translate(-1%, 2%) rotate(-2deg); }
}
.cta-glow > * { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .cta-glow::before { animation: none; }
}

/* =====================================================================
   SOCIAL CARDS — gentle lift + warm glow on hover
   ===================================================================== */
.social-card-link {
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s ease,
    border-color 0.4s ease;
}
.social-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px -22px rgba(212, 168, 90, 0.35), 0 6px 18px -12px rgba(59, 42, 92, 0.22);
}

/* =====================================================================
   SACRED ACCESS FEATURE PHOTO (right column on homepage preview)
   ===================================================================== */
.sacred-feature-photo {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
  box-shadow: 0 18px 40px -22px rgba(59, 42, 92, 0.28);
}
.sacred-feature-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(0.93) contrast(1.02);
}
.sacred-feature-photo:hover img { transform: scale(1.04); }
.sacred-feature-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(59, 42, 92, 0.32) 100%);
  pointer-events: none;
}

/* =====================================================================
   BOOKING — locked service display (when ?selectedLevel is passed)
   ===================================================================== */
.locked-service {
  margin-top: 0.4rem;
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(212,168,90,0.10), rgba(229,192,123,0.05));
  border: 1px solid rgba(212,168,90,0.42);
  box-shadow: 0 4px 16px -8px rgba(212,168,90,0.22);
}
.locked-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.locked-service-text { min-width: 0; }
.locked-service-eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--soft-gold);
  font-weight: 600;
  margin: 0;
}
.locked-service-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--deep-purple);
  margin: 0.25rem 0 0;
}
.locked-service-pill {
  flex-shrink: 0;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgba(59, 42, 92, 0.92);
  color: var(--cream);
}
.locked-service-meta {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  color: rgba(59, 42, 92, 0.65);
  letter-spacing: 0.01em;
}

/* =====================================================================
   VIDEO PLACEHOLDER — premium 'coming soon' card for retreat detail pages
   ===================================================================== */
.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1.25rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 168, 90, 0.18), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(156, 175, 136, 0.10), transparent 55%),
    linear-gradient(135deg, #3B2A5C 0%, #4A3B6B 100%);
  box-shadow: 0 30px 60px -28px rgba(59, 42, 92, 0.4);
}
.video-placeholder-inner {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--cream);
}
.video-play-icon {
  width: 78px; height: 78px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(212, 168, 90, 0.25), rgba(229, 192, 123, 0.15));
  border: 1px solid rgba(212, 168, 90, 0.5);
  color: var(--soft-gold);
  font-size: 1.8rem;
  padding-left: 6px;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px -8px rgba(212, 168, 90, 0.4);
}
.video-placeholder-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  margin: 0;
}
.video-placeholder-sub {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.7);
  margin: 0.5rem 0 0;
  max-width: 32rem;
  line-height: 1.5;
}

/* Wesakha partner chip — subtle hover lift on the 8 category cards */
.wesakha-chip {
  text-decoration: none;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
}
.wesakha-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 168, 90, 0.5) !important;
  box-shadow: 0 14px 28px -16px rgba(212, 168, 90, 0.32);
}

/* =====================================================================
   HEADER LAYOUT — two-row grid on desktop/laptop
   =====================================================================
   Row 1: logo · nav · social icons
   Row 2: centered "Join Sacred Access" CTA
   Mobile is unchanged (Tailwind's `lg:hidden` keeps the hamburger flow).
   ===================================================================== */
/* =====================================================================
   HEADER — CSS GRID layout (per spec)
   =====================================================================
   < 1200px  → hamburger menu (don't try to fit 11 nav items)
   ≥ 1200px  → 4-column grid: [brand 320px] [nav minmax(0,1fr)] [CTA auto] [socials auto]
               Each zone is its own grid column. Brand cannot overlap nav,
               nav cannot overlap CTA, etc. The grid tracks are physical.
   ===================================================================== */

/* ----- 1024–1365px: force the hamburger ----------------------------------
   With 11 top-level nav items + brand + CTA + socials, a single premium-sized
   row only fits comfortably from ~1366px up. Below that we use the hamburger
   instead of cramming (which is what caused the brand/nav overlap). --------- */
@media (min-width: 1024px) and (max-width: 1365px) {
  /* Hide desktop nav/CTA/socials (Tailwind's lg:* would otherwise show them) */
  #site-header > div:not(#mobile-menu) > nav,
  #site-header > div:not(#mobile-menu) > a.btn,
  #site-header .social-fadein {
    display: none !important;
  }
  /* Show hamburger (Tailwind hides it at lg+) */
  #site-header #menu-toggle { display: flex !important; }
  /* Make the mobile menu togglable in this range */
  #site-header #mobile-menu          { display: block !important; }
  #site-header #mobile-menu.hidden   { display: none  !important; }
  /* Header row at this size — simple flex: brand left, hamburger right */
  #site-header > div:not(#mobile-menu) {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }
}

/* ----- ≥1366px: single-row FLEXBOX desktop header ------------------------
   brand (fixed, never shrinks) · nav (fills middle, centered) · CTA · socials
   The nav is a flex child with min-width:0 so it shares the row instead of
   spilling over its neighbours, and a guaranteed gap keeps the first link
   well clear of the logo. -------------------------------------------------- */
@media (min-width: 1366px) {
  /* Let the header bar use the FULL viewport width (the page content below
     stays capped at max-w-7xl). This is what gives 11 items room to sit on
     one row without colliding. Overrides Tailwind's `max-w-7xl mx-auto`. */
  #site-header > div:not(#mobile-menu) {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;            /* nav vertically centered against the logo */
    justify-content: space-between;
    column-gap: 40px;
    width: 100%;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  /* Brand — far left, MUST NOT shrink below its intended size */
  #site-header .brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: 24px;             /* 24px + 40px column-gap = 64px min to nav */
  }

  /* Nav — fills the middle track, single row, equal spacing, centered.
     Fixed (non-vw) sizing so it never inflates past the row. */
  #site-header nav {
    flex: 1 1 auto;
    min-width: 0;                   /* share the row, don't spill over neighbours */
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 16px;                      /* equal spacing between items */
    white-space: nowrap;
    font-size: 14px;
  }
  #site-header nav a {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* CTA — never shrinks, sits to the right of the nav */
  #site-header > div:not(#mobile-menu) > a.btn {
    flex: 0 0 auto;
    padding: 10px 20px !important;
    font-size: 14px !important;
    white-space: nowrap;
  }

  /* Social icons — never shrink, far right */
  #site-header .social-fadein {
    flex: 0 0 auto;
    display: flex !important;
    gap: 8px;
  }
}

/* ----- 1366–1599px: tighten nav + hide socials so it all fits cleanly ---- */
@media (min-width: 1366px) and (max-width: 1599px) {
  #site-header nav { gap: 13px; font-size: 13.5px; }
  #site-header .social-fadein { display: none !important; }
}

/* ----- ≥1700px: a touch more breathing room ----------------------------- */
@media (min-width: 1700px) {
  #site-header nav { gap: 22px; font-size: 15px; }
}

/* =====================================================================
   CONTACT PAGE — email + WhatsApp cards
   ===================================================================== */
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s ease,
    border-color 0.4s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -24px rgba(212, 168, 90, 0.32), 0 8px 22px -12px rgba(59, 42, 92, 0.18);
  border-color: rgba(212, 168, 90, 0.45);
}
.contact-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 168, 90, 0.18), rgba(229, 192, 123, 0.10));
  border: 1px solid rgba(212, 168, 90, 0.45);
  color: var(--soft-gold);
  box-shadow: 0 8px 22px -10px rgba(212, 168, 90, 0.32);
}
.contact-icon.whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(37, 211, 102, 0.08));
  border-color: rgba(37, 211, 102, 0.4);
  color: #25D366;
  box-shadow: 0 8px 22px -10px rgba(37, 211, 102, 0.32);
}
.contact-link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: var(--deep-purple);
  word-break: break-word;
  transition: color 0.3s ease;
}
.contact-link:hover { color: var(--soft-gold); }

/* WhatsApp button — green primary, sized like .btn-primary */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 9999px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #25D366, #1da851);
  color: #fff;
  border: 1px solid rgba(29, 168, 81, 0.35);
  box-shadow: 0 10px 24px -10px rgba(37, 211, 102, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.3s ease;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.55);
  filter: brightness(1.05);
}

/* Instagram contact-card icon — official IG gradient */
.contact-icon.instagram {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.18), rgba(247, 119, 55, 0.10), rgba(252, 175, 69, 0.10));
  border-color: rgba(225, 48, 108, 0.4);
  color: #E1306C;
  box-shadow: 0 8px 22px -10px rgba(225, 48, 108, 0.32);
}

/* Instagram button — official multi-stop brand gradient */
.btn-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 9999px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #FCAF45 0%, #F77737 25%, #E1306C 50%, #C13584 75%, #833AB4 100%);
  color: #fff;
  border: 1px solid rgba(193, 53, 132, 0.35);
  box-shadow: 0 10px 24px -10px rgba(225, 48, 108, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.3s ease;
}
.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(225, 48, 108, 0.55);
  filter: brightness(1.05);
}

/* =====================================================================
   SHOP — luxury product cards (Aesop / Aman boutique feel)
   ===================================================================== */
.product-card {
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.55s ease,
    border-color 0.4s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 24px 50px -26px rgba(212, 168, 90, 0.32),
    0 10px 24px -14px rgba(59, 42, 92, 0.22);
}

.product-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #FAF7F2 0%, #F0E6D8 100%);
}
.product-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(0.92) contrast(1.02);
}
.product-card:hover .product-photo img { transform: scale(1.06); }
.product-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(59, 42, 92, 0.10) 100%);
  pointer-events: none;
}

/* =====================================================================
   SHOP HERO — right-side image collage
   ===================================================================== */
.shop-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .shop-collage { gap: 1.1rem; max-width: 560px; margin-left: auto; }
}
.shop-collage .photo-frame {
  border-radius: 1rem;
  aspect-ratio: 1 / 1;
}
.shop-collage .photo-frame:nth-child(1) {
  grid-row: span 2;
  aspect-ratio: 1 / 2.05;
}
.shop-collage .photo-frame:nth-child(1) img {
  height: 100%;
}

/* Shop hero — text-left + collage-right responsive grid */
.shop-hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .shop-hero-split { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* =====================================================================
   LIFESTYLE BANNER — full-width inline strip between sections
   (uses .cinematic-band but with a lighter, warmer feel)
   ===================================================================== */
.lifestyle-band {
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--ivory);
  background-image: var(--band-image, none);
  background-size: cover;
  background-position: center;
}
@media (min-width: 1024px) {
  .lifestyle-band { background-attachment: fixed; min-height: 50vh; }
}
.lifestyle-band::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(250, 247, 242, 0.55) 0%, rgba(250, 247, 242, 0.30) 50%, rgba(59, 42, 92, 0.32) 100%);
  pointer-events: none;
}
.lifestyle-band .band-inner {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  padding: 4rem 1.5rem;
  text-align: center;
  color: var(--deep-purple);
}
.lifestyle-band .band-quote {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--deep-purple);
  text-shadow: 0 2px 14px rgba(250, 247, 242, 0.5);
  opacity: 0;
  transform: translateY(12px);
  animation: band-quote-rise 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.lifestyle-band .band-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
