:root {
  --ink: #1f2328;
  --muted: #62666c;
  --paper: #fbf8f1;
  --panel: #ffffff;
  --field: #f3f0e9;
  --line: #dfd8cc;
  --evergreen: #6f2d34;
  --evergreen-2: #262b32;
  --copper: #a9792b;
  --mint: #ede6d8;
  --shadow: 0 20px 60px rgba(31, 35, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(237, 230, 216, 0.9), transparent 28rem),
    linear-gradient(135deg, #fbf8f1 0%, #f7f2e8 52%, #ffffff 100%);
  font-family: "Aptos", "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(251, 248, 241, 0.92);
  border-bottom: 1px solid rgba(31, 35, 40, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  background: var(--paper);
  border: 1px solid rgba(111, 45, 52, 0.18);
  border-radius: 0.45rem;
  box-shadow: 0 10px 24px rgba(31, 35, 40, 0.1);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-text {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 0.55rem 0.75rem;
  color: var(--muted);
  text-decoration: none;
  border-radius: 0.45rem;
}

.site-nav a:hover,
.portal-link {
  color: var(--ink);
  background: rgba(111, 45, 52, 0.09);
}

.section-shell {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 5.2rem);
  padding: clamp(3rem, 8vw, 7rem) 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Georgia", "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.03;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.18rem;
}

.hero-lede {
  max-width: 41rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 0.45rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #ffffff;
  background: var(--evergreen);
  box-shadow: 0 12px 30px rgba(111, 45, 52, 0.28);
}

.button.secondary {
  color: var(--evergreen-2);
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(111, 45, 52, 0.22);
}

.hero-panel {
  position: relative;
  padding: 1rem;
  background: linear-gradient(145deg, rgba(111, 45, 52, 0.97), rgba(38, 43, 50, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.45;
}

.signal-card {
  position: relative;
  padding: 1rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.6rem;
}

.signal-card.large {
  min-height: 15rem;
  margin-bottom: 1rem;
}

.signal-label,
.signal-card span {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.signal-card strong {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  line-height: 1;
}

.signal-card p {
  max-width: 19rem;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.76);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.signal-grid .signal-card {
  min-height: 7rem;
}

.signal-grid strong {
  font-size: 1.15rem;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  color: #ffffff;
  background: var(--evergreen-2);
}

.trust-bar span {
  padding: 1.1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
}

.problem-section,
.split-section,
.process-section,
.about-preview,
.client-experience-preview,
.outcome-section,
.assessment-layout,
.portal-cards {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-heading p,
.about-preview p,
.client-experience-preview p,
.page-hero p,
.assessment-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.center-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.problem-grid,
.industry-grid,
.process-grid,
.portal-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.problem-grid article,
.industry-grid article,
.process-grid article,
.portal-cards article,
.assessment-form,
.assessment-copy {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(111, 45, 52, 0.14);
  border-radius: 0.65rem;
  box-shadow: 0 14px 38px rgba(31, 35, 40, 0.08);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 6rem;
}

.service-list {
  display: grid;
  gap: 1rem;
}

.service-card {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.4rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
}

.service-card h3,
.service-card p {
  grid-column: 2;
}

.card-number {
  grid-row: 1 / span 2;
  color: var(--copper);
  font-weight: 900;
}

.service-card p,
.problem-grid p,
.industry-grid p,
.process-grid p,
.portal-cards p,
.price-card li {
  color: var(--muted);
}

.pricing-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--evergreen-2);
}

.pricing-section .section-heading h2,
.pricing-section .section-heading p {
  color: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  position: relative;
  padding: 1.5rem;
  background: #fbfaf6;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.75rem;
}

.price-card.featured {
  border-color: var(--copper);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.55rem;
  color: #ffffff;
  background: var(--copper);
  border-radius: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.best-for {
  min-height: 3.2rem;
  color: var(--muted);
}

.price {
  margin: 1.5rem 0;
}

.price strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.1;
}

.price span {
  display: block;
  color: var(--muted);
}

.price-card ul,
.check-list {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.2rem;
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.65rem;
}

.pricing-note p {
  max-width: 48rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.industry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-preview,
.client-experience-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  border-top: 1px solid rgba(111, 45, 52, 0.16);
  border-bottom: 1px solid rgba(111, 45, 52, 0.16);
}

.client-experience-preview {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr) auto;
}

.outcome-section {
  border-top: 1px solid rgba(111, 45, 52, 0.16);
}

.compliance-note {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid rgba(111, 45, 52, 0.16);
}

.compliance-note p {
  color: var(--muted);
  font-size: 1.08rem;
}

.outcome-layout {
  display: grid;
  grid-template-columns: minmax(120px, 0.3fr) minmax(0, 1fr);
  gap: 0 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outcome-label {
  padding: 1rem 0;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.outcome-layout p {
  margin: 0;
  padding: 1rem 0;
  color: var(--muted);
}

.outcome-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.process-grid article span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  margin-bottom: 1rem;
  color: #ffffff;
  background: var(--evergreen);
  border-radius: 0.4rem;
  font-weight: 900;
}

.final-cta {
  padding: clamp(4rem, 8vw, 7rem) 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--evergreen), var(--evergreen-2));
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 2rem clamp(1rem, 4vw, 3rem);
  background: #111b17;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.75);
}

.page-hero {
  max-width: 900px;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 4vw, 4rem);
}

.page-hero h1 {
  max-width: 13ch;
}

.legal-page {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.contact-page {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(111, 45, 52, 0.14);
  border-radius: 0.65rem;
  box-shadow: 0 14px 38px rgba(31, 35, 40, 0.08);
}

.contact-card p:not(.eyebrow) {
  color: var(--muted);
}

.contact-note {
  max-width: 70ch;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-copy {
  max-width: 780px;
  padding-bottom: 2rem;
}

.legal-copy h2 {
  margin-top: 2rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.legal-copy p {
  max-width: 70ch;
  color: var(--muted);
}

.assessment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.75fr);
  gap: 1.5rem;
  align-items: start;
}

.assessment-form {
  display: grid;
  gap: 0.85rem;
}

.assessment-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 2.9rem;
  padding: 0.75rem;
  color: var(--ink);
  background: var(--field);
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  font: inherit;
}

.scope-note,
.form-note {
  padding: 1rem;
  background: rgba(185, 108, 58, 0.1);
  border-left: 4px solid var(--copper);
  border-radius: 0.35rem;
}

.portal-page h1 {
  max-width: 14ch;
}

.about-page h1 {
  max-width: 14ch;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 2rem;
  padding: clamp(2rem, 5vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
}

.story-layout p {
  color: var(--muted);
  font-size: 1.08rem;
}

.leadership-section {
  padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.leader-grid article {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(111, 45, 52, 0.14);
  border-radius: 0.65rem;
  box-shadow: 0 14px 38px rgba(31, 35, 40, 0.08);
}

.leader-grid p {
  color: var(--muted);
}

.leader-initials {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  margin-bottom: 1rem;
  color: #ffffff;
  background: var(--evergreen);
  border-radius: 0.45rem;
  font-weight: 900;
}

.portal-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 920px) {
  .site-header,
  .site-nav {
    align-items: flex-start;
  }

  .site-header {
    position: static;
    flex-direction: column;
  }

  .hero,
  .split-section,
  .assessment-layout,
  .final-cta-inner,
  .about-preview,
  .client-experience-preview,
  .outcome-layout,
  .story-layout,
  .compliance-note,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .trust-bar,
  .problem-grid,
  .pricing-grid,
  .industry-grid,
  .process-grid,
  .footer-grid,
  .portal-cards,
  .leader-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-heading {
    position: static;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .brand-text {
    white-space: normal;
  }

  .site-nav a {
    padding: 0.5rem;
  }

  h1 {
    font-size: clamp(2.6rem, 17vw, 4.6rem);
  }

  .trust-bar,
  .problem-grid,
  .pricing-grid,
  .industry-grid,
  .process-grid,
  .footer-grid,
  .portal-cards,
  .leader-grid,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .pricing-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}