:root {
  --paper: #f4f1eb;
  --ink: #292e2b;
  --forest: #354d40;
  --wood: #927052;
  --muted: #62665f;
  --line: #d9dbd2;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: #fcfcf9;
  color: var(--ink);
  font: 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
}
svg {
  max-width: 100%;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:hover {
  color: var(--forest);
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid #927052;
  outline-offset: 5px;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.6px;
}
h1 {
  font-size: clamp(38px, 5vw, 64px);
}
h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  margin-bottom: 24px;
}
h3 {
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.35px;
}
p {
  margin-bottom: 1.15em;
}
em {
  font-weight: 400;
}
::selection {
  background: #c7d1bf;
}
.container {
  width: min(1240px, calc(100% - 88px));
  margin-inline: auto;
}
.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 99999;
  padding: 12px 20px;
  background: white;
  color: var(--ink);
}
.topbar {
  background: var(--forest);
  color: #f4f1eb;
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 9px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
}
.topbar span {
  letter-spacing: 0.25px;
  font-size: 11px;
}
.site-header {
  background: #fcfcf9;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 100px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: var(--forest);
  font-weight: 700;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -1px;
}
.brand-mark {
  flex: none;
}
.brand-second {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.5px;
}
.brand-dot {
  color: var(--wood);
}
.primary-nav {
  margin-left: auto;
}
.primary-nav ul {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.primary-nav a {
  font-size: 13px;
  text-decoration: none;
  padding-block: 16px;
  display: block;
  font-weight: 600;
}
.primary-nav a:hover {
  color: var(--wood);
}
.primary-nav li {
  position: relative;
}
.primary-nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  z-index: 20;
  padding: 12px 20px;
  background: #fcfcf9;
  border: 1px solid var(--line);
}
.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
  display: block;
}
.primary-nav .sub-menu a {
  padding: 8px 0;
}
.header-search {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-left: 1px solid var(--line);
  padding-left: 17px;
  margin-left: 5px;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
}
.hero {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 34px;
  padding-block: 65px 60px;
  align-items: center;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 1.7px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--forest);
  margin-bottom: 23px;
}
.hero .eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
}
.hero .eyebrow > span {
  width: 6px;
  height: 6px;
  background: var(--wood);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 1.06;
  margin-bottom: 25px;
  letter-spacing: -2.5px;
}
.hero h1 em {
  color: var(--forest);
}
.hero-intro {
  max-width: 405px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 29px 0 35px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: var(--forest);
  color: white;
  padding: 16px 22px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--forest);
}
.button:hover {
  background: #253c2f;
  color: white;
}
.button span {
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
}
.text-link {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #a9afa3;
  padding-block: 5px;
  display: inline-flex;
  gap: 20px;
  align-items: center;
}
.hero-footnote {
  font-size: 8px;
  letter-spacing: 1.4px;
  color: var(--muted);
  margin: 0;
}
.hero-footnote span {
  padding-inline: 8px;
}
.hero-figure {
  margin: 0;
  background: #e8ece1;
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
}
.figure-top {
  display: flex;
  justify-content: space-between;
  padding: 23px 24px 0;
  font-size: 8px;
  letter-spacing: 1.3px;
  color: var(--forest);
}
.hero-figure img {
  display: block;
  width: 100%;
  margin-block: -8px -20px;
}
.hero-figure figcaption {
  font-size: 9px;
  line-height: 1.6;
  text-align: center;
  padding: 0 18px 20px;
  color: #596552;
  margin-top: auto;
}
.principles {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f5f5ef;
}
.principles-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.principles p {
  margin: 0;
  padding: 20px;
  font-size: 12px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.principles p:first-child {
  border-left: 1px solid var(--line);
}
.principles span {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--wood);
  margin-right: 18px;
}
.section {
  padding-block: 78px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}
