/* ============================================================
   HOMEPAGE STYLES — extracted from index.html inline <style>
   ============================================================ */

/* ---- Hero ---- */
.hero {
  padding: clamp(48px, 6vw, 96px) 0 clamp(72px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-meta .loc {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--slate-500); font-weight: 500;
}
.hero-meta .loc::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(31,138,91,.12);
}
.hero h1 .accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 500;
  font-family: 'Fraunces', serif;
  letter-spacing: -0.02em;
}
.hero .lead { margin-top: 28px; max-width: 560px; }
.hero-ctas {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-trust .item { display: flex; flex-direction: column; gap: 4px; }
.hero-trust .num {
  font-size: 24px; font-weight: 600; color: var(--ink-900);
  letter-spacing: -0.02em;
}
.hero-trust .num .sym { color: var(--magenta); }
.hero-trust .lbl { font-size: 12.5px; color: var(--slate-500); }

/* Hero visual — gradient orb composition */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink-900);
  box-shadow: var(--shadow-lg);
}
.hero-visual .glow-1, .hero-visual .glow-2, .hero-visual .glow-3 {
  position: absolute; border-radius: 50%; filter: blur(40px);
}
.hero-visual .glow-1 {
  width: 70%; height: 70%; top: -10%; right: -15%;
  background: radial-gradient(circle, rgba(229,40,141,.85), transparent 70%);
}
.hero-visual .glow-2 {
  width: 60%; height: 60%; bottom: -10%; left: -10%;
  background: radial-gradient(circle, rgba(242,107,58,.7), transparent 70%);
}
.hero-visual .glow-3 {
  width: 50%; height: 50%; top: 30%; left: 30%;
  background: radial-gradient(circle, rgba(138,43,140,.5), transparent 70%);
}
.hero-visual .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
}
.hero-visual .ring.r1 { inset: 8%; }
.hero-visual .ring.r2 { inset: 18%; border-color: rgba(255,255,255,.08); }
.hero-visual .ring.r3 { inset: 28%; border-color: rgba(255,255,255,.05); }
.hero-visual .center-card {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-md);
  padding: 18px 22px;
  color: var(--paper);
  min-width: 230px;
}
.hero-visual .center-card .row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  padding: 6px 0;
}
.hero-visual .center-card .row .ic {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(255,255,255,.12);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.hero-visual .center-card .row.active .ic { background: var(--magenta); }
.hero-visual .center-card .divider { height: 1px; background: rgba(255,255,255,.08); margin: 6px 0; }
.hero-visual .float-tag {
  position: absolute;
  background: rgba(10,26,53,.85);
  backdrop-filter: blur(8px);
  color: var(--paper);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-pill);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-visual .float-tag .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 3px rgba(229,40,141,.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(229,40,141,.3); }
  50% { box-shadow: 0 0 0 6px rgba(229,40,141,0); }
}
.hero-visual .float-tag.t1 { top: 12%; left: -8%; }
.hero-visual .float-tag.t2 { bottom: 18%; right: -8%; }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { width: 100%; max-width: 480px; margin: 0 auto; }
  .hero-visual .float-tag.t1 { left: 4%; }
  .hero-visual .float-tag.t2 { right: 4%; }
}

/* Heritage strip */
.heritage-strip {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.heritage-strip-inner {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.heritage-strip .heritage-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--slate-700); font-weight: 500;
  padding-right: 24px; border-right: 1px solid var(--line);
  white-space: nowrap;
  flex-shrink: 0;
}
.heritage-strip .heritage-label svg { width: 16px; height: 16px; color: var(--magenta); }
.heritage-strip .logos {
  flex: 1 1 320px;
  min-width: 0;
  gap: 16px 24px;
}
.heritage-strip .logo-ph {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 980px) {
  .heritage-strip .heritage-label { border-right: 0; padding-right: 0; }
  .heritage-strip .logos { grid-template-columns: repeat(3, 1fr); }
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.service {
  background: var(--paper);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .2s ease;
  position: relative;
}
.service:hover { background: var(--cream); }
.service .icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--cream-2);
  color: var(--ink-900);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.service:hover .icon-wrap { background: var(--magenta); color: var(--paper); }
