/* Astromin — Vedic Astrology & Research */

:root {
  --ink: #191410;
  --ink-soft: #4a443d;
  --cream: #fbf8f3;
  --cream-dark: #f1e9dc;
  --white: #ffffff;
  --gold: #9c7616;
  --gold-light: #d8a93f;
  --gold-bright: #f0c75e;
  --gold-muted: #d8a93f;
  --gold-glow: rgba(216, 169, 63, 0.32);
  --maroon: #7d2e46;
  --maroon-deep: #37101f;
  --maroon-rich: #7d2e46;
  --charcoal: #0f0b16;
  --border: #e0d6c6;
  --gold-rgb: 216, 169, 63;
  --maroon-rgb: 125, 46, 70;
  --ink-rgb: 25, 20, 16;
  --indigo: #241a4d;
  --indigo-deep: #0f0a24;
  --violet: #6d5bd0;
  --violet-rgb: 109, 91, 208;
  --night-1: #120c26;
  --night-2: #1c1440;
  --night-3: #0a0716;
  --serif: "Cormorant Garamond", "Georgia", serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
  --font-size-base: 17px;
  --shadow-sm: 0 4px 16px rgba(var(--ink-rgb), 0.06);
  --shadow-md: 0 12px 40px rgba(var(--ink-rgb), 0.09);
  --shadow-lg: 0 24px 60px rgba(var(--ink-rgb), 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --logo-height: 96px;
  --logo-height-mobile: 80px;
  --logo-max-width: 320px;
  --footer-logo-height: 72px;
  --nav-font-size: 15px;
  --container-max: 1120px;
  --section-spacing: 5rem;
  --hero-h1-min: 42px;
  --hero-h1-max: 64px;
  --h2-size: 38px;
  --logo-text-size: 24px;
  --logo-tagline-size: 12px;
  --header-padding: 16px;
  --hero-portrait-max: 420px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--sans);
  font-size: var(--font-size-base, 1.0625rem);
  line-height: 1.75;
  color: var(--ink-soft);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  background:
    radial-gradient(circle at 0% 0%, rgba(var(--gold-rgb), 0.06), transparent 40%),
    radial-gradient(circle at 100% 30%, rgba(var(--maroon-rgb), 0.04), transparent 35%),
    var(--cream);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--maroon);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.35rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, var(--h2-size, 2.35rem)); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }

p + p { margin-top: 1rem; }

.container {
  width: min(var(--container-max, 1120px), 92vw);
  margin-inline: auto;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card.reveal:nth-child(2) { transition-delay: 0.08s; }
.card.reveal:nth-child(3) { transition-delay: 0.16s; }
.step-card.reveal:nth-child(2) { transition-delay: 0.06s; }
.step-card.reveal:nth-child(3) { transition-delay: 0.12s; }
.step-card.reveal:nth-child(4) { transition-delay: 0.18s; }

/* Top bar */
.top-bar {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}

.top-bar-link {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.top-bar-link:hover {
  color: white;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-nav {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.65rem;
  display: inline-block;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transform: translateX(-50%);
}

.section-header .section-label::after {
  left: 50%;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.75);
}

.section-label-light::after {
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.8), transparent);
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.page-hero-lead {
  font-size: 1.15rem;
  margin-top: 0.75rem;
  max-width: 55ch;
  color: var(--ink-soft);
}

.page-hero-actions {
  margin-top: 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

body.header-transparent .site-header {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

body.header-transparent .site-header.is-scrolled {
  background: rgba(255, 252, 247, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(42, 24, 16, 0.06);
}

body.header-static .site-header {
  position: relative;
  top: auto;
}

body.no-top-bar .site-header {
  top: 0;
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--white) 96%, transparent);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--header-padding, 1rem) 0;
  gap: 1.5rem;
}

.site-branding-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  max-width: min(52vw, calc(var(--logo-max-width, 320px) + 12rem));
}

.site-branding-wrap .custom-logo-link {
  flex-shrink: 0;
}

