:root {
  --ink: #102d31;
  --ink-2: #24484c;
  --paper: #fbf7ee;
  --cream: #f4ead9;
  --sand: #e5d4ba;
  --sage: #ccdbd3;
  --line: rgba(16, 45, 49, 0.14);
  --accent: #c86f46;
  --accent-2: #8a4d38;
  --white: #fffdf8;
  --shadow: 0 22px 70px rgba(16, 45, 49, 0.13);
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(200, 111, 70, 0.11), transparent 30rem),
    var(--paper);
}

img {
  max-width: 100%;
}

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

.topbar,
.hero,
.section,
.process-section,
footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--paper);
  background: var(--ink);
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 1px;
}

.brand span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.topbar nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.topbar nav a {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.3px;
  transition: 180ms ease;
}

.button:hover {
  border-color: var(--accent-2);
  background: var(--accent-2);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 12px;
}

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

.button-light:hover {
  border-color: var(--sand);
  color: var(--ink);
  background: var(--sand);
}

.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
  padding: 82px 0 70px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -1.2px;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(54px, 6.1vw, 84px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.02;
}

h3 {
  font-size: 24px;
  line-height: 1.12;
}

.hero-text,
.section-heading p,
.deliverable-copy p,
.about-copy p,
.cta p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.75;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
}

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

.text-link {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.4px;
}

.text-link::after {
  margin-left: 8px;
  color: var(--accent-2);
  content: "->";
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.hero-points div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.hero-points strong,
.report-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
}

.hero-points span,
.report-list span {
  color: var(--ink-2);
  font-size: 12px;
  line-height: 1.5;
}

.hero-media {
  position: relative;
  min-height: 580px;
  border: 12px solid #efe1c8;
  border-radius: 38px;
  background: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 45, 49, 0.24), transparent 45%),
    linear-gradient(0deg, rgba(16, 45, 49, 0.44), transparent 55%);
  content: "";
}

.hero-media img,
.deliverable-image img,
.about-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-media img {
  min-height: 580px;
}

.media-card {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 280px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 18px;
  color: var(--white);
  background: rgba(16, 45, 49, 0.74);
  backdrop-filter: blur(12px);
}

.media-card.top {
  top: 24px;
  left: 24px;
}

.media-card.bottom {
  right: 24px;
  bottom: 24px;
}

.media-card span {
  color: var(--sage);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.media-card strong {
  font-size: 14px;
}

.signal-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  color: var(--white);
  background: var(--ink);
}

.signal-bar span {
  padding: 8px 14px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 999px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 850;
}

.section {
  padding: 108px 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 46px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 64px;
  align-items: end;
  max-width: none;
}

.section-heading.split p {
  margin-bottom: 0;
}

.problem-grid,
.service-grid,
.process-grid,
.category-grid {
  display: grid;
  gap: 18px;
}

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

.problem-grid article,
.service-card,
.category-grid article {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 14px 46px rgba(16, 45, 49, 0.06);
}

.problem-grid article {
  min-height: 286px;
  padding: 30px;
}

.problem-grid span,
.card-head strong,
.process-grid span {
  color: var(--accent-2);
  font-family: Georgia, serif;
  font-size: 19px;
}

.problem-grid h3 {
  margin: 44px 0 12px;
  font-family: Georgia, serif;
  font-weight: 500;
}

.problem-grid p,
.service-card p,
.process-grid p,
.category-grid p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.7;
}

.services {
  padding-top: 60px;
}

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

.service-card {
  min-height: 438px;
  padding: 28px;
}

.service-card.highlight {
  color: var(--white);
  background: var(--ink);
}

.service-card.highlight p,
.service-card.highlight li {
  color: var(--sage);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.card-head span {
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.service-card.highlight .card-head span,
.service-card.highlight .card-head strong {
  color: var(--sage);
}

.service-card h3 {
  max-width: 210px;
  margin-bottom: 14px;
  font-family: Georgia, serif;
  font-size: 29px;
  font-weight: 500;
}

.service-card ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 850;
}

.service-card.highlight li {
  border-color: rgba(255, 253, 248, 0.18);
}

.dark-section {
  background: var(--ink);
}

.process-section {
  padding: 112px 0;
}

.light h2,
.light p,
.dark-section .eyebrow {
  color: var(--white);
}

.dark-section .eyebrow {
  color: var(--sage);
}

.process-grid {
  grid-template-columns: repeat(5, 1fr);
}

.process-grid div {
  min-height: 245px;
  padding: 22px 18px 0 0;
  border-top: 1px solid rgba(255, 253, 248, 0.22);
}

.process-grid h3 {
  margin: 42px 0 12px;
  color: var(--white);
  font-family: Georgia, serif;
  font-weight: 500;
}

.process-grid p {
  color: var(--sage);
}

.deliverables {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.deliverable-image,
.about-media {
  height: 520px;
  border-radius: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.report-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.report-list div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.categories {
  padding-top: 40px;
}

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

.category-grid article {
  min-height: 210px;
  padding: 28px;
}

.category-grid span {
  display: block;
  margin-bottom: 46px;
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.boundary {
  padding-top: 20px;
  padding-bottom: 70px;
}

.boundary-card {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 54px;
  padding: 46px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 32px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), #24484c);
}

.boundary-card h2,
.boundary-card p,
.boundary-card .eyebrow {
  color: var(--white);
}

.boundary-card p {
  margin-bottom: 0;
  line-height: 1.75;
}

.about {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: center;
  padding-top: 70px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
  padding: 74px calc((100% - min(1180px, calc(100% - 48px))) / 2);
  color: var(--white);
  background: var(--accent-2);
}

.cta h2,
.cta p,
.cta .eyebrow {
  color: var(--white);
}

.cta p {
  max-width: 740px;
  margin-bottom: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: var(--ink-2);
  font-size: 12px;
}

@media (max-width: 1080px) {
  .service-grid,
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .topbar nav {
    display: none;
  }

  .hero,
  .section-heading.split,
  .deliverables,
  .boundary-card,
  .about {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

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

  .hero-media,
  .hero-media img {
    min-height: 460px;
  }

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

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .topbar,
  .hero,
  .section,
  .process-section,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .topbar .button {
    display: none;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 38px;
  }

  .hero {
    gap: 36px;
    padding-top: 44px;
    padding-bottom: 46px;
  }

  .hero-actions,
  .signal-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-media,
  .hero-media img {
    min-height: 360px;
  }

  .hero-media {
    border-width: 7px;
    border-radius: 24px;
  }

  .media-card {
    max-width: calc(100% - 28px);
    padding: 12px 14px;
  }

  .media-card.top {
    top: 14px;
    left: 14px;
  }

  .media-card.bottom {
    right: 14px;
    bottom: 14px;
  }

  .section {
    padding: 76px 0;
  }

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

  .service-card,
  .problem-grid article {
    min-height: auto;
  }

  .deliverable-image,
  .about-media {
    height: 360px;
  }

  .boundary-card {
    padding: 30px;
  }

  .cta {
    padding: 58px 24px;
  }

  footer {
    flex-direction: column;
  }
}
