

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

:root {
  --navy: #0B1B2B;
  --navy-mid: #112236;
  --navy-light: #1a3350;
  --navy2: #0e2236;
  --navy3: #162d45;
  --ivory: #F6F1E8;
  --ivory-dark: #EDE7D9;
    --ivory2: #EDE7D9;
  --charcoal: #2B2B2B;
  --gold: #B89B5E;
  --gold-light: #D4B97A;
  --gold: #B89B5E;
  --gold2: #D4B97A;
  --gold3: #c8a96a;
  --gray: #A7A9AC;
  --white: #ffffff;
  --gray: #888;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--ivory);
  overflow-x: hidden;
  /*cursor: none;*/
}


.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease-out, width 0.2s, height 0.2s, opacity 0.2s;
  opacity: 0.6;
}
a, button { /*cursor: none;*/ }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(11,27,43,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(184,155,94,0.15);
  transition: padding 0.3s;
}
nav.scrolled { padding: 14px 60px; }

.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-logo-mark {
    width: 61px;
    height: 50px;
    padding:34px;
    position: relative;
    background: url(../assets/images/DonnasIcon.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.nav-logo-mark svg { width: 100%; height: 100%; }
.nav-logo-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--ivory);
  text-transform: uppercase;
  line-height: 1.2;
}
.nav-logo-sub {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246,241,232,0.7);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ivory); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

.nav-cta {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy) !important;
  background: var(--gold);
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* ===== PARTICLES HERO ===== */
#particles-js {
  position: absolute; inset: 0;
  z-index: 0;
}

/* ===== PAGE SECTIONS ===== */
section { position: relative; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-art {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden;
}

/* Animated medical cross orb */
.hero-orb {
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 680px; height: 680px;
  opacity: 0.06;
  animation: orbPulse 8s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.06; }
  50% { transform: translateY(-52%) scale(1.04); opacity: 0.09; }
}

/* Diagonal gold lines */
.hero-lines {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-lines::before {
  content: '';
  position: absolute;
  top: -50%; left: 40%;
  width: 1px; height: 200%;
  background: linear-gradient(to bottom, transparent, rgba(184,155,94,0.2), transparent);
  transform: rotate(15deg);
}
.hero-lines::after {
  content: '';
  position: absolute;
  top: -50%; left: 55%;
  width: 1px; height: 200%;
  background: linear-gradient(to bottom, transparent, rgba(184,155,94,0.1), transparent);
  transform: rotate(15deg);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 40px;
  padding-top: 80px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block; width: 40px; height: 1px;
  background: var(--gold); opacity: 0.5;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-title-line2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(246,241,232,0.6);
  letter-spacing: 0.04em;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}

.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1s forwards;
}
.apstat {
  flex: 1; padding: 24px 20px; text-align: center;
}
.apstat-val {
  font-family: var(--serif); font-size: 2rem; font-weight: 200;
  color: var(--gold2); line-height: 1; margin-bottom: 6px;
}
.apstat-label {
  font-size: .58rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(246,241,232,.3); line-height: 1.5;
}
.apstat-divider {
  width: 1px; background: rgba(184,155,94,.1); flex-shrink: 0;
}


.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.3s;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(184,155,94,0.3); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  border: 1px solid rgba(246,241,232,0.3);
  padding: 16px 36px;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute; bottom: 48px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(246,241,232,0.35);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2s 1.5s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Floating stats */
.hero-stats {
  position: absolute;
  bottom: 80px; right: 60px;
  z-index: 2;
  display: flex; flex-direction: column; gap: 20px;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}
.hero-stat {
  text-align: right;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246,241,232,0.35);
}

/* ===== VALUE SECTION ===== */
.value-section {
  background: var(--ivory);
  padding: 120px 60px;
  overflow: hidden;
}
.section-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 16px;
}
.section-label::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--gold);
}
.value-heading {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  max-width: 520px;
  margin-bottom: 80px;
}
.value-heading em { font-style: italic; color: var(--gold); }

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(11,27,43,0.1);
}
.value-card {
  padding: 52px 40px;
  border-right: 1px solid rgba(11,27,43,0.1);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.value-card:last-child { border-right: none; }
.value-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { background: rgba(11,27,43,0.03); }

.value-icon {
  width: 48px; height: 48px;
  margin-bottom: 28px;
  color: var(--gold);
}
.value-card-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}
.value-card-text {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--gray);
  font-weight: 300;
}