.service .icon-wrap svg { width: 22px; height: 22px; }
.service h3 { font-size: 18px; }
.service p { font-size: 14.5px; }
.service .num {
  position: absolute; top: 28px; right: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-400);
}
.service .link {
  margin-top: auto;
  padding-top: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-900);
  display: inline-flex; align-items: center; gap: 6px;
}
.service .link::after { content: "→"; transition: transform .2s; }
.service:hover .link::after { transform: translateX(3px); color: var(--magenta); }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* Customer Journey */
.journey-section { background: var(--ink-900); color: var(--paper); position: relative; overflow: hidden; }
.journey-section::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 50%; height: 80%;
  background: radial-gradient(circle, rgba(229,40,141,.18), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.journey-section .section-head h2 { color: var(--paper); }
.journey-section .section-head p { color: var(--slate-300); }
.journey-section .eyebrow { color: #FF9DC4; }
.journey-section .eyebrow::before { background: #FF9DC4; }

.journey { position: relative; margin-top: 24px; }
.journey-rail {
  position: absolute;
  top: 26px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15) 8%, rgba(255,255,255,.15) 92%, transparent);
}
.journey-rail .progress {
  position: absolute; top: 0; left: 8%;
  height: 1px;
  background: var(--gradient-brand);
  width: 0;
  transition: width .35s ease;
}
.journey-stages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.stage {
  cursor: pointer;
  text-align: left;
  background: none;
  border: 0;
  color: inherit;
  padding: 0;
  display: flex; flex-direction: column;
}
.stage .node {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink-800);
  border: 1px solid rgba(255,255,255,.18);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--slate-300);
  position: relative;
  z-index: 1;
  transition: all .25s ease;
}
.stage:hover .node, .stage.active .node {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--paper);
  box-shadow: 0 0 0 6px rgba(229,40,141,.18);
}
.stage .stage-name {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 600;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.stage .stage-tag {
  margin-top: 6px;
  font-size: 12px;
  color: var(--slate-400);
  font-family: var(--font-mono);
}
.stage.active .stage-tag { color: #FF9DC4; }

.journey-detail {
  margin-top: 48px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  min-height: 240px;
}
.journey-detail .left h3 { color: var(--paper); font-size: 26px; margin-bottom: 14px; }
.journey-detail .left p { color: var(--slate-300); font-size: 16px; }
.journey-detail .left .pillrow { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.journey-detail .left .pillrow .p {
  font-size: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--slate-300);
  padding: 5px 11px;
  border-radius: var(--r-pill);
}
.journey-detail .right {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.journey-detail .right h4 {
  color: var(--slate-400);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.journey-detail .right .channel {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,.03);
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--paper);
}
.journey-detail .right .channel .ic {
  width: 24px; height: 24px; border-radius: 6px;
  background: rgba(229,40,141,.18);
  color: #FF9DC4;
  display: inline-flex; align-items: center; justify-content: center;
}
.journey-detail .right .channel .ic svg { width: 13px; height: 13px; }
.journey-detail .right .channel .meta { margin-left: auto; font-size: 11.5px; color: var(--slate-400); font-family: var(--font-mono); }

@media (max-width: 900px) {
  .journey-stages { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .stage .stage-name { font-size: 13px; }
  .stage .stage-tag { display: none; }
  .journey-detail { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
}

/* Heritage / Communications story split */
.heritage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.heritage .img-ph {
  aspect-ratio: 5 / 4;
  border-radius: var(--r-lg);
  background:
    repeating-linear-gradient(135deg, #E5E7EE 0 2px, transparent 2px 18px),
    var(--cream-2);
  border: 1px solid var(--line);
  position: relative;
  display: flex; align-items: flex-end; padding: 20px;
}
.heritage .img-ph .tag {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-500);
}
.heritage .img-real {
  aspect-ratio: 5 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.heritage .img-real img { width: 100%; height: 100%; object-fit: cover; display: block; }
.heritage .copy h2 { margin-bottom: 24px; }
.heritage .copy .quote-mark {
  font-size: 64px; font-family: 'Fraunces', serif;
  color: var(--magenta);
  line-height: 0.5;
  margin-bottom: 24px;
}
@media (max-width: 900px) { .heritage { grid-template-columns: 1fr; gap: 40px; } }

/* Metrics strip (feature-flagged) */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.metrics-strip .kpi { padding: 36px 28px; border-right: 1px solid var(--line); }
.metrics-strip .kpi:last-child { border-right: 0; }
.metrics-strip .kpi .num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink-900);
  line-height: 1;
}
.metrics-strip .kpi .lbl {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--slate-500);
  line-height: 1.4;
}
@media (max-width: 800px) {
  .metrics-strip { grid-template-columns: repeat(2, 1fr); }
  .metrics-strip .kpi:nth-child(2) { border-right: 0; }
  .metrics-strip .kpi:nth-child(1), .metrics-strip .kpi:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* Testimonials grid (feature-flagged) */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.t-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .2s ease, box-shadow .25s ease;
}
.t-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.t-card .mark {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  line-height: 0.4;
  color: var(--magenta);
}
.t-card blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-900);
  font-weight: 500;
  letter-spacing: -0.005em;
  flex: 1;
}
.t-card .author {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.t-card .ava {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--cream-2);
  color: var(--slate-500);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.t-card .who { display: flex; flex-direction: column; gap: 2px; }
.t-card .who strong { font-size: 13.5px; font-weight: 600; color: var(--ink-900); }
.t-card .who span { font-size: 12px; color: var(--slate-500); }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

/* Three CTA paths */
.cta-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.cta-path {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.cta-path:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.cta-path.primary {
  background: var(--ink-900);
  color: var(--paper);
  border-color: var(--ink-900);
}
.cta-path.primary::before {
  content: "";
  position: absolute;
  top: -30%; right: -20%;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(229,40,141,.35), transparent 65%);
  filter: blur(30px);
}
.cta-path.primary h3 { color: var(--paper); }
.cta-path.primary p { color: var(--slate-300); }
.cta-path .badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  color: var(--magenta);
  background: rgba(229,40,141,.1);
  margin-bottom: 18px;
}
.cta-path.primary .badge { color: var(--paper); background: var(--magenta); }
.cta-path h3 { font-size: 22px; margin-bottom: 12px; }
.cta-path p { font-size: 14.5px; margin-bottom: 28px; min-height: 60px; }
.cta-path .ctabtn { margin-top: auto; }
.cta-path .meta { margin-top: 14px; font-size: 12px; color: var(--slate-500); display: flex; align-items: center; gap: 6px; }
.cta-path.primary .meta { color: var(--slate-400); }
@media (max-width: 900px) { .cta-paths { grid-template-columns: 1fr; } }

/* Final consultation banner */
.consult {
  background: var(--ink-900);
  color: var(--paper);
  border-radius: var(--r-xl);
  padding: clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.consult::before {
  content: "";
  position: absolute;
  bottom: -50%; right: -10%;
  width: 60%; height: 140%;
  background: var(--gradient-brand);
  opacity: 0.25;
  filter: blur(60px);
}
.consult-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.consult h2 { color: var(--paper); font-size: clamp(32px, 4vw, 48px); }
.consult p { color: var(--slate-300); margin-top: 18px; max-width: 480px; font-size: 17px; }
.consult-right { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.consult-right .phone-block {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 18px 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.consult-right .phone-block .label { font-size: 12px; color: var(--slate-400); letter-spacing: 0.08em; text-transform: uppercase; }
.consult-right .phone-block .num { font-size: 22px; font-weight: 600; color: var(--paper); letter-spacing: -0.01em; }
@media (max-width: 800px) { .consult-inner { grid-template-columns: 1fr; gap: 32px; } }