.logo-tag-beside {
  font-size: var(--logo-tagline-size, 0.75rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  line-height: 1.3;
  max-width: 10rem;
}

.logo {
  text-decoration: none;
  color: var(--ink);
}

.logo-name {
  font-family: var(--serif);
  font-size: var(--logo-text-size, 1.5rem);
  font-weight: 600;
  display: block;
  line-height: 1.2;
}

.logo-tag {
  font-size: var(--logo-tagline-size, 0.75rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.logo-image img,
.custom-logo-link img,
.custom-logo {
  max-height: var(--logo-height, 96px);
  max-width: var(--logo-max-width, 320px);
  width: auto;
  height: auto;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.site-branding-wrap-footer .custom-logo-link img,
.site-branding-wrap-footer .custom-logo {
  max-height: var(--footer-logo-height, 72px);
}

.site-footer .logo-name {
  color: white;
}

.site-footer .logo-tag,
.site-footer .logo-tag-beside {
  color: rgba(255, 255, 255, 0.72);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  list-style: none;
}

.nav-list a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: var(--nav-font-size, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-list a:hover,
.nav-list a.active,
.nav-list .current-menu-item > a {
  color: var(--maroon);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 1.1rem;
  border-radius: 4px;
}

/* Hero */
.hero-premium {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(251, 248, 243, 0.74) 0%, rgba(251, 248, 243, 0.62) 100%),
    url("../images/hero-ambient.jpg") center right / cover no-repeat,
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(var(--gold-rgb), 0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(var(--maroon-rgb), 0.1), transparent 50%),
    linear-gradient(165deg, var(--cream-dark) 0%, var(--cream) 45%, var(--white) 100%);
}

.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(var(--maroon-rgb), 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, black 20%, transparent 95%);
  pointer-events: none;
}

.hero-premium .container {
  position: relative;
  z-index: 1;
}

.hero-premium h1 {
  font-size: clamp(var(--hero-h1-min, 2.6rem), 6vw, var(--hero-h1-max, 4rem));
  margin-bottom: 0.35rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--ink) 0%, var(--maroon-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 500;
  color: var(--maroon);
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.1rem;
  margin: 0 0 1.75rem;
  max-width: 44ch;
  line-height: 1.8;
  color: var(--ink-soft);
}

.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.75rem;
}

.hero-credential-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--maroon);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(var(--maroon-rgb), 0.15);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}

