/* ═══════════════════════════════════════════════
   NAVIRA — Master Stylesheet
   houseofnavira.com
   Brand: Ink #111010 · Sand #F0ECE4 · Slate #3A4040
   Type: Raleway 200 (display) · Jost 300 (body)
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300&family=Jost:wght@300;400&display=swap');

:root {
  --ink:        #111010;
  --sand:       #F0ECE4;
  --warm-sand:  #E8E2D4;
  --slate:      #3A4040;
  --forest:     #2C3828;
  --stone:      #9A9690;
  --patina:     #6B7A64;
  --mist:       #E4E0D8;
  --brass:      #A89070;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--sand);
  color: var(--ink);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: 0.08em; font-weight: 200; }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1rem, 2vw, 1.3rem); letter-spacing: 0.12em; text-transform: uppercase; }

p { font-size: 0.95rem; line-height: 1.9; color: var(--slate); }

/* ─── LAYOUT ─── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}
.container--wide {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 96px 0; }
section + section { border-top: 1px solid var(--mist); }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--sand);
  border-bottom: 1px solid var(--mist);
  height: 72px;
  display: flex;
  align-items: center;
}
/* offset for taller nav */
.page-content { padding-top: 72px; }
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-wordmark {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: 15px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }

/* page offset handled in nav block above */

/* ─── HERO ─── */
.hero {
  background: var(--ink);
  padding: 120px 0 100px;
  border-bottom: none;
}
.hero-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 40px;
}
.hero h1 {
  color: var(--warm-sand);
  font-weight: 100;
  margin-bottom: 28px;
  max-width: 680px;
}
.hero-tagline {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 48px;
}
.hero-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--stone);
  max-width: 560px;
  margin-bottom: 56px;
}
.hero-divider {
  width: 40px;
  height: 1px;
  background: var(--patina);
  margin-bottom: 56px;
}

/* ─── CTA BUTTON ─── */
.btn {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid currentColor;
  transition: all 0.25s;
  cursor: pointer;
}
.btn-light {
  color: var(--warm-sand);
  border-color: rgba(232,226,212,0.4);
}
.btn-light:hover {
  background: var(--warm-sand);
  color: var(--ink);
}
.btn-dark {
  color: var(--ink);
  border-color: rgba(17,16,16,0.3);
}
.btn-dark:hover {
  background: var(--ink);
  color: var(--warm-sand);
}

/* ─── SECTION LABEL ─── */
.section-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 32px;
  display: block;
}

/* ─── PROBLEM SECTION ─── */
.section-problem { background: var(--sand); }
.section-problem h2 { margin-bottom: 28px; color: var(--ink); }
.section-problem p { max-width: 640px; }
.section-problem p + p { margin-top: 16px; }

/* ─── WHAT NAVIRA IS ─── */
.section-navira { background: var(--warm-sand); }
.navira-intro { max-width: 640px; margin-bottom: 56px; }
.navira-intro p + p { margin-top: 16px; }

/* ─── NAVICORE ENTRY BLOCK ─── */
.section-navicore-entry { background: var(--slate); }
.section-navicore-entry .section-label { color: var(--patina); }
.section-navicore-entry h2 { color: var(--warm-sand); margin-bottom: 20px; }
.section-navicore-entry p { color: rgba(232,226,212,0.7); max-width: 560px; margin-bottom: 40px; }
.section-navicore-entry .btn { color: var(--warm-sand); border-color: rgba(232,226,212,0.35); }
.section-navicore-entry .btn:hover { background: var(--warm-sand); color: var(--slate); }

/* ─── ABOUT BLOCK ─── */
.section-about-home { background: var(--sand); }
.about-home-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-home-left .section-label { margin-bottom: 16px; }
.about-home-left h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 4px;
  text-transform: none;
}
.about-home-left .title-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--stone);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.about-home-right p { margin-bottom: 16px; }

/* ─── TIERS ─── */
.tiers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 56px; }
.tier {
  background: var(--warm-sand);
  padding: 48px 40px;
}
.tier-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--patina);
  margin-bottom: 16px;
  display: block;
}
.tier h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 16px;
}
.tier-price {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 20px;
  display: block;
}
.tier p { font-size: 0.88rem; line-height: 1.85; }
.tier-detail {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--mist);
}
.tier-detail span {
  display: block;
  font-size: 0.8rem;
  color: var(--stone);
  letter-spacing: 0.05em;
  line-height: 1.7;
}

/* ─── PROOF POINTS ─── */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}
.proof-item {
  background: var(--warm-sand);
  padding: 32px 28px;
}
.proof-item .num {
  font-family: 'Raleway', sans-serif;
  font-weight: 100;
  font-size: 2rem;
  color: var(--ink);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 6px;
}
.proof-item p { font-size: 0.82rem; color: var(--stone); line-height: 1.6; }

