/* ==========================================================================
   AMELIA SONNY, MS — BESPOKE PSYCHOTHERAPY PRACTICE
   Design System: Warm Editorial Luxury & NYC Modern Relatability
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #FAF8F5;
  --bg-surface: #FFFFFF;
  --bg-surface-elevated: #F3EFE9;
  --bg-dark: #191614;
  --bg-dark-card: #24201D;
  --bg-dark-muted: #2E2925;

  --text-primary: #1F1B18;
  --text-secondary: #574F48;
  --text-muted: #8A8177;
  --text-light: #F7F5F0;
  --text-light-muted: #C0B7AD;

  --accent-terracotta: #B85D3B;
  --accent-terracotta-hover: #9E4A2A;
  --accent-terracotta-light: #F6EBE5;
  --accent-sage: #5E6E5C;
  --accent-sage-light: #EBF0EA;
  --accent-sand: #E6DDD3;
  --accent-gold: #C89658;
  --accent-emerald: #2E8B57;

  --border-subtle: rgba(31, 27, 24, 0.08);
  --border-terracotta: rgba(184, 93, 59, 0.2);
  --border-dark: rgba(255, 255, 255, 0.1);

  --shadow-sm: 0 4px 12px rgba(25, 22, 20, 0.04);
  --shadow-md: 0 10px 28px -6px rgba(25, 22, 20, 0.08);
  --shadow-lg: 0 24px 50px -12px rgba(25, 22, 20, 0.12);
  --shadow-glow: 0 12px 36px rgba(184, 93, 59, 0.25);

  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-serif-italic: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Global Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Headings & Typography */
h1, h2, h3, h4 {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.text-italic-serif {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, #B85D3B 0%, #D4A373 50%, #B85D3B 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 6s linear infinite;
}

@keyframes shimmerText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.text-center {
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-terracotta);
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 16px;
}

.section-subheading {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 660px;
  margin: 0 auto 48px;
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-base);
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-terracotta);
  color: #FFFFFF;
  border-color: var(--accent-terracotta);
  box-shadow: 0 4px 16px rgba(184, 93, 59, 0.28);
}

.btn-primary:hover {
  background-color: var(--accent-terracotta-hover);
  border-color: var(--accent-terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 93, 59, 0.38);
}

.btn-secondary {
  background-color: var(--bg-surface);
  color: var(--text-primary);
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-surface-elevated);
  border-color: var(--accent-sand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--accent-sand);
}

.btn-outline:hover {
  background-color: var(--bg-surface-elevated);
  border-color: var(--accent-terracotta);
  color: var(--accent-terracotta);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-arrow, .btn-arrow-down {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-secondary:hover .btn-arrow-down {
  transform: translateY(3px);
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  padding: 32px;
  max-width: 480px;
}

.preloader-monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(200, 150, 88, 0.4);
  background: radial-gradient(circle, rgba(184, 93, 59, 0.25) 0%, rgba(25, 22, 20, 0) 70%);
  margin-bottom: 24px;
}

.monogram-letter {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--accent-gold);
}

.monogram-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(200, 150, 88, 0.4);
  margin: 0 8px;
}

.preloader-brand {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
}

.preloader-role {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-terracotta);
  margin-bottom: 20px;
  font-weight: 600;
}

.preloader-quote {
  font-family: var(--font-serif-italic);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-light-muted);
  margin-bottom: 28px;
}

.preloader-bar-wrap {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.preloader-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-terracotta));
  transition: width 0.8s ease-out;
}

/* ==========================================================================
   SCROLL-STOPPING MOTION SYSTEM: PROGRESS, GLOW & REVEALS
   ========================================================================== */
.scroll-progress-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-terracotta), var(--accent-gold));
  z-index: 10001;
  transition: width 0.08s linear;
}

.cursor-ambient-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(184, 93, 59, 0.09) 0%, rgba(200, 150, 88, 0.03) 45%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
}

body:hover .cursor-ambient-glow {
  opacity: 1;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   STICKY HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1280px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-emblem {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-emblem {
  transform: rotate(6deg) scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  line-height: 1.1;
  white-space: nowrap;
}

.brand-creds {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-terracotta);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 24px);
  flex-shrink: 0;
}