.hero-frame {
  position: relative;
  padding: 0.7rem;
  background: linear-gradient(145deg, #fff, var(--cream-dark));
  border: 1px solid rgba(var(--gold-rgb), 0.4);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(var(--gold-rgb), 0.15),
    var(--shadow-lg),
    0 0 60px rgba(var(--gold-rgb), 0.18);
  transform: rotate(1deg);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(145deg, rgba(var(--gold-rgb), 0.7), transparent 40%, transparent 60%, rgba(var(--gold-rgb), 0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-visual-placeholder,
.hero-visual.hero-frame .hero-visual-placeholder {
  aspect-ratio: 4/5;
  border-radius: calc(var(--radius-lg) - 4px);
  background:
    radial-gradient(circle at 50% 35%, rgba(var(--gold-rgb), 0.25), transparent 45%),
    linear-gradient(160deg, var(--maroon-deep) 0%, var(--maroon) 45%, var(--maroon-rich) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-ornament-rings {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 28%, rgba(var(--gold-rgb), 0.12) 29%, transparent 30%),
    radial-gradient(circle at center, transparent 48%, rgba(255, 255, 255, 0.06) 49%, transparent 50%),
    radial-gradient(circle at center, transparent 68%, rgba(var(--gold-rgb), 0.08) 69%, transparent 70%);
  animation: pulse-ring 8s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

.hero-placeholder-title {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 0.5rem;
  text-align: center;
  padding: 0 1rem;
}

/* Trust strip */
.trust-strip {
  background: linear-gradient(90deg, var(--maroon-deep), var(--maroon-rich) 50%, var(--maroon-deep));
  border: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  padding: 1.15rem 0;
}

.trust-item {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.trust-item::before {
  content: "✦ ";
  color: var(--gold-light);
  font-size: 0.65rem;
  vertical-align: middle;
}

/* Quote */
.quote-section {
  padding: 4rem 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 100%, rgba(var(--gold-rgb), 0.15), transparent),
    linear-gradient(180deg, var(--charcoal) 0%, #1a1512 100%);
  color: white;
  position: relative;
}

.quote-section::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 1;
  color: rgba(var(--gold-rgb), 0.08);
  pointer-events: none;
}

.sanskrit-quote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.quote-devanagari {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  margin-bottom: 1.25rem;
  font-weight: 600;
  background: linear-gradient(100deg, var(--gold-light) 0%, var(--gold-bright, #f0c75e) 45%, #fff3cf 55%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.quote-translation {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  font-style: italic;
  line-height: 1.75;
}

/* Dark section */
.section-dark {
  background:
    radial-gradient(ellipse 75% 80% at 0% 50%, rgba(var(--maroon-rgb), 0.42), transparent 60%),
    radial-gradient(ellipse 55% 65% at 100% 80%, rgba(var(--violet-rgb, 109, 91, 208), 0.28), transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 10%, rgba(var(--gold-rgb), 0.14), transparent 55%),
    linear-gradient(165deg, var(--night-2, #1c1440) 0%, var(--indigo, #241a4d) 35%, var(--night-3, #0a0716) 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 5rem 0;
}

.section-dark h2,
.section-dark h3 {
  color: white;
}

.section-header-light p {
  color: rgba(255, 255, 255, 0.7);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step-card {
  padding: 1.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(var(--gold-rgb), 0.35);
}

.step-num {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.step-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Principles */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.principle-card {
  padding: 2rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cards-premium .card {
  border-top: none;
  position: relative;
  overflow: hidden;
}

.cards-premium .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-muted), var(--gold-light), var(--maroon));
}

.principle-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.principle-card p {
  font-size: 0.95rem;
  margin: 0;
}
.research-banner-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.research-facts {
  list-style: none;
  margin: 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.research-facts li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.research-facts li:last-child {
  border-bottom: none;
}

.research-facts li::before {
  content: "✓ ";
  color: var(--gold-light);
}

/* Affiliation */
.affiliation-section {
  padding: 5rem 0;
  background:
    linear-gradient(180deg, white 0%, var(--cream-dark) 100%);
  border-top: 1px solid var(--border);
}

.affiliation-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.affiliation-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Footer premium */
.footer-grid-premium {
  grid-template-columns: 2fr 1fr 1fr;
}

.footer-disclaimer {
  font-size: 0.85rem;
  margin-top: 1rem;
  opacity: 0.75;
  max-width: 36ch;
}

.sidebar-highlight {
  border-top: 3px solid var(--gold);
}

.sidebar-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.sidebar-note {
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

.sidebar-price {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 1rem;
}

.sidebar-price span {
  display: block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-soft);
  margin-top: 0.25rem;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 0.65rem;
}

button.btn {
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
}

button.btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.btn-intl {
  margin-top: 0;
}

/* Consultation pricing */
.pricing-section {
  margin: 2.5rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.consultation-main .pricing-section {
  margin-top: 2.5rem;
  max-width: none;
}

.pricing-intro {
  max-width: 58ch;
  margin-bottom: 1.75rem;
  color: var(--ink-soft);
}

.pricing-currency {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0.85rem 1rem;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.pricing-currency-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-right: 0.25rem;
}

.pricing-currency-btn {
  padding: 0.45rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--maroon);
  background: var(--white);
  border: 1px solid rgba(var(--maroon-rgb), 0.3);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pricing-currency-btn:hover {
  border-color: var(--maroon);
}

.pricing-currency-btn.is-active {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

.pricing-currency-note {
  flex: 1 1 100%;
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.booking-trust {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
}

.booking-trust li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.booking-trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--gold);
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 1100px) {
  .consultation-layout .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consultation-pricing-wrap {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .consultation-sidebar {
    grid-row: 2;
  }
}

.pricing-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(120, 80, 40, 0.08);
}

.pricing-badge {
  position: absolute;
  top: -0.65rem;
  left: 1rem;
  background: var(--maroon);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
}

.pricing-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.pricing-duration {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.pricing-amount {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 0.25rem;
}

.pricing-usd {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.pricing-desc {
  font-size: 0.92rem;
  flex-grow: 1;
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
}

.pricing-steps {
  background: var(--cream-dark);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
}

.pricing-steps h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.pricing-steps ol {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}

.pricing-steps li {
  margin-bottom: 0.4rem;
}

.pricing-note {
  font-size: 0.9rem;
  margin: 0;
}

.pricing-store-cta {
  text-align: center;
  margin-bottom: 0.75rem;
}

.pricing-store-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.page-hero .breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: var(--ink-soft);
}

.page-hero .breadcrumb a {
  text-decoration: none;
}

.page-hero-premium {
  background:
    radial-gradient(ellipse 60% 80% at 0% 0%, rgba(var(--maroon-rgb), 0.08), transparent),
    linear-gradient(180deg, #efe6d8, var(--cream));
}

/* Hero layout */
.hero {
  padding: var(--section-spacing, 5rem) 0 calc(var(--section-spacing, 5rem) * 0.8);
}

.hero-visual {
  max-width: var(--hero-portrait-max, 420px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.hero-visual {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--maroon-deep), var(--maroon));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(var(--gold-rgb), 0.25), transparent 50%),
    radial-gradient(circle at 70% 75%, rgba(255, 255, 255, 0.06), transparent 40%);
  pointer-events: none;
}

.hero-visual:has(.hero-portrait)::before {
  display: none;
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.hero-portrait-mandala {
  object-fit: cover;
  object-position: center;
}

.hero-symbol {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.15);
  font-family: var(--serif);
  position: relative;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.7rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.1;
  text-decoration: none;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Sheen sweep shared by solid buttons */
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.35) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  background:
    linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color: #fff9f0;
  border-color: rgba(var(--gold-rgb), 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 8px 22px rgba(var(--maroon-rgb), 0.38),
    0 0 0 0 rgba(var(--gold-rgb), 0);
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  border-color: rgba(var(--gold-rgb), 0.9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 12px 30px rgba(var(--maroon-rgb), 0.46),
    0 0 22px rgba(var(--gold-rgb), 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.55);
  color: var(--maroon);
  border-color: rgba(var(--maroon-rgb), 0.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn-outline:hover {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(var(--maroon-rgb), 0.28);
}

/* Gold call-to-action variant for dark backgrounds */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright, #f0c75e) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: #2b1a10;
  border-color: rgba(255, 244, 214, 0.5);
  box-shadow: 0 8px 24px rgba(var(--gold-rgb), 0.4);
}

.btn-gold:hover {
  color: #2b1a10;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(var(--gold-rgb), 0.55);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Sections */
section {
  padding: 4.5rem 0;
}

.section-alt {
  background:
    linear-gradient(180deg, var(--cream-dark) 0%, #f8f2e9 100%);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.25rem;
}

.section-header h2 {
  font-weight: 700;
}

.section-header p {
  margin-top: 0.85rem;
  font-size: 1.12rem;
  color: var(--ink-soft);
}

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.85rem;
}

.card {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.15rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold-bright, #f0c75e), var(--gold-light), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(var(--gold-rgb), 0.45);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.15rem;
  font-size: 1.35rem;
  color: var(--maroon);
  background: linear-gradient(145deg, rgba(var(--gold-rgb), 0.2), rgba(var(--gold-rgb), 0.05));
  border: 1px solid rgba(var(--gold-rgb), 0.35);
  border-radius: 50%;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.98rem;
}

.card-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

/* Page header (inner pages) */
.page-hero {
  padding: 4rem 0 2.75rem;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(var(--gold-rgb), 0.12), transparent),
    linear-gradient(180deg, #efe6d8, var(--cream-dark));
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-weight: 700;
  background: linear-gradient(135deg, var(--ink), var(--maroon-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Content layout */
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3rem;
  align-items: start;
}

.consultation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: 2rem 3rem;
  align-items: start;
}

.consultation-prose {
  grid-column: 1;
  grid-row: 1;
  max-width: 68ch;
}

.consultation-sidebar {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
}

.consultation-pricing-wrap {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
}

.consultation-pricing-wrap .pricing-section {
  margin-top: 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.consultation-intro {
  padding: 3rem 0 4rem;
}

.page-hero + section,
.page-hero-premium + section {
  padding-top: 0;
}

.consultation-intro + .consultation-process {
  margin-top: 0;
}

.consultation-process {
  padding: 4.5rem 0;
}

.consultation-process .steps-grid {
  margin-top: 0.5rem;
}

.container.content-grid,
.container.contact-grid {
  padding: 3rem 0 4rem;
}

.prose {
  max-width: 68ch;
}

.prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose ul, .prose ol {
  margin: 1rem 0 1rem 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.sidebar-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: sticky;
  top: 5.5rem;
  box-shadow: 0 8px 28px rgba(42, 24, 16, 0.06);
}

.sidebar-box h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-box p {
  font-size: 0.92rem;
}

.sidebar-box .btn {
  width: 100%;
  text-align: center;
}

.sidebar-box .btn-block {
  margin-top: 0;
}

.sidebar-box .btn-block + .btn-block,
.sidebar-box .btn + .btn {
  margin-top: 0.65rem;
}

.sidebar-box .sidebar-note + .btn,
.sidebar-box .sidebar-price + .btn,
.sidebar-box .sidebar-facts + .btn {
  margin-top: 1.25rem;
}

.sidebar-facts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-facts li {
  font-size: 0.92rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-facts li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-facts strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

/* Research highlight */
.research-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 100% at 100% 50%, rgba(var(--gold-rgb), 0.2), transparent),
    linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 50%, var(--maroon-rich) 100%);
  color: white;
  padding: 4.5rem 0;
}

.research-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.research-banner .container {
  position: relative;
  z-index: 1;
}

.research-banner h2 {
  color: white;
}

.research-banner p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  max-width: 55ch;
}

.research-banner .btn-primary {
  background: white;
  color: var(--maroon);
  border-color: white;
  margin-top: 1.5rem;
}

.research-banner .btn-primary:hover {
  background: var(--cream);
  color: var(--maroon);
}

.research-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Timeline / credentials */
.timeline-item {
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold-light);
  margin-bottom: 2rem;
}

.timeline-item h3 {
  font-size: 1.15rem;
}

.timeline-year {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* Footer */
.site-footer {
  background:
    radial-gradient(ellipse 60% 80% at 0% 0%, rgba(var(--maroon-rgb), 0.25), transparent),
    linear-gradient(180deg, #0c0a09, var(--ink));
  color: rgba(255, 255, 255, 0.72);
  padding: 4rem 0 2rem;
  margin-top: 0;
  border-top: 3px solid var(--gold-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.site-footer h4 {
  color: white;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

/* WordPress admin bar offset */
body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .content-grid,
  .consultation-layout,
  .contact-grid,
  .footer-grid,
  .footer-grid-premium,
  .research-banner-grid,
  .affiliation-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .consultation-sidebar {
    grid-column: 1;
    grid-row: 2;
    position: static;
  }

  .consultation-prose {
    grid-column: 1;
    grid-row: 1;
  }

  .consultation-pricing-wrap {
    grid-column: 1;
    grid-row: 3;
  }

  .logo-image img,
  .custom-logo-link img,
  .custom-logo {
    max-height: var(--logo-height-mobile, 80px);
  }

  .site-branding-wrap {
    max-width: 100%;
  }

  .logo-image img,
  .custom-logo-link img,
  .custom-logo {
    max-width: 100%;
  }

  .logo-tag-beside {
    display: none;
  }

  .hero-visual {
    max-width: min(var(--hero-portrait-max, 420px), 92vw);
    margin: 0 auto;
  }

  .sidebar-box {
    position: static;
  }
}

@media (max-width: 700px) {
  .nav-toggle {
    display: block;
    flex-shrink: 0;
  }

  .site-header .header-inner {
    position: relative;
    flex-wrap: nowrap;
    gap: 0.75rem;
    padding-block: 0.75rem;
  }

  .site-branding-wrap {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 3.25rem);
  }

  .site-branding-wrap .custom-logo-link {
    max-width: 100%;
  }

  .logo-image img,
  .custom-logo-link img,
  .custom-logo {
    max-width: 100%;
    max-height: var(--logo-height-mobile, 80px);
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    width: 100vw;
    margin-left: -50vw;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem max(4vw, env(safe-area-inset-right)) 1rem max(4vw, env(safe-area-inset-left));
    gap: 0;
    box-sizing: border-box;
  }

  .header-nav.open {
    display: flex;
    background: rgba(255, 252, 247, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .header-nav .btn-nav {
    margin-top: 1rem;
    text-align: center;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    padding: 0;
    width: 100%;
  }

  .nav-list.open {
    display: flex;
  }

  .nav-list a {
    display: block;
    padding: 0.65rem 0;
  }

  .top-bar-inner {
    justify-content: center;
    text-align: center;
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .top-bar-link {
    flex: 1 1 100%;
    text-align: center;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero-premium {
    padding: 3rem 0 2.25rem;
  }

  section,
  .consultation-intro,
  .consultation-process,
  .testimonials-section,
  .affiliation-section {
    padding-block: 3rem;
  }

  .page-hero {
    padding: 2.75rem 0 2rem;
  }

  .quote-night {
    padding: 3.5rem 0;
  }

  .welcome-band {
    padding: 2.5rem 0;
  }

  .pricing-card,
  .sidebar-box,
  .testimonial-card {
    padding: 1.25rem;
  }

  .pricing-steps {
    padding: 1.15rem 1rem;
  }

  .booking-trust {
    flex-direction: column;
    gap: 0.45rem;
  }

  .btn-group .btn {
    flex: 1 1 100%;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .float-cta-wrap {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    max-width: calc(100vw - 1.5rem);
  }

  .float-cta {
    min-width: 0;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
  }

  .float-cta-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body {
    background-attachment: scroll;
  }
}

/* Contact form */
.contact-form-wrap {
  margin-top: 0.5rem;
}

.contact-form .form-field {
  margin-bottom: 1.1rem;
}

.contact-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.contact-form .required {
  color: var(--maroon);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(107, 45, 60, 0.25);
  border-color: var(--maroon);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form-notice {
  padding: 0.85rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
}

.form-notice-success {
  background: #edf7ed;
  border: 1px solid #b8dfc0;
  color: #2f5d36;
}

.form-notice-error {
  background: #fdecec;
  border: 1px solid #efb8b8;
  color: #7a2b2b;
}

.sidebar-box .contact-form-wrap .btn {
  margin-top: 0.5rem;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.blog-card-image {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-meta {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.blog-card-title a {
  text-decoration: none;
  color: var(--ink);
}

.blog-card-title a:hover {
  color: var(--maroon);
}

.blog-card-excerpt {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.blog-empty {
  text-align: center;
  padding: 2rem;
}

.post-meta {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 0.75rem;
}

.post-meta-sep {
  margin: 0 0.35rem;
}

.single-post-image {
  margin-bottom: 2rem;
  border-radius: 4px;
  overflow: hidden;
}

.single-post-image img {
  width: 100%;
}

.navigation.pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.navigation.pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--border);
  text-decoration: none;
  border-radius: 4px;
  color: var(--ink-soft);
}

.navigation.pagination .page-numbers.current,
.navigation.pagination .page-numbers:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: white;
}

/* Social links */
.social-links {
  display: flex;
  gap: 0.65rem;
  list-style: none;
  margin-top: 1.25rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--maroon);
}

.social-links a:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: white;
}

.social-links-footer {
  margin-top: 1rem;
}

.social-links-footer a {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
}

.social-links-footer a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-box .contact-form-wrap {
    max-width: 100%;
  }
}

/* Footer logo mark (transparent, for the dark footer) */
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  line-height: 0;
}

.footer-mark {
  max-height: var(--footer-logo-height, 72px);
  width: auto;
  height: auto;
}

/* Affiliation badges */
.badge-lg {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--maroon);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(var(--maroon-rgb), 0.18);
  box-shadow: var(--shadow-sm);
}

/* Accessible keyboard focus */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--maroon);
  outline-offset: 2px;
  border-radius: 3px;
}

.trust-strip a:focus-visible,
.section-dark a:focus-visible,
.research-banner a:focus-visible,
.top-bar a:focus-visible,
.site-footer a:focus-visible {
  outline-color: var(--gold-light);
}

/* Offset anchor targets so the sticky header does not cover them */
:target,
[id="consultation-fees"] {
  scroll-margin-top: 6.5rem;
}

/* ============================================================
   Celestial atmosphere & warm conversion components
   ============================================================ */

/* Keep content above decorative starfields */
.hero-premium .container,
.quote-section .container,
.section-dark .container,
.research-banner .container {
  position: relative;
  z-index: 1;
}

.quote-section,
.quote-night,
.section-dark {
  position: relative;
  overflow: hidden;
}

/* Twinkling starfield on the dark, immersive sections */
.quote-section::after,
.section-dark::after,
.research-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.6px 1.6px at 20px 30px, rgba(255, 255, 255, 0.98), transparent),
    radial-gradient(1.2px 1.2px at 120px 70px, rgba(var(--gold-rgb), 1), transparent),
    radial-gradient(1px 1px at 60px 150px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1.8px 1.8px at 175px 165px, rgba(var(--gold-rgb), 0.9), transparent),
    radial-gradient(1px 1px at 205px 45px, rgba(200, 210, 255, 0.85), transparent),
    radial-gradient(1.3px 1.3px at 95px 210px, rgba(255, 255, 255, 0.75), transparent),
    radial-gradient(1px 1px at 150px 110px, rgba(var(--violet-rgb, 109, 91, 208), 0.9), transparent),
    radial-gradient(1px 1px at 30px 190px, rgba(255, 255, 255, 0.6), transparent);
  background-size: 240px 240px;
  background-repeat: repeat;
  background-position: 0 0;
  opacity: 0.85;
  animation: astro-twinkle 6s ease-in-out infinite, astro-drift 150s linear infinite;
}

@keyframes astro-twinkle {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.95; }
}

/* Slow parallax drift — the whole starfield glides like a turning sky */
@keyframes astro-drift {
  from { background-position: 0 0; }
  to { background-position: 480px 960px; }
}

/* A distant, soft celestial body drifting slowly across the dark method band */
.section-dark::before {
  content: "";
  position: absolute;
  top: 18%;
  left: -10%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(var(--gold-rgb), 0.28), rgba(var(--gold-rgb), 0.08) 45%, transparent 68%);
  filter: blur(4px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
  animation: astro-planet 80s linear infinite;
}

@keyframes astro-planet {
  from { transform: translate(0, 0); }
  to { transform: translate(125vw, -40px); }
}

/* Night-sky centerpiece behind the Sanskrit quote */
.quote-night {
  background:
    radial-gradient(ellipse 90% 130% at 50% 125%, rgba(var(--gold-rgb), 0.20), transparent 62%),
    radial-gradient(ellipse 65% 85% at 82% 6%, rgba(var(--violet-rgb, 109, 91, 208), 0.30), transparent 58%),
    radial-gradient(ellipse 50% 60% at 12% 15%, rgba(var(--maroon-rgb), 0.28), transparent 55%),
    linear-gradient(180deg, var(--night-1, #120c26) 0%, var(--night-2, #1c1440) 48%, var(--night-3, #0a0716) 100%);
  padding: 5.5rem 0;
}

.quote-night .quote-devanagari {
  filter: drop-shadow(0 0 22px rgba(var(--gold-rgb), 0.45));
}

.quote-sky {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.quote-orb {
  position: absolute;
  top: 12%;
  right: 10%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  /* Luminous lunar surface: bright limb upper-left, soft terminator, faint maria shading */
  background:
    radial-gradient(circle at 30% 26%, #fffdf6 0%, #f6efdd 22%, #e8dcc0 44%, #cdbe9c 66%, #b3a180 84%, #97845f 100%),
    radial-gradient(circle at 68% 74%, rgba(80, 66, 40, 0.28), transparent 46%);
  background-blend-mode: normal, multiply;
  box-shadow:
    inset -10px -12px 26px rgba(46, 36, 18, 0.45),
    inset 8px 8px 18px rgba(255, 250, 235, 0.55),
    0 0 0 1px rgba(255, 244, 214, 0.18),
    0 0 34px 6px rgba(var(--gold-rgb), 0.35),
    0 0 80px 22px rgba(255, 240, 205, 0.16);
  animation: astro-orb 18s ease-in-out infinite;
}

/* Craters — subtle shaded dimples on the lunar face */
.quote-orb::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 44% 40%, rgba(60, 48, 26, 0.30) 0 3px, transparent 4px),
    radial-gradient(circle at 62% 56%, rgba(60, 48, 26, 0.26) 0 5px, transparent 6px),
    radial-gradient(circle at 38% 66%, rgba(60, 48, 26, 0.22) 0 3px, transparent 4px),
    radial-gradient(circle at 56% 30%, rgba(60, 48, 26, 0.18) 0 2px, transparent 3px);
  mix-blend-mode: multiply;
  opacity: 0.8;
  pointer-events: none;
}

/* Soft outer halo ring */
.quote-orb::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 244, 214, 0.14) 40%, rgba(var(--gold-rgb), 0.10) 58%, transparent 72%);
  pointer-events: none;
  animation: astro-orb-halo 6s ease-in-out infinite;
}

/* Gentle breathing + slow drift, like a moon crossing the sky */
@keyframes astro-orb {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-22px, 14px) scale(1.04); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes astro-orb-halo {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.08); }
}

/* Foreground bright stars — closer, larger, twinkling out of sync */
.sky-star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.85), 0 0 12px 3px rgba(var(--gold-rgb), 0.35);
  opacity: 0.5;
  animation: astro-star-twinkle 4s ease-in-out infinite;
}

.sky-star-1 { top: 28%; left: 16%; animation-delay: 0s; }
.sky-star-2 { top: 62%; left: 78%; width: 2px; height: 2px; animation-delay: 1.2s; }
.sky-star-3 { top: 44%; left: 52%; width: 4px; height: 4px; animation-delay: 2.1s; }
.sky-star-4 { top: 74%; left: 30%; width: 2px; height: 2px; animation-delay: 3s; }

@keyframes astro-star-twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

/*
 * Shooting stars.
 * The element's local X-axis is rotated to the travel angle, then it is
 * translated ALONG that same axis — so the tail always trails the bright
 * head in the true direction of motion.
 */
.shooting-star {
  position: absolute;
  width: 150px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 55%, rgba(255, 255, 255, 0.95) 100%);
  opacity: 0;
  pointer-events: none;
}

/* Bright leading head with a soft glow */
.shooting-star::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.85), 0 0 22px 7px rgba(var(--gold-rgb), 0.4);
}

/* Star 1: sweeps down-right across the upper sky */
.shooting-star-1 {
  top: 12%;
  left: 8%;
  animation: astro-shoot-1 11s ease-in 2.5s infinite;
}

@keyframes astro-shoot-1 {
  0%   { transform: rotate(28deg) translateX(-30vw); opacity: 0; }
  6%   { opacity: 1; }
  20%  { opacity: 1; }
  30%  { transform: rotate(28deg) translateX(115vw); opacity: 0; }
  100% { transform: rotate(28deg) translateX(115vw); opacity: 0; }
}

/* Star 2: a shallower streak lower down, offset timing */
.shooting-star-2 {
  top: 58%;
  left: 20%;
  width: 120px;
  animation: astro-shoot-2 14s ease-in 8s infinite;
}

@keyframes astro-shoot-2 {
  0%   { transform: rotate(16deg) translateX(-28vw); opacity: 0; }
  7%   { opacity: 1; }
  18%  { opacity: 1; }
  27%  { transform: rotate(16deg) translateX(110vw); opacity: 0; }
  100% { transform: rotate(16deg) translateX(110vw); opacity: 0; }
}

/* Soft glow on headings in the immersive sections */
.section-dark h2,
.research-banner h2 {
  text-shadow: 0 0 22px rgba(var(--gold-rgb), 0.16);
}

/* Gentle shimmer along the section-label underline */
.section-label::after {
  background-size: 220% 100%;
  animation: astro-sheen 4.5s ease-in-out infinite;
}

@keyframes astro-sheen {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

/* Divine glow + gentle float in the hero */
.hero-premium::after {
  content: "";
  position: absolute;
  top: -12%;
  right: -6%;
  width: 62%;
  height: 124%;
  background: radial-gradient(circle at 68% 32%, rgba(var(--gold-rgb), 0.2), transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: astro-glow 8s ease-in-out infinite;
}

@keyframes astro-glow {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

.hero-frame {
  animation: astro-float 7s ease-in-out infinite;
  will-change: transform;
}

@keyframes astro-float {
  0%, 100% { transform: rotate(1deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-10px); }
}

/* Scroll cue */
.hero-scroll-cue {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 2rem auto 0;
  width: 26px;
  height: 44px;
  padding: 7px 0;
  border: 2px solid rgba(var(--maroon-rgb), 0.35);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.hero-scroll-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: astro-scroll 1.8s ease-in-out infinite;
}

@keyframes astro-scroll {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(15px); opacity: 0; }
  100% { opacity: 0; }
}

/* Welcome / belonging band */
.welcome-band {
  position: relative;
  padding: 3.75rem 0;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 90% at 50% 0%, rgba(var(--gold-rgb), 0.08), transparent 60%),
    linear-gradient(180deg, var(--cream), var(--cream-dark));
}

.welcome-lotus {
  display: block;
  width: clamp(78px, 9vw, 120px);
  height: auto;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 6px 18px rgba(var(--gold-rgb), 0.28));
  animation: astro-lotus-float 7s ease-in-out infinite;
}

@keyframes astro-lotus-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.welcome-text {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  max-width: 34ch;
  margin: 0 auto;
}

.welcome-text::before,
.welcome-text::after {
  content: "✦";
  color: var(--gold-light);
  font-size: 0.6em;
  font-style: normal;
  vertical-align: middle;
  opacity: 0.85;
}

.welcome-text::before { margin-right: 0.7rem; }
.welcome-text::after { margin-left: 0.7rem; }

/* Testimonials */
.testimonials-section { padding: 5rem 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-mark {
  font-size: 1.1rem;
  color: var(--gold-light);
}

.testimonial-card blockquote {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--ink);
  margin: 0;
  flex-grow: 1;
}

.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-name {
  font-weight: 700;
  color: var(--maroon);
  font-size: 0.95rem;
}

.testimonial-detail {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* FAQ */
.container-narrow { width: min(760px, 92vw); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item[open] {
  box-shadow: var(--shadow-sm);
  border-color: rgba(var(--gold-rgb), 0.45);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-toggle {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-toggle::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-toggle::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-item[open] .faq-toggle::after { transform: rotate(90deg); opacity: 0; }

.faq-answer { padding: 0 1.35rem 1.25rem; }
.faq-answer p { margin: 0; color: var(--ink-soft); }
.faq-item[open] .faq-answer { animation: astro-fade 0.35s ease; }

@keyframes astro-fade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* Floating booking button */
.float-cta-wrap {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.float-cta-wrap.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.float-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  box-shadow: 0 10px 30px rgba(var(--maroon-rgb), 0.45), 0 0 0 1px rgba(var(--gold-rgb), 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.float-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(var(--maroon-rgb), 0.5), 0 0 0 1px rgba(var(--gold-rgb), 0.4);
}

.float-cta-icon {
  color: var(--gold-light);
  font-size: 1.05rem;
  animation: astro-spin 14s linear infinite;
}

@keyframes astro-spin {
  to { transform: rotate(360deg); }
}

.float-cta-dismiss {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.05rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-cta-dismiss:hover { background: rgba(0, 0, 0, 0.6); }

@media (max-width: 600px) {
  .float-cta-wrap { right: 0.75rem; bottom: 0.75rem; }
  .float-cta { padding: 0.8rem 1.15rem; font-size: 0.9rem; }
}

/* ============================================================
   Booking details modal (pre-payment)
   ============================================================ */
body.booking-open {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(0.75rem, 4vw, 3rem) 1rem;
  overflow-y: auto;
}

.booking-modal.is-open {
  display: flex;
}

.booking-modal[hidden] {
  display: none !important;
}

.booking-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(15, 11, 22, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.booking-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  margin: auto;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border: 1px solid rgba(var(--gold-rgb), 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(15, 11, 22, 0.4), 0 0 0 1px rgba(var(--gold-rgb), 0.12);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  animation: booking-pop 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes booking-pop {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.booking-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.95rem;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(var(--maroon-rgb), 0.08);
  color: var(--maroon);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.booking-modal-close:hover {
  background: rgba(var(--maroon-rgb), 0.16);
}

.booking-modal-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.booking-modal-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.booking-modal-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.4rem;
}

.booking-modal-summary {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--maroon);
  margin: 0;
}

.booking-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 1.4rem;
}

.booking-fieldset legend {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.85rem;
  padding: 0;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

.booking-form .form-field {
  margin-bottom: 0;
}

.booking-form .form-field-full {
  grid-column: 1 / -1;
}

.booking-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form input[type="time"],
.booking-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(var(--maroon-rgb), 0.15);
}

.booking-form input:disabled {
  background: var(--cream-dark);
  opacity: 0.65;
}

.booking-form textarea {
  resize: vertical;
  min-height: 96px;
}

.booking-check {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.booking-check input {
  width: auto;
  margin: 0;
}

.booking-field-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0.65rem 0 0;
}

.booking-form-actions {
  margin-top: 0.5rem;
}

.booking-secure-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: 0.75rem 0 0;
}

.booking-form-error {
  background: #fdecec;
  border: 1px solid #efb8b8;
  color: #7a2b2b;
  padding: 0.75rem 0.95rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 560px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-ornament-rings,
  .hero-frame,
  .hero-premium::after,
  .quote-section::after,
  .section-dark::after,
  .research-banner::after,
  .hero-scroll-dot,
  .float-cta-icon,
  .quote-orb,
  .shooting-star,
  .sky-star,
  .section-dark::before,
  .section-label::after {
    animation: none;
  }

  .hero-frame { transform: rotate(1deg); }
}