/* ===== MEDICAL VISUAL SECTION ===== */
.visual-section {
  background: var(--navy);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
}
.visual-art-panel {
  position: relative;
  overflow: hidden;
  /* background: var(--navy-mid); */
  background: url("../assets/images/private_medical_.jpeg");
  background-size:contain;

  display: flex; align-items: center; justify-content: center;
}

/* SVG DNA / stethoscope abstract art */
.medical-art {
  width: 100%; height: 100%;
  min-height: 500px;
  position: relative;
}

.visual-content-panel {
  padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.visual-content-panel .section-label { color: var(--gold); }
.visual-content-panel .section-label::before { background: var(--gold); }
.visual-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 28px;
}
.visual-text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(246,241,232,0.6);
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 420px;
}
.visual-details {
  display: flex; flex-direction: column; gap: 18px;
}
.visual-detail {
  display: flex; align-items: center; gap: 18px;
  font-size: 0.82rem;
  color: rgba(246,241,232,0.5);
  letter-spacing: 0.04em;
}
.visual-detail-dot {
  width: 6px; height: 6px; flex-shrink: 0;
  background: var(--gold);
  border-radius: 50%;
}
.visual-detail strong {
  color: var(--ivory);
  font-weight: 400;
  margin-right: 6px;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
  background: var(--ivory);
  padding: 120px 60px;
}
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.services-heading {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
}
.services-heading em { font-style: italic; color: var(--gold); }
.services-desc {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--gray);
  font-weight: 300;
  max-width: 420px;
  align-self: end;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(11,27,43,0.08);
}
.service-tile {
  background: var(--ivory);
  padding: 56px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  text-decoration: none;
  display: block;
}
.service-tile::after {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.4s;
}
.service-tile:hover::after { transform: scaleY(1); }
.service-tile:hover { background: #f0ead9; }
.service-number {
  font-family: var(--serif);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 32px;
  display: block;
}
.service-tile-icon {
  width: 44px; height: 44px;
  color: var(--navy);
  margin-bottom: 22px;
  opacity: 0.7;
}
.service-tile-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.service-tile-text {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--gray);
  font-weight: 300;
}

#servicestages{
  position:absolute;
  bottom:10%;
}
.service-tag{
  margin: 10px;
 
  padding:3px;
  border:1px solid var(--gold);
  border-radius:4px;
}
#servicestages a{
  list-style: none;
  text-decoration:none;
  color: rgba(11, 27, 43, 0.92);
}
.service-tag div{
  border-radius:2.5px;
  background:var(--ivory);
  user-select:none;
}

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: var(--ivory-dark);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.about-strip::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.about-portrait {
  position: relative;
}
.about-portrait-inner {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
/* Creative portrait placeholder - abstract figure */
.about-portrait-inner svg {
  width: 100%; height: 100%;
}

.about-portrait-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 20px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}
.about-portrait-badge span {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  font-weight: 500;
  margin-top: 4px;
}

.about-content { grid-column: span 2; }
.about-name {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--navy);
  margin: 20px 0 6px;
  line-height: 1.1;
}
.about-title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.about-text {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--charcoal);
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 520px;
}
.about-credentials {
  display: flex; gap: 40px; flex-wrap: wrap;
}
.credential {
  display: flex; flex-direction: column; gap: 4px;
}
.credential-val {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}
.credential-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ===== MEMBERSHIP SECTION ===== */
.membership-section {
  background: var(--navy);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}
