:root {
  --navy: #0f2240;
  --navy-soft: #183357;
  --gold: #c9a84c;
  --gold-dark: #a98728;
  --warm-white: #faf8f4;
  --cream: #f5f0e8;
  --sage: #d8e0d3;
  --ink: #1a1a1a;
  --muted: #67635c;
  --line: rgba(15, 34, 64, 0.14);
  --white: #ffffff;
  --font-heading: "DM Serif Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --shadow: 0 18px 50px rgba(15, 34, 64, 0.12);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

p {
  margin: 0 0 1rem;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section.tight {
  padding: 56px 0;
}

.eyebrow {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.35rem, 5.2vw, 4.45rem);
  max-width: 860px;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.55rem);
}

h3 {
  font-size: 1.45rem;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2.1vw, 1.22rem);
  max-width: 760px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 34, 64, 0.16);
}

.btn.primary {
  background: var(--navy);
  color: var(--white);
}

.btn.gold {
  background: var(--gold);
  color: var(--navy);
}

.btn.outline {
  border-color: var(--line);
  background: transparent;
  color: var(--navy);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(250, 248, 244, 0.78);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(250, 248, 244, 0.96);
}

.nav {
  display: flex;
  height: 76px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 750;
}

.nav-links a {
  opacity: 0.78;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--gold-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-size: 1.4rem;
}

.hero {
  display: grid;
  min-height: calc(86vh - 76px);
  align-items: center;
  padding: 54px 0 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 20px;
}

.pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(201, 168, 76, 0.36);
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-dark);
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 850;
}

.portrait {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  width: min(380px, 78vw);
  place-items: center;
  justify-self: center;
  border: 10px solid var(--cream);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(201, 168, 76, 0.38), transparent 32%),
    linear-gradient(140deg, var(--navy), #24476e 70%);
  box-shadow: var(--shadow);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 5rem;
  overflow: hidden;
}

.photo-portrait {
  background: var(--navy);
}

.photo-portrait img {
  width: 112%;
  height: 112%;
  object-fit: cover;
  object-position: 50% 42%;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stat-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 9px 13px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.band {
  background: var(--navy);
  color: var(--white);
}

.band h1,
.band h2,
.band h3 {
  color: var(--white);
}

.credibility-section {
  padding: 0 0 30px;
}

.credibility {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px 22px;
  box-shadow: 0 10px 32px rgba(15, 34, 64, 0.06);
}

.credibility strong {
  color: var(--gold-dark);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credibility span {
  color: var(--navy);
  font-weight: 750;
}

.section-head {
  display: grid;
  max-width: 780px;
  gap: 12px;
  margin-bottom: 34px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card p,
.project-meta,
.article-meta,
.muted {
  color: var(--muted);
}

.card p {
  margin: 0;
}

.feature-card {
  background: var(--cream);
}

.feature-card h3,
.band .feature-card h3 {
  color: var(--navy);
}

.impact-section {
  background: var(--cream);
}

.metric-card {
  background: var(--white);
}

.metric-card h3 {
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.1;
}

.page-hero {
  padding: 68px 0;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 4.4vw, 3.9rem);
  max-width: 820px;
}

.page-hero .portrait {
  width: min(400px, 78vw);
}

.navy-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}

.navy-card h3 {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  border-left: 3px solid var(--gold);
  background: var(--white);
  padding: 18px 20px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 8px 12px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 760;
}

.price-box {
  border-radius: var(--radius);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.84);
  padding: 34px;
}

.price-secondary {
  width: 100%;
  margin-top: 10px;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.price {
  margin: 8px 0 12px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
}

.original-price {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.original-price span {
  text-decoration: line-through;
}

.clarity-logo {
  width: min(360px, 86vw);
  height: auto;
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: var(--radius);
  background: var(--warm-white);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.clarity-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.clarity-hero-grid .section-head {
  margin-bottom: 0;
}

.clarity-logo-panel {
  display: flex;
  justify-content: center;
}

.check-list,
.cross-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.cross-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
}

.check-list li::before {
  content: "✓";
  color: var(--gold-dark);
  font-weight: 900;
}

.cross-list li::before {
  content: "×";
  color: #9d3d35;
  font-weight: 900;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: 18px 20px;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 30px;
  align-items: start;
}

.article-card {
  display: grid;
  gap: 10px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 8px 13px;
  color: var(--navy);
  font-weight: 800;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
}

.article-body h2 {
  margin: 44px 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: start;
}

.contact-paths {
  display: grid;
  gap: 14px;
}

.contact-card {
  min-height: 170px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form-card {
  position: sticky;
  top: 96px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.calendly-box {
  overflow: hidden;
  min-height: 650px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 46px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.footer-title {
  color: var(--white);
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  font-weight: 750;
}

.footer-bottom {
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  font-size: 0.9rem;
}

.message {
  display: none;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-weight: 750;
}

.message.show {
  display: block;
}

.message.error {
  background: #f8e8e6;
  color: #8d2f29;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--warm-white);
    padding: 14px 16px 22px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-links .btn {
    justify-content: flex-start;
    border-radius: 0;
    padding: 14px 4px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .clarity-hero-grid,
  .split,
  .blog-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .portrait {
    width: min(300px, 76vw);
  }

  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 64px 0;
  }

  .button-row,
  .btn {
    width: 100%;
  }

  .btn {
    padding-left: 14px;
    padding-right: 14px;
  }

  .price-box {
    padding: 24px;
  }
}