.nav-item {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 2px;
  white-space: nowrap;
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-terracotta);
  transition: width var(--transition-fast);
}

.nav-item:hover {
  color: var(--text-primary);
}

.nav-item:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-ig-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--accent-sand);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.header-ig-pill:hover {
  background-color: #FFFFFF;
  color: #E1306C;
  border-color: #E1306C;
  transform: translateY(-1px);
}

.ig-icon {
  width: 14px;
  height: 14px;
}

.btn-header {
  padding: 10px 22px;
  font-size: 0.88rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.mobile-drawer {
  display: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero-ambient-glow {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 93, 59, 0.12) 0%, rgba(200, 150, 88, 0.06) 40%, rgba(250, 248, 245, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background-color: var(--accent-terracotta-light);
  border: 1px solid var(--border-terracotta);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-terracotta);
  margin-bottom: 24px;
}

.hero-heading {
  font-size: clamp(2.4rem, 4.2vw, 3.75rem);
  line-height: 1.12;
  margin-bottom: 22px;
  color: var(--text-primary);
}

.hero-lead {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-proof-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding: 16px 20px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.proof-chip {
  display: flex;
  flex-direction: column;
}

.proof-val {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-terracotta);
  line-height: 1.1;
}

.proof-lbl {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.proof-divider {
  width: 1px;
  height: 32px;
  background-color: var(--accent-sand);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.notice-icon {
  font-size: 0.9rem;
}

/* Right Visual */
.hero-visual-wrap {
  position: relative;
}

.hero-card-frame {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 12px;
  background-color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.hero-card-media {
  position: relative;
  border-radius: calc(var(--radius-xl) - 8px);
  overflow: hidden;
  height: 520px;
}

.hero-sanctuary-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.04);
}

.hero-portrait-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(25, 22, 20, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #FFFFFF;
}

.portrait-ring {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  border: 2px solid var(--accent-gold);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.2;
}

.portrait-role {
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 500;
}

.portrait-tag {
  font-size: 0.72rem;
  color: var(--text-light-muted);
  font-style: italic;
  margin-top: 2px;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--accent-sand);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  animation: floatSubtle 4s ease-in-out infinite alternate;
}

@keyframes floatSubtle {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.badge-top-right {
  top: 24px;
  right: -20px;
}

.badge-bottom-left {
  top: 40%;
  left: -24px;
  animation-delay: 1.5s;
}

.badge-bottom-right {
  display: none; /* Keep layout clean on hero */
}

.badge-icon-wrap {
  width: 32px;
  height: 32px;
  background-color: var(--accent-terracotta-light);
  color: var(--accent-terracotta);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text strong {
  font-size: 0.8rem;
  color: var(--text-primary);
}

.badge-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================================
   INSTAGRAM STORY HIGHLIGHTS STRIP
   ========================================================================== */
.highlights-section {
  padding: 40px 0 60px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background-color: #FFFFFF;
}

.highlights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.highlights-title {
  font-size: 1.65rem;
  margin-bottom: 0;
}

.ig-link-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--accent-sand);
  background-color: var(--bg-primary);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.ig-link-badge:hover {
  border-color: #E1306C;
  color: #E1306C;
}

.ig-svg {
  width: 16px;
  height: 16px;
}

.highlights-track {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 4px 20px;
  scrollbar-width: thin;
}

.highlights-track::-webkit-scrollbar {
  height: 4px;
}

.highlights-track::-webkit-scrollbar-thumb {
  background-color: var(--accent-sand);
  border-radius: var(--radius-full);
}

.highlight-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.highlight-bubble:hover {
  transform: translateY(-4px);
}

.bubble-circle {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  border: 2px solid var(--accent-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.highlight-bubble.active .bubble-circle {
  border-color: var(--accent-terracotta);
  background: var(--accent-terracotta-light);
  box-shadow: 0 0 0 3px rgba(184, 93, 59, 0.2);
}

.bubble-symbol {
  font-size: 1.4rem;
  color: var(--accent-terracotta);
}

.bubble-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.highlight-bubble.active .bubble-label {
  color: var(--accent-terracotta);
  font-weight: 700;
}

/* Insight Card */
.highlight-insight-card {
  margin-top: 12px;
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--accent-sand);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  transition: all var(--transition-base);
}

.insight-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent-terracotta);
  margin-bottom: 8px;
}

.insight-headline {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.insight-copy {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 900px;
}

.insight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 14px;
}

.insight-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

.insight-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-terracotta);
}

