:root {
  --paper: #f4f4f0;
  --paper-strong: #ffffff;
  --ink: #171814;
  --muted: #656861;
  --line: #cfd1ca;
  --accent: #173f32;
  --shell: 1180px;
  --header-height: 68px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

h1,
h2,
h3,
p,
figure,
dl,
dd,
ol {
  margin: 0;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 8px 12px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  padding-inline: max(32px, calc((100vw - var(--shell)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(244, 244, 240, 0.96);
}

.brand {
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 22px;
  color: #5c5e58;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--ink);
}

.desktop-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
}

.menu-button,
.mobile-nav {
  display: none;
}

.section-label,
.eyebrow {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.section-label::before,
.eyebrow::before {
  display: inline-block;
  width: 20px;
  height: 1px;
  margin-right: 9px;
  background: currentColor;
  vertical-align: middle;
  content: "";
}

h1,
h2,
h3 {
  line-height: 1.18;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(42px, 4.3vw, 56px);
}

h2 {
  font-size: clamp(32px, 3.2vw, 44px);
}

h3 {
  font-size: 20px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  transition: background 140ms ease, color 140ms ease;
}

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

.button-dark:hover {
  background: var(--accent);
  border-color: var(--accent);
}

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

.button-light:hover {
  background: var(--ink);
  color: #fff;
}

/* Homepage */

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(54px, 8vw, 108px);
  align-items: center;
  padding-block: 58px 66px;
  border-bottom: 1px solid var(--line);
}

.home-hero-copy h1 {
  max-width: 630px;
  margin-top: 18px;
}

.hero-lead {
  max-width: 520px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
}

.home-hero-copy .button {
  margin-top: 32px;
}

.home-hero-media {
  height: 430px;
  overflow: hidden;
  background: #ddd;
}

.home-hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  filter: grayscale(1);
}

.statement {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(70px, 10vw, 140px);
  padding-block: 94px;
  border-bottom: 1px solid var(--line);
}

.statement-title h2 {
  margin-top: 16px;
}

.reason-list {
  border-top: 1px solid var(--ink);
}

.reason-list article {
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1fr);
  gap: 30px;
  padding: 24px 0 26px;
  border-bottom: 1px solid var(--line);
}

.reason-list h3 {
  font-size: 17px;
}

.reason-list p {
  color: var(--muted);
  font-size: 15px;
}

.service-map {
  padding-block: 94px;
}

.service-map-head {
  display: grid;
  grid-template-columns: 240px minmax(0, 680px);
  gap: 50px;
  align-items: start;
}

.service-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.05fr;
  gap: 38px;
  margin-top: 52px;
  border-top: 1px solid var(--ink);
}

.service-link {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 24px 8px 22px 0;
  border-bottom: 1px solid var(--line);
}

.service-link-type {
  color: var(--muted);
  font-size: 12px;
}

.service-link h3 {
  margin-top: 34px;
  font-size: 25px;
}

.service-link p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.service-action {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.service-link:hover .service-action {
  border-bottom-width: 2px;
}

.service-map-photo {
  height: 315px;
  margin-top: 24px;
  overflow: hidden;
}

.service-map-photo img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.decision-flow {
  padding-block: 82px 94px;
  border-top: 1px solid var(--line);
}

.decision-flow-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}

.decision-flow-intro p {
  max-width: 480px;
  color: var(--muted);
}

.decision-flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 44px;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.decision-flow-list li {
  min-height: 150px;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
  counter-increment: flow;
}

.decision-flow-list li::before {
  display: block;
  margin-bottom: 34px;
  color: var(--muted);
  content: "0" counter(flow);
  font-size: 12px;
}

.decision-flow-list strong,
.decision-flow-list span {
  display: block;
}

.decision-flow-list strong {
  font-size: 18px;
}

.decision-flow-list span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.home-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 44px 48px;
  background: var(--ink);
  color: #fff;
}

.home-contact .section-label {
  color: #b7bbb4;
}

.home-contact h2 {
  margin-top: 8px;
  font-size: clamp(27px, 3vw, 38px);
}

.home-contact .button-light {
  flex: 0 0 auto;
  border-color: #fff;
  color: #fff;
}