.membership-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.membership-header {
  text-align: center;
  margin-bottom: 72px;
}
.membership-header .section-label {
  justify-content: center;
  color: var(--gold);
}
.membership-header .section-label::before { background: var(--gold); }
.membership-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 16px;
}
.membership-title em { font-style: italic; color: var(--gold-light); }
.membership-subtitle {
  font-size: 0.9rem;
  color: rgba(246,241,232,0.5);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.plan-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(246,241,232,0.08);
  padding: 52px 40px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.plan-card:hover {
  border-color: rgba(184,155,94,0.3);
  transform: translateY(-4px);
}
.plan-card.featured {
  background: rgba(184,155,94,0.06);
  border-color: rgba(184,155,94,0.4);
}
.plan-badge {
  position: absolute; top: -12px; left: 40px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 14px;
  font-weight: 500;
}
.plan-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 6px;
}
.plan-price {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.plan-price span {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: rgba(246,241,232,0.4);
}
.plan-desc {
  font-size: 0.8rem;
  color: rgba(246,241,232,0.4);
  margin-bottom: 36px;
  line-height: 1.6;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(246,241,232,0.08);
}
.plan-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 40px;
}
.plan-features li {
  font-size: 0.82rem;
  color: rgba(246,241,232,0.65);
  display: flex; align-items: flex-start; gap: 12px;
  line-height: 1.5;
}
.plan-check {
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.plan-dash { color: rgba(246,241,232,0.2); flex-shrink: 0; }
.plan-features li.inactive { color: rgba(246,241,232,0.25); }

.plan-btn {
  display: block;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.3s;
}
.plan-btn-outline {
  border: 1px solid rgba(184,155,94,0.4);
  color: var(--gold);
}
.plan-btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.plan-btn-filled {
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
}
.plan-btn-filled:hover {
  background: var(--gold-light);
}
.plan-feats li.off { color: rgba(246,241,232,.22); }
.plan-btn { display: block; text-align: center; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; padding: 13px; text-decoration: none; transition: all .3s; }
.plan-btn-o { border: 1px solid rgba(184,155,94,.35); color: var(--gold); }
.plan-btn-o:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.plan-btn-f { background: var(--gold); color: var(--navy); }
.plan-btn-f:hover { background: var(--gold2); }

/* Comparison table */
.comparison-wrap {
  max-width: 900px;
  margin: 80px auto 0;
}
.comparison-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ivory);
  text-align: center;
  margin-bottom: 32px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.comparison-table thead th {
  padding: 16px 20px;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
  border-bottom: 1px solid rgba(184,155,94,0.25);
}
.comparison-table thead th:not(:first-child) { text-align: center; }
.comparison-table td {
  padding: 14px 20px;
  color: rgba(246,241,232,0.6);
  border-bottom: 1px solid rgba(246,241,232,0.05);
}
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.comparison-table .check { color: var(--gold); font-size: 0.9rem; }
.comparison-table .dash { color: rgba(246,241,232,0.2); }
.comparison-table td:first-child { color: rgba(246,241,232,0.8); }
.comparison-table .featured-col { color: var(--ivory) !important; }

