/* Vantier Med Spa LP — Global Styles */

:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --off-black: #111111;
  --surface: #161616;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.75);
  --text-muted: rgba(255,255,255,0.58);
  --text-dim: rgba(255,255,255,0.50);
  --green: #22c55e;
  --green-bg: rgba(34,197,94,0.08);
  --green-border: rgba(34,197,94,0.18);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--white);
}

h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-secondary);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Layout ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section-pad {
  padding-top: 96px;
  padding-bottom: 96px;
}

@media (max-width: 768px) {
  .section-pad {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

/* ── Hero grid ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.hero-copy {
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
  padding-right: clamp(0px, 3vw, 2.5rem);
  max-width: 580px;
}

.hero-form-col {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    align-items: start;
  }
  .hero-copy {
    padding-top: 1rem;
    padding-bottom: 1.25rem;
    max-width: 100%;
    padding-right: 0;
  }
  .hero-form-col {
    padding-top: 0;
    padding-bottom: 1.5rem;
  }
  .hero-form-col > * {
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* ── Grid overlay ── */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* ── Trust bar ── */
.trust-bar {
  background: #0f0f0f;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow-x: auto;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 3vw, 28px);
}

.trust-item {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.trust-item svg {
  color: var(--green);
}

/* ── Eyebrow pill ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.eyebrow-text {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Trust strip (hero) ── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1.5vw, 16px);
}

.trust-strip-item {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

/* ── Section label ── */
.section-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

/* ── Card ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

/* ── Guarantee bar ── */
.guarantee-bar {
  margin-top: 1.5rem;
  padding: 16px 24px;
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}

/* ── CTA button ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  min-height: 52px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
}

/* ── Sticky mobile CTA ── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px 16px;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.10);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: block;
  }
}

/* ── How It Works timeline ── */
.timeline-line {
  width: 1px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, var(--border-strong), var(--border));
  margin: 4px 0;
}

/* ── Final CTA radial glow ── */
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(34,197,94,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Nav ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1;
  cursor: pointer;
}

/* ── Proof pull quote ── */
.pull-quote {
  max-width: 640px;
  margin: 0 auto;
  padding: 22px 26px;
  border-left: 3px solid var(--green);
  background: rgba(34,197,94,0.04);
  border-radius: 0 8px 8px 0;
}

.pull-quote p {
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: var(--white);
  line-height: 1.6;
  font-style: italic;
  letter-spacing: 0.01em;
  margin: 0;
}

/* ── Stat card ── */
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}

.stat-value {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.stat-sub {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 300;
}

/* ── Service pillar card ── */
.pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
}

.pillar-num {
  font-family: var(--serif);
  font-size: 2.25rem;
  color: var(--text-dim);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.04em;
}

/* ── ICP card ── */
.icp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Process step ── */
.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-tag {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 2px 8px;
  white-space: nowrap;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--black);
}

/* ── Responsive grids ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.icp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

/* ── Bullet list ── */
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bullet-check {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── Skip link (sr-only / focus:not-sr-only) ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only:focus {
  position: fixed;
  width: auto;
  height: auto;
  padding: 8px 16px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* ── Nav CTA button ── */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  border-radius: 6px;
  text-decoration: none;
  min-height: 36px;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  opacity: 0.85;
}

/* ── Nav CTA — hide text on very small screens, keep button ── */
@media (max-width: 360px) {
  .nav-cta {
    font-size: 0.75rem;
    padding: 7px 12px;
  }
}
