@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-condensed-bold.woff2") format("woff2");
}
:root {
  --ink: #20252b;
  --steel: #59616a;
  --signal: #ffc400;
  --paper: #f5f4ef;
  --line: #dedfd9;
  --white: #fff;
  --heading: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --body: Arial, Helvetica, sans-serif;
  --container: 1240px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
svg {
  flex-shrink: 0;
}
figure {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 20px;
  overflow-wrap: break-word;
}
h1 {
  font-size: clamp(44px, 5.3vw, 76px);
}
h2 {
  font-size: clamp(32px, 3.2vw, 46px);
}
h3 {
  font-size: 30px;
}
p {
  margin: 0 0 20px;
}
ul,
ol {
  padding-inline-start: 24px;
}
li + li {
  margin-top: 6px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #1472cc;
  outline-offset: 5px;
}
::selection {
  background: var(--signal);
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
.container {
  width: min(var(--container), calc(100% - 96px));
  margin-inline: auto;
}
.icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
.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: 10px;
  left: 10px;
  z-index: 99999;
  padding: 15px;
  background: var(--signal);
  color: var(--ink);
}
.eyebrow {
  font: 700 11px/1.5 var(--body);
  letter-spacing: 1.9px;
  margin: 0 0 17px;
  text-transform: uppercase;
}
.eyebrow a {
  text-decoration: none;
}
.button,
button[type="submit"],
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 15px 23px;
  background: var(--signal);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  background: #edb700;
  transform: translateY(-1px);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.text-link:hover {
  text-decoration: underline;
}
.topbar {
  background: var(--ink);
  color: #d5d9dd;
  font: 700 9px/1.5 var(--body);
  letter-spacing: 1.4px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  padding-block: 10px;
}
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 91px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1;
  text-decoration: none;
}
.brand-domain {
  font-weight: 400;
  color: var(--steel);
}
.brand-mark {
  display: grid;
  place-items: center;
  background: var(--signal);
  height: 36px;
  width: 36px;
  transform: skew(-9deg);
  border-radius: 2px;
  color: var(--ink);
}
.brand-mark svg {
  height: 27px;
  width: 27px;
  transform: skew(9deg);
}
.custom-logo {
  max-width: 230px;
  max-height: 65px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links li {
  margin: 0;
  position: relative;
}
.nav-links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  display: block;
  padding: 15px 0;
}
.nav-links a:hover,
.nav-links .current-menu-item > a {
  text-decoration: underline;
  text-decoration-color: #9b7600;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}
.nav-links .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding: 12px 20px;
  margin: 0;
  list-style: none;
  background: var(--paper);
  border: 1px solid var(--line);
  z-index: 15;
  box-shadow: 0 10px 24px #0001;
}
.nav-links li:hover > .sub-menu,
.nav-links li:focus-within > .sub-menu {
  display: block;
}
.search-link {
  padding: 12px;
  border-left: 1px solid var(--line);
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  padding: 9px 11px;
  background: transparent;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
}
.hero {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 602px;
}
.hero-copy {
  padding: 61px 0 47px;
  position: relative;
  z-index: 1;
}
.hero .eyebrow {
  color: #dadce0;
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--signal);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(57px, 5.5vw, 82px);
  line-height: 0.99;
  letter-spacing: -0.5px;
  margin: 24px 0;
}
.hero h1 > span {
  color: var(--signal);
}
.hero-intro {
  max-width: 420px;
  color: #bfc4cb;
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.hero-actions .text-link {
  color: #e7e8e9;
  font-size: 12px;
}
.hero-tags {
  display: flex;
  gap: 20px;
  margin-top: 39px;
  color: #aeb6c0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
.hero-tags span + span:before {
  content: "/";
  margin-right: 20px;
  color: #707984;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  margin-right: -35px;
}
.visual-grid {
  position: absolute;
  inset: 0 -40px 0 -40px;
  background:
    linear-gradient(90deg, #20252b00, #20252b55),
    repeating-linear-gradient(0deg, transparent 0 49px, #ffffff05 49px 50px),
    repeating-linear-gradient(90deg, transparent 0 49px, #ffffff05 49px 50px);
  z-index: -2;
}
.hero-visual:after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border: 1px solid #ffffff12;
  border-radius: 50%;
  top: 80px;
  left: 30px;
  z-index: -1;
  box-shadow:
    0 0 0 48px #ffffff02,
    0 0 0 96px #ffffff015;
}
.hero-visual img {
  width: 113%;
  max-width: none;
  margin-left: -25px;
  filter: drop-shadow(0 32px 28px #0006);
  position: relative;
}
.visual-caption {
  position: absolute;
  top: 42px;
  right: 8px;
  font-size: 10px;
  letter-spacing: 2px;
  color: #a7adb5;
}
.visual-label {
  position: absolute;
  font-size: 9px;
  letter-spacing: 1.6px;
  font-weight: 700;
  color: #cbd0d5;
  display: flex;
  align-items: center;
  gap: 9px;
}
.visual-label > span {
  color: var(--signal);
  font-size: 24px;
  font-weight: 400;
}
.label-top {
  top: 108px;
  left: 48px;
}
.label-bottom {
  bottom: 120px;
  right: 0;
}
.visual-footnote {
  position: absolute;
  bottom: 36px;
  right: 8px;
  font-size: 8px;
  letter-spacing: 1.6px;
  color: #a4acb6;
  margin: 0;
}
.principles {
  background: #eeeee7;
  border-bottom: 1px solid var(--line);
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 21px;
}
.principles-grid > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 12px;
  font-weight: 700;
}
.principles-grid > span + span {
  border-left: 1px solid #d4d6ce;
}
.principles .icon {
  width: 21px;
  height: 21px;
}
.section {
  padding-block: 78px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 32px;
}
.section-heading h2 {
  margin: 0;
}
.section-heading > p {
  font-size: 13px;
  color: var(--steel);
  margin: 0;
  line-height: 1.7;
}
.use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.use-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 29px 26px 20px;
  border: 1px solid var(--line);
  background: #fafaf7;
  text-decoration: none;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.use-card:hover {
  transform: translateY(-4px);
  border-color: #8c949b;
}
.card-index {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 11px;
  color: #59616a;
}
.use-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 31px;
}
.icon-rotate {
  transform: rotate(45deg);
}
.use-card h3 {
  font-size: 34px;
  margin-bottom: 17px;
}
.use-card > p {
  color: var(--steel);
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 26px;
}
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
}
.card-bottom .icon {
  width: 19px;
  height: 19px;
}
.use-card-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.use-card-dark .use-icon {
  color: var(--signal);
}
.use-card-dark > p,
.use-card-dark .card-index {
  color: #c5cad0;
}
.use-card-dark .card-bottom {
  color: var(--signal);
  border-color: #4a4f54;
}
.choice-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eaeae3;
  padding-block: 64px;
}
.choice-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 95px;
}
.choice-intro h2 {
  font-size: 49px;
}
.choice-intro h2 > span {
  color: var(--steel);
}
.choice-intro > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--steel);
  max-width: 345px;
}
.criteria-list {
  border-top: 1px solid #bdc1bc;
}
.criterion {
  display: grid;
  grid-template-columns: 28px 1fr 25px;
  gap: 22px;
  border-bottom: 1px solid #cbd0c7;
  padding: 27px 0;
}
.criterion > span {
  font-size: 11px;
  font-weight: 700;
  color: #59635d;
  margin-top: 5px;
}
.criterion h3 {
  font-size: 27px;
  margin-bottom: 9px;
}
.criterion p {
  font-size: 12px;
  color: var(--steel);
  margin: 0;
  max-width: 450px;
}
.criterion > .icon {
  margin-top: 4px;
}
.disc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.disc-card {
  scroll-margin-top: 30px;
}
.disc-art {
  height: 232px;
  background: #eaeae4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  margin-bottom: 26px;
  border: 1px solid #e0e2d8;
}
.disc-art:after {
  content: "";
  width: 200px;
  height: 1px;
  background: #ccd0c6;
  position: absolute;
  transform: rotate(-35deg);
}
.disc-art > span {
  display: block;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transform: rotate(-23deg) scaleY(0.91);
  box-shadow: 10px 15px 18px #252d342b;
}
.disc-art > span:after {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  border: 6px solid #b4bbc0;
  border-radius: 50%;
  background: #eaeae4;
  box-sizing: border-box;
}
.disc-cut > span {
  border: 4px solid #2b3035;
  background: repeating-conic-gradient(#353a3f 0deg 2deg, #3e4348 2deg 4deg);
}
.disc-cut > span:before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 13px solid var(--signal);
  border-right-color: #eceee7;
}
.disc-diamond > span {
  border: 8px dashed #555f65;
  background: conic-gradient(#98a1a8, #e2e8e9, #849098, #d9dedf, #98a1a8);
  outline: 2px solid #7d888e;
  outline-offset: -8px;
}
.disc-diamond > span:before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 2px solid #727f85;
  border-radius: 50%;
  background: #8f999f;
}
.disc-flap > span {
  background: repeating-conic-gradient(
    #8d603c 0deg 8deg,
    #b38254 8deg 13deg,
    #3d3831 13deg 15deg
  );
  border: 2px solid #79634d;
}
.disc-flap > span:before {
  content: "";
  position: absolute;
  inset: 41px;
  background: #343b41;
  border: 7px solid #ad9666;
  border-radius: 50%;
}
.disc-card .eyebrow {
  font-size: 9px;
  letter-spacing: 1.6px;
  margin-bottom: 10px;
}
.disc-card h3 {
  font-size: 29px;
  margin-bottom: 12px;
}
.disc-card > p:last-child {
  font-size: 13px;
  color: var(--steel);
  margin: 0;
}
.section-journal {
  padding-top: 0;
}
.article-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.article-card {
  background: #fff;
  border: 1px solid var(--line);
  min-width: 0;
}
.article-card-image {
  display: block;
  aspect-ratio: 3/2;
  overflow: hidden;
  text-decoration: none;
  background: #e9eae4;
}
.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s;
}
.article-card:hover img {
  transform: scale(1.03);
}
.card-placeholder {
  display: flex;
  flex-direction: column;
  gap: 25px;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #59616a;
  background: repeating-linear-gradient(45deg, #e8e9e2 0 1px, #eeeee8 1px 18px);
}
.card-placeholder .icon {
  width: 64px;
  height: 64px;
}
.card-placeholder > span {
  font-size: 9px;
  letter-spacing: 2px;
}
.article-card-content {
  padding: 26px;
}
.article-card-content .eyebrow {
  font-size: 9px;
  margin-bottom: 13px;
}
.article-card h2 {
  font-size: 30px;
  margin-bottom: 15px;
}
.article-card h2 a {
  text-decoration: none;
}
.article-card h2 a:hover {
  text-decoration: underline;
}
.card-excerpt {
  font-size: 13px;
  color: var(--steel);
}
.card-excerpt p {
  margin-bottom: 15px;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 10px;
  color: var(--steel);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin: 0;
}
.technique-section {
  background: var(--ink);
  color: #fff;
  padding-block: 58px;
}
.technique-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}
.technique-section .eyebrow {
  color: var(--signal);
}
.technique-section h2 {
  font-size: 45px;
}
.technique-section p:not(.eyebrow) {
  font-size: 13px;
  color: #c4c9ce;
  max-width: 570px;
}
.technique-note {
  border-left: 1px solid #545a60;
  padding-left: 40px;
}
.technique-note > .icon {
  color: var(--signal);
  width: 33px;
  height: 33px;
  margin-bottom: 15px;
}
.technique-note h3 {
  font-size: 27px;
}
.technique-note p {
  margin: 0;
}
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.method-grid h2 {
  font-size: 40px;
  margin: 0;
}
.method-copy {
  font-size: 13px;
  color: var(--steel);
}
.method-copy p:last-child {
  margin: 0;
}
.search-section {
  background: #eaeae3;
  padding-block: 40px;
  border-top: 1px solid var(--line);
}
.search-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 45px;
}
.search-section .eyebrow {
  font-size: 9px;
  margin-bottom: 10px;
}
.search-section h2 {
  font-size: 29px;
  margin: 0;
}
.search-form {
  display: flex;
  width: 100%;
  max-width: 620px;
  gap: 0;
}
.search-form input[type="search"] {
  width: 100%;
  min-width: 0;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #a6ada7;
  border-right: 0;
  border-radius: 2px 0 0 2px;
  font-size: 13px;
  color: var(--ink);
  min-height: 54px;
}
.search-form button {
  border-radius: 0 2px 2px 0;
  gap: 9px;
  padding: 14px;
  flex-shrink: 0;
}
.search-form .icon {
  width: 19px;
  height: 19px;
}
.search-button-label {
  font-size: 12px;
}
.site-footer {
  background: #181d22;
  color: #edf0f2;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 70px;
  padding-block: 52px;
}
.site-footer .brand {
  font-size: 27px;
}
.site-footer .brand-domain {
  color: #b4bcc5;
}
.footer-top > div > p:not(.footer-heading) {
  font-size: 12px;
  color: #b6bec6;
  margin-top: 23px;
}
.footer-heading {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}
.footer-links {
  padding: 0;
  list-style: none;
  font-size: 12px;
  color: #cbd1d7;
}
.footer-links a {
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-note {
  max-width: 310px;
  line-height: 1.9;
}
.footer-method {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  color: var(--signal);
  text-decoration: none;
}
.footer-method .icon {
  width: 18px;
  height: 18px;
}
.footer-bottom {
  border-top: 1px solid #353b42;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
  padding-block: 22px;
  font-size: 10px;
  color: #aeb8c2;
}
.footer-legal {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.footer-legal li {
  margin: 0;
}
.footer-bottom a {
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.breadcrumbs,
.woocommerce-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--steel);
  padding-block: 28px;
  line-height: 1.6;
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.archive-layout,
.page-layout,
.single-layout,
.commerce-layout {
  padding-bottom: 72px;
  min-height: 60vh;
}
.page-heading {
  padding: 45px 0 40px;
  max-width: 900px;
}
.page-heading h1 {
  font-size: clamp(38px, 5vw, 64px);
}
.page-heading > p:not(.eyebrow),
.archive-description {
  color: var(--steel);
}
.page-heading .search-form {
  margin-top: 26px;
}
.empty-state {
  border: 1px solid var(--line);
  padding: 50px;
  text-align: center;
  background: #fff;
}
.empty-state > .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
}
.empty-state h2 {
  font-size: 32px;
}
.empty-state p {
  color: var(--steel);
  font-size: 14px;
}
.pagination {
  margin-top: 38px;
}
.nav-links .page-numbers {
  padding: 10px 17px;
  border: 1px solid var(--line);
  text-decoration: none;
}
.pagination .nav-links {
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}
.pagination .current {
  background: var(--ink);
  color: #fff;
}
.article-header {
  max-width: 900px;
  padding-block: 22px 30px;
}
.article-header h1 {
  font-size: clamp(42px, 5vw, 70px);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: var(--steel);
  font-size: 11px;
}
.article-cover {
  margin: 0 0 42px;
}
.article-cover img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
}
.article-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.article-body:has(.article-aside:not([hidden])) {
  grid-template-columns: 230px minmax(0, 1fr);
}
.article-aside {
  align-self: start;
  position: sticky;
  top: 25px;
  border-top: 3px solid var(--signal);
  padding-top: 22px;
}
.article-aside ol {
  padding-left: 0;
  list-style: none;
  font-size: 12px;
}
.article-aside li {
  margin: 0 0 13px;
}
.article-aside a {
  color: var(--steel);
  text-decoration: none;
  display: block;
  line-height: 1.6;
}
.article-aside a:hover {
  color: var(--ink);
  text-decoration: underline;
}
.aside-note {
  font-size: 11px;
  color: var(--steel);
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.entry-content {
  min-width: 0;
  max-width: 740px;
  font-size: 17px;
  line-height: 1.85;
  overflow-wrap: break-word;
}
.entry-content h2 {
  font-size: 38px;
  margin-top: 44px;
}
.entry-content h3 {
  font-size: 29px;
  margin-top: 30px;
}
.entry-content h2:first-child {
  margin-top: 0;
}
.entry-content li {
  margin-bottom: 9px;
}
.entry-content .wp-block-image {
  margin-block: 28px;
}
.entry-content .wp-block-table {
  overflow-x: auto;
  margin-block: 30px;
}
.entry-content table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
  line-height: 1.6;
}
.entry-content th,
.entry-content td {
  border: 1px solid var(--line);
  padding: 15px;
  text-align: left;
}
.entry-content thead {
  background: var(--ink);
  color: #fff;
}
.entry-content blockquote {
  border-left: 4px solid var(--signal);
  padding: 18px 25px;
  margin: 28px 0;
  background: #eaeae3;
}
.entry-content blockquote p:last-child {
  margin: 0;
}
.entry-content .wp-block-group.has-background {
  padding: 25px;
}
.entry-content .wp-block-group.has-background h2 {
  margin-top: 0;
}
.entry-content .wp-block-separator {
  border: 0;
  border-top: 1px solid var(--line);
  margin-block: 35px;
}
.entry-content .wp-block-details {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.entry-content summary {
  cursor: pointer;
  font-weight: 700;
}
.entry-content pre {
  overflow: auto;
  background: #e8e9e2;
  padding: 20px;
  font-size: 13px;
}
.entry-content .alignwide {
  max-width: 100%;
}
.entry-content .alignfull {
  width: 100%;
  margin-inline: 0;
}
.entry-content figcaption {
  font-size: 12px;
  color: var(--steel);
}
.page-layout .entry-content {
  margin-inline: auto;
}
.home-editorial {
  padding-bottom: 64px;
}
.article-tags {
  padding-block: 30px;
  font-size: 12px;
}
.article-tags a {
  display: inline-block;
  padding: 4px 9px;
  background: #e5e7de;
  margin: 4px;
  text-decoration: none;
}
.post-navigation {
  border-block: 1px solid var(--line);
  padding: 25px 0;
  margin-block: 30px;
}
.post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.post-navigation .nav-next {
  text-align: right;
}
.post-navigation a {
  font-size: 15px;
  text-decoration: none;
}
.post-navigation span {
  display: block;
  font-size: 10px;
  color: var(--steel);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.related-section {
  padding-top: 35px;
}
.related-section h2 {
  font-size: 36px;
}
.comments-area {
  max-width: 850px;
  margin-top: 50px;
}
.comments-area input:not([type="checkbox"]),
.comments-area textarea,
.post-password-form input[type="password"] {
  display: block;
  width: 100%;
  padding: 11px;
  border: 1px solid #a6ada7;
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
}
.comments-area label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}
.comments-area .comment-form-cookies-consent label {
  display: inline;
}
.comments-area .submit {
  width: auto !important;
  background: var(--signal) !important;
  font-size: 13px;
}
.comment-list {
  padding: 0;
  list-style: none;
}
.comment-list .children {
  list-style: none;
}
.comment-body {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.comment-author .avatar {
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  vertical-align: middle;
}
.comment-metadata {
  font-size: 11px;
  color: var(--steel);
}
.comment-content {
  font-size: 14px;
  margin-top: 15px;
}
.reply {
  font-size: 12px;
}
.error-layout {
  padding-block: 80px;
  min-height: 65vh;
}
.error-layout h1 {
  font-size: clamp(46px, 6vw, 84px);
}
.error-layout > .search-form {
  margin-top: 35px;
}
.error-layout > p:not(.eyebrow) {
  color: var(--steel);
}
.page-links {
  margin-block: 30px;
}
@media (min-width: 1600px) {
  .hero-grid {
    min-height: 645px;
  }
  .hero-copy {
    padding-top: 76px;
  }
  .hero h1 {
    font-size: 90px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .nav-links {
    gap: 19px;
  }
  .nav-links a {
    font-size: 11px;
  }
  .header-inner {
    gap: 20px;
  }
  .brand {
    font-size: 27px;
  }
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    min-height: 560px;
  }
  .hero h1 {
    font-size: 66px;
  }
  .hero-visual {
    margin-right: 0;
  }
  .hero-visual img {
    width: 125%;
    margin-left: -35px;
  }
  .hero-actions {
    gap: 19px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-visual:after {
    width: 350px;
    height: 350px;
    top: 90px;
    left: 5px;
  }
  .label-bottom {
    right: 0;
    bottom: 120px;
  }
  .use-card {
    padding: 24px 20px 20px;
  }
  .use-card h3 {
    font-size: 30px;
  }
  .use-card > p {
    font-size: 11px;
  }
  .choice-grid {
    gap: 55px;
  }
  .section-heading > p {
    max-width: 265px;
  }
  .disc-grid {
    gap: 23px;
  }
  .footer-top {
    gap: 40px;
  }
  .technique-grid {
    gap: 45px;
  }
}
@media (max-width: 850px) {
  .header-inner {
    min-height: 80px;
    flex-wrap: wrap;
    padding-block: 16px;
    gap: 12px;
  }
  .brand {
    margin-right: auto;
  }
  .menu-toggle:not([hidden]) {
    display: inline-flex;
  }
  .site-navigation {
    order: 4;
    width: 100%;
  }
  .site-navigation[data-enhanced]:not(.is-open) {
    display: none;
  }
  .nav-links {
    flex-wrap: wrap;
    gap: 0 26px;
  }
  .nav-links a {
    font-size: 13px;
  }
  .nav-links .sub-menu {
    position: static;
    box-shadow: none;
    display: block;
    background: transparent;
    border: none;
    padding: 0 0 8px 15px;
  }
  .search-link {
    padding: 9px;
  }
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 550px;
  }
  .hero-copy {
    padding-top: 47px;
  }
  .hero h1 {
    font-size: 62px;
  }
  .hero-intro {
    font-size: 13px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .hero-visual img {
    width: 151%;
    margin-left: -90px;
  }
  .visual-caption {
    right: 0;
    font-size: 8px;
  }
  .label-top {
    top: 126px;
    left: 0;
  }
  .label-bottom {
    bottom: 140px;
    font-size: 8px;
  }
  .hero-tags {
    gap: 12px;
    font-size: 8px;
  }
  .hero-tags span + span:before {
    margin-right: 12px;
  }
  .hero-visual:after {
    width: 285px;
    height: 285px;
    top: 150px;
    left: -20px;
  }
  .principles-grid > span {
    font-size: 10px;
    gap: 9px;
  }
  .principles .icon {
    width: 18px;
  }
  .section {
    padding-block: 55px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 24px;
  }
  .section-heading > p {
    font-size: 12px;
    max-width: 220px;
  }
  .section-heading h2 {
    font-size: 35px;
  }
  .use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .use-card {
    padding: 25px;
  }
  .use-card h3 {
    font-size: 34px;
  }
  .use-card > p {
    font-size: 13px;
  }
  .use-icon {
    margin-bottom: 25px;
  }
  .choice-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
  }
  .choice-intro h2 {
    font-size: 40px;
  }
  .criterion {
    grid-template-columns: 22px 1fr;
    gap: 13px;
  }
  .criterion > .icon {
    display: none;
  }
  .criterion h3 {
    font-size: 26px;
  }
  .disc-art {
    height: 190px;
  }
  .disc-art > span {
    width: 130px;
    height: 130px;
  }
  .disc-card h3 {
    font-size: 27px;
  }
  .disc-card > p:last-child {
    font-size: 12px;
  }
  .disc-flap > span:before {
    inset: 33px;
  }
  .article-grid,
  .product-grid {
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .technique-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 30px;
  }
  .technique-section h2 {
    font-size: 36px;
  }
  .technique-note {
    padding-left: 25px;
  }
  .method-grid {
    gap: 40px;
  }
  .method-grid h2 {
    font-size: 34px;
  }
  .search-section-inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .search-form {
    max-width: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-top > div:last-child {
    grid-column: 1/-1;
    max-width: 560px;
  }
  .footer-note {
    max-width: none;
  }
  .article-body:has(.article-aside:not([hidden])) {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .article-aside {
    position: static;
  }
  .article-aside ol {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
  }
  .aside-note {
    display: none;
  }
  .entry-content {
    max-width: 100%;
  }
  .article-header h1 {
    font-size: 51px;
  }
}
@media (max-width: 600px) {
  .container {
    width: calc(100% - 40px);
  }
  .topbar .container {
    justify-content: center;
    padding-block: 9px;
    font-size: 8px;
    letter-spacing: 1px;
  }
  .topbar-detail {
    display: none;
  }
  .header-inner {
    min-height: 76px;
  }
  .brand {
    font-size: 25px;
    gap: 8px;
  }
  .brand-mark {
    width: 30px;
    height: 30px;
  }
  .brand-mark .icon {
    width: 23px;
    height: 23px;
  }
  .search-link {
    padding: 8px;
    border: 0;
  }
  .menu-toggle {
    font-size: 11px;
    padding: 7px 9px;
  }
  .menu-toggle .icon {
    width: 20px;
    height: 20px;
  }
  .nav-links {
    display: block;
    padding-top: 10px;
  }
  .nav-links a {
    padding: 11px 0;
  }
  .nav-links li + li {
    border-top: 1px solid var(--line);
  }
  .nav-links .sub-menu li {
    border: 0;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .hero-copy {
    padding: 37px 0 0;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
  .hero h1 {
    font-size: clamp(52px, 13.5vw, 77px);
    margin: 23px 0 24px;
  }
  .hero-intro {
    max-width: 400px;
    font-size: 13px;
    line-height: 1.85;
  }
  .hero-actions {
    gap: 20px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  .hero-actions .button {
    padding: 14px 18px;
    gap: 18px;
    font-size: 12px;
  }
  .hero-tags {
    margin-top: 30px;
    gap: 17px;
    font-size: 8px;
  }
  .hero-tags span + span:before {
    margin-right: 17px;
  }
  .hero-visual {
    height: 335px;
    margin: 0 -20px;
    overflow: hidden;
  }
  .hero-visual img {
    width: 440px;
    max-width: none;
    margin: 0;
    position: absolute;
    left: 50%;
    top: -5px;
    transform: translateX(-50%);
  }
  .hero-visual:after {
    width: 255px;
    height: 255px;
    left: calc(50% - 128px);
    top: 27px;
  }
  .visual-grid {
    inset: 0;
  }
  .visual-caption {
    top: 23px;
    right: 22px;
    font-size: 7px;
  }
  .label-top {
    top: 58px;
    left: 23px;
    font-size: 7px;
  }
  .label-bottom {
    bottom: 43px;
    right: 22px;
    font-size: 7px;
  }
  .visual-footnote {
    bottom: 13px;
    right: 22px;
    font-size: 7px;
  }
  .principles-grid {
    padding-block: 17px;
    gap: 12px;
    grid-template-columns: 1fr;
  }
  .principles-grid > span {
    justify-content: flex-start;
    font-size: 11px;
  }
  .principles-grid > span + span {
    border: 0;
  }
  .principles .icon {
    width: 18px;
    height: 18px;
  }
  .section {
    padding-block: 43px;
  }
  .section-heading {
    display: block;
    margin-bottom: 25px;
  }
  .section-heading h2 {
    font-size: 33px;
  }
  .section-heading > p {
    font-size: 12px;
    max-width: none;
    margin-top: 17px;
  }
  .section-heading > p br {
    display: none;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.6px;
    margin-bottom: 14px;
  }
  .use-grid {
    gap: 12px;
  }
  .use-card {
    padding: 20px 17px 16px;
  }
  .use-card h3 {
    font-size: 29px;
    margin-bottom: 15px;
  }
  .use-icon {
    width: 29px;
    height: 29px;
    margin-bottom: 25px;
  }
  .card-index {
    font-size: 9px;
    right: 15px;
    top: 16px;
  }
  .use-card > p {
    font-size: 11px;
    line-height: 1.7;
  }
  .use-card > p br {
    display: none;
  }
  .card-bottom {
    font-size: 8px;
    letter-spacing: 0.5px;
    gap: 6px;
  }
  .card-bottom .icon {
    width: 16px;
    height: 16px;
  }
  .choice-section {
    padding-block: 42px;
  }
  .choice-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .choice-intro h2 {
    font-size: 44px;
  }
  .choice-intro > p:not(.eyebrow) {
    max-width: none;
  }
  .criterion {
    padding: 23px 0;
    grid-template-columns: 25px 1fr;
  }
  .criterion h3 {
    font-size: 27px;
  }
  .criterion p {
    font-size: 12px;
  }
  .disc-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .disc-art {
    height: 235px;
    margin-bottom: 19px;
  }
  .disc-art > span {
    width: 155px;
    height: 155px;
  }
  .disc-card h3 {
    font-size: 30px;
  }
  .disc-card > p:last-child {
    font-size: 13px;
  }
  .disc-flap > span:before {
    inset: 41px;
  }
  .article-grid,
  .product-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .article-card-content {
    padding: 24px;
  }
  .article-card h2 {
    font-size: 30px;
  }
  .technique-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .technique-section {
    padding-block: 42px;
  }
  .technique-section h2 {
    font-size: 36px;
  }
  .technique-note {
    border-left: 0;
    border-top: 1px solid #4b5157;
    padding: 24px 0 0;
  }
  .technique-note h3 {
    margin-bottom: 10px;
  }
  .method-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .method-grid h2 {
    font-size: 35px;
  }
  .search-section {
    padding-block: 32px;
  }
  .search-section h2 {
    font-size: 29px;
  }
  .search-button-label {
    display: none;
  }
  .search-form input[type="search"] {
    padding-left: 13px;
    font-size: 12px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding-block: 40px;
    gap: 30px 20px;
  }
  .site-footer .brand {
    font-size: 23px;
  }
  .site-footer .brand-mark {
    width: 27px;
    height: 27px;
  }
  .footer-top > div > p:not(.footer-heading) {
    font-size: 11px;
  }
  .footer-links {
    font-size: 11px;
  }
  .footer-bottom {
    font-size: 9px;
    gap: 15px;
  }
  .footer-bottom > span:last-child {
    width: 100%;
  }
  .breadcrumbs {
    font-size: 10px;
    padding-block: 22px;
  }
  .page-heading {
    padding-block: 30px;
  }
  .page-heading h1 {
    font-size: 39px;
  }
  .page-heading > p:not(.eyebrow) {
    font-size: 14px;
  }
  .archive-layout,
  .page-layout,
  .single-layout,
  .commerce-layout {
    padding-bottom: 45px;
  }
  .empty-state {
    padding: 30px 20px;
  }
  .empty-state h2 {
    font-size: 29px;
  }
  .article-header {
    padding-top: 13px;
  }
  .article-header h1 {
    font-size: 44px;
  }
  .article-meta {
    font-size: 10px;
    gap: 8px 15px;
  }
  .article-cover {
    margin-bottom: 30px;
  }
  .entry-content {
    font-size: 16px;
  }
  .entry-content h2 {
    font-size: 33px;
    margin-top: 35px;
  }
  .entry-content h3 {
    font-size: 27px;
  }
  .entry-content th,
  .entry-content td {
    padding: 11px;
    min-width: 115px;
  }
  .post-navigation .nav-links {
    gap: 18px;
  }
  .post-navigation a {
    font-size: 13px;
  }
  .related-section h2 {
    font-size: 31px;
  }
  .article-aside ol {
    display: block;
  }
  .error-layout {
    padding-block: 48px;
  }
  .home-editorial {
    padding-bottom: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
