:root {
  --metal: #183549;
  --deep: #102738;
  --steel: #263440;
  --muted: #586875;
  --arc: #ffb020;
  --mist: #f3f5f7;
  --line: #dce3e8;
  --body: "Source Sans 3", system-ui, sans-serif;
  --heading: Oswald, "Arial Narrow", sans-serif;
  --radius: 4px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}
body {
  margin: 0;
  color: var(--steel);
  background: #fff;
  font: 400 18px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--metal);
  overflow-wrap: anywhere;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
}
h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
h3 {
  font-size: 1.5rem;
}
p {
  margin: 0 0 1.2rem;
}
a {
  color: var(--metal);
  text-underline-offset: 4px;
}
a:hover {
  color: #8c5100;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
svg {
  vertical-align: middle;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
summary,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
summary {
  cursor: pointer;
}
input,
textarea,
select {
  max-width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #a9b7c1;
  border-radius: var(--radius);
  background: white;
  color: var(--steel);
}
textarea {
  width: 100%;
}
button,
input[type="submit"] {
  border: 0;
}
input[type="checkbox"],
input[type="radio"] {
  width: auto;
}
figure {
  margin: 0;
}
hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2rem 0;
}
::selection {
  background: var(--arc);
  color: var(--metal);
}
:focus-visible {
  outline: 3px solid #a66000;
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
}
.icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link:focus {
  position: fixed;
  z-index: 10000;
  left: 1rem;
  top: 1rem;
  padding: 1rem;
  background: var(--arc);
  color: var(--metal);
}
.eyebrow {
  font-family: var(--body);
  font-size: 0.76rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--muted);
}
.eyebrow a {
  color: inherit;
}
.button,
.wp-block-button__link,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  min-height: 50px;
  background: var(--arc);
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--deep);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.8rem 1.25rem;
  transition:
    background 0.18s,
    color 0.18s;
}
.button:hover,
.wp-block-button__link:hover,
input[type="submit"]:hover {
  background: #ffc154;
  color: var(--deep);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}