/* ===== FOOTER ===== */
footer {
  background: #060f18;
  padding: 72px 60px 40px;
  border-top: 1px solid rgba(184,155,94,0.1);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--ivory);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand-text {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(246,241,232,0.4);
  max-width: 280px;
  font-weight: 300;
  margin-bottom: 28px;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0.7;
}
.footer-col-title {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(246,241,232,0.45);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-links a:hover { color: var(--ivory); }
.footer-bottom {
  border-top: 1px solid rgba(246,241,232,0.06);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(246,241,232,0.25);
  letter-spacing: 0.06em;
}
.footer-legal {
  font-size: 0.7rem;
  color: rgba(246,241,232,0.2);
  max-width: 460px;
  text-align: right;
  line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== PAGE-SPECIFIC ===== */

/* --- SERVICES PAGE --- */
.page-hero {
  background: var(--navy);
  padding: 180px 60px 120px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.page-hero-label { color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 16px; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; font-family: var(--sans); }
.page-hero-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  max-width: 600px;
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }

.services-full {
  padding: 100px 60px;
  background: var(--ivory);
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: 72px 0;
  border-bottom: 1px solid rgba(11,27,43,0.08);
  align-items: start;
}
.service-row:first-child { padding-top: 0; }
.service-row-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(11,27,43,0.08);
  line-height: 1;
  margin-bottom: 8px;
}
.service-row-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
}
.service-row-right {}
.service-row-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
}
.service-row-text {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--gray);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 24px;
}
.service-row-features {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.feature-tag {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(11,27,43,0.06);
  padding: 6px 14px;
  transition: background 0.3s, color 0.3s;
}
.feature-tag:hover {
  background: var(--gold);
  color: var(--navy);
}

/* --- CONTACT PAGE --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
  margin-top: 72px;
}
.contact-info {
  background: var(--navy);
  padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,155,94,0.3), transparent);
}
.contact-heading {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 28px;
}
.contact-heading em { font-style: italic; color: var(--gold-light); }
.contact-subtext {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(246,241,232,0.5);
  max-width: 380px;
  margin-bottom: 56px;
}
.contact-methods {
  display: flex; flex-direction: column; gap: 32px;
}
.contact-method {
  display: flex; align-items: flex-start; gap: 20px;
}
.contact-method-icon {
  width: 40px; height: 40px;
  background: rgba(184,155,94,0.1);
  border: 1px solid rgba(184,155,94,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-method-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-method-value {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ivory);
}
.contact-method-value a {
  color: inherit; text-decoration: none;
  transition: color 0.3s;
}
.contact-method-value a:hover { color: var(--gold-light); }
.contact-note {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(246,241,232,0.08);
  font-size: 0.75rem;
  color: rgba(246,241,232,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--sans);
}

.contact-form-panel {
  background: var(--ivory);
  padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.form-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 40px;
}
.form-group {
  margin-bottom: 28px;
}
.form-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
  opacity: 0.7;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(11,27,43,0.2);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.form-submit {
  margin-top: 16px;
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 16px 40px;
  border: none;
  /*cursor: none;*/
  transition: background 0.3s, transform 0.2s;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.form-success {
  background: rgba(11,27,43,0.06);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 32px;
  font-family: var(--serif);
  font-style: italic;
}
.form-error {
  background: rgba(180,50,50,0.06);
  border-left: 3px solid #b44;
  padding: 24px 28px;
  font-size: 0.9rem;
  color: #b44;
  margin-bottom: 32px;
}

/* ===== MEMBERSHIP PAGE FULL ===== */
.membership-page-intro {
  background: var(--ivory);
  padding: 100px 60px;
  max-width: 760px;
}
.membership-page-intro p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--charcoal);
  font-weight: 300;
  font-family: var(--serif);
}
.nonmember-section {
  background: var(--ivory-dark);
  padding: 80px 60px;
}
.nonmember-heading {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 40px;
}
.nonmember-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
}
.nonmember-card {
  background: var(--ivory);
  padding: 40px;
  border: 1px solid rgba(11,27,43,0.08);
}
.nonmember-type {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.nonmember-price {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 8px;
}
.nonmember-desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ============================
   NAV
   ============================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 56px;
  transition: padding .4s, background .4s, backdrop-filter .4s;
}
#nav.solid {
  padding: 16px 56px;
  background: rgba(11,27,43,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184,155,94,0.12);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon { width: 32px; height: 32px; }
.nav-logo-text { font-family: var(--serif); font-size: 1rem; font-weight: 300; letter-spacing: .14em; color: var(--ivory); text-transform: uppercase; line-height: 1.1; }
.nav-logo-sub { display: block; font-family: var(--sans); font-size: .55rem; letter-spacing: .28em; color: var(--gold); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(246,241,232,.6); text-decoration: none; transition: color .3s; }
.nav-links a:hover { color: var(--ivory); }
.nav-cta-btn { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--navy); background: var(--gold); padding: 11px 26px; text-decoration: none; transition: background .3s, transform .2s; display: inline-block; }
.nav-cta-btn:hover { background: var(--gold2); transform: translateY(-1px); }

/* ============================
   BURGER + DROPDOWN MENU
   ============================ */
#burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: 1px solid rgba(184,155,94,.25);
  cursor: none; z-index: 600; flex-shrink: 0;
  transition: border-color .3s, background .3s;
  position: relative;
}
#burger:hover { border-color: var(--gold); background: rgba(184,155,94,.06); }
.burger-bar {
  display: block; width: 20px; height: 1.5px;
  background: var(--ivory);
  transition: transform .3s cubic-bezier(.77,0,.18,1), opacity .2s, width .25s;
  transform-origin: center;
}
#burger.open .burger-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#burger.open .burger-bar:nth-child(2) { opacity: 0; width: 0; }
#burger.open .burger-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
 