.home-contact .button-light:hover {
  background: #fff;
  color: var(--ink);
}

/* About */

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(54px, 7vw, 96px);
  align-items: center;
  padding-block: 56px 62px;
  border-bottom: 1px solid var(--line);
}

.about-hero-copy h1 {
  max-width: 560px;
  margin-top: 18px;
  font-size: clamp(40px, 3.9vw, 52px);
}

.about-hero-copy > p:last-child {
  max-width: 470px;
  margin-top: 21px;
  color: var(--muted);
  font-size: 16px;
}

.about-hero-media {
  height: 360px;
  overflow: hidden;
}

.about-hero-media img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.about-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(70px, 9vw, 128px);
  padding-block: 74px 80px;
  border-bottom: 1px solid var(--line);
}

.about-overview-intro h2 {
  font-size: 30px;
}

.about-overview-intro p {
  max-width: 520px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
}

.about-overview-facts {
  border-top: 2px solid var(--ink);
}

.about-overview-facts div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 19px 0 21px;
  border-bottom: 1px solid var(--line);
}

.about-overview-facts dt {
  color: var(--muted);
  font-size: 13px;
}

.about-overview-facts dd {
  font-size: 15px;
  font-weight: 700;
}

.about-choice {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(70px, 9vw, 128px);
  margin-top: 8px;
  padding-top: 30px;
  border-top: 2px solid var(--ink);
}

.about-choice h3 {
  font-size: 23px;
}

.about-choice-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 56px);
}

.about-choice-points p {
  padding-top: 17px;
  border-top: 1px solid var(--ink);
}

.about-choice-points strong,
.about-choice-points span {
  display: block;
}

.about-choice-points strong {
  font-size: 16px;
}

.about-choice-points span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.about-philosophy {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 54px clamp(60px, 8vw, 112px);
  align-items: center;
  padding-block: 84px 78px;
  border-bottom: 1px solid var(--line);
}

.about-philosophy-lead h2 {
  max-width: 650px;
  margin-top: 14px;
  font-size: clamp(34px, 3.5vw, 46px);
}

.about-philosophy-lead > p:last-child {
  max-width: 560px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
}

.about-philosophy-visual {
  height: 320px;
  overflow: hidden;
}

.about-philosophy-visual img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  filter: grayscale(1);
}

.about-principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(48px, 7vw, 94px);
}

.about-principles div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 22px;
  padding: 20px 0 22px;
  border-top: 1px solid var(--ink);
}

.about-principles dt {
  font-size: 17px;
  font-weight: 750;
}

.about-principles dd {
  color: var(--muted);
  font-size: 14px;
}

.about-offering {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(72px, 9vw, 126px);
  padding-block: 78px 84px;
  border-bottom: 1px solid var(--line);
}

.about-offering h2 {
  font-size: 30px;
}

.about-service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 25px 0 27px;
  border-top: 1px solid var(--ink);
}

.about-service-row:first-of-type {
  margin-top: 28px;
}

.about-service-row h3 {
  font-size: 20px;
}

.about-service-row p {
  max-width: 470px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.about-service-row a {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.about-journey ol {
  margin: 28px 0 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.about-journey li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 22px;
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--line);
}

.about-journey strong,
.about-journey span {
  display: block;
}

.about-journey strong {
  font-size: 14px;
}

.about-journey span {
  color: var(--muted);
  font-size: 14px;
}

.about-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 48px;
  border-bottom: 1px solid var(--ink);
}

.about-contact h2 {
  font-size: 30px;
}

.about-contact p {
  margin-top: 8px;
  color: var(--muted);
}

.about-contact .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* Reports */

.report-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
  padding-block: 54px;
  border-bottom: 1px solid var(--line);
}

.report-intro h1 {
  margin-top: 18px;
  font-size: clamp(41px, 4vw, 54px);
}

.report-intro > p:last-child {
  max-width: 500px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
}

.report-photo {
  height: 340px;
  overflow: hidden;
}

.report-photo img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.report-catalog {
  padding-block: 82px 92px;
}

.catalog-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}

.catalog-header h2 {
  margin-top: 10px;
}

.catalog-header > p {
  justify-self: end;
  max-width: 440px;
  color: var(--muted);
  font-size: 14px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
  margin-top: 38px;
  border-bottom: 1px solid var(--line);
}

