/* ═══════════════════════════════════════════════════════
   HERO — RE-ARCHITECTED
   Primary signal: High-Performing Women
   Tone: Diagnostic. Commanding. Zero sentimentality.
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh; min-height: 740px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* Left panel: copy */
.hero-left {
  position: relative;
  background: var(--navy-deep);
  padding-top: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5rem 6rem 5rem;
  z-index: 2;
}
/* Architectural grid */
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(color-mix(in srgb, var(--gold), transparent 95%) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--gold), transparent 95%) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
    /* Mask to fade edges: center is solid (black), edges are transparent */
  -webkit-mask-image: radial-gradient(circle, black 40%, transparent 90%);
  mask-image: radial-gradient(circle, black 40%, transparent 90%);
}
/* Gold vertical rule */
.hero-left::after {
  content: '';
  position: absolute; left: 5rem; top: 22%; bottom: 14%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.35;
}

.hero-content {
  position: relative; z-index: 1;
  padding-left: 2rem;
  animation: fadeUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}

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

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5.5vw, 5.6rem);
  font-weight: 300;
  line-height: 1.02;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 2.2rem;
  animation: fadeUp 1.2s 0.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.hero-title .line-gold { color: var(--gold); display: block; }
.hero-title .line-italic { font-style: italic; display: block; }

.hero-diagnostic {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 3rem;
  border-left: 1px solid color-mix(in srgb, var(--gold), transparent 25%);
  padding-left: 1.4rem;
  animation: fadeUp 1.2s 0.35s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.hero-diagnostic-line {
  font-size: 0.8rem;
  line-height: 1.9;
  color: color-mix(in srgb, var(--white), transparent 45%);
  font-weight: 300;
  letter-spacing: 0.03em;
}
.hero-diagnostic-line strong {
  color: color-mix(in srgb, var(--white), transparent 75%);
  font-weight: 500;
}

.hero-actions {
  display: flex; align-items: center; gap: 2rem;
  animation: fadeUp 1.2s 0.45s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.btn-primary {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy-deep);
  background: var(--gold);
  padding: 1rem 2.2rem;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, transform 0.3s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-line {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: color-mix(in srgb, var(--white), transparent 45%);
  text-decoration: none;
  display: flex; align-items: center; gap: 0.7rem;
  transition: color 0.3s;
}
.btn-line:hover { color: var(--gold); }
.btn-line-rule {
  width: 28px; height: 1px;
  background: currentColor;
  transition: width 0.3s;
  flex-shrink: 0;
}
.btn-line:hover .btn-line-rule { width: 44px; }

/* Right panel: image */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, color-mix(in srgb, var(--navy-deep), transparent 35%) 0%, transparent 40%),
    linear-gradient(to top, color-mix(in srgb, var(--navy-deep), transparent 50%) 0%, transparent 50%),
    url('../images/beautiful-mountain-in-the-cloud-fluffy-cloud-elite-vacation-resort.avif') center/cover no-repeat;
  transform: scale(1.03);
  animation: heroScale 20s ease-in-out infinite alternate;
}
@keyframes heroScale {
  from { transform: scale(1.03); }
  to   { transform: scale(1.00); }
}

/* Coordinate overlay */
.hero-coord {
  position: absolute; bottom: 3.5rem; right: 3rem;
  text-align: right; z-index: 2;
  animation: fadeUp 1.4s 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.hero-coord-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--white), transparent 35%);
  letter-spacing: 0.15em;
  display: block;
}
.hero-coord-label {
  font-size: 0.48rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--gold), transparent 20%);
  display: block;
  margin-top: 0.3rem;
}

