@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --navy-950: #07111d;
  --navy-900: #0b1726;
  --navy-800: #12263d;
  --navy-700: #203b59;
  --orange-600: #b95f2f;
  --orange-500: #d2733e;
  --orange-100: #f6e6dc;
  --ink: #172231;
  --muted: #657180;
  --line: #dfe4e8;
  --surface: #ffffff;
  --surface-muted: #f4f5f3;
  --cream: #f7f2ea;
  --max-width: 1180px;
  --shadow: 0 24px 60px rgba(7, 17, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: white;
  color: var(--navy-900);
  border-radius: 4px;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.eyebrow {
  margin-bottom: 18px;
  color: var(--orange-600);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #e9a47c;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(7, 17, 29, 0.94);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.42);
  color: #f1b08a;
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.brand-name {
  font-family: "Manrope", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  color: #dbe3eb;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: white;
}

.site-nav .nav-cta {
  padding: 11px 17px;
  color: white;
  border: 1px solid rgba(255,255,255,0.32);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: white;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(210, 115, 62, 0.22), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -240px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255,255,255,0.1);
  transform: rotate(18deg);
}

.hero-grid {
  min-height: 720px;
  padding-block: 100px 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.68fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 span {
  color: #e6a27a;
}

.hero-lede {
  max-width: 740px;
  margin-top: 28px;
  color: #cdd8e4;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange-500);
  color: white;
}

.button-primary:hover {
  background: #df7d46;
}

.button-secondary {
  border-color: rgba(255,255,255,0.3);
  color: white;
}

.button-light {
  background: white;
  color: var(--navy-900);
}

.hero-proof {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 2px;
}

.hero-proof div {
  min-height: 100px;
  padding: 18px 16px;
  background: rgba(255,255,255,0.06);
  border-left: 2px solid rgba(230, 162, 122, 0.55);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
}

.hero-proof span {
  margin-top: 7px;
  color: #aebccc;
  font-size: 0.78rem;
}

.hero-panel {
  position: relative;
  z-index: 2;
  padding: 36px;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.panel-kicker {
  color: var(--orange-600);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin-top: 16px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.signal-list {
  margin-top: 28px;
  list-style: none;
}

.signal-list li {
  position: relative;
  padding: 15px 0 15px 25px;
  border-top: 1px solid var(--line);
  color: #4e5a68;
  font-size: 0.94rem;
}

.signal-list li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 24px;
  width: 7px;
  height: 7px;
  background: var(--orange-500);
}

.panel-outcome {
  margin-top: 22px;
  padding: 20px;
  background: var(--cream);
  font-weight: 600;
}

.panel-outcome span {
  display: block;
  margin-bottom: 7px;
  color: var(--orange-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

.trust-grid span {
  padding: 10px 18px;
  color: #505b68;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-grid span:last-child {
  border-right: 0;
}

.section {
  padding-block: 112px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 56px;
}

.section-heading.narrow {
  max-width: 780px;
}

.section-heading h2 {
  max-width: 810px;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 355px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(9, 29, 47, 0.1);
}

.service-card.featured {
  background: var(--navy-900);
  color: white;
}

.card-number {
  display: block;
  color: var(--orange-500);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.card-label {
  margin-top: 46px;
  color: var(--orange-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured .card-label {
  color: #e9a47c;
}

.service-card h3 {
  margin-top: 11px;
  font-size: 1.6rem;
}

.service-card > p:not(.card-label):not(.service-meta) {
  margin-top: 17px;
  color: var(--muted);
}

.featured > p:not(.card-label):not(.service-meta) {
  color: #c9d5e1;
}

.service-card ul {
  margin-top: 20px;
  padding-left: 18px;
  color: #c9d5e1;
  font-size: 0.9rem;
}

.service-meta {
  margin-top: 22px;
  color: #e8a47d;
  font-size: 0.78rem;
  font-weight: 700;
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(32, 59, 89, 0.32), transparent 50%),
    var(--navy-950);
  color: white;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 90px;
  align-items: start;
}

.light-copy {
  max-width: 520px;
  margin-top: 26px;
  color: #afbdcb;
  font-size: 1.05rem;
}

.process-list {
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.17);
}

.process-list li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.17);
}

.process-list > li > span {
  color: #e7a27a;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.process-list h3 {
  font-size: 1.3rem;
}

.process-list p {
  margin-top: 9px;
  color: #afbdcb;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.metrics-grid article {
  min-height: 176px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--surface-muted);
  border-top: 3px solid var(--orange-500);
}

.metrics-grid strong,
.metrics-grid span {
  display: block;
}

.metrics-grid strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.05em;
}

.metrics-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.experience-note {
  max-width: 860px;
  margin-top: 34px;
  padding-left: 24px;
  border-left: 3px solid var(--orange-500);
  color: #46525f;
  font-size: 1.06rem;
}

.section-muted {
  background: var(--surface-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 760px);
  gap: 70px;
  align-items: start;
}

.about-monogram {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(210,115,62,0.14), transparent 55%),
    var(--navy-900);
  color: white;
  font-family: "Manrope", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.about-role {
  margin-top: 13px;
  color: var(--orange-600);
  font-weight: 700;
}

.about-grid p:not(.eyebrow):not(.about-role) {
  margin-top: 20px;
  color: #53606c;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  margin-top: 28px;
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: none;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 68px;
  align-items: start;
}

.contact-copy > p:not(.eyebrow) {
  margin-top: 24px;
  color: #596572;
  font-size: 1.03rem;
}

.contact-details {
  margin-top: 40px;
  display: grid;
  gap: 12px;
}

.contact-details div {
  padding: 17px 0;
  border-top: 1px solid #d9d1c7;
}

.contact-details span,
.contact-details strong,
.contact-details a {
  display: block;
}

.contact-details span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details strong,
.contact-details a {
  margin-top: 4px;
  font-weight: 700;
}

.form-shell {
  min-height: 520px;
  padding: 38px;
  background: white;
  box-shadow: 0 20px 55px rgba(33, 35, 35, 0.09);
}

.form-heading {
  margin-bottom: 26px;
}

.form-heading p {
  color: var(--orange-600);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin-top: 9px;
  font-size: 1.75rem;
}

.hs-form-frame {
  min-height: 360px;
}

.form-fallback {
  padding: 16px;
  background: var(--surface-muted);
  color: var(--muted);
}

.closing-cta {
  padding-block: 72px;
  background: var(--orange-600);
  color: white;
}

.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.closing-inner h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.site-footer {
  padding-block: 56px;
  background: var(--navy-950);
  color: #aab8c6;
}

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

.footer-brand {
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a {
  color: #dbe3eb;
  text-decoration: none;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem;
}

:focus-visible {
  outline: 3px solid #f0a276;
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-block: 80px;
  }

  .hero-panel {
    max-width: 680px;
  }

  .hero-proof {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    padding-block: 16px;
  }

  .trust-grid span {
    border-right: 0;
  }

  .about-grid {
    grid-template-columns: 220px 1fr;
    gap: 42px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 0;
    padding: 36px 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-950);
  }

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

  .site-nav a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    font-size: 1.05rem;
  }

  .site-nav .nav-cta {
    margin-top: 22px;
    padding: 14px 16px;
    text-align: center;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 64px;
    gap: 44px;
  }

  .hero-proof,
  .card-grid,
  .metrics-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-monogram {
    width: min(100%, 280px);
  }

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

  .section {
    padding-block: 78px;
  }

  .service-card {
    min-height: auto;
  }

  .closing-inner,
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .copyright {
    grid-column: auto;
  }

  .form-shell {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

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

  .process-list li {
    grid-template-columns: 46px 1fr;
  }
}


/* The ARTHH Method */
[id] {
  scroll-margin-top: 90px;
}

.method-section {
  position: relative;
  padding-block: 96px;
  background: #fbfbfa;
  border-top: 18px solid var(--navy-950);
  border-bottom: 18px solid var(--navy-950);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(64px, 9vw, 132px);
  align-items: start;
}

.method-intro {
  position: sticky;
  top: 126px;
}

.method-intro .eyebrow {
  color: #f05a2a;
  margin-bottom: 24px;
}

.method-intro h2 {
  max-width: 510px;
  color: #10222d;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.7rem, 4.6vw, 4.8rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.method-list {
  list-style: none;
  border-top: 1px solid #cfd6d8;
}

.method-list li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 30px 0 31px;
  border-bottom: 1px solid #cfd6d8;
}

.method-letter {
  color: #f05a2a;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(3rem, 4.2vw, 4.2rem);
  font-weight: 400;
  line-height: 0.92;
}

.method-list h3 {
  color: #10222d;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.method-list p {
  max-width: 610px;
  margin-top: 8px;
  color: #65727c;
  font-size: 1.02rem;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .method-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .method-intro {
    position: static;
  }

  .method-intro h2 {
    max-width: 760px;
  }
}

@media (max-width: 620px) {
  .method-section {
    padding-block: 68px;
    border-top-width: 12px;
    border-bottom-width: 12px;
  }

  .method-list li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 0;
  }

  .method-letter {
    font-size: 2.75rem;
  }

  .method-list h3 {
    font-size: 1.15rem;
  }

  .method-list p {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