.filter-row button {
  position: relative;
  padding: 11px 2px 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
}

.filter-row button.active {
  color: var(--ink);
  font-weight: 750;
}

.filter-row button.active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
}

.report-table {
  border-top: 1px solid var(--ink);
}

.report-row {
  min-height: 126px;
  display: grid;
  grid-template-columns: minmax(200px, 1.05fr) minmax(260px, 1.65fr) minmax(130px, 0.72fr) 92px;
  gap: 30px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.report-player {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 0 14px;
  align-items: center;
}

.report-player > span {
  grid-row: 1 / 3;
  font-size: 12px;
  font-weight: 800;
}

.report-player h3 {
  font-size: 20px;
}

.report-player p,
.report-summary,
.report-format span {
  color: var(--muted);
  font-size: 13px;
}

.report-summary {
  font-size: 14px;
}

.report-format span,
.report-format strong {
  display: block;
}

.report-format strong {
  margin-top: 4px;
  font-size: 15px;
}

.row-action {
  padding: 9px 12px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.row-action:hover {
  background: var(--ink);
  color: #fff;
}

.empty-state {
  padding: 40px 0;
  color: var(--muted);
}

.report-anatomy {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(70px, 10vw, 140px);
  padding-block: 88px;
  border-top: 1px solid var(--ink);
}

.report-anatomy-title h2 {
  margin-top: 14px;
}

.report-anatomy-title > p:last-child {
  margin-top: 20px;
  color: var(--muted);
}

.report-anatomy-list {
  border-top: 1px solid var(--ink);
}

.report-anatomy-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 21px 0 23px;
  border-bottom: 1px solid var(--line);
}

.report-anatomy-list dt {
  font-weight: 750;
}

.report-anatomy-list dd {
  color: var(--muted);
  font-size: 14px;
}

.next-page {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.next-page p {
  color: var(--muted);
}

.next-page a {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
  font-weight: 750;
}

/* Video */

.video-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
  padding-block: 54px;
  border-bottom: 1px solid var(--line);
}

.video-hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(41px, 4vw, 54px);
}

.video-hero-copy > p:last-child {
  max-width: 520px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
}

.video-frame {
  height: 370px;
  overflow: hidden;
}

.video-frame img {
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: grayscale(1);
}

.chapters {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(70px, 10vw, 140px);
  padding-block: 84px;
  border-bottom: 1px solid var(--line);
}

.chapters-intro p {
  max-width: 420px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
}

.chapter-list {
  border-top: 1px solid var(--ink);
}