/* ─── MARQUEE ─── */
.marquee-strip {
  background: var(--navy);
  padding: 0.9rem 0;
  overflow: hidden;
  border-top: 1px solid color-mix(in srgb, var(--gold), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--navy-deep), transparent 85%);
}
.marquee-track {
  display: flex;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--white), transparent 35%);
  padding: 0 2.5rem;
  display: flex; align-items: center; gap: 2.5rem;
}
.marquee-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5; flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTION BASE ─── */
.section-eyebrow {
  display: flex; align-items: center; gap: 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.section-eyebrow::before {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
}
  
.section-title em { font-style: italic; color: var(--teal); }
.section-body {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--text);
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════
   NICHE SPLIT — TWO SEGMENTS, SIDE BY SIDE
═══════════════════════════════════════════════════════ */
.niche-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.niche-panel {
  position: relative;
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  cursor: default;
}

.niche-panel-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
.niche-panel:hover .niche-panel-bg { transform: scale(1.04); }

.niche-panel-overlay {
  position: absolute; inset: 0;
  transition: opacity 0.5s;
}

.niche-panel--exec .niche-panel-bg {
  background-image: url('../images/high-performing-woman-niche-bg.avif');
}
.niche-panel--exec .niche-panel-overlay {
  background: linear-gradient(to top, color-mix(in srgb, var(--navy-deep), transparent 8%) 0%, color-mix(in srgb, var(--navy-deep), transparent 25%) 55%, color-mix(in srgb, var(--navy-deep), transparent 50%) 100%);
}

.niche-panel--sanctuary .niche-panel-bg {
  background-image: url('../images/the-solo-sanctuary-niche-bg.avif');
}
.niche-panel--sanctuary .niche-panel-overlay {
  background: linear-gradient(to top, color-mix(in srgb, var(--navy), transparent 8%) 0%, color-mix(in srgb, var(--navy), transparent 30%) 60%, color-mix(in srgb, var(--navy), transparent 50%) 100%);
}

.niche-content { position: relative; z-index: 2; }

.niche-tag {
  font-size: 0.7rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.9rem;
}

.niche-tag::before {
  content: '';
  display: block; width: 22px; height: 1px;
  background: var(--gold);
}

.niche-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.niche-title em { font-style: italic; }

.niche-body {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--white), transparent 35%);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 2.2rem;
}

.niche-cta {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  display: flex; align-items: center; gap: 0.6rem;
  transition: gap 0.3s;
}
.niche-cta:hover { gap: 1.1rem; }
.niche-cta-rule {
  width: 22px; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.niche-cta:hover .niche-cta-rule { width: 36px; }

/* Divider line between panels */
.niche-split::after {
  content: '';
  position: absolute;
  left: 50%; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, color-mix(in srgb, var(--gold), transparent 75%) 30%, color-mix(in srgb, var(--gold), transparent 75%) 70%, transparent);
  pointer-events: none;
  z-index: 3;
}
.niche-split { position: relative; }

/* ═══════════════════════════════════════════════════════
   THE SOLO SANCTUARY — FULL SECTION
   Architectural fortress of peace.
   Commands. Does not invite.
═══════════════════════════════════════════════════════ */
.sanctuary {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

/* Architectural background texture */
.sanctuary::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(color-mix(in srgb, var(--gold), transparent 95%) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--gold), transparent 95%) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Large watermark */
.sanctuary::after {
  content: 'SANCTUARY';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20vw;
  font-weight: 300;
  color: color-mix(in srgb, var(--white), transparent 98.5%);
  right: -3rem; bottom: -3rem;
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
}

.sanctuary-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}

/* Left: image column */
.sanctuary-visual {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.sanctuary-img {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, transparent 60%, var(--navy-deep) 100%),
    url('../images/solo-sanctuary-operational-restoration-bg-2.jpg') center/cover no-repeat;
}
/* Vertical text label */
.sanctuary-vertical-label {
  position: absolute;
  left: 2rem; top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-size: 0.86rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--gold), transparent 50%);
  font-weight: 600;
  white-space: nowrap;
}

