:root {
  --ink: #081321;
  --muted: #53606f;
  --paper: #fbf5ed;
  --paper-2: #fffaf3;
  --amber: #f2a51a;
  --amber-deep: #d98706;
  --sage: #6d806f;
  --line: rgba(8, 19, 33, 0.16);
  --white: #ffffff;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(251, 245, 237, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand strong {
  display: block;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  font-weight: 700;
}

.site-nav a:not(.button) {
  position: relative;
}

.site-nav a:not(.button)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #132235;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-toggle path,
.link-action path,
.service-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  max-width: 1440px;
  min-height: min(680px, calc(100svh - 88px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 74px) clamp(20px, 7vw, 96px) clamp(32px, 4vw, 56px);
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(3.35rem, 7vw, 6.8rem);
}

h1 span {
  color: var(--amber);
}

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

h3 {
  font-size: 1rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 30px;
  font-size: clamp(1.08rem, 1.5vw, 1.38rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.link-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-weight: 900;
  text-transform: uppercase;
}

.link-action svg {
  width: 20px;
  height: 20px;
}

.hero-art {
  margin-right: max(-120px, -7vw);
  pointer-events: none;
}

.hero-art img {
  width: min(760px, 58vw);
  min-width: 460px;
}

.section-inner,
.split-section,
.contact,
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding-right: clamp(20px, 5vw, 48px);
  padding-left: clamp(20px, 5vw, 48px);
}

.services {
  background: var(--ink);
  color: var(--white);
}

.services .section-inner {
  max-width: 1320px;
  padding-top: clamp(36px, 5vw, 58px);
  padding-bottom: clamp(42px, 5vw, 64px);
}

.services h2 {
  margin-bottom: clamp(30px, 4vw, 48px);
  text-align: center;
  font-size: clamp(2rem, 3vw, 3rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-item {
  min-height: 210px;
  padding: 0 clamp(20px, 2.8vw, 42px);
  text-align: center;
}

.service-item + .service-item {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.service-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 26px;
  color: var(--amber);
}

.service-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 7vw, 96px);
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(70px, 9vw, 120px);
}

.body-copy {
  color: #243142;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.audience {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.narrow {
  padding-top: clamp(70px, 8vw, 108px);
  padding-bottom: clamp(70px, 8vw, 108px);
}

.narrow > h2 {
  max-width: 880px;
  margin-bottom: 42px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.audience-grid article {
  min-height: 260px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper-2);
}

.audience-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--amber-deep);
  font-weight: 900;
}

.audience-grid h3 {
  margin-bottom: 12px;
}

.audience-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.process {
  align-items: start;
}

.process-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.process-list strong {
  color: var(--amber-deep);
  text-transform: uppercase;
}

.process-list span {
  color: #253244;
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(20px, 4vw, 44px);
  padding-top: clamp(56px, 8vw, 88px);
  padding-bottom: clamp(56px, 8vw, 88px);
  background: var(--ink);
  color: var(--white);
}

.contact h2 {
  max-width: 780px;
  margin-bottom: 22px;
}

.contact p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.link-action.light {
  color: var(--white);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 82px;
  color: #2d3948;
  text-align: center;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 22px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-art {
    margin: -28px auto -40px;
  }

  .hero-art img {
    width: min(620px, 92vw);
    min-width: 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 0;
  }

  .service-item:nth-child(3) {
    border-left: 0;
  }

  .split-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact {
    align-items: start;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 74px;
    padding: 12px 16px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 1.12rem;
  }

  .brand small {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 24px 50px rgba(8, 19, 33, 0.16);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .site-nav .button {
    margin-top: 8px;
  }

  .hero {
    gap: 18px;
    padding: 26px 20px 40px;
    overflow: visible;
  }

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

  h1 {
    max-width: 11ch;
    margin-bottom: 20px;
    font-size: clamp(2.85rem, 12vw, 4rem);
    line-height: 0.92;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1;
  }

  .hero-text {
    margin-bottom: 24px;
    font-size: 1.08rem;
  }

  .hero-art {
    order: 2;
    width: calc(100% + 70px);
    margin: -10px -56px -30px auto;
  }

  .hero-art img {
    width: 100%;
    min-width: 0;
  }

  .service-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .service-item,
  .service-item + .service-item,
  .service-item:nth-child(3) {
    border-left: 0;
  }

  .service-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px 18px;
    min-height: auto;
    padding: 24px 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    text-align: left;
  }

  .service-item:first-child {
    border-top: 0;
  }

  .service-icon {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    margin: 2px 0 0;
  }

  .service-item h3 {
    margin-bottom: 4px;
  }

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

  .site-footer {
    flex-direction: column;
    gap: 8px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (max-width: 560px) {
  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.74rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    width: 100%;
  }

  .link-action {
    justify-content: center;
  }

  .section-inner,
  .split-section,
  .contact,
  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .services .section-inner {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .services h2 {
    margin-bottom: 18px;
    text-align: left;
  }

  .split-section,
  .narrow {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .audience-grid article {
    min-height: auto;
    padding: 26px 22px;
  }

  .audience-grid span {
    margin-bottom: 24px;
  }

  .contact {
    margin-bottom: 0;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