.insight-cta:hover {
  text-decoration: underline;
}

/* ==========================================================================
   THE MANIFESTO / COMPARISON
   ========================================================================== */
.manifesto-section {
  padding: 90px 0;
  background-color: var(--bg-primary);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.manifesto-heading {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  margin-bottom: 24px;
  line-height: 1.18;
}

.manifesto-lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.manifesto-quote-box {
  margin-top: 32px;
  padding: 24px;
  background-color: var(--bg-surface);
  border-left: 3px solid var(--accent-terracotta);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}

.quote-text {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.quote-author {
  display: flex;
  flex-direction: column;
}

.quote-author strong {
  font-size: 0.9rem;
  color: var(--accent-terracotta);
}

.quote-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Comparison Cards */
.manifesto-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.comparison-highlight {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-color: rgba(184, 93, 59, 0.4);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.comparison-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-terracotta));
}

.comparison-header {
  margin-bottom: 18px;
}

.comp-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.comp-bad {
  background-color: #FEE2E2;
  color: #DC2626;
}

.comp-good {
  background-color: rgba(184, 93, 59, 0.25);
  color: var(--accent-gold);
  border: 1px solid rgba(200, 150, 88, 0.3);
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.comp-cross {
  color: #DC2626;
  font-weight: 700;
  flex-shrink: 0;
}

.comp-check {
  color: var(--accent-gold);
  font-weight: 700;
  flex-shrink: 0;
}

.comparison-highlight strong {
  color: #FFFFFF;
}

/* ==========================================================================
   SPECIALTIES DEEP-DIVE (TABS)
   ========================================================================== */
.specialties-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

.specialty-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.spec-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background-color: var(--bg-primary);
  border: 1px solid var(--accent-sand);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-base);
}

.spec-tab:hover {
  background-color: var(--bg-surface-elevated);
  color: var(--text-primary);
  border-color: var(--accent-terracotta);
}

.spec-tab.active {
  background-color: var(--accent-terracotta);
  color: #FFFFFF;
  border-color: var(--accent-terracotta);
  box-shadow: 0 4px 14px rgba(184, 93, 59, 0.28);
}

.spec-panel {
  display: none;
  background-color: var(--bg-primary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--accent-sand);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  animation: fadeIn 0.4s ease-in-out;
}

.spec-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.spec-panel-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.spec-panel-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-terracotta);
  margin-bottom: 8px;
  display: inline-block;
}

.spec-panel-title {
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  margin-bottom: 18px;
  line-height: 1.25;
}

.spec-panel-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.spec-details-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.spec-detail-box {
  background-color: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
}

.spec-box-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-detail-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spec-detail-box li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 16px;
  line-height: 1.45;
}

.spec-detail-box li::before {
  content: "•";
  color: var(--accent-terracotta);
  position: absolute;
  left: 0;
  font-size: 1rem;
}

.spec-panel-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.spec-quote-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.spec-quote-icon {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--accent-terracotta-light);
  line-height: 1;
  margin-bottom: -10px;
}

.spec-quote-body {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.spec-quote-source {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-terracotta);
}

.spec-photo-snippet {
  background-color: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.spec-snippet-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.spec-snippet-caption {
  display: flex;
  flex-direction: column;
}

.spec-snippet-caption strong {
  font-size: 0.85rem;
  color: var(--text-primary);
}

.spec-snippet-caption span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ABOUT AMELIA SECTION
   ========================================================================== */
.about-section {
  padding: 90px 0;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.about-title {
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  margin-bottom: 8px;
}

.about-tagline {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-terracotta);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.about-para {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.cred-badges-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.cred-badge {
  background-color: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.cred-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 6px;
}

.cred-text strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-primary);
  line-height: 1.25;
}

.cred-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.about-action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

/* Editorial Clinical Sanctuary Card */
.about-showcase-col {
  position: relative;
}

.about-sanctuary-card {
  background: linear-gradient(145deg, #221E1B 0%, #171412 100%);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.about-sanctuary-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(184, 93, 59, 0.28) 0%, transparent 70%);
  pointer-events: none;
}

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

.sanctuary-emblem-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sanctuary-emblem {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
}

.sanctuary-badge-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.sanctuary-badge-text span {
  font-size: 0.72rem;
  color: var(--accent-gold);
}

.sanctuary-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.35);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: #34D399;
}