.chapter-list button {
  width: 100%;
  min-height: 100px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.chapter-index {
  color: var(--muted);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.chapter-copy strong,
.chapter-copy small {
  display: block;
}

.chapter-copy strong {
  font-size: 17px;
}

.chapter-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.chapter-action {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.analysis-focus {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(70px, 10vw, 140px);
  padding-block: 88px;
}

.focus-quote {
  align-self: start;
  padding: 22px 0 26px;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.focus-quote > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.focus-quote p {
  margin-top: 22px;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 750;
  line-height: 1.38;
  letter-spacing: -0.035em;
}

.focus-content h2 {
  margin-top: 14px;
}

.focus-content dl {
  margin-top: 36px;
  border-top: 1px solid var(--ink);
}

.focus-content dl div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--line);
}

.focus-content dt {
  font-weight: 750;
}

.focus-content dd {
  color: var(--muted);
  font-size: 14px;
}

.video-offer {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.video-offer-inner {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-block: 34px;
}

.video-offer span,
.video-offer p {
  color: var(--muted);
  font-size: 13px;
}

.video-offer h2 {
  margin-top: 5px;
  font-size: 31px;
}

.video-offer p {
  margin-top: 6px;
}

.video-offer-action {
  display: flex;
  align-items: center;
  gap: 28px;
}

.video-offer-action strong {
  font-size: 18px;
  white-space: nowrap;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(70px, 10vw, 140px);
  padding-block: 68px 90px;
}

.contact-intro h1 {
  max-width: 560px;
  margin-top: 18px;
  font-size: clamp(41px, 4vw, 54px);
}

.contact-intro > p:nth-of-type(2) {
  max-width: 460px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
}

.contact-details {
  margin-top: 40px;
  border-top: 1px solid var(--ink);
}

.contact-details div {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 18px;
  padding: 15px 0 17px;
  border-bottom: 1px solid var(--line);
}

.contact-details dt {
  color: var(--muted);
  font-size: 12px;
}

.contact-details dd {
  font-size: 13px;
}

.contact-details a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-details-notice dd {
  color: var(--muted);
  line-height: 1.65;
}

.contact-form {
  align-self: start;
  padding-top: 22px;
  border-top: 2px solid var(--ink);
}

.form-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-head h2 {
  font-size: 26px;
}

.form-head p {
  color: var(--muted);
  font-size: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 750;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #aeb1a9;
  border-radius: 0;
  background: var(--paper-strong);
  color: var(--ink);
  outline: 0;
}

.form-field input,
.form-field select {
  height: 46px;
  padding: 0 12px;
}

.form-field textarea {
  min-height: 122px;
  padding: 11px 12px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border: 2px solid var(--ink);
}

.form-field [aria-invalid="true"] {
  border-color: #8b1d1d;
}

.field-error {
  min-height: 17px;
  display: block;
  margin-top: 4px;
  color: #8b1d1d;
  font-size: 12px;
}

.consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  accent-color: var(--ink);
}

.consent-error {
  margin-bottom: 10px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-status {
  margin-top: 16px;
  padding: 13px 14px;
  border-left: 3px solid var(--accent);
  background: #e8ece8;
  font-size: 13px;
}

/* Footer */

.site-footer {
  margin-top: 88px;
  border-top: 1px solid var(--ink);
}

.contact-page .site-footer {
  margin-top: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 48px;
  padding-block: 46px 52px;
}

.footer-brand p {
  max-width: 280px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 13px;
}

.footer-nav {
  display: grid;
  gap: 7px;
  align-content: start;
  font-size: 13px;
}

.footer-nav a:hover,
.footer-email:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-email {
  justify-self: end;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 15px 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

/* Modal */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 16, 14, 0.72);
}

.modal {
  position: relative;
  width: min(100%, 560px);
  max-height: calc(100dvh - 48px);
  overflow: auto;
  padding: 38px;
  border-radius: 2px;
  background: var(--paper-strong);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
}

.modal-kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.modal h2 {
  margin-top: 10px;
  padding-right: 24px;
  font-size: clamp(29px, 5vw, 38px);
}

.modal-copy {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.modal-list {
  margin-top: 24px;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.modal-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.modal-list span {
  color: var(--muted);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.modal-preview-image {
  height: 245px;
  margin: 20px 0;
  object-fit: cover;
  filter: grayscale(1);
}

@media (max-width: 960px) {
  .home-hero,
  .about-hero,
  .report-hero,
  .video-hero {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .home-hero-media,
  .video-frame {
    height: 410px;
  }

  .about-hero-media {
    height: 340px;
  }

  .report-photo {
    height: 330px;
  }

  .statement,
  .about-overview,
  .about-philosophy,
  .about-offering,
  .report-anatomy,
  .chapters,
  .analysis-focus,
  .contact-layout {
    gap: 60px;
  }

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

  .service-map-photo {
    grid-column: 1 / -1;
    height: 300px;
  }

  .report-row {
    grid-template-columns: 1fr 1.4fr auto;
  }

  .report-format {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 60px;
  }

  .shell {
    width: calc(100% - 32px);
  }

  .site-header {
    min-height: var(--header-height);
    padding-inline: 16px;
  }

  .brand {
    font-size: 18px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
    margin-left: auto;
    padding: 8px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 750;
  }

  .mobile-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    padding: 8px 16px 14px;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .mobile-nav a[aria-current="page"] {
    font-weight: 800;
  }

  h1 {
    font-size: 41px;
    line-height: 1.2;
  }

  h2 {
    font-size: 31px;
  }

  .home-hero,
  .about-hero,
  .report-hero,
  .video-hero {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: stretch;
    padding-block: 48px 54px;
  }

  .home-hero-copy h1,
  .about-hero-copy h1,
  .report-intro h1,
  .video-hero-copy h1,
  .contact-intro h1 {
    margin-top: 14px;
    font-size: 36px;
  }

  .hero-lead,
  .about-hero-copy > p:last-child,
  .report-intro > p:last-child,
  .video-hero-copy > p:last-child,
  .contact-intro > p:nth-of-type(2) {
    margin-top: 18px;
    font-size: 15px;
  }

  .home-hero-copy .button {
    margin-top: 26px;
  }

  .home-hero-media,
  .about-hero-media,
  .report-photo,
  .video-frame {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .statement,
  .about-overview,
  .about-philosophy,
  .about-offering,
  .service-map,
  .decision-flow,
  .report-catalog,
  .report-anatomy,
  .chapters,
  .analysis-focus,
  .contact-layout {
    padding-block: 58px;
  }

  .statement,
  .about-overview,
  .about-philosophy,
  .about-offering,
  .report-anatomy,
  .chapters,
  .analysis-focus,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .statement-title h2,
  .service-map-head h2,
  .catalog-header h2,
  .report-anatomy-title h2,
  .chapters-intro h2,
  .focus-content h2 {
    margin-top: 10px;
    font-size: 31px;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-overview-facts div,
  .about-principles div,
  .about-journey li {
    grid-template-columns: 92px 1fr;
    gap: 18px;
  }

  .about-choice {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 0;
  }

  .about-choice-points {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-choice-points p + p {
    margin-top: 22px;
  }

  .about-overview h2,
  .about-offering h2 {
    font-size: 31px;
  }

  .about-philosophy-lead h2 {
    font-size: 33px;
  }

  .about-philosophy-visual {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .about-principles {
    gap: 0;
  }

  .about-service-row {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .about-service-row a {
    justify-self: start;
  }

  .about-contact {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 38px;
  }

  .reason-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 19px 21px;
  }

  .service-map-head,
  .catalog-header,
  .decision-flow-intro {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-map-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 34px;
  }

  .service-map-photo {
    grid-column: auto;
    grid-row: 1;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 18px 0 22px;
  }

  .service-link {
    min-height: 225px;
    padding-block: 20px;
  }

  .service-link h3 {
    margin-top: 22px;
  }

  .decision-flow-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 32px;
  }

  .decision-flow-list li {
    min-height: 0;
    padding-block: 18px 22px;
  }

  .decision-flow-list li::before {
    margin-bottom: 18px;
  }

  .home-contact {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 38px 16px;
  }

  .home-contact h2 {
    font-size: 29px;
  }

  .filter-row {
    gap: 2px 18px;
    margin-top: 28px;
  }

  .catalog-header > p {
    justify-self: start;
  }

  .report-row {
    grid-template-columns: 1fr auto;
    gap: 12px 20px;
    min-height: 0;
    padding: 20px 0 22px;
  }

  .report-summary {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .row-action {
    grid-column: 2;
    grid-row: 1;
  }

  .report-anatomy-list div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .next-page {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 27px;
  }

  .chapter-list button {
    grid-template-columns: 28px 1fr auto;
    gap: 12px;
  }

  .chapter-copy small {
    font-size: 12px;
  }

  .focus-quote {
    padding-top: 18px;
  }

  .focus-quote p {
    margin-top: 16px;
    font-size: 25px;
  }

  .video-offer-inner,
  .video-offer-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-offer-inner {
    min-height: 0;
    padding-block: 30px;
  }

  .video-offer-action {
    width: 100%;
    gap: 16px;
  }

  .contact-layout {
    padding-block: 48px 64px;
  }

  .contact-details {
    margin-top: 30px;
  }

  .contact-form {
    padding-top: 18px;
  }

  .form-head {
    display: block;
    margin-bottom: 24px;
  }

  .form-head p {
    margin-top: 7px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer {
    margin-top: 64px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 38px;
  }

  .footer-email {
    justify-self: start;
  }

  .modal {
    padding: 34px 20px 24px;
  }
}

@media (max-width: 430px) {
  .chapter-copy small {
    display: none;
  }

  .chapter-action {
    font-size: 11px;
  }

  .contact-details div,
  .focus-content dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-bottom {
    display: grid;
    gap: 3px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