.text-link:hover {
  text-decoration: underline;
}
.text-link .icon {
  width: 20px;
  height: 20px;
}
.section {
  padding-block: 88px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 36px;
}
.section-heading h2 {
  margin: 0;
}
.section-heading > p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
  flex-shrink: 0;
}
.utility-bar {
  background: var(--deep);
  color: #d4dfe7;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 9px 0;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.utility-dot {
  color: var(--arc);
  padding: 0 0.6rem;
}
.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 98px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
  color: var(--metal);
}
.brand-symbol {
  display: grid;
  place-items: center;
  width: 44px;
  height: 48px;
  background: var(--arc);
  border-radius: 3px;
  transform: skew(-5deg);
}
.brand-symbol .icon {
  width: 28px;
  height: 28px;
}
.brand-type {
  font: 500 1.3rem/1.1 var(--heading);
  letter-spacing: 0.01em;
}
.brand-type strong {
  font-weight: 600;
}
.brand-type strong span {
  color: #c47b00;
}
.brand-type small {
  display: block;
  font: 600 0.51rem/1 var(--body);
  letter-spacing: 0.11em;
  margin-top: 8px;
}
.custom-logo-link {
  flex-shrink: 0;
}
.custom-logo {
  width: auto;
  max-width: 260px;
  max-height: 72px;
}
.primary-nav {
  margin-left: auto;
}
.primary-nav ul,
.footer-bottom ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
}
.primary-nav a {
  display: block;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 14px 0;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: #965500;
}
.primary-nav li {
  position: relative;
}
.primary-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 12px 20px;
  background: white;
  box-shadow: 0 12px 30px #10273818;
  border: 1px solid var(--line);
  z-index: 22;
}
.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
  display: block;
}
.primary-nav .sub-menu a {
  padding: 8px 0;
}
.primary-nav .sub-menu .sub-menu {
  position: static;
  box-shadow: none;
  border: 0;
  padding: 0 0 0 16px;
}
.header-search {
  position: relative;
  border-left: 1px solid var(--line);
  padding-left: 22px;
}
.header-search summary {
  list-style: none;
  display: grid;
  place-items: center;
  min-width: 32px;
  min-height: 44px;
}
.header-search summary::-webkit-details-marker {
  display: none;
}
.search-popover {
  position: absolute;
  right: 0;
  top: calc(100% + 23px);
  width: min(420px, calc(100vw - 32px));
  padding: 18px;
  background: white;
  box-shadow: 0 8px 30px #10273820;
  border: 1px solid var(--line);
}
.search-form {
  display: flex;
  width: 100%;
  gap: 0;
}
.search-form input {
  flex: 1;
  min-width: 0;
  border-radius: 3px 0 0 3px;
  font-size: 1rem;
}
.search-form button {
  width: 50px;
  flex-shrink: 0;
  background: var(--arc);
  color: var(--metal);
  border-radius: 0 3px 3px 0;
}
.menu-toggle {
  display: none;
  gap: 8px;
  align-items: center;
  background: transparent;
  color: var(--metal);
  font-size: 0.9rem;
  padding: 10px;
}
.menu-toggle-lines {
  width: 18px;
  height: 12px;
  border-block: 2px solid currentColor;
  position: relative;
}
.menu-toggle-lines:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 3px;
  border-top: 2px solid;
}
.hero {
  background: var(--deep);
  color: #e0e7ec;
  overflow: hidden;
  position: relative;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.9%, #ffffff03 50%),
    linear-gradient(#ffffff02 1px, transparent 1px),
    linear-gradient(90deg, #ffffff02 1px, transparent 1px);
  background-size:
    100% 100%,
    48px 48px,
    48px 48px;
  pointer-events: none;
}
.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 36px;
  align-items: center;
  padding-block: 66px 62px;
}
.hero .eyebrow {
  color: #c0ced8;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
}
.status-mark {
  width: 7px;
  height: 7px;
  background: var(--arc);
  display: inline-block;
}
.hero h1 {
  font-size: clamp(3.1rem, 5.2vw, 4.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}
.hero h1 span {
  color: var(--arc);
}
.hero-description {
  color: #bdcbd5;
  font-size: 1.13rem;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}
.hero-secondary {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.hero-secondary:hover {
  color: var(--arc);
}
.hero-footnote {
  margin: 35px 0 0;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: #a4b7c5;
}
.hero-footnote span {
  color: #587185;
  margin: 0 10px;
}
.hero-visual {
  border: 1px solid #355164;
  background: #19394e3d;
  position: relative;
}
.hero-visual:before,
.hero-visual:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: #8ba2b4;
}
.hero-visual:before {
  left: -1px;
  top: -1px;
  border-left: 2px solid;
  border-top: 2px solid;
}
.hero-visual:after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}
.drawing-label,
.drawing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 21px;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: #a7bbc9;
}
.drawing-label {
  border-bottom: 1px solid #35516466;
}
.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 640/470;
  object-fit: contain;
}
.drawing-footer {
  padding-top: 0;
}
.drawing-tag {
  color: var(--arc);
  border: 1px solid #a2763466;
  padding: 3px 8px;
}
.principles-bar {
  border-bottom: 1px solid var(--line);
  background: #fafbfc;
}
.principles-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 21px;
}
.principles-bar span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}
.principles-bar .icon {
  color: #a66709;
  width: 22px;
  height: 22px;
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.topic-card {
  padding: 27px 23px 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  position: relative;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.18s,
    transform 0.18s;
}
.topic-card:hover {
  border-color: #b4802b;
  transform: translateY(-3px);
}
.topic-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.topic-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: #f3f5f7;
  color: var(--metal);
  border-radius: 3px;
}
.topic-icon .icon {
  width: 26px;
  height: 26px;
}
.card-number {
  font: 400 1.1rem var(--heading);
  color: var(--muted);
}
.topic-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.topic-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}
.topic-card .text-link {
  margin-top: auto;
  font-size: 0.9rem;
  gap: 6px;
}
.choice-section {
  background: var(--mist);
  border-block: 1px solid var(--line);
}
.choice-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.choice-layout h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 22px;
}
.choice-layout > div > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 390px;
}
.decision-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.decision-list li {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #d1dce3;
}
.decision-list li:first-child {
  padding-top: 0;
}
.decision-list li:last-child {
  border: 0;
  padding-bottom: 0;
}
.step-number {
  font: 400 1.7rem/1 var(--heading);
  color: #a36a13;
  padding-top: 5px;
}
.decision-list h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.decision-list p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}
.article-grid,
.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.article-card,
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  min-width: 0;
}
.card-image {
  display: block;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--mist);
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.article-card:hover .card-image img {
  transform: scale(1.03);
}
.card-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  background-color: #e9eef2;
  background-image:
    linear-gradient(#18354908 1px, transparent 1px),
    linear-gradient(90deg, #18354908 1px, transparent 1px);
  background-size: 24px 24px;
  color: #658398;
}
.card-placeholder .icon {
  width: 58px;
  height: 58px;
}
.card-body {
  padding: 24px;
}
.card-meta {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.card-meta span {
  font-weight: 400;
}
.card-body h2,
.card-body h3 {
  font-size: 1.45rem;
  line-height: 1.35;
}
.card-body h2 a,
.card-body h3 a {
  text-decoration: none;
}
.card-body p {
  font-size: 1rem;
  color: var(--muted);
}
.product-section {
  background: var(--mist);
}
.product-card-image {
  display: block;
  padding: 24px;
  text-align: center;
  background: #fff;
}
.product-card-image img {
  height: 210px;
  width: 100%;
  object-fit: contain;
}
.product-card .card-body {
  border-top: 1px solid var(--line);
}
.product-card .eyebrow {
  font-size: 0.65rem;
}
.method-section {
  background: var(--metal);
  color: #c3d0d9;
}
.method-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}
.method-section .eyebrow {
  color: var(--arc);
}
.method-section h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #fff;
}
.method-section h2 span {
  color: #a4bbca;
}
.method-intro {
  color: #f0f4f7;
  font-size: 1.35rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
.method-points {
  display: grid;
  gap: 22px;
}
.method-points h3 {
  font-family: var(--body);
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
}
.method-points p {
  font-size: 0.98rem;
  margin: 0;
}
.site-footer {
  background: #0c1d2a;
  color: #a8bac7;
  font-size: 0.93rem;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: 70px;
  padding-block: 58px;
}
.footer-brand {
  font: 500 1.5rem var(--heading);
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}
.footer-brand span {
  color: var(--arc);
}
.footer-main p {
  font-size: 0.9rem;
}
.footer-main p:last-child {
  margin-bottom: 0;
}
.footer-label {
  font-size: 0.68rem !important;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #e9eff3;
  margin-bottom: 20px;
}
.footer-main > div > a:not(.footer-brand) {
  display: block;
  color: #a8bac7;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.footer-main a:hover,
.footer-bottom a:hover {
  color: var(--arc);
}
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-block: 21px;
  border-top: 1px solid #ffffff12;
  font-size: 0.75rem;
}
.footer-bottom ul {
  margin-left: auto;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-bottom a {
  color: #a8bac7;
  text-decoration: none;
}
.breadcrumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--muted);
  padding-top: 28px;
  overflow-wrap: anywhere;
}
.breadcrumb a {
  color: var(--muted);
}
.page-heading {
  padding: 50px 0 40px;
  max-width: 850px;
}
.page-heading h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
}
.page-heading .search-form {
  margin-top: 28px;
  max-width: 620px;
}
.archive-content,
.page-content,
.single-content {
  padding-bottom: 80px;
  min-height: 55vh;
}
.article-heading {
  max-width: 960px;
  padding-block: 50px 35px;
}
.article-heading h1 {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  margin-bottom: 24px;
}
.article-meta {
  display: flex;
  gap: 8px 22px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.85rem;
}
.article-cover {
  margin-bottom: 45px;
}
.article-cover img {
  max-height: 540px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.reading-layout {
  max-width: 800px;
  margin-inline: auto;
}
.reading-layout.has-toc {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 65px;
  max-width: 1100px;
}
.article-toc nav {
  position: sticky;
  top: 32px;
  border-top: 3px solid var(--arc);
  padding-top: 20px;
}
.article-toc ol {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.article-toc li {
  margin-bottom: 9px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.article-toc a {
  text-decoration: none;
  color: var(--muted);
}
.article-toc a:hover {
  color: var(--metal);
  text-decoration: underline;
}
.article-toc .toc-subheading {
  padding-left: 15px;
  font-size: 0.82rem;
}
.toc-top {
  font-size: 0.8rem;
}
.article-content {
  min-width: 0;
  overflow-wrap: anywhere;
}
.page-content .article-content {
  max-width: 900px;
}
.article-content h2 {
  margin-top: 2.8rem;
  font-size: 2rem;
}
.article-content h3 {
  margin-top: 2rem;
}
.article-content > :first-child {
  margin-top: 0;
}
.article-content p,
.article-content ul,
.article-content ol {
  margin-bottom: 1.4rem;
}
.article-content li {
  margin-bottom: 0.55rem;
}
.article-content li::marker {
  color: #8a5708;
}
.article-content a:not(.button):not(.wp-block-button__link) {
  text-decoration: underline;
}
.article-content blockquote {
  border-left: 4px solid var(--arc);
  padding: 20px 25px;
  margin: 28px 0;
  background: var(--mist);
}
.article-content blockquote p:last-child {
  margin: 0;
}
.article-content pre {
  overflow: auto;
  background: var(--mist);
  padding: 20px;
  font-size: 0.9rem;
}
.article-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
.article-content th,
.article-content td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--line);
}
.article-content th {
  background: var(--metal);
  color: white;
  font-weight: 600;
}
.article-content tr:nth-child(even) td {
  background: var(--mist);
}
.article-content .wp-block-table {
  overflow-x: auto;
  margin-block: 28px;
}
.article-content .wp-block-table table {
  min-width: 500px;
}
.article-content .wp-block-image {
  margin-block: 28px;
}
.article-content figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 10px;
}
.article-content .wp-block-group {
  margin-block: 24px;
}
.article-content .wp-block-group.has-background {
  padding: 24px;
  border-radius: var(--radius);
}
.article-content .wp-block-group > h2:first-child,
.article-content .wp-block-group > h3:first-child {
  margin-top: 0;
}
.article-content .alignwide {
  width: 100%;
}
.article-navigation,
.comments-area {
  max-width: 800px;
  margin: 45px auto;
}
.nav-links {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.nav-links > div {
  flex: 1;
}
.nav-links .nav-next {
  text-align: right;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
}
.nav-links a span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 6px;
}
.pagination {
  margin-top: 40px;
}
.pagination .nav-links {
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.page-numbers {
  padding: 6px 14px;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 3px;
}
.page-numbers.current {
  background: var(--metal);
  color: white;
}
.comment-list {
  padding: 0;
  list-style: none;
}
.comment-list .children {
  list-style: none;
  padding-left: 25px;
}
.comment-body {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.comment-author img {
  border-radius: 50%;
  margin-right: 10px;
}
.comment-metadata {
  font-size: 0.8rem;
  margin-block: 8px;
}
.comment-form label {
  display: block;
}
.comment-form-cookies-consent label {
  display: inline;
  margin-left: 8px;
}
.comment-reply-title {
  margin-top: 32px;
}
.related-posts {
  padding-top: 40px;
  border-top: 1px solid var(--line);
  margin-top: 50px;
}
.empty-state {
  padding: 50px 30px;
  background: var(--mist);
  border: 1px solid var(--line);
  text-align: center;
}
.empty-state > .icon {
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  color: #7e929f;
}
.empty-state h2 {
  font-size: 1.7rem;
}
.empty-state p {
  color: var(--muted);
}
.error-page {
  padding-block: 90px;
  min-height: 60vh;
  max-width: 850px;
}
.error-page .search-form {
  max-width: 650px;
  margin-block: 30px;
}
.wp-caption {
  max-width: 100%;
}
.alignleft {
  float: left;
  margin: 0 24px 20px 0;
}
.alignright {
  float: right;
  margin: 0 0 20px 24px;
}
.aligncenter {
  display: block;
  margin-inline: auto;
}
.sticky {
  border-color: #b48b48;
}
.gallery-caption {
  font-size: 0.9rem;
}
.bypostauthor > .comment-body {
  border-left: 3px solid var(--arc);
  padding-left: 16px;
}
@media (min-width: 1051px) {
  .menu-toggle {
    display: none !important;
  }
}
@media (max-width: 1100px) {
  .header-inner {
    gap: 20px;
  }
  .primary-nav ul {
    gap: 17px;
  }
  .primary-nav a {
    font-size: 0.83rem;
  }
  .brand-type {
    font-size: 1.15rem;
  }
  .header-search {
    padding-left: 14px;
  }
  .hero-layout {
    gap: 26px;
  }
  .hero-actions {
    gap: 17px;
  }
  .hero .button {
    padding-inline: 17px;
  }
  .topic-card {
    padding: 23px 19px;
  }
  .choice-layout {
    gap: 55px;
  }
  .method-layout {
    gap: 55px;
  }
}
@media (max-width: 1050px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 12px;
    min-height: 90px;
    padding-block: 16px;
  }
  .brand,
  .custom-logo-link {
    margin-right: auto;
  }
  .menu-toggle {
    display: flex;
  }
  .header-search {
    padding-left: 10px;
  }
  .primary-nav {
    width: 100%;
    order: 4;
    margin: 0;
    border-top: 1px solid var(--line);
    padding-top: 10px;
  }
  .primary-nav ul {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 24px;
  }
  .primary-nav a {
    font-size: 1rem;
  }
  .has-navigation-js .primary-nav {
    display: none;
  }
  .has-navigation-js .primary-nav.is-open {
    display: block;
  }
  .primary-nav .sub-menu {
    position: static;
    display: block;
    box-shadow: none;
    min-width: 0;
    border: 0;
    padding: 0 0 0 14px;
  }
  .primary-nav .sub-menu a {
    font-size: 0.9rem;
    padding-block: 5px;
  }
  .hero-layout {
    padding-block: 50px;
    grid-template-columns: 1.05fr 1fr;
  }
  .hero h1 {
    font-size: 3.4rem;
  }
  .hero-description {
    font-size: 1.05rem;
  }
  .hero-actions {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }
  .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .section-heading > p {
    display: none;
  }
  .principles-bar span {
    font-size: 0.8rem;
    gap: 8px;
  }
  .footer-main {
    gap: 30px;
  }
  .reading-layout.has-toc {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 35px;
  }
  .article-grid {
    gap: 18px;
  }
  .card-body {
    padding: 20px;
  }
}
@media (max-width: 760px) {
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 58px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    padding-block: 42px;
    gap: 36px;
  }
  .hero h1 {
    font-size: clamp(3.1rem, 9vw, 4.2rem);
  }
  .hero-copy {
    max-width: 570px;
  }
  .hero-description {
    max-width: 480px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 22px;
  }
  .hero-footnote {
    margin-top: 26px;
  }
  .hero-visual {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }
  .hero-visual img {
    max-height: 350px;
  }
  .principles-bar .container {
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: center;
    padding-block: 18px;
  }
  .principles-bar span {
    font-size: 0.8rem;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .choice-layout,
  .method-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .choice-layout > div > p:not(.eyebrow) {
    max-width: none;
  }
  .decision-list li {
    gap: 20px;
  }
  .method-intro {
    font-size: 1.15rem;
  }
  .method-section h2 {
    margin: 0;
  }
  .article-grid,
  .product-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .article-grid > .article-card:last-child:nth-child(odd) {
    grid-column: 1/-1;
    max-width: none;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-block: 42px;
  }
  .footer-main > div:last-child {
    grid-column: 1/-1;
    max-width: 550px;
  }
  .footer-bottom {
    gap: 12px;
  }
  .footer-bottom ul {
    margin-left: 0;
  }
  .reading-layout.has-toc {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .article-toc nav {
    position: static;
    background: var(--mist);
    padding: 20px 24px;
  }
  .article-toc .toc-top {
    display: none;
  }
  .article-toc ol {
    margin: 0;
  }
  .article-heading {
    padding-top: 35px;
  }
  .article-cover {
    margin-bottom: 30px;
  }
  .article-content h2 {
    font-size: 1.8rem;
  }
  .archive-content,
  .page-content,
  .single-content {
    padding-bottom: 55px;
  }
  .page-heading {
    padding-top: 35px;
  }
  .nav-links {
    gap: 15px;
  }
  .nav-links a {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .container {
    width: calc(100% - 32px);
  }
  .utility-bar {
    font-size: 0.52rem;
    letter-spacing: 0.08em;
  }
  .utility-dot {
    padding: 0 3px;
  }
  .brand {
    gap: 8px;
  }
  .brand-symbol {
    width: 32px;
    height: 38px;
  }
  .brand-symbol .icon {
    width: 24px;
    height: 24px;
  }
  .brand-type {
    font-size: 1.06rem;
  }
  .brand-type small {
    font-size: 0.405rem;
    letter-spacing: 0.065em;
    margin-top: 6px;
  }
  .header-inner {
    gap: 8px;
    min-height: 78px;
    padding-block: 13px;
  }
  .menu-toggle {
    padding: 9px 4px;
    gap: 5px;
    font-size: 0.8rem;
  }
  .header-search {
    padding-left: 8px;
  }
  .header-search summary {
    min-width: 28px;
  }
  .header-search .icon {
    width: 21px;
  }
  .custom-logo {
    max-width: 185px;
  }
  .primary-nav ul {
    display: block;
  }
  .primary-nav a {
    padding-block: 9px;
  }
  .hero .eyebrow {
    font-size: 0.61rem;
    letter-spacing: 0.1em;
  }
  .hero-description {
    font-size: 1.05rem;
  }
  .hero-actions {
    gap: 16px;
    flex-wrap: wrap;
  }
  .hero .button {
    font-size: 0.9rem;
    padding: 12px 15px;
    gap: 16px;
  }
  .hero-secondary {
    font-size: 0.85rem;
  }
  .hero-footnote {
    font-size: 0.53rem;
    letter-spacing: 0.06em;
  }
  .hero-footnote span {
    margin-inline: 5px;
  }
  .drawing-label,
  .drawing-footer {
    font-size: 0.51rem;
    padding-inline: 15px;
  }
  .hero-visual img {
    max-height: 295px;
  }
  .principles-bar .container {
    justify-content: start;
    gap: 10px;
  }
  .principles-bar span {
    width: 100%;
    font-size: 0.85rem;
  }
  .topic-grid,
  .article-grid,
  .product-card-grid {
    grid-template-columns: 1fr;
  }
  .topic-card {
    padding: 22px 24px;
  }
  .topic-card-top {
    margin-bottom: 18px;
  }
  .topic-card h3 {
    font-size: 1.5rem;
  }
  .topic-card p {
    margin-bottom: 8px;
  }
  .topic-card .text-link {
    margin-top: 12px;
  }
  .topic-card .card-number {
    font-size: 1.4rem;
  }
  .section-heading h2 {
    font-size: 1.95rem;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 15px;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-main > div:last-child {
    grid-column: auto;
  }
  .footer-main > div:first-child {
    margin-bottom: 8px;
  }
  .footer-bottom {
    font-size: 0.7rem;
  }
  .article-heading h1 {
    font-size: 2.5rem;
  }
  .article-meta {
    font-size: 0.8rem;
  }
  .article-content table {
    font-size: 0.9rem;
  }
  .article-content td,
  .article-content th {
    padding: 10px;
  }
  .nav-links {
    flex-direction: column;
  }
  .nav-links .nav-next {
    text-align: left;
  }
  .pagination .nav-links {
    flex-direction: row;
  }
  .comment-list .children {
    padding-left: 12px;
  }
  .error-page {
    padding-block: 60px;
  }
  .error-page h1 {
    font-size: 2.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