.live-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #34D399;
  border-radius: var(--radius-full);
  box-shadow: 0 0 6px #34D399;
}

.sanctuary-quote-wrap {
  position: relative;
  margin-bottom: 28px;
}

.sanctuary-quote-mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--accent-terracotta);
  margin-bottom: -15px;
  opacity: 0.7;
}

.sanctuary-quote {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.6;
  color: #FAF8F5;
  margin-bottom: 12px;
}

.sanctuary-author strong {
  font-size: 0.88rem;
  color: var(--accent-gold);
}

.sanctuary-author span {
  font-size: 0.76rem;
  color: var(--text-light-muted);
  margin-left: 6px;
}

.sanctuary-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}

.sanctuary-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  transition: all var(--transition-fast);
}

.sanctuary-pillar-item:hover {
  background: rgba(184, 93, 59, 0.15);
  border-color: rgba(184, 93, 59, 0.35);
  transform: translateX(4px);
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1.2;
}

.pillar-content strong {
  display: block;
  font-size: 0.86rem;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.pillar-content span {
  font-size: 0.78rem;
  color: var(--text-light-muted);
  line-height: 1.4;
  display: block;
}

.sanctuary-footer-stamp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  font-size: 0.78rem;
}

.stamp-community {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light-muted);
}

.stamp-ig-icon {
  width: 14px;
  height: 14px;
  color: #E1306C;
}

.stamp-rating {
  font-weight: 700;
  color: var(--accent-gold);
}

/* ==========================================================================
   INTERACTIVE FIT ASSESSMENT QUIZ
   ========================================================================== */
.assessment-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

.assessment-card {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-card) 100%);
  color: var(--text-light);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  box-shadow: var(--shadow-lg);
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.assessment-header {
  margin-bottom: 40px;
}

.assessment-title {
  color: #FFFFFF;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin-bottom: 12px;
}

