.seo-page {
  background: #fff;
  color: var(--ink);
}

.seo-page .site-header {
  background: rgba(255, 255, 255, 0.98);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
}

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

.breadcrumbs a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.seo-hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(125deg, #f4efe8, #fff 56%);
  padding: 74px 0 68px;
}

.seo-hero h1,
.seo-article h1,
.seo-product-detail h1 {
  max-width: 890px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.04;
}

.seo-hero > .page-shell > p:not(.eyebrow),
.seo-article__lead,
.seo-product-detail > article > p:not(.eyebrow):not(.product-meta) {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.seo-hero .primary-link {
  margin-top: 10px;
}

.seo-request-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 22px;
}

.seo-request-links a {
  color: var(--accent-dark);
  font-weight: 700;
}

.seo-section {
  padding: 70px 0;
}

.seo-section--muted {
  border-block: 1px solid var(--line);
  background: #faf8f5;
}

.seo-section h2,
.seo-article h2,
.seo-callout h2 {
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 38px);
}

.seo-product-grid {
  margin-top: 28px;
}

.seo-page .product-card__image {
  text-decoration: none;
}

.seo-page .product-card__body h3 a {
  color: inherit;
  text-decoration: none;
}

.seo-page .product-card__body h3 a:hover,
.seo-page .card-link:hover,
.seo-page .quote-card-button:hover {
  color: var(--accent-dark);
}

.seo-two-column,
.seo-quote__grid,
.seo-product-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.seo-two-column ul,
.seo-two-column ol {
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.seo-quote {
  padding: 72px 0;
  background: #121212;
  color: #fff;
}

.seo-quote__grid > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.seo-quote h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 40px;
}

.seo-inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  background: #fff;
  color: var(--ink);
}

.seo-inquiry-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.seo-inquiry-form input,
.seo-inquiry-form textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #c9c2b8;
  border-radius: 2px;
  padding: 11px 12px;
  font: inherit;
}

.seo-inquiry-form__wide,
.seo-inquiry-form .form-status {
  grid-column: 1 / -1;
}

.seo-inquiry-form .primary-link {
  justify-self: start;
}

.seo-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.seo-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f3f0eb;
  object-fit: cover;
}

.seo-gallery img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 3;
}

.seo-image-placeholder {
  grid-column: 1 / -1;
  padding: 60px 20px;
  background: #f3f0eb;
  color: var(--muted);
  text-align: center;
}

.seo-status-note {
  border-left: 3px solid #a17b2c;
  margin: 24px 0;
  padding: 12px 16px;
  background: #faf4e7;
  color: #5d4820 !important;
  font-size: 15px !important;
}

.seo-spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.seo-spec-table th,
.seo-spec-table td {
  border: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

.seo-spec-table th {
  width: min(33%, 260px);
  background: #f7f4ef;
}

.seo-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.seo-guide-card,
.seo-callout {
  border: 1px solid var(--line);
  padding: 28px;
  background: #fff;
}

.seo-guide-card h2 {
  margin-top: 0;
  font-family: var(--serif);
  font-size: 30px;
}

.seo-guide-card h2 a {
  color: inherit;
  text-decoration: none;
}

.seo-guide-card p,
.seo-article section > p {
  color: var(--muted);
  line-height: 1.72;
}

.seo-article {
  max-width: 860px;
  padding-top: 72px;
  padding-bottom: 82px;
}

.seo-article section {
  margin-top: 48px;
}

.seo-callout {
  margin-top: 52px;
  background: #faf8f5;
}

@media (max-width: 980px) {
  .seo-two-column,
  .seo-quote__grid,
  .seo-product-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .seo-hero,
  .seo-section,
  .seo-quote {
    padding: 52px 0;
  }

  .seo-inquiry-form,
  .seo-guide-grid {
    grid-template-columns: 1fr;
  }

  .seo-inquiry-form__wide,
  .seo-inquiry-form .form-status {
    grid-column: auto;
  }

  .seo-spec-table th,
  .seo-spec-table td {
    padding: 10px;
    font-size: 14px;
  }
}