/* Dropdown panel */
#mobile-dropdown {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 550;
  background: rgba(8,19,30,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(184,155,94,.18);
  transform: translateY(-105%);
  transition: transform .38s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
  padding: 88px 0 0;
}
#mobile-dropdown.open {
  transform: translateY(0);
  pointer-events: all;
}
 
/* Gold top accent line */
#mobile-dropdown::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,155,94,.3), transparent);
}
 
.dd-links {
  list-style: none;
  border-top: 1px solid rgba(184,155,94,.08);
}
.dd-link-item {
  border-bottom: 1px solid rgba(184,155,94,.07);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .3s, transform .3s;
}
#mobile-dropdown.open .dd-link-item { opacity: 1; transform: translateY(0); }
#mobile-dropdown.open .dd-link-item:nth-child(1) { transition-delay: .06s; }
#mobile-dropdown.open .dd-link-item:nth-child(2) { transition-delay: .10s; }
#mobile-dropdown.open .dd-link-item:nth-child(3) { transition-delay: .14s; }
#mobile-dropdown.open .dd-link-item:nth-child(4) { transition-delay: .18s; }
 
.dd-link-item a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  font-family: var(--serif); font-size: 1.4rem; font-weight: 200;
  color: rgba(246,241,232,.7); text-decoration: none;
  transition: color .2s, background .2s, padding-left .2s;
}
.dd-link-item a:hover {
  color: var(--ivory);
  background: rgba(184,155,94,.04);
  padding-left: 36px;
}
.dd-link-arrow {
  font-size: .7rem; color: var(--gold); opacity: .5;
  transition: opacity .2s, transform .2s;
}
.dd-link-item a:hover .dd-link-arrow { opacity: 1; transform: translateX(4px); }
 
/* Bottom bar inside dropdown */
.dd-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px;
  opacity: 0; transform: translateY(-6px);
  transition: opacity .3s .22s, transform .3s .22s;
}
#mobile-dropdown.open .dd-bottom { opacity: 1; transform: translateY(0); }
.dd-contact-info {
  font-size: .65rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(246,241,232,.28);
}
.dd-contact-info a { color: rgba(184,155,94,.5); text-decoration: none; }
.dd-cta-btn {
  font-family: var(--sans); font-size: .66rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--navy); background: var(--gold);
  padding: 11px 22px; text-decoration: none; transition: background .25s;
}
.dd-cta-btn:hover { background: var(--gold2); }

/* ============================
   SECTION 4: CINEMATIC ABOUT
   ============================ */
#about-scene { background: var(--navy); }
#about-sticky {
  background: var(--navy);
  width: 100%; position: relative; overflow: hidden;
}

#about-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(22,45,69,0.95), var(--navy));
}

#about-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  height: 100vh; width: 100%;
}

.about-art-col {
  display: flex; align-items: center; justify-content: center;
  padding: 80px 60px;
  position: relative;
}


.about-text-col {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 80px 80px 40px;
}