/* ─── NAVICORE PAGE HERO ─── */
.hero-navicore { background: var(--slate); }
.hero-navicore h1 { color: var(--warm-sand); }
.hero-navicore .hero-tagline { color: var(--patina); }
.hero-navicore .hero-body { color: rgba(232,226,212,0.65); }

/* ─── ABOUT PAGE ─── */
.bio-section { background: var(--sand); }
.bio-long {
  max-width: 680px;
}
.bio-long p { margin-bottom: 22px; font-size: 0.95rem; }
.bio-long p:last-child { margin-bottom: 0; }

/* ─── CONTACT / CTA ─── */
.section-cta { background: var(--ink); }
.section-cta .section-label { color: var(--patina); }
.section-cta h2 { color: var(--warm-sand); margin-bottom: 20px; }
.section-cta p { color: rgba(232,226,212,0.65); max-width: 520px; margin-bottom: 36px; }
.email-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  letter-spacing: 0.15em;
  color: var(--warm-sand);
  border-bottom: 1px solid rgba(232,226,212,0.25);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.email-link:hover { border-color: var(--warm-sand); }

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(232,226,212,0.08);
  padding: 48px 0;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-wordmark {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--warm-sand);
}
.footer-tagline {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--stone);
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--warm-sand); }
.footer-copy {
  font-size: 0.7rem;
  color: rgba(154,150,144,0.5);
  letter-spacing: 0.05em;
  width: 100%;
  text-align: right;
  margin-top: 8px;
}

/* ─── FOUNDER PHOTO ─── */
.founder-photo-wrap {
  position: relative;
  overflow: hidden;
  background: var(--slate);
}
.founder-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
/* About page — portrait, face + torso visible */
.founder-photo-portrait {
  height: 420px;
}
/* Home page — wide working shot */
.founder-photo-wide {
  height: 480px;
  width: 100%;
}
/* About page grid layout */
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  align-items: start;
}
.about-page-photo {
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow: hidden;
  background: var(--slate);
}
.about-page-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media (max-width: 768px) {
  .about-page-grid { grid-template-columns: 1fr; }
  .about-page-photo { height: 380px; position: relative; top: 0; }
  .founder-photo-portrait { height: 360px; }
  .founder-photo-wide { height: 300px; }
}

/* ─── N MARK SIZING — consistent across all contexts ─── */
.nav-logo svg {
  width: 38px;
  height: 46px;
  flex-shrink: 0;
}
.footer-brand svg {
  width: 24px;
  height: 29px;
  flex-shrink: 0;
}
/* N mark inline */
.n-mark-inline { display: inline-block; vertical-align: middle; }

/* ─── DIVIDER LINE ─── */
.rule {
  width: 48px;
  height: 1px;
  background: var(--patina);
  margin: 40px 0;
}

/* ─── VISUAL ELEMENTS ─── */

/* Large decorative N mark — hero background watermark */
.hero-n-bg {
  position: absolute;
  left: -50px;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.2;
  pointer-events: none;
}

/* Stat callout strip */
.stat-strip {
  background: var(--warm-sand);
  padding: 48px 0;
  border-top: none;
}
.stat-strip-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  background: var(--sand);
  padding: 32px 24px;
  text-align: center;
}
.stat-num {
  font-family: 'Raleway', sans-serif;
  font-weight: 100;
  font-size: 2.8rem;
  color: var(--ink);
  display: block;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-desc {
  font-size: 0.78rem;
  color: var(--stone);
  line-height: 1.55;
  letter-spacing: 0.03em;
}

/* Visual accent bar — gradient */
.accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--forest) 0%, var(--patina) 40%, var(--brass) 75%, var(--warm-sand) 100%);
  width: 100%;
}

/* Quote / pull quote */
.pull-quote {
  border-left: 3px solid var(--brass);
  padding: 8px 0 8px 32px;
  margin: 32px 0;
}
.pull-quote p {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-style: italic;
}

/* Icon dots — decorative three-dot separator */
.dot-sep {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 40px 0;
}
.dot-sep span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--patina);
  display: block;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.process-step {
  background: var(--warm-sand);
  padding: 40px 32px;
  position: relative;
}
.step-num {
  font-family: 'Raleway', sans-serif;
  font-weight: 100;
  font-size: 3rem;
  color: var(--mist);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
}
.process-step h3 {
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.process-step p {
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container, .container--wide { padding: 0 20px; }
  .about-home-inner { grid-template-columns: 1fr; gap: 40px; }
  .tiers-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.68rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }
}

@media (max-width: 480px) {
  .proof-grid { grid-template-columns: 1fr; }
  .hero { padding: 80px 0 64px; }
}