/* Right: copy column */
.sanctuary-copy {
  padding: 8rem 6rem 8rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.sanctuary-header {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.sanctuary-subheader {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.sanctuary-divider {
  width: 40px; height: 1px;
  min-height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin-bottom: 3rem;
  display: block;
}

.sanctuary-body {
  font-size: 0.9rem;
  line-height: 2.05;
  color: color-mix(in srgb, var(--white), transparent 50%);
  font-weight: 300;
  margin-bottom: 1.6rem;
  max-width: 480px;
}
.sanctuary-body strong {
  color: color-mix(in srgb, var(--gold), transparent 85%);
  font-weight: 500;
}

.sanctuary-closing {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 3.5rem;
  line-height: 1.2;
}

.sanctuary-metrics {
  display: flex; gap: 3rem;
  margin-bottom: 3.5rem;
  border-top: 1px solid color-mix(in srgb, var(--white), transparent 88%);
  padding-top: 2.5rem;
}
.sanctuary-metric {
  display: flex; flex-direction: column; gap: 0.3rem;
}
.sanctuary-metric-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.sanctuary-metric-label {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--white), transparent 30%);
}

.sanctuary-metric-button {
	font-size: 0.7rem;
	font-weight: 300;
}

/* ═══════════════════════════════════════════════════════
   SERVICES GRID — PIVOTED
═══════════════════════════════════════════════════════ */
.services {
  background: var(--off-white);
  padding: 9rem 5rem;
}
.services-header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  margin-bottom: 5.5rem;
  align-items: end;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: color-mix(in srgb, var(--navy), transparent 95%);
}
.service-card {
  background: var(--white);
  padding: 3.2rem 2.8rem;
  position: relative;
  overflow: hidden;
  transition: background 0.45s, transform 0.4s;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.service-card:hover { background: var(--navy); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover .service-num  { color: color-mix(in srgb, var(--white), transparent 80%); }
.service-card:hover .service-name { color: var(--gold); }
.service-card:hover .service-desc { color: color-mix(in srgb, var(--white), transparent 45%); }
.service-card:hover .service-seg  { color: color-mix(in srgb, var(--gold), transparent 60%); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: color-mix(in srgb, var(--navy), transparent 75%);
  line-height: 1; margin-bottom: 2rem;
  transition: color 0.45s;
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 500;
  color: var(--navy); line-height: 1.25;
  margin-bottom: 1rem;
  transition: color 0.45s;
}
.service-desc {
  font-size: 0.9rem; 
  line-height: 1.9;
  color: var(--text);
  font-weight: 300;
  transition: color 0.45s;
}
.service-seg {
  margin-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  transition: color 0.45s;
}

/* ═══════════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════════ */
.process { background: var(--white); padding: 9rem 5rem; }
.process-header {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 6rem; margin-bottom: 6rem; align-items: end;
}
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 0.45rem; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold), color-mix(in srgb, var(--gold), transparent 15%));
}
.process-step { padding-right: 2.5rem; }
.step-node {
  width: 9px; height: 9px;
  border: 1px solid var(--gold);
  background: var(--white);
  margin-bottom: 2.4rem;
  position: relative; z-index: 1;
  transition: background 0.3s;
}
.process-step:hover .step-node { background: var(--gold); }
.step-num {
  font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; margin-bottom: 0.7rem;
}
.step-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 400;
  color: var(--navy); margin-bottom: 0.8rem;
}
.step-desc {
  font-size: 0.9rem; line-height: 1.85;
  color: var(--text); font-weight: 300;
}

/* ═══════════════════════════════════════════════════════
   CLIENT INTELLIGENCE (TESTIMONIALS)
═══════════════════════════════════════════════════════ */
.intel { background: var(--sand); padding: 9rem 5rem; position: relative; overflow: hidden; }
.intel::after {
  content: '\201C';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32rem; color: color-mix(in srgb, var(--navy), transparent 95%);
  right: 3rem; top: -8rem; line-height: 1;
  pointer-events: none;
}
.intel-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 4.5rem;
}
.intel-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: color-mix(in srgb, var(--navy), transparent 95%);
}
.intel-card {
  background: var(--white); padding: 3rem 2.8rem;
}
.intel-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; color: var(--gold);
  opacity: 0.4; line-height: 1; margin-bottom: 1rem;
}
.intel-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400;
  line-height: 1.75; color: var(--navy);
  font-style: italic; margin-bottom: 2.2rem;
}
.intel-rule { width: 28px; height: 1px; background: var(--gold); margin-bottom: 1.4rem; }
.intel-name {
  font-size: 0.85rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--navy); font-weight: 600;
}
.intel-role {
  font-size: 0.7rem; letter-spacing: 0.08em;
  color: var(--teal); margin-top: 0.25rem; font-weight: 400;
}


/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.23, 1, 0.32, 1), transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