.section-heading .eyebrow {
  margin-bottom: 13px;
}
.section-heading h2 {
  margin: 0;
}
.section-heading > p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 4px;
}
.section-heading > .text-link {
  white-space: nowrap;
}
.project-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.project-card {
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px #354d400c;
}
.material {
  height: 162px;
  position: relative;
  overflow: hidden;
}
.material span {
  position: absolute;
  left: 18px;
  top: 17px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.8px;
  background: #fafaf0e8;
  padding: 7px 10px;
  color: #354d40;
}
.material-stone {
  background:
    linear-gradient(145deg, transparent 25%, #ffffff30 26%, transparent 28%),
    repeating-linear-gradient(0deg, transparent 0 77px, #6e716850 78px 80px),
    repeating-linear-gradient(90deg, #b8bab0 0 126px, #8e9383 128px 130px);
}
.material-wood {
  background:
    repeating-linear-gradient(2deg, transparent 0 3px, #54321914 4px 5px),
    repeating-linear-gradient(
      97deg,
      #b58e66 0 48px,
      #785d43 49px 51px,
      #c5a17c 53px 104px,
      #785d43 105px 108px
    );
}
.material-composite {
  background:
    repeating-linear-gradient(90deg, #ffffff08 0 2px, #00000005 2px 4px),
    repeating-linear-gradient(0deg, #777e73 0 34px, #434c43 35px 38px);
}
.project-card-body {
  padding: 24px;
}
.project-card h3 {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 14px;
  font-size: 21px;
}
.project-card h3 span {
  color: var(--wood);
  font-size: 22px;
  font-weight: 400;
}
.project-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
  min-height: 49px;
}
.card-link {
  font-size: 11px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.method-section {
  background: var(--forest);
  color: #f4f1eb;
  padding-block: 68px;
}
.method-layout {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 90px;
}
.method-intro .eyebrow {
  color: #ccd7bb;
}
.method-intro h2 {
  font-size: 46px;
  line-height: 1.13;
}
.method-intro h2 em {
  color: #d4d9bf;
}
.method-intro > p:not(.eyebrow) {
  color: #d0d8cc;
  font-size: 13px;
  max-width: 355px;
  line-height: 1.85;
}
.light-link {
  display: inline-flex;
  gap: 32px;
  font-size: 12px;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid #8da081;
  padding: 12px 0;
}
.light-link:hover {
  color: #e6dec8;
}
.method-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.method-steps li {
  display: flex;
  gap: 26px;
  border-bottom: 1px solid #ffffff29;
  padding: 23px 0;
}
.method-steps li:first-child {
  padding-top: 0;
}
.method-steps li:last-child {
  border: 0;
  padding-bottom: 0;
}
.method-steps li > span {
  font-family: var(--serif);
  font-size: 28px;
  color: #bfccad;
}
.method-steps h3 {
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 8px;
}
.method-steps p {
  font-size: 12px;
  line-height: 1.8;
  color: #d0d8cc;
  margin: 0;
  max-width: 365px;
}
.article-card {
  min-width: 0;
}
.article-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.65;
  background: var(--paper);
}
.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.article-card:hover .article-image img {
  transform: scale(1.025);
}
.article-placeholder {
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background: linear-gradient(135deg, #c5cdbc, #e1e4d9);
  color: #42543f;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -1px;
}
.article-card:nth-child(2) .article-placeholder {
  background: linear-gradient(135deg, #d2c2af, #ece3d6);
}
.article-card:nth-child(3) .article-placeholder {
  background: linear-gradient(135deg, #b9c3bc, #dfe5dd);
}
.article-card-body {
  padding-top: 22px;
}
.article-card-body .eyebrow {
  font-size: 9px;
  margin-bottom: 11px;
}
.article-card h3 {
  font-size: 22px;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 12px;
}
.article-card h3 a {
  text-decoration: none;
}
.article-card-body > p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.85;
  color: var(--muted);
}
.article-card .card-link {
  border-bottom: 1px solid var(--line);
  padding-bottom: 5px;
}
.section-products {
  background: var(--paper);
  border-block: 1px solid var(--line);
}
.product-selection {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.selection-card {
  background: #fff;
  display: block;
  border: 1px solid var(--line);
  padding: 25px;
  text-decoration: none;
}
.selection-card > img {
  height: 210px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 20px;
}
.selection-card .eyebrow {
  font-size: 9px;
}
.selection-card h3 {
  font-size: 18px;
  margin: 12px 0 22px;
}
.search-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding-block: 65px;
}
.search-section h2 {
  font-size: 33px;
  margin: 0;
}
.search-section .eyebrow {
  margin-bottom: 13px;
}
.search-form {
  display: flex;
  border-bottom: 1px solid var(--forest);
  width: min(100%, 420px);
}
.search-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  padding: 15px 0;
  font-size: 14px;
  border-radius: 0;
  color: var(--ink);
}
.search-form button {
  border: 0;
  background: transparent;
  padding: 10px 16px;
  font-size: 25px;
  color: var(--forest);
}
.site-footer {
  background: #eceee7;
  border-top: 1px solid var(--line);
  padding-top: 55px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 45px;
}
.footer-brand {
  font-size: 25px;
  letter-spacing: -1px;
  font-weight: 700;
  text-decoration: none;
  color: var(--forest);
}
.footer-top > div:first-child p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 17px;
}
.footer-label {
  font-size: 9px;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--forest);
}
.footer-top > div:not(:first-child) a {
  display: block;
  font-size: 12px;
  text-decoration: none;
  margin-bottom: 9px;
}
.footer-top ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 10px;
  color: var(--muted);
  padding-block: 22px;
  border-top: 1px solid #d1d6c9;
}
.footer-bottom p {
  margin: 0;
  max-width: 520px;
}
.archive-main,
.page-main {
  padding-block: 55px 85px;
  min-height: 65vh;
}
.page-heading {
  margin-bottom: 45px;
}
.page-heading h1 {
  max-width: 900px;
}
.page-heading > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 650px;
}
.archive-main .article-grid {
  row-gap: 48px;
}
.pagination {
  margin-top: 50px;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-numbers {
  padding: 7px 12px;
  text-decoration: none;
  border: 1px solid var(--line);
}
.page-numbers.current {
  background: var(--forest);
  color: white;
}
.article-header {
  padding-top: 40px;
  padding-bottom: 36px;
  max-width: 1000px;
}
.back-link {
  display: inline-block;
  font-size: 12px;
  text-decoration: none;
  margin-bottom: 35px;
  color: var(--muted);
}
.article-header .eyebrow {
  margin-bottom: 18px;
}
.article-header h1 {
  font-size: clamp(34px, 4.8vw, 59px);
  line-height: 1.12;
  max-width: 970px;
}
.article-meta {
  font-size: 12px;
  color: var(--muted);
}
.article-meta span {
  padding-inline: 12px;
}
.article-cover {
  margin-bottom: 45px;
}
.article-cover img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
.article-layout {
  display: grid;
  grid-template-columns: 235px minmax(0, 760px);
  gap: 65px;
  justify-content: center;
  padding-bottom: 40px;
}
.article-toc {
  position: sticky;
  top: 30px;
  border-top: 2px solid var(--forest);
  padding-top: 22px;
}
.article-toc ol {
  padding: 0;
  list-style: none;
}
.article-toc li {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.article-toc a {
  text-decoration: none;
  color: var(--muted);
}
.article-toc a:hover {
  color: var(--forest);
  text-decoration: underline;
}
.article-toc .toc-level-3 {
  padding-left: 14px;
  font-size: 11px;
}
.prose {
  font-size: 16px;
  line-height: 1.85;
  min-width: 0;
  overflow-wrap: anywhere;
}
.prose h2 {
  font-size: 34px;
  margin-top: 45px;
  line-height: 1.2;
}
.prose h3 {
  font-size: 23px;
  margin-top: 30px;
}
.prose a {
  color: var(--forest);
}
.prose li {
  margin-bottom: 9px;
}
.prose ul,
.prose ol {
  padding-left: 25px;
}
.prose blockquote,
.ppt-note {
  background: var(--paper);
  border-left: 3px solid var(--forest);
  padding: 22px 28px;
  margin: 30px 0;
}
.prose blockquote p:last-child,
.ppt-note p:last-child {
  margin-bottom: 0;
}
.prose table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}
.prose th,
.prose td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
}
.prose th {
  background: var(--paper);
}
.prose .wp-block-table {
  overflow-x: auto;
}
.prose pre {
  overflow: auto;
  max-width: 100%;
  padding: 20px;
  background: var(--paper);
}
.prose iframe {
  max-width: 100%;
}
.page-content {
  max-width: 1000px;
  margin-inline: auto;
}
.page-content > .elementor {
  max-width: 100%;
}
.wp-caption {
  max-width: 100%;
}
.alignleft {
  float: left;
  margin: 0 25px 20px 0;
}
.alignright {
  float: right;
  margin: 0 0 20px 25px;
}
.aligncenter {
  display: block;
  margin-inline: auto;
}
.wp-caption-text {
  font-size: 12px;
  color: var(--muted);
}
.empty-state {
  background: var(--paper);
  padding: 32px;
}
.empty-state p {
  font-size: 14px;
}
.comment-list {
  list-style: none;
  padding: 0 !important;
}
.comment-body {
  border-top: 1px solid var(--line);
  padding-block: 20px;
}
.comment-form input:not([type="checkbox"]):not([type="submit"]),
.comment-form textarea {
  display: block;
  border: 1px solid var(--line);
  padding: 12px;
  width: 100%;
  max-width: 620px;
}
.comment-form label {
  font-size: 13px;
}
.comment-form input[type="submit"] {
  background: var(--forest);
  color: #fff;
  padding: 12px 22px;
  border: 0;
}
.comment-respond {
  margin-top: 45px;
}
@media (min-width: 1500px) {
  .hero {
    padding-block: 85px;
  }
  .hero h1 {
    font-size: 72px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 56px);
  }
  .hero {
    gap: 25px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-actions {
    gap: 15px;
  }
  .primary-nav ul {
    gap: 23px;
  }
  .method-layout {
    gap: 50px;
  }
  .article-layout {
    gap: 35px;
    grid-template-columns: 210px minmax(0, 1fr);
  }
}
@media (max-width: 900px) {
  .header-inner {
    min-height: 85px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .brand {
    margin-right: auto;
  }
  .header-search {
    margin-left: 5px;
  }
  .has-js .menu-toggle {
    display: block;
  }
  .primary-nav {
    width: 100%;
    margin: 0;
    padding-bottom: 15px;
  }
  .has-js .primary-nav {
    display: none;
  }
  .has-js .primary-nav.is-open {
    display: block;
  }
  .primary-nav ul {
    flex-wrap: wrap;
    gap: 8px 25px;
  }
  .primary-nav .sub-menu {
    display: block;
    position: static;
    border: 0;
    padding: 0 10px;
    min-width: 0;
  }
  .primary-nav a {
    padding: 8px 0;
  }
  .hero h1 {
    font-size: 46px;
    letter-spacing: -2px;
  }
  .hero {
    gap: 25px;
    padding-block: 45px;
  }
  .hero-figure {
    min-height: 390px;
  }
  .hero-footnote {
    font-size: 7px;
    letter-spacing: 0.65px;
  }
  .hero-intro {
    font-size: 14px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-actions .button {
    padding: 14px 18px;
  }
  .figure-top {
    font-size: 7px;
    padding-inline: 15px;
  }
  .project-grid,
  .article-grid {
    gap: 18px;
  }
  .project-card-body {
    padding: 18px;
  }
  .project-card h3 {
    font-size: 18px;
  }
  .project-card p {
    font-size: 12px;
  }
  .card-link {
    font-size: 10px;
  }
  .method-layout {
    gap: 35px;
  }
  .method-intro h2 {
    font-size: 38px;
  }
  .article-card h3 {
    font-size: 20px;
  }
  .search-section {
    align-items: flex-start;
    flex-direction: column;
  }
  .search-form {
    width: min(100%, 500px);
  }
  .article-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .article-toc {
    position: static;
    padding: 20px;
    background: var(--paper);
  }
  .article-toc ol {
    columns: 2;
    column-gap: 30px;
  }
  .article-toc li {
    break-inside: avoid;
  }
  .article-toc .eyebrow {
    margin-bottom: 15px;
  }
}
@media (max-width: 640px) {
  .container {
    width: calc(100% - 40px);
  }
  .topbar {
    font-size: 8px;
    letter-spacing: 1.1px;
    padding-block: 8px;
  }
  .topbar span {
    display: none;
  }
  .header-inner {
    min-height: 77px;
  }
  .brand {
    font-size: 22px;
    gap: 10px;
  }
  .brand-second {
    font-size: 13px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .header-search {
    width: 31px;
    padding-left: 10px;
  }
  .menu-toggle {
    font-size: 12px;
  }
  .menu-toggle span {
    margin-left: 7px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 37px;
  }
  .hero h1 {
    font-size: clamp(40px, 10.8vw, 58px);
    letter-spacing: -2px;
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .hero-intro {
    max-width: 370px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin: 26px 0;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-footnote {
    font-size: 7px;
    letter-spacing: 0.9px;
  }
  .hero-figure {
    min-height: 0;
  }
  .hero-figure img {
    max-height: 370px;
    object-fit: contain;
  }
  .hero-figure figcaption {
    font-size: 8px;
  }
  .principles-inner {
    grid-template-columns: 1fr;
  }
  .principles p {
    padding: 12px 0;
    text-align: left;
    border: 0;
    font-size: 12px;
  }
  .principles p:first-child {
    border: 0;
  }
  .principles p + p {
    border-top: 1px solid var(--line);
  }
  .principles span {
    margin-right: 16px;
  }
  .section {
    padding-block: 48px;
  }
  .section-heading {
    display: block;
    margin-bottom: 25px;
  }
  .section-heading h2 {
    font-size: 34px;
    letter-spacing: -1.2px;
  }
  .section-heading > p,
  .section-heading > .text-link {
    margin-top: 18px;
  }
  .project-grid,
  .article-grid,
  .product-selection {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .material {
    height: 160px;
  }
  .project-card-body {
    padding: 23px;
  }
  .project-card h3 {
    font-size: 22px;
  }
  .project-card p {
    font-size: 13px;
    min-height: 0;
  }
  .card-link {
    font-size: 12px;
  }
  .method-section {
    padding-block: 45px;
  }
  .method-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .method-intro h2 {
    font-size: 39px;
  }
  .method-steps h3 {
    font-size: 18px;
  }
  .method-steps li {
    gap: 20px;
  }
  .article-card h3 {
    font-size: 25px;
  }
  .article-card-body > p:not(.eyebrow) {
    font-size: 13px;
  }
  .article-image {
    aspect-ratio: 1.7;
  }
  .search-section {
    padding-block: 45px;
    gap: 22px;
  }
  .search-section h2 {
    font-size: 32px;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
    padding-bottom: 30px;
  }
  .footer-top > div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
    padding-block: 20px;
  }
  .footer-bottom p {
    margin-top: 12px;
    font-size: 9px;
    line-height: 1.9;
  }
  .footer-top > div:not(:first-child) a {
    font-size: 11px;
  }
  .page-heading h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }
  .article-header {
    padding-top: 30px;
  }
  .article-header h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }
  .article-meta {
    font-size: 11px;
  }
  .article-toc ol {
    columns: 1;
  }
  .prose {
    font-size: 15px;
  }
  .prose h2 {
    font-size: 29px;
    letter-spacing: -0.6px;
  }
  .prose h3 {
    font-size: 21px;
  }
  .prose blockquote,
  .ppt-note {
    padding: 20px;
  }
  .archive-main,
  .page-main {
    padding-block: 35px 55px;
  }
  .article-placeholder {
    font-size: 32px;
  }
  .alignleft,
  .alignright {
    float: none;
    margin-inline: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