.about-label { font-family: var(--sans); font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.about-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
/* .about-name { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 200; color: var(--ivory); line-height: 1.05; margin-bottom: 8px; } */
.about-name em { font-style: italic; display: block; font-size: .7em; color: var(--gold2); }
.about-title { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(246,241,232,.4); margin-bottom: 36px; }
.about-body { font-family: var(--serif); font-size: 1.05rem; font-weight: 300; line-height: 1.9; color: rgba(246,241,232,.7); margin-bottom: 48px; font-style: italic; max-width: 480px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.astat-val { font-family: var(--serif); font-size: 2.4rem; font-weight: 200; color: var(--gold2); line-height: 1; margin-bottom: 6px; }
.astat-label { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(246,241,232,.35); }

/* Hero banner */
.about-page-hero {
  position: relative;
  background: linear-gradient(135deg, #060f18 0%, #0e2236 50%, #0B1B2B 100%);
  padding: 140px 80px 80px;
  overflow: hidden;
  border-bottom: 1px solid rgba(184,155,94,.12);
}
.about-page-hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,155,94,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,155,94,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.about-ekg {
  position: absolute; bottom: 0; left: 0; right: 0;
  width: 100%; height: 120px; pointer-events: none;
}
.about-page-hero-content { position: relative; z-index: 2; }
.about-page-eyebrow {
  font-family: var(--sans); font-size: .62rem; letter-spacing: .32em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
}
.about-page-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); opacity: .6; }
.about-page-title {
  font-family: var(--serif); font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 200; color: var(--ivory); line-height: 1;
  letter-spacing: -.01em; margin-bottom: 20px;
}
.about-page-credentials {
  font-family: var(--sans); font-size: .7rem; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(184,155,94,.7);
}

/* Body layout */
.about-page-body {
  display: grid; grid-template-columns: 420px 1fr;
  gap: 0;
  background: var(--navy);
}

/* Left column */
.about-page-left {
  background: #060f18;
  border-right: 1px solid rgba(184,155,94,.1);
  position: sticky; top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.about-page-portrait {
  flex: 1; overflow: hidden;
}
.about-page-portrait svg { width: 100%; height: 100%; display: block; }

/* Art panel replaces portrait */
.about-art-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-bg-art {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
/* Monogram overlay */
.about-monogram {
  position: relative; z-index: 2;
  text-align: center;
  pointer-events: none;
}
.about-monogram-letters {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 200;
  color: rgba(184,155,94,.15);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 16px;
}
.about-monogram-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(246,241,232,.55);
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.about-monogram-cred {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
}

.about-page-stats {
  display: flex; align-items: stretch;
  border-top: 1px solid rgba(184,155,94,.1);
  flex-shrink: 0;
}
/* Right column */
.about-page-right {
  padding: 72px 80px 100px;
  max-width: 780px;
}

.about-page-section-label {
  font-family: var(--sans); font-size: .6rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.about-page-section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); opacity: .5; }

.about-page-lead {
  font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 200; color: var(--ivory); line-height: 1.55;
  margin-bottom: 36px; font-style: italic;
}

.about-page-text {
  font-size: .92rem; font-weight: 300; color: rgba(246,241,232,.6);
  line-height: 1.9; margin-bottom: 22px; max-width: 580px;
}

/* Pull quote */
.about-page-quote {
  position: relative;
  margin: 44px 0;
  padding: 36px 44px 36px 48px;
  border-left: 2px solid var(--gold);
  background: rgba(184,155,94,.04);
  font-family: var(--serif); font-size: 1.25rem; font-weight: 200;
  font-style: italic; color: var(--ivory); line-height: 1.6;
}
.about-page-quote-mark {
  position: absolute; top: 10px; left: 14px;
  font-family: var(--serif); font-size: 5rem; font-weight: 200;
  color: var(--gold); line-height: 1; opacity: .35;
}

/* Credential list */
.about-cred-list { display: flex; flex-direction: column; gap: 20px; }
.about-cred-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(184,155,94,.1);
  transition: border-color .3s, background .3s;
}
.about-cred-item:hover { border-color: rgba(184,155,94,.3); background: rgba(184,155,94,.03); }
.about-cred-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid rgba(184,155,94,.2);
  display: flex; align-items: center; justify-content: center;
}
.about-cred-title {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 300;
  color: var(--ivory); margin-bottom: 4px;
}
.about-cred-school {
  font-size: .75rem; color: rgba(246,241,232,.4);
  letter-spacing: .04em; line-height: 1.5;
}