.assessment-sub {
  color: var(--text-light-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.quiz-container {
  max-width: 760px;
  margin: 0 auto;
}

.quiz-step {
  display: none;
  animation: fadeIn 0.3s ease-out;
}

.quiz-step.active {
  display: block;
}

.quiz-step-indicator {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.quiz-question {
  color: #FFFFFF;
  font-size: 1.55rem;
  margin-bottom: 24px;
  line-height: 1.3;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-opt {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  background-color: var(--bg-dark-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: var(--text-light);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  width: 100%;
}

.quiz-opt:hover {
  background-color: rgba(184, 93, 59, 0.25);
  border-color: var(--accent-terracotta);
  transform: translateX(4px);
}

.opt-emoji {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.opt-text strong {
  display: block;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 3px;
}

.opt-text span {
  font-size: 0.82rem;
  color: var(--text-light-muted);
  line-height: 1.4;
  display: block;
}

/* Quiz Result */
.quiz-result {
  display: none;
  text-align: center;
  padding: 20px 0;
  animation: fadeIn 0.4s ease-out;
}

.quiz-result.active {
  display: block;
}

.result-badge {
  display: inline-block;
  background-color: rgba(52, 211, 153, 0.18);
  color: #34D399;
  border: 1px solid rgba(52, 211, 153, 0.4);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.result-title {
  color: #FFFFFF;
  font-size: 2rem;
  margin-bottom: 12px;
}

.result-desc {
  color: var(--text-light-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 24px;
}

.result-highlight-box {
  background-color: rgba(184, 93, 59, 0.2);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.result-highlight-box strong {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.result-highlight-box span {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #FFFFFF;
}

.result-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-result {
  padding: 16px 36px;
}

/* ==========================================================================
   VERIFIED REVIEWS & PATIENT WORDS
   ========================================================================== */
.reviews-section {
  padding: 90px 0;
  background-color: var(--bg-primary);
}

.zocdoc-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: #E6F4EA;
  color: #137333;
  border: 1px solid #CEEAD6;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.pill-dot {
  width: 7px;
  height: 7px;
  background-color: #137333;
  border-radius: var(--radius-full);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.review-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-sand);
}

.review-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-quote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.review-avatar-pill {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--accent-terracotta-light);
  color: var(--accent-terracotta);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.reviewer-type {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   HOW IT WORKS / VIRTUAL
   ========================================================================== */
.how-it-works-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.step-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--accent-sand);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform var(--transition-base);
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-sand);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-terracotta);
  background-color: var(--accent-terracotta-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.insurance-box {
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--accent-sand);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.insurance-icon-wrap {
  width: 54px;
  height: 54px;
  background-color: #FFFFFF;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.insurance-content {
  flex: 1;
  min-width: 280px;
}

.insurance-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.insurance-copy {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 90px 0;
  background-color: var(--bg-primary);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 50px;
}

.faq-heading {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.faq-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.faq-contact-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.faq-contact-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.faq-contact-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* Accordion Component */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background-color: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.accordion-item.active {
  border-color: var(--accent-terracotta);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

.acc-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent-terracotta);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.accordion-item.active .acc-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 24px;
}

.accordion-item.active .accordion-body {
  max-height: 250px;
  padding: 0 24px 20px;
}

.accordion-body p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ==========================================================================
   FINAL CONVERSION CTA
   ========================================================================== */
.final-cta-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

.final-cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #201A16 100%);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 70px 48px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.final-cta-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(circle, rgba(184, 93, 59, 0.35) 0%, rgba(200, 150, 88, 0) 70%);
  pointer-events: none;
}

.final-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.final-headline {
  color: #FFFFFF;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  line-height: 1.18;
  margin-bottom: 18px;
}

.final-sub {
  color: var(--text-light-muted);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.final-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.final-guarantee {
  font-size: 0.82rem;
  color: var(--accent-sand);
  opacity: 0.8;
}

/* ==========================================================================
   LUXURY FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light-muted);
  padding: 70px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.footer-emblem {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}

.footer-brand-sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
}

.footer-mission {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: #FFFFFF;
}

.footer-social-link:hover {
  background-color: rgba(184, 93, 59, 0.3);
  border-color: var(--accent-terracotta);
}

.footer-icon {
  width: 14px;
  height: 14px;
}

.footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: var(--text-light-muted);
}

.footer-links-list a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer-loc-text {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.mt-3 {
  margin-top: 12px;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

.footer-disclaimer p {
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   FLOATING QUICK-BOOK DOCK (MOBILE)
   ========================================================================== */
.floating-dock {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(25, 22, 20, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  align-items: center;
  justify-content: space-between;
}

.dock-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dock-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1.5px solid var(--accent-gold);
}

.dock-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dock-text {
  display: flex;
  flex-direction: column;
}

.dock-name {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.1;
}

.dock-status {
  color: var(--accent-gold);
  font-size: 0.68rem;
}

.btn-dock {
  padding: 8px 18px;
  font-size: 0.8rem;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual-wrap {
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .spec-panel-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 64px;
    padding: 0 16px;
  }

  .brand-logo {
    gap: 8px;
    flex-shrink: 0;
  }

  .brand-emblem {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 1.15rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .brand-creds {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .btn-header {
    padding: 8px 14px;
    font-size: 0.8rem;
    gap: 4px;
  }

  .btn-header .btn-arrow {
    width: 12px;
    height: 12px;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
  }

  .nav-links, .header-ig-pill {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-drawer {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
  }

  .mobile-drawer.open {
    max-height: 400px;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
    gap: 14px;
  }

  .mobile-nav-item {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
  }

  .btn-mobile-book {
    margin-top: 10px;
    width: 100%;
  }

  .floating-dock {
    display: flex;
  }

  .cred-badges-row {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .spec-details-blocks {
    grid-template-columns: 1fr;
  }

  .spec-panel {
    padding: 28px 20px;
  }

  .assessment-card {
    padding: 36px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .floating-badge {
    position: static;
    margin-top: 10px;
  }
}