/* Clinical focus tags */
.about-focus-grid {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px;
}
.about-focus-tag {
  font-family: var(--sans); font-size: .67rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(184,155,94,.8);
  border: 1px solid rgba(184,155,94,.2); padding: 9px 18px;
  transition: background .25s, color .25s, border-color .25s;
}
.about-focus-tag:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* CTA */
.about-page-cta {
  display: inline-block; font-family: var(--sans);
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--navy); background: var(--gold); padding: 16px 44px;
  text-decoration: none; transition: background .3s, transform .2s;
}
.about-page-cta:hover { background: var(--gold2); transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav { padding: 18px 30px; }
  .hero-stats { display: none; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-card { border-bottom: 1px solid rgba(11,27,43,0.1); }
  .visual-section { grid-template-columns: 1fr; }
  .visual-art-panel { min-height: 400px; }
  .services-intro { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-strip { grid-template-columns: 1fr; }
  .about-content { grid-column: 1; }
  .plans-grid { grid-template-columns: 1fr; max-width: 500px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
   #servicestages {
    flex-wrap: wrap;
    gap: 10px;
    display: inherit;
    position: relative;

  }
}
@media (max-width: 640px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 20px; padding-top: 60px; }
  .value-section, .services-overview, .about-strip, .membership-section { padding: 80px 20px; }
  .value-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-info, .contact-form-panel { padding: 60px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 60px 24px 32px; }
  .form-row { grid-template-columns: 1fr; }
   #servicestages {
    flex-wrap: wrap;
    gap: 10px;
    display: inherit;
    position: relative;

  }
}
/* Mobile about */
@media (max-width: 900px) {
  .about-page-hero { padding: 110px 24px 60px; }
  .about-page-body { grid-template-columns: 1fr; }
  .about-page-left { position: relative; height: auto; }
  .about-page-portrait { max-height: 400px; }
  .about-page-right { padding: 48px 24px 72px; }
  .about-page-quote { padding: 28px 28px 28px 36px; font-size: 1.05rem; }
  #servicestages {
    flex-wrap: wrap;
    gap: 10px;
    display: inherit;
    position: relative;

  }
}

/* ============================
   MOBILE QUICK FIX
   ============================ */
@media (max-width: 900px) {
  #nav { padding: 18px 24px; }
  #nav.solid { padding: 14px 24px; }
  .nav-links { display: none; }
  #burger { display: flex; }
  #features-sticky { grid-template-columns: 1fr; }
  .feat-right { display: none; }
  .feat-panel { padding: 40px 28px; position: relative; opacity: 1; transform: none; }
  #about-content { grid-template-columns: 1fr; }
  .about-art-col { display: none; }
  .about-text-col { padding: 60px 28px; }
  #plans-grid { grid-template-columns: 1fr; max-width: 460px; }
  #svc-track { padding: 0 24px; }
  .svc-header { padding: 0 24px; }
  #contact-sticky { grid-template-columns: 1fr; }
  .contact-left { display: none; }
  .contact-right { padding: 100px 28px 60px; }
  #footer { padding: 48px 24px 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .flegal { text-align: center; }
  #compare-sticky { padding: 0 20px; overflow-x: auto; }
   #servicestages {
    flex-wrap: wrap;
    gap: 10px;
    display: inherit;
    position: relative;

  }
}
.login-layout{
  min-height: calc(100vh - 72px);
  margin-top: 72px;
}
.login-container {
  width: 100%;
  height:100vh;
  /* max-width: 420px; */
  padding: 20px;
}
.input-group {
    margin-bottom: 20px;
}
.login-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(184,155,94,0.15);
    padding: 100px 36px;
    backdrop-filter: blur(10px);
}
.login-welcome{
  background:rgba(11,27,43,0.92) url("../assets/images/loginnewimage.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position:center;
  padding: 40px 196px;
  position: relative;
}
.login-layout .logo {
    text-align: center;
    margin-bottom: 32px;
}
.login-layout .logo h1 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: uppercase;
    /* color: var(--ivory); */
}
.login-layout .logo p {
    font-size: .55rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 6px;
}
.login-layout .login-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 900;
    /* color: var(--ivory); */
    margin-bottom: 28px;
    text-align: center;
}
.login-layout input:focus {
                border-color: var(--gold);
                background: rgba(255,255,255,0.06);
            }
.login-layout input::placeholder {
                color: rgba(243, 216, 166, 0.4);
            }
.login-layout button {
                width: 100%;
                padding: 12px;
                background: var(--gold);
                color: var(--navy);
                font-size: .7rem;
                letter-spacing: .18em;
                text-transform: uppercase;
                border: none;
                cursor: pointer;
                font-family: var(--sans);
                transition: background .2s;
                font-weight: 500;
            }
.login-layout button:hover {
                background: var(--gold-light);
            }
.login-layout .error {
                background: rgba(224,92,92,0.15);
                border: 1px solid rgba(224,92,92,0.3);
                padding: 10px 14px;
                font-size: .7rem;
                color: #e05c5c;
                margin-bottom: 20px;
                text-align: center;
            }
.login-layout .footer{
    margin:10px;
}
.login-layout .register{
    color:rgba(11, 27, 43, 0.92);
        /* margin:10px; */
}
