/*
Theme Name: wordpress-express-40
Theme URI: https://wordpress.com/website-design-service/
Author: WordPress.com Express Design Service
Author URI: https://wordpress.com/website-design-service/
Description: a WordPress.com Express Design Service theme — Solon Design System v1.0
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 5.7
Version:
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: assembler
Text Domain: wordpress-express-40
Tags:
*/

/* =====================================================================
   SOLON DESIGN SYSTEM v1.0 — 2026-05-05
   Option C gold-revised, locked 2026-04-29
   Source: April to May Website Redesign Templates / styles.css
   ===================================================================== */

@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 300 500;
  font-display: optional;
  src: url('./assets/fonts/newsreader/Newsreader-Variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 300 500;
  font-display: optional;
  src: url('./assets/fonts/newsreader/Newsreader-Italic-Variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 300 600;
  font-display: optional;
  src: url('./assets/fonts/inter-tight/InterTight-Variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter Tight';
  font-style: italic;
  font-weight: 300 600;
  font-display: optional;
  src: url('./assets/fonts/inter-tight/InterTight-Italic-Variable.woff2') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 600;
  font-display: optional;
  src: url('./assets/fonts/jetbrains-mono/JetBrainsMono-Variable.woff2') format('woff2');
}

/* ====== Design Tokens ====== */

:root {
  /* Color */
  --solon-navy-900:  #0D1D32;
  --solon-navy-800:  #122a4f;
  --solon-navy-700:  #1c3a66;
  --solon-navy-100:  #e8ecf3;

  --solon-action:       #B73617;
  --solon-action-hover: #8E2812;

  --solon-copper-600: #A0731B;
  --solon-copper-500: #C9A53D;
  --solon-copper-400: #E8C766;
  --solon-copper-200: #F2D16D;

  --solon-ivory: #FFFEF0;
  --solon-cream: #FBF6E8;
  --solon-paper: #ffffff;

  --solon-ink-900: #14171c;
  --solon-ink-700: #2c3038;
  --solon-ink-500: #545862;
  --solon-ink-400: #777b85;
  --solon-ink-300: #a8acb5;
  --solon-ink-200: #d8dae0;

  --solon-rule:        rgba(20, 23, 28, 0.12);
  --solon-rule-strong: rgba(20, 23, 28, 0.22);
  --solon-rule-light:  rgba(20, 23, 28, 0.06);

  /* Typography */
  --solon-f-sans:  'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --solon-f-serif: 'Newsreader', Georgia, serif;
  --solon-f-mono:  'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  /* Spacing */
  --solon-space-1:  4px;
  --solon-space-2:  8px;
  --solon-space-3:  12px;
  --solon-space-4:  16px;
  --solon-space-5:  24px;
  --solon-space-6:  32px;
  --solon-space-7:  48px;
  --solon-space-8:  64px;
  --solon-space-9:  96px;
  --solon-space-10: 128px;
  --solon-space-11: 160px;

  /* Layout */
  --solon-container:      1320px;
  --solon-container-wide: 1480px;
  --solon-gutter:         32px;
}

/* ====== Base Reset ====== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--solon-f-sans) !important;
  font-size: 17px;
  line-height: 1.55;
  color: var(--solon-ink-900);
  background-color: var(--solon-ivory) !important;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

/* ====== Typography: all headings → Newsreader ====== */

h1, h2, h3, h4, h5, h6,
.wp-block-heading,
.editor-post-title__input {
  font-family: var(--solon-f-serif) !important;
  font-weight: 400;
}

h1 { font-size: clamp(48px, 7vw, 108px); line-height: 0.97; letter-spacing: -0.025em; }
h2 { font-size: clamp(36px, 5vw, 72px);  line-height: 1.02; letter-spacing: -0.02em;  }
h3 { font-size: clamp(24px, 3vw, 40px);  line-height: 1.1;  letter-spacing: -0.015em; }
h4 { font-size: 24px; line-height: 1.2; }
h5 { font-size: 18px; line-height: 1.3; }
h6 { font-size: 15px; line-height: 1.4; }

/* Italic em in headings → copper accent */
h1 em, h2 em, h3 em, h4 em,
.wp-block-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--solon-copper-400);
}

/* On dark backgrounds, em stays copper-400 (bright gold) */
.solon-bg-navy h1 em,
.solon-bg-navy h2 em,
.solon-bg-navy h3 em,
.solon-bg-navy .wp-block-heading em,
.wp-block-cover h1 em,
.wp-block-cover h2 em,
.wp-block-cover h3 em { color: var(--solon-copper-400); }

/* On light backgrounds, em → copper-600 (darker gold) */
.solon-bg-ivory h1 em,
.solon-bg-ivory h2 em,
.solon-bg-ivory h3 em,
.solon-bg-cream  h1 em,
.solon-bg-cream  h2 em,
.solon-bg-cream  h3 em { color: var(--solon-copper-600); }

/* ====== Eyebrow utilities ====== */

.solon-eyebrow,
.wp-block-paragraph.is-style-eyebrow {
  font-family: var(--solon-f-mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--solon-ink-500);
  font-weight: 500;
  line-height: 1.6;
}

.solon-eyebrow-copper,
.wp-block-paragraph.is-style-eyebrow-copper {
  font-family: var(--solon-f-mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--solon-copper-600);
  font-weight: 500;
  line-height: 1.6;
}

/* ====== Buttons ====== */

.wp-block-button__link,
.wp-element-button {
  border-radius: 0 !important;
  font-family: var(--solon-f-sans) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  transition: background 0.25s ease, transform 0.2s ease !important;
  padding: 14px 24px !important;
}

/* Default / Primary */
.wp-block-button__link,
.wp-block-button.is-style-fill .wp-block-button__link,
.wp-block-button.is-style-primary .wp-block-button__link {
  background: var(--solon-action) !important;
  color: var(--solon-ivory) !important;
  border: none !important;
}
.wp-block-button__link:hover,
.wp-block-button.is-style-fill .wp-block-button__link:hover,
.wp-block-button.is-style-primary .wp-block-button__link:hover {
  background: var(--solon-action-hover) !important;
  transform: translateY(-1px);
}

/* Ghost on light */
.wp-block-button.is-style-outline .wp-block-button__link,
.wp-block-button.is-style-ghost .wp-block-button__link {
  background: transparent !important;
  color: var(--solon-ink-900) !important;
  border: 1px solid var(--solon-rule-strong) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover,
.wp-block-button.is-style-ghost .wp-block-button__link:hover {
  background: var(--solon-ink-900) !important;
  color: var(--solon-cream) !important;
}

/* Ghost on dark */
.wp-block-button.is-style-ghost-light .wp-block-button__link {
  background: transparent !important;
  color: var(--solon-ivory) !important;
  border: 1px solid rgba(255, 254, 240, 0.32) !important;
}
.wp-block-button.is-style-ghost-light .wp-block-button__link:hover {
  background: var(--solon-ivory) !important;
  color: var(--solon-navy-900) !important;
}

/* Gutenberg-authored white outline button on an explicit navy group. */
.has-background[style*="background-color:#0d1d32"]
  .wp-block-button.is-style-outline
  .wp-block-button__link[style*="color:#ffffff"] {
  background: transparent !important;
  color: var(--solon-ivory) !important;
  border-color: var(--solon-copper-200) !important;
}
.has-background[style*="background-color:#0d1d32"]
  .wp-block-button.is-style-outline
  .wp-block-button__link[style*="color:#ffffff"]:hover {
  background: var(--solon-ivory) !important;
  color: var(--solon-navy-900) !important;
}

/* Dark button */
.wp-block-button.is-style-dark .wp-block-button__link {
  background: var(--solon-navy-900) !important;
  color: var(--solon-cream) !important;
  border: none !important;
}
.wp-block-button.is-style-dark .wp-block-button__link:hover {
  background: var(--solon-navy-800) !important;
}

/* ====== Cover block ====== */

.wp-block-cover,
.wp-block-cover-image {
  border-radius: 0 !important;
}

.wp-block-cover .wp-block-cover__inner-container {
  max-width: var(--solon-container);
  margin: 0 auto;
  padding: 0 var(--solon-gutter);
  width: 100%;
}

.bbe_cta_footer .wp-block-cover,
.bbe_cta_footer .wp-block-cover .wp-block-cover__inner-container,
.bbe_cta_footer .wp-block-cover h1,
.bbe_cta_footer .wp-block-cover h2,
.bbe_cta_footer .wp-block-cover h3,
.bbe_cta_footer .wp-block-cover h4,
.bbe_cta_footer .wp-block-cover .wp-block-heading,
.bbe_cta_footer .wp-block-cover p,
.bbe_cta_footer .wp-block-cover label,
.bbe_cta_footer .wp-block-cover .jetpack-field-label {
  color: var(--solon-ivory) !important;
}

.bbe_cta_footer .wp-block-cover p {
  color: rgba(255, 254, 240, 0.82) !important;
}

.bbe_cta_footer .wp-block-cover input,
.bbe_cta_footer .wp-block-cover textarea,
.bbe_cta_footer .wp-block-cover select {
  background: var(--solon-paper) !important;
  color: var(--solon-ink-900) !important;
}

/* ====== Group / section backgrounds ====== */

.solon-bg-ivory  { background-color: var(--solon-ivory) !important; }
.solon-bg-cream  { background-color: var(--solon-cream) !important; }
.solon-bg-paper  { background-color: var(--solon-paper) !important; }
.solon-bg-navy   { background-color: var(--solon-navy-900) !important; }
.solon-bg-navy-800 { background-color: var(--solon-navy-800) !important; }

.solon-bg-navy   *,
.solon-bg-navy-800 * { color: var(--solon-cream); }

.solon-bg-navy   h1, .solon-bg-navy   h2, .solon-bg-navy   h3, .solon-bg-navy   h4,
.solon-bg-navy-800 h1, .solon-bg-navy-800 h2, .solon-bg-navy-800 h3,
.solon-bg-navy   .wp-block-heading,
.solon-bg-navy-800 .wp-block-heading {
  color: var(--solon-ivory) !important;
}

/* ====== Section spacing ====== */

.solon-section        { padding-top: var(--solon-space-10); padding-bottom: var(--solon-space-10); }
.solon-section-tight  { padding-top: var(--solon-space-9);  padding-bottom: var(--solon-space-9); }
.solon-section-slim   { padding-top: var(--solon-space-8);  padding-bottom: var(--solon-space-8); }

@media (max-width: 900px) {
  .solon-section        { padding-top: 80px;  padding-bottom: 80px; }
  .solon-section-tight  { padding-top: 64px;  padding-bottom: 64px; }
  .solon-section-slim   { padding-top: 48px;  padding-bottom: 48px; }
}

/* ====== Services card grid ====== */

.solon-services-grid > .wp-block-columns > .wp-block-column {
  background: var(--solon-ivory);
  border-right: 1px solid var(--solon-rule);
  padding: 40px 32px 36px !important;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s ease, color 0.3s ease;
}

.solon-services-grid > .wp-block-columns > .wp-block-column:last-child {
  border-right: none;
}

.solon-services-grid > .wp-block-columns > .wp-block-column:hover {
  background: var(--solon-navy-900);
}
.solon-services-grid > .wp-block-columns > .wp-block-column:hover * {
  color: var(--solon-cream) !important;
}

.solon-service-card-num {
  font-family: var(--solon-f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--solon-copper-600);
  margin-bottom: 36px;
  display: block;
}

.solon-service-card-link {
  font-family: var(--solon-f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--solon-ink-500);
  margin-top: auto;
  transition: color 0.2s;
}

/* ====== Stats / proof row ====== */

.solon-stats-row .wp-block-column {
  border-right: 1px solid var(--solon-rule);
  padding-top: var(--solon-space-7) !important;
  padding-right: var(--solon-space-5) !important;
}
.solon-stats-row .wp-block-column:last-child { border-right: none; }

.solon-stat-value {
  font-family: var(--solon-f-serif);
  font-size: clamp(56px, 6vw, 92px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--solon-navy-900);
  font-weight: 400;
  margin-bottom: 14px;
  display: block;
}

.solon-stat-label {
  font-family: var(--solon-f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--solon-ink-500);
}

/* ====== Card styles ====== */

.solon-card {
  background: var(--solon-cream);
  padding: 32px 28px;
}

.solon-card-ivory {
  background: var(--solon-ivory);
  padding: 32px 28px;
  border: 1px solid var(--solon-rule-light);
}

.solon-card-gold {
  background: var(--solon-ivory);
  border: 1px solid var(--solon-copper-200);
  padding: 32px 28px;
}

.solon-card h3,
.solon-card-ivory h3,
.solon-card-gold h3 {
  font-family: var(--solon-f-serif) !important;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  line-height: 1.1;
}

/* ====== Mono label inside cards ====== */

.solon-mono-label {
  font-family: var(--solon-f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--solon-copper-600);
  margin-bottom: var(--solon-space-6);
  display: block;
}

/* ====== Rule divider ====== */

.solon-rule {
  border: none;
  border-top: 1px solid var(--solon-rule);
  margin: 0;
}

/* ====== Proof marquee ====== */

@keyframes solon-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.solon-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.solon-marquee-track {
  display: flex;
  gap: 80px;
  animation: solon-marquee 60s linear infinite;
  width: max-content;
}

.solon-marquee-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--solon-f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--solon-ink-500);
  white-space: nowrap;
}

.solon-marquee-dot {
  width: 5px;
  height: 5px;
  background: var(--solon-copper-500);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* ====== FAQ details block ====== */

.solon-faq details {
  border-bottom: 1px solid var(--solon-rule);
}

.solon-faq details summary {
  font-family: var(--solon-f-sans);
  font-weight: 500;
  font-size: 17px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.solon-faq details summary::-webkit-details-marker { display: none; }

.solon-faq details summary::after {
  content: '+';
  font-family: var(--solon-f-mono);
  font-size: 18px;
  font-weight: 400;
  color: var(--solon-copper-600);
  flex-shrink: 0;
}

.solon-faq details[open] summary::after { content: '−'; }

.solon-faq details .solon-faq-body {
  padding: 0 0 24px;
  color: var(--solon-ink-700);
  font-size: 16px;
  line-height: 1.6;
}

/* ====== Media-text layouts ====== */

.solon-media-text .wp-block-media-text {
  gap: 64px;
  align-items: center;
}

/* ====== Horizontal rule between sections ====== */

.wp-block-separator {
  border-color: var(--solon-rule) !important;
  opacity: 1 !important;
}

/* ====== Quote block ====== */

.wp-block-quote {
  border-left: 3px solid var(--solon-copper-500) !important;
  padding-left: 28px !important;
}

.wp-block-quote p {
  font-family: var(--solon-f-serif) !important;
  font-size: 22px !important;
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--solon-navy-900);
}

.wp-block-quote cite {
  font-family: var(--solon-f-mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--solon-ink-500);
  font-style: normal;
}

/* ====== List styling ====== */

.wp-block-list,
.wp-block-list li,
ul, ol, li {
  font-family: var(--solon-f-sans);
}

/* ====== Table ====== */

.wp-block-table td,
.wp-block-table th {
  font-family: var(--solon-f-sans);
  font-size: 15px;
}

/* ====== Navigation ====== */

.wp-block-navigation,
.wp-block-navigation__responsive-container {
  font-family: var(--solon-f-sans) !important;
  font-size: 14px !important;
  font-weight: 450;
}

/* ====== Site title ====== */

.wp-block-site-title,
.wp-block-site-title a {
  font-family: var(--solon-f-serif) !important;
  font-size: 22px !important;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ====== Remove default top margin added by assembler parent ====== */

.wp-site-blocks > * { margin-top: 0 !important; }
.wp-site-blocks > main { padding-top: 0 !important; }

/* ====== Constrain content inside alignfull groups ====== */

.solon-constrain-inner {
  max-width: var(--solon-container);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--solon-gutter);
  padding-right: var(--solon-gutter);
}

.solon-constrain-inner.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none !important;
  width: 100%;
}

/* ====== Runtime block-style bridge ====== */

.wp-block-group.is-style-solon-section,
.wp-block-cover.is-style-solon-section {
  padding-top: var(--solon-space-10);
  padding-bottom: var(--solon-space-10);
}

.wp-block-group.is-style-solon-section-tight,
.wp-block-cover.is-style-solon-section-tight {
  padding-top: var(--solon-space-9);
  padding-bottom: var(--solon-space-9);
}

.wp-block-group.is-style-solon-section-slim,
.wp-block-cover.is-style-solon-section-slim {
  padding-top: var(--solon-space-8);
  padding-bottom: var(--solon-space-8);
}

.wp-block-group.is-style-solon-bg-ivory,
.wp-block-cover.is-style-solon-bg-ivory {
  background-color: var(--solon-ivory) !important;
}

.wp-block-group.is-style-solon-bg-cream,
.wp-block-cover.is-style-solon-bg-cream {
  background-color: var(--solon-cream) !important;
}

.wp-block-group.is-style-solon-bg-paper,
.wp-block-cover.is-style-solon-bg-paper {
  background-color: var(--solon-paper) !important;
}

.wp-block-group.is-style-solon-bg-navy,
.wp-block-cover.is-style-solon-bg-navy {
  background-color: var(--solon-navy-900) !important;
  color: var(--solon-cream) !important;
}

.wp-block-group.is-style-solon-bg-navy *,
.wp-block-cover.is-style-solon-bg-navy * {
  color: var(--solon-cream);
}

.wp-block-group.is-style-solon-bg-navy h1,
.wp-block-group.is-style-solon-bg-navy h2,
.wp-block-group.is-style-solon-bg-navy h3,
.wp-block-group.is-style-solon-bg-navy h4,
.wp-block-group.is-style-solon-bg-navy .wp-block-heading,
.wp-block-cover.is-style-solon-bg-navy h1,
.wp-block-cover.is-style-solon-bg-navy h2,
.wp-block-cover.is-style-solon-bg-navy h3,
.wp-block-cover.is-style-solon-bg-navy h4,
.wp-block-cover.is-style-solon-bg-navy .wp-block-heading {
  color: var(--solon-ivory) !important;
}

.wp-block-group.is-style-solon-bg-navy h1 em,
.wp-block-group.is-style-solon-bg-navy h2 em,
.wp-block-group.is-style-solon-bg-navy h3 em,
.wp-block-group.is-style-solon-bg-navy .wp-block-heading em,
.wp-block-cover.is-style-solon-bg-navy h1 em,
.wp-block-cover.is-style-solon-bg-navy h2 em,
.wp-block-cover.is-style-solon-bg-navy h3 em,
.wp-block-cover.is-style-solon-bg-navy .wp-block-heading em {
  color: var(--solon-copper-400) !important;
}

.wp-block-group.is-style-solon-bg-cream h1 em,
.wp-block-group.is-style-solon-bg-cream h2 em,
.wp-block-group.is-style-solon-bg-cream h3 em,
.wp-block-group.is-style-solon-bg-cream .wp-block-heading em,
.wp-block-group.is-style-solon-bg-ivory h1 em,
.wp-block-group.is-style-solon-bg-ivory h2 em,
.wp-block-group.is-style-solon-bg-ivory h3 em,
.wp-block-group.is-style-solon-bg-ivory .wp-block-heading em,
.wp-block-cover.is-style-solon-bg-cream h1 em,
.wp-block-cover.is-style-solon-bg-cream h2 em,
.wp-block-cover.is-style-solon-bg-cream h3 em,
.wp-block-cover.is-style-solon-bg-cream .wp-block-heading em,
.wp-block-cover.is-style-solon-bg-ivory h1 em,
.wp-block-cover.is-style-solon-bg-ivory h2 em,
.wp-block-cover.is-style-solon-bg-ivory h3 em,
.wp-block-cover.is-style-solon-bg-ivory .wp-block-heading em {
  color: var(--solon-copper-600) !important;
}

.wp-block-group.is-style-solon-services-grid > .wp-block-columns {
  gap: 1px;
  background: var(--solon-rule);
  border: 1px solid var(--solon-rule);
}

.wp-block-group.is-style-solon-services-grid > .wp-block-columns > .wp-block-column {
  background: var(--solon-ivory);
  padding: 40px 32px 36px !important;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s ease, color 0.3s ease;
}

.wp-block-group.is-style-solon-services-grid > .wp-block-columns > .wp-block-column:hover {
  background: var(--solon-navy-900);
}

.wp-block-group.is-style-solon-services-grid > .wp-block-columns > .wp-block-column:hover * {
  color: var(--solon-cream) !important;
}

.wp-block-columns.is-style-solon-stats-row > .wp-block-column {
  border-right: 1px solid var(--solon-rule);
  padding-top: var(--solon-space-7) !important;
  padding-right: var(--solon-space-5) !important;
}

.wp-block-columns.is-style-solon-stats-row > .wp-block-column:last-child {
  border-right: none;
}

.wp-block-group.is-style-solon-faq details {
  border-bottom: 1px solid var(--solon-rule);
}

.wp-block-group.is-style-solon-faq details summary {
  font-family: var(--solon-f-sans);
  font-weight: 500;
  font-size: 17px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.wp-block-group.is-style-solon-faq details summary::-webkit-details-marker {
  display: none;
}

.wp-block-group.is-style-solon-faq details summary::after {
  content: '+';
  font-family: var(--solon-f-mono);
  font-size: 18px;
  font-weight: 400;
  color: var(--solon-copper-600);
  flex-shrink: 0;
}

.wp-block-group.is-style-solon-faq details[open] summary::after {
  content: '−';
}

.wp-block-group.is-style-solon-faq details .solon-faq-body {
  padding: 0 0 24px;
  color: var(--solon-ink-700);
  font-size: 16px;
  line-height: 1.6;
}

.wp-block-separator.is-style-solon-rule {
  border-color: var(--solon-rule) !important;
  opacity: 1 !important;
}

/* ====== Production shell repair: header, CTA footer, nested footer IA ====== */

.solon-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 247, 233, 0.98);
  color: var(--solon-navy-900);
  border-bottom: 1px solid rgba(13, 29, 50, 0.14);
  box-shadow: 0 16px 34px rgba(13, 29, 50, 0.11);
  backdrop-filter: blur(10px);
}

.admin-bar .solon-site-header {
  top: 32px;
}

.solon-site-header,
.solon-site-header * {
  box-sizing: border-box;
}

.solon-site-header a {
  color: inherit;
  text-decoration: none;
}

.solon-site-header__bar {
  width: min(100%, 1440px);
  min-height: 74px;
  margin: 0 auto;
  padding: 10px clamp(18px, 3.6vw, 48px);
  display: grid;
  grid-template-columns: minmax(220px, 315px) minmax(0, 1fr) auto;
  gap: clamp(14px, 2.2vw, 26px);
  align-items: center;
}

.solon-site-header__brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 14px;
}

.solon-site-header__seal {
  width: 58px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
  filter: contrast(1.08);
}

.solon-site-header__brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.solon-site-header__name {
  font-family: var(--solon-f-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.solon-site-header__line {
  max-width: 31ch;
  font-family: var(--solon-f-sans);
  font-size: 12px;
  font-weight: 450;
  line-height: 1.25;
  color: rgba(13, 29, 50, 0.72);
}

.solon-site-header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.2vw, 18px);
  min-width: 0;
  font-family: var(--solon-f-sans);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

.solon-site-header__nav > a,
.solon-site-header__nav > details > summary {
  display: flex;
  align-items: center;
  min-height: 32px;
  color: var(--solon-navy-900);
  letter-spacing: 0;
  cursor: pointer;
  white-space: nowrap;
}

.solon-site-header__nav details {
  position: relative;
}

.solon-site-header__nav summary {
  list-style: none;
}

.solon-site-header__nav summary::-webkit-details-marker {
  display: none;
}

.solon-site-header__nav summary::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.solon-site-header__nav a:hover,
.solon-site-header__nav summary:hover {
  color: var(--solon-copper-600);
}

.solon-site-header__panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 240px;
  padding: 12px;
  display: grid;
  gap: 4px;
  background: var(--solon-navy-900);
  border: 1px solid rgba(247, 240, 222, 0.16);
  box-shadow: 0 22px 50px rgba(13, 29, 50, 0.24);
  transform: translateX(-50%);
}

.solon-site-header__panel--wide {
  width: 320px;
}

.solon-site-header__panel a {
  padding: 10px 11px;
  color: var(--solon-cream);
  font-size: 12px;
  font-weight: 550;
  line-height: 1.2;
  text-transform: none;
}

.solon-site-header__panel a:hover {
  background: rgba(247, 240, 222, 0.08);
  color: var(--solon-copper-400);
}

.solon-site-header__utility {
  display: flex;
  justify-content: flex-end;
}

.solon-site-header__mobile-menu {
  display: none;
}

.solon-site-header__cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  background: var(--solon-action);
  color: var(--solon-cream) !important;
  font-family: var(--solon-f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solon-footer-cta {
  position: relative;
  isolation: isolate;
  min-height: min(54vh, 560px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--solon-navy-900);
  color: var(--solon-cream);
}

.solon-footer-cta__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(13, 29, 50, 0.94) 0%, rgba(13, 29, 50, 0.78) 38%, rgba(13, 29, 50, 0.36) 100%),
    url("/wp-content/uploads/2025/07/20240711_182935.jpg");
  background-size: cover;
  background-position: center;
}

.solon-footer-cta__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 96px) clamp(22px, 5vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(240px, 420px);
  gap: clamp(26px, 6vw, 84px);
  align-items: end;
}

.solon-footer-cta__copy {
  display: grid;
  gap: 24px;
}

.solon-footer-cta__eyebrow {
  margin: 0;
  font-family: var(--solon-f-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--solon-copper-400);
}

.solon-footer-cta h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--solon-f-serif);
  font-size: clamp(44px, 6.2vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--solon-ivory);
}

.solon-footer-cta p {
  max-width: 58ch;
  margin: 0;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  color: rgba(247, 240, 222, 0.84);
}

.solon-footer-cta__actions {
  display: grid;
  gap: 12px;
  justify-items: stretch;
  padding: 22px;
  border: 1px solid rgba(247, 240, 222, 0.18);
  background: rgba(13, 29, 50, 0.48);
  backdrop-filter: blur(6px);
}

.solon-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(247, 240, 222, 0.24);
  font-family: var(--solon-f-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.solon-button--primary {
  background: var(--solon-action);
  border-color: var(--solon-action);
  color: var(--solon-cream) !important;
}

.solon-button--ghost {
  background: rgba(247, 240, 222, 0.04);
  color: var(--solon-cream) !important;
}

.solon-site-footer {
  background: var(--solon-navy-900);
  color: var(--solon-cream);
  border-top: 1px solid rgba(247, 240, 222, 0.16);
}

.solon-site-footer,
.solon-site-footer * {
  box-sizing: border-box;
}

.solon-site-footer a,
.solon-site-footer a:visited {
  color: var(--solon-cream) !important;
  text-decoration: none;
}

.solon-site-footer a:hover {
  color: var(--solon-copper-400);
}

.solon-site-footer a[href*="linkedin.com"],
.solon-site-footer a[href*="linkedin.com"]:visited {
  background: transparent !important;
  color: var(--solon-cream) !important;
}

.solon-site-footer__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 76px) clamp(22px, 5vw, 76px) 24px;
}

.solon-site-footer__brand {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 0.9fr) minmax(240px, 0.42fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(247, 240, 222, 0.16);
}

.solon-site-footer__brand img {
  width: min(100%, 240px);
  height: auto;
}

.solon-site-footer__brand p {
  margin: 0;
}

.solon-site-footer__mark {
  display: grid;
  gap: 16px;
}

.solon-site-footer__mark span {
  font-family: var(--solon-f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  color: rgba(247, 240, 222, 0.72);
}

.solon-site-footer__statement {
  max-width: 720px;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.14;
  color: var(--solon-ivory);
}

.solon-site-footer__signals {
  grid-column: 2 / 4;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: end;
}

.solon-site-footer__signals span {
  padding: 8px 10px;
  border: 1px solid rgba(247, 240, 222, 0.18);
  font-family: var(--solon-f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 240, 222, 0.72);
}

.solon-site-footer__contact-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(247, 240, 222, 0.16);
  background: rgba(247, 240, 222, 0.045);
}

.solon-site-footer__contact-card span {
  color: var(--solon-copper-400);
  font-family: var(--solon-f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solon-site-footer__contact-card a {
  font-family: var(--solon-f-mono);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solon-site-footer__primary {
  padding: 34px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 52px);
  border-bottom: 1px solid rgba(247, 240, 222, 0.16);
}

.solon-site-footer__primary > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.solon-site-footer h2 {
  margin: 0 0 10px;
  font-family: var(--solon-f-serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: var(--solon-ivory);
}

.solon-site-footer__primary a,
.solon-site-footer summary {
  font-family: var(--solon-f-mono);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.solon-site-footer details {
  margin-top: 4px;
  border-top: 1px solid rgba(247, 240, 222, 0.12);
  padding-top: 12px;
}

.solon-site-footer summary {
  min-height: 32px;
  display: flex;
  align-items: center;
  list-style: none;
  cursor: pointer;
  color: var(--solon-copper-400);
}

.solon-site-footer summary::-webkit-details-marker {
  display: none;
}

.solon-site-footer details > div {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.solon-site-footer details a {
  font-size: 11px;
  letter-spacing: 0.07em;
  color: rgba(247, 240, 222, 0.66);
}

.solon-site-footer__base {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--solon-f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 240, 222, 0.62);
}

.solon-site-footer__base span:last-child {
  display: flex;
  gap: 18px;
}

@media (max-width: 1180px) {
  .solon-site-header__bar {
    grid-template-columns: minmax(250px, 290px) minmax(0, 1fr);
  }

  .solon-site-header__nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
  }

  .solon-site-header__nav::-webkit-scrollbar {
    display: none;
  }

  .solon-site-header__line,
  .solon-site-header__utility {
    display: none;
  }

  .solon-site-header__name {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 820px) {
  .admin-bar .solon-site-header,
  .solon-site-header {
    top: 0;
  }

  .solon-site-header {
    position: relative;
    backdrop-filter: none;
  }

  .solon-site-header__bar {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 0;
    padding: 14px 18px;
    gap: 14px;
  }

  .solon-site-header__brand {
    align-items: center;
  }

  .solon-site-header__seal {
    width: 46px;
  }

  .solon-site-header__line {
    display: block;
    max-width: 34ch;
    font-size: 12px;
  }

  .solon-site-header__nav {
    display: none;
  }

  .solon-site-header__panel,
  .solon-site-header__panel--wide {
    position: static;
    width: 100%;
    margin-top: 6px;
    transform: none;
  }

  .solon-site-header__utility {
    display: none;
  }

  .solon-site-header__mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .solon-site-header__mobile-menu summary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    border: 1px solid rgba(13, 29, 50, 0.18);
    background: rgba(255, 255, 255, 0.32);
    color: var(--solon-navy-900);
    cursor: pointer;
    font-family: var(--solon-f-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    list-style: none;
    text-transform: uppercase;
  }

  .solon-site-header__mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .solon-site-header__mobile-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 1001;
    width: min(82vw, 330px);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    display: grid;
    gap: 2px;
    padding: 12px;
    background: var(--solon-navy-900);
    border: 1px solid rgba(247, 240, 222, 0.18);
    box-shadow: 0 22px 55px rgba(13, 29, 50, 0.28);
  }

  .solon-site-header__mobile-panel a {
    padding: 11px 12px;
    color: var(--solon-cream);
    font-family: var(--solon-f-mono);
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .solon-site-footer summary {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .solon-footer-cta__inner {
    grid-template-columns: 1fr;
  }

  .solon-footer-cta h2 {
    max-width: 9.5ch;
  }

  .solon-site-footer__brand,
  .solon-site-footer__primary {
    grid-template-columns: 1fr;
  }

  .solon-site-footer__signals {
    grid-column: auto;
    align-self: start;
  }
}

@media (max-width: 520px) {
  .solon-site-header__nav {
    grid-template-columns: 1fr;
  }

  .solon-footer-cta {
    min-height: 0;
  }

  .solon-footer-cta h2 {
    font-size: clamp(42px, 15vw, 64px);
  }

  .solon-site-footer__base,
  .solon-site-footer__base span:last-child {
    display: grid;
    justify-content: start;
  }
}

@media (max-width: 340px) {
  .solon-site-header__bar {
    padding: 12px 14px;
    gap: 10px;
  }

  .solon-site-header__brand {
    gap: 0;
  }

  .solon-site-header__seal {
    display: none;
  }

  .solon-site-header__name {
    font-size: 11px;
    letter-spacing: 0.075em;
  }

  .solon-site-header__line {
    display: none;
  }
}

/* ====== Expanded pattern-library primitives ====== */

.wp-block-group.is-style-solon-breadcrumb-nav {
  border-bottom: 1px solid var(--solon-rule);
}

.solon-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--solon-f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--solon-ink-500);
}

.solon-breadcrumb-list a {
  text-decoration: none;
}

.solon-breadcrumb-sep {
  color: var(--solon-ink-300);
}

.wp-block-group.is-style-solon-route-chip-row,
.solon-route-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.solon-route-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--solon-rule);
  background: var(--solon-paper);
  font-family: var(--solon-f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--solon-ink-700);
}

.solon-route-chip strong {
  color: var(--solon-copper-600);
  font-weight: 600;
}

.solon-route-chip-row,
.solon-hero-grid,
.solon-hero-layout,
.solon-proof-grid,
.solon-media-band,
.solon-topic-grid,
.solon-stage-grid,
.solon-contact-panel,
.solon-proof-testimonial-grid,
.solon-map-layout,
.solon-tool-grid,
.solon-technical-matrix {
  width: 100%;
  align-self: stretch;
}

.solon-hero-grid,
.solon-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 64px;
  align-items: end;
}

.solon-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solon-hero-copy p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--solon-ink-700);
  max-width: 48ch;
}

.solon-bg-navy .solon-hero-copy p,
.wp-block-group.is-style-solon-bg-navy .solon-hero-copy p,
.wp-block-cover.is-style-solon-bg-navy .solon-hero-copy p {
  color: rgba(255, 254, 240, 0.78);
}

.solon-hero-visual,
.solon-testimonial-card,
.solon-contact-panel,
.solon-tool-result-card,
.solon-package-card,
.solon-topic-card,
.solon-proof-card,
.solon-media-card {
  background: var(--solon-paper);
  border: 1px solid var(--solon-rule);
}

.solon-hero-visual {
  padding: 28px;
}

.solon-metric-stack {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.solon-metric-card {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid var(--solon-rule-light);
  background: var(--solon-ivory);
}

.solon-bg-navy .solon-metric-card,
.wp-block-group.is-style-solon-bg-navy .solon-metric-card,
.wp-block-cover.is-style-solon-bg-navy .solon-metric-card {
  background: rgba(255, 254, 240, 0.09);
  border-color: rgba(255, 254, 240, 0.14);
}

.solon-bg-navy .solon-hero-visual,
.wp-block-group.is-style-solon-bg-navy .solon-hero-visual,
.wp-block-cover.is-style-solon-bg-navy .solon-hero-visual {
  background: transparent !important;
  border-color: transparent !important;
}

.solon-metric-label {
  font-family: var(--solon-f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--solon-ink-500);
}

.solon-metric-value {
  font-family: var(--solon-f-serif);
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--solon-navy-900);
}

.solon-bg-navy .solon-metric-label,
.wp-block-group.is-style-solon-bg-navy .solon-metric-label,
.wp-block-cover.is-style-solon-bg-navy .solon-metric-label {
  color: rgba(255, 254, 240, 0.62);
}

.solon-bg-navy .solon-metric-value,
.wp-block-group.is-style-solon-bg-navy .solon-metric-value,
.wp-block-cover.is-style-solon-bg-navy .solon-metric-value {
  color: var(--solon-ivory);
}

.solon-bg-navy .solon-metric-card p,
.wp-block-group.is-style-solon-bg-navy .solon-metric-card p,
.wp-block-cover.is-style-solon-bg-navy .solon-metric-card p {
  color: rgba(255, 254, 240, 0.78) !important;
}

.solon-bg-navy .solon-route-chip,
.wp-block-group.is-style-solon-bg-navy .solon-route-chip,
.wp-block-cover.is-style-solon-bg-navy .solon-route-chip {
  background: rgba(255, 254, 240, 0.08);
  border-color: rgba(255, 254, 240, 0.18);
  color: var(--solon-cream) !important;
}

.solon-bg-navy .solon-route-chip strong,
.wp-block-group.is-style-solon-bg-navy .solon-route-chip strong,
.wp-block-cover.is-style-solon-bg-navy .solon-route-chip strong {
  color: var(--solon-copper-200) !important;
}

.solon-visual-shell,
.solon-media-slot {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid var(--solon-rule);
  background:
    linear-gradient(180deg, rgba(13, 29, 50, 0.94) 0%, rgba(28, 58, 102, 0.88) 100%),
    repeating-linear-gradient(135deg, rgba(242, 209, 109, 0.12) 0, rgba(242, 209, 109, 0.12) 1px, transparent 1px, transparent 10px);
  color: rgba(255, 254, 240, 0.84);
}

.solon-media-slot--wide {
  min-height: 280px;
}

.solon-media-slot--tall {
  min-height: 340px;
}

.solon-visual-shell::before,
.solon-media-slot::before {
  content: 'Future owned image / diagram slot';
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 254, 240, 0.18);
  background: rgba(20, 23, 28, 0.28);
  font-family: var(--solon-f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solon-visual-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 8px;
  width: min(240px, calc(100% - 36px));
  padding: 16px 18px;
  background: rgba(255, 254, 240, 0.94);
  color: var(--solon-ink-900);
}

.solon-visual-card-label,
.solon-proof-meta,
.solon-proof-value-label,
.solon-package-kicker,
.solon-topic-kicker,
.solon-tool-kicker,
.solon-contact-kicker,
.solon-map-kicker {
  font-family: var(--solon-f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--solon-copper-600);
}

.solon-visual-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 300px);
  font-size: 14px;
  line-height: 1.55;
}

.wp-block-group.is-style-solon-proof-grid,
.solon-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.solon-proof-card,
.solon-media-card,
.solon-package-card,
.solon-topic-card,
.solon-tool-result-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.solon-proof-card-body,
.solon-media-card-body,
.solon-package-card-body,
.solon-topic-card-body,
.solon-tool-result-body {
  display: grid;
  gap: 14px;
  padding: 24px 24px 28px;
  flex-grow: 1;
}

.solon-proof-title,
.solon-package-title,
.solon-topic-title,
.solon-contact-title,
.solon-tool-result-title {
  font-family: var(--solon-f-serif);
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--solon-navy-900);
}

.solon-proof-card-body p,
.solon-media-card-body p,
.solon-package-card-body p,
.solon-topic-card-body p,
.solon-tool-result-body p,
.solon-contact-panel p,
.solon-map-layout p,
.solon-article-shell p {
  color: var(--solon-ink-700);
  line-height: 1.65;
}

.solon-proof-outcomes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--solon-rule);
  margin-top: auto;
}

.solon-proof-value {
  font-family: var(--solon-f-serif);
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--solon-navy-900);
}

.wp-block-group.is-style-solon-proof-media-band,
.solon-media-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.solon-media-card figure {
  margin: 0;
}

.solon-media-card figcaption {
  padding: 14px 18px;
  border-top: 1px solid var(--solon-rule);
  font-family: var(--solon-f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--solon-ink-500);
}

.solon-proof-testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
}

.solon-testimonial-card,
.solon-contact-panel,
.solon-tool-result-card {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.wp-block-quote.is-style-solon-proof-quote {
  border-left: 3px solid var(--solon-copper-500) !important;
  padding: 4px 0 4px 28px !important;
}

.wp-block-quote.is-style-solon-proof-quote p {
  font-family: var(--solon-f-serif) !important;
  font-size: 28px !important;
  font-style: italic;
  font-weight: 300;
  line-height: 1.42;
  color: var(--solon-navy-900);
}

.wp-block-quote.is-style-solon-proof-quote cite {
  font-family: var(--solon-f-mono) !important;
  font-size: 10px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--solon-ink-500);
  font-style: normal;
}

.solon-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.solon-map-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.solon-map-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--solon-rule-light);
  background: var(--solon-ivory);
  font-family: var(--solon-f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--solon-ink-700);
}

.wp-block-group.is-style-solon-technical-matrix,
.solon-technical-matrix {
  overflow-x: auto;
}

.wp-block-table.is-style-solon-spec-table table,
.solon-spec-table table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 15px;
}

.wp-block-table.is-style-solon-spec-table th,
.solon-spec-table th {
  padding: 18px 16px 18px 0;
  border-bottom: 1px solid var(--solon-rule-strong);
  font-family: var(--solon-f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--solon-ink-500);
  text-align: left;
}

.wp-block-table.is-style-solon-spec-table td,
.solon-spec-table td {
  padding: 18px 16px 18px 0;
  border-bottom: 1px solid var(--solon-rule);
  color: var(--solon-ink-700);
  line-height: 1.6;
}

.wp-block-group.is-style-solon-flow-band,
.solon-flow-band {
  border-top: 1px solid var(--solon-rule);
  border-bottom: 1px solid var(--solon-rule);
}

.solon-stage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.solon-stage-node {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 26px 24px;
  border: 1px solid var(--solon-rule);
  background: var(--solon-paper);
}

.solon-stage-node::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -25px;
  width: 26px;
  height: 1px;
  background: var(--solon-copper-500);
}

.solon-stage-node:last-child::after {
  display: none;
}

.solon-stage-num {
  font-family: var(--solon-f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--solon-copper-600);
}

.wp-block-group.is-style-solon-package-grid,
.solon-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.solon-package-card.is-featured {
  background: var(--solon-navy-900);
  border-color: var(--solon-navy-900);
}

.solon-package-card.is-featured .solon-package-title,
.solon-package-card.is-featured p,
.solon-package-card.is-featured li,
.solon-package-card.is-featured .solon-package-kicker {
  color: var(--solon-cream) !important;
}

.solon-package-price {
  font-family: var(--solon-f-serif);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--solon-navy-900);
}

.solon-package-card.is-featured .solon-package-price {
  color: var(--solon-ivory);
}

.wp-block-group.is-style-solon-contact-panel,
.solon-contact-panel {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  align-items: start;
  gap: 24px;
}

.solon-bg-navy .solon-contact-panel,
.wp-block-group.is-style-solon-bg-navy .solon-contact-panel,
.wp-block-cover.is-style-solon-bg-navy .solon-contact-panel {
  background: rgba(255, 254, 240, 0.08) !important;
  border-color: rgba(255, 254, 240, 0.18) !important;
  color: var(--solon-cream) !important;
}

.solon-bg-navy .solon-contact-panel h2,
.solon-bg-navy .solon-contact-panel h3,
.solon-bg-navy .solon-contact-panel p,
.solon-bg-navy .solon-contact-panel li,
.wp-block-group.is-style-solon-bg-navy .solon-contact-panel h2,
.wp-block-group.is-style-solon-bg-navy .solon-contact-panel h3,
.wp-block-group.is-style-solon-bg-navy .solon-contact-panel p,
.wp-block-group.is-style-solon-bg-navy .solon-contact-panel li,
.wp-block-cover.is-style-solon-bg-navy .solon-contact-panel h2,
.wp-block-cover.is-style-solon-bg-navy .solon-contact-panel h3,
.wp-block-cover.is-style-solon-bg-navy .solon-contact-panel p,
.wp-block-cover.is-style-solon-bg-navy .solon-contact-panel li {
  color: var(--solon-cream) !important;
}

.solon-bg-navy .solon-contact-panel .solon-contact-kicker,
.wp-block-group.is-style-solon-bg-navy .solon-contact-panel .solon-contact-kicker,
.wp-block-cover.is-style-solon-bg-navy .solon-contact-panel .solon-contact-kicker {
  color: var(--solon-copper-200) !important;
}

.solon-contact-lanes {
  display: grid;
  gap: 14px;
}

.solon-contact-lane {
  padding: 18px 20px;
  border: 1px solid var(--solon-rule-light);
  background: var(--solon-ivory);
}

.wp-block-group.is-style-solon-topic-cluster,
.solon-topic-cluster {
  display: grid;
  gap: 24px;
}

.solon-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.solon-topic-card {
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.solon-topic-card:hover,
.solon-package-card:hover,
.solon-proof-card:hover,
.solon-media-card:hover {
  transform: translateY(-2px);
  border-color: var(--solon-rule-strong);
}

.wp-block-group.is-style-solon-article-shell,
.solon-article-shell {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.solon-article-kicker {
  margin-bottom: 16px;
}

.solon-key-takeaways {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--solon-copper-200);
  background: var(--solon-ivory);
}

.wp-block-group.is-style-solon-tool-shell,
.solon-tool-shell {
  border: 1px solid var(--solon-rule);
  background: var(--solon-paper);
  padding: 32px;
}

.solon-tool-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 24px;
}

.solon-tool-inputs {
  display: grid;
  gap: 14px;
}

.solon-tool-input-row {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid var(--solon-rule-light);
  background: var(--solon-ivory);
}

.solon-tool-input-label {
  font-family: var(--solon-f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--solon-ink-500);
}

.wp-block-group.is-style-solon-tool-result-panel,
.solon-tool-result-panel {
  padding: 0;
  border: none;
  background: transparent;
}

.solon-tool-result-card {
  border-color: var(--solon-copper-200);
  background: var(--solon-ivory);
}

.solon-tool-result-value {
  font-family: var(--solon-f-serif);
  font-size: clamp(44px, 7vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--solon-navy-900);
}

.wp-block-media-text.is-style-solon-media-spread,
.solon-media-spread .wp-block-media-text {
  gap: 64px;
  align-items: center;
}

figure.wp-block-image.is-style-solon-image-frame img {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--solon-rule);
  background: var(--solon-paper);
}

figure.wp-block-image.is-style-solon-image-frame figcaption {
  margin-top: 12px;
  font-family: var(--solon-f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--solon-ink-500);
}

.wp-block-gallery.is-style-solon-gallery-proof {
  gap: 24px;
}

.wp-block-gallery.is-style-solon-gallery-proof .blocks-gallery-item,
.wp-block-gallery.is-style-solon-gallery-proof .wp-block-image {
  border: 1px solid var(--solon-rule);
  background: var(--solon-paper);
  padding: 10px;
}

.wp-block-list.is-style-solon-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.wp-block-list.is-style-solon-checklist li {
  position: relative;
  padding-left: 22px;
  color: var(--solon-ink-700);
}

.wp-block-list.is-style-solon-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--solon-copper-500);
}

/* ====== Solon V2 finished native-block homepage ====== */

.solon-finished-home {
  --sfh-navy: #0D1D32;
  --sfh-ivory: #FFFEF0;
  --sfh-cream: #FBF6E8;
  --sfh-gold: #F2D16D;
  --sfh-gold-dark: #A0731B;
  --sfh-action: #B73617;
  --sfh-ink: #14171C;
  --sfh-body: #2C3038;
  --sfh-rule: rgba(20, 23, 28, 0.14);
  --sfh-rule-dark: rgba(255, 254, 240, 0.18);
  --sfh-shadow: 0 24px 70px rgba(13, 29, 50, 0.16);
  --sfh-canvas: min(1360px, calc(100vw - 64px));
  --sfh-copy: min(860px, calc(100vw - 64px));
  background: var(--sfh-ivory);
  color: var(--sfh-body);
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
}

.entry-content > .solon-finished-home.alignfull,
.is-layout-constrained > .solon-finished-home.alignfull,
.has-global-padding > .solon-finished-home.alignfull {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (min-width: 701px) {
  .entry-content > .solon-finished-home.alignfull,
  .is-layout-constrained > .solon-finished-home.alignfull,
  .has-global-padding > .solon-finished-home.alignfull {
    width: calc(100% + var(--wp--style--root--padding-left, 16px) + var(--wp--style--root--padding-right, 16px)) !important;
    margin-left: calc(var(--wp--style--root--padding-left, 16px) * -1) !important;
    margin-right: calc(var(--wp--style--root--padding-right, 16px) * -1) !important;
  }
}

.solon-finished-home,
.solon-finished-home p,
.solon-finished-home td,
.solon-finished-home summary,
.solon-finished-home cite {
  font-family: var(--solon-f-sans, 'Inter Tight', system-ui, sans-serif);
}

.solon-finished-home h1,
.solon-finished-home h2,
.solon-finished-home h3,
.solon-finished-home h4 {
  font-family: var(--solon-f-serif, Newsreader, Georgia, serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  text-transform: none !important;
  margin: 0;
}

.solon-finished-home em {
  color: var(--sfh-gold-dark);
  font-style: italic;
}

.solon-home-section-dark em,
.solon-finished-hero em,
.solon-final-cta em {
  color: var(--sfh-gold);
}

.solon-finished-home a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.solon-finished-home > .alignfull,
.solon-finished-home .alignfull {
  width: 100%;
  max-width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.solon-finished-home .alignwide {
  max-width: var(--sfh-canvas);
  margin-left: auto;
  margin-right: auto;
}

.solon-finished-home .wp-block-cover,
.solon-finished-home .wp-block-cover-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.solon-finished-home .wp-block-cover__image-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.solon-finished-home .wp-block-cover__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.solon-finished-home .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
  width: var(--sfh-canvas);
  max-width: var(--sfh-canvas);
  margin: 0 auto;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.solon-finished-hero::after,
.solon-final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(13, 29, 50, 0.94), rgba(13, 29, 50, 0.78) 42%, rgba(13, 29, 50, 0.9)),
    radial-gradient(circle at 18% 20%, rgba(242, 209, 109, 0.18), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.055) 0 1px, transparent 1px 130px);
}

.solon-finished-eyebrow {
  font-family: var(--solon-f-mono, 'JetBrains Mono', ui-monospace, monospace) !important;
  font-size: 11px !important;
  line-height: 1.4 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  font-weight: 700;
}

.solon-finished-title {
  max-width: min(1220px, var(--sfh-canvas));
  margin: 0 auto 24px !important;
  font-size: clamp(52px, 7.4vw, 112px) !important;
  line-height: 0.88 !important;
}

.solon-section-title {
  max-width: min(1120px, var(--sfh-canvas));
  font-size: clamp(38px, 5.4vw, 82px) !important;
  line-height: 0.96 !important;
}

.solon-finished-lede,
.solon-section-copy {
  max-width: var(--sfh-copy);
  font-size: clamp(17px, 2vw, 22px) !important;
  line-height: 1.58 !important;
}

.solon-finished-lede {
  margin: 0 auto 32px !important;
}

.solon-copy-narrow {
  max-width: 720px;
}

.solon-finished-home .wp-block-buttons {
  display: flex;
  gap: 12px 14px;
  align-items: center;
}

.solon-finished-home .wp-block-button__link,
.solon-finished-home .wp-element-button {
  border-radius: 0 !important;
  padding: 14px 22px !important;
  border: 1px solid currentColor !important;
  font-family: var(--solon-f-mono, 'JetBrains Mono', ui-monospace, monospace) !important;
  font-size: 11px !important;
  line-height: 1.15 !important;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.solon-finished-primary .wp-block-button__link,
.solon-finished-primary .wp-element-button {
  background: var(--sfh-action) !important;
  border-color: var(--sfh-action) !important;
  color: #fff !important;
}

.solon-finished-secondary .wp-block-button__link,
.solon-finished-secondary .wp-element-button {
  background: transparent !important;
  color: var(--sfh-gold) !important;
}

.solon-finished-hero .solon-finished-secondary .wp-block-button__link,
.solon-finished-hero .solon-finished-secondary .wp-element-button {
  color: var(--sfh-ivory) !important;
  border-color: rgba(255, 254, 240, 0.45) !important;
  background: transparent !important;
}

.solon-home-section-light .solon-finished-secondary .wp-block-button__link,
.solon-home-section-light .solon-finished-secondary .wp-element-button {
  color: var(--sfh-navy) !important;
}

.solon-finished-home .wp-block-button__link:hover,
.solon-finished-home .wp-element-button:hover {
  transform: translateY(-2px);
}

.solon-home-section {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.solon-home-section > * {
  box-sizing: border-box;
}

.solon-home-section > .wp-block-columns,
.solon-home-section > .wp-block-heading,
.solon-home-section > .wp-block-paragraph,
.solon-home-section > .wp-block-table,
.solon-home-section > .wp-block-buttons,
.solon-home-section > .wp-block-details,
.solon-home-section > p,
.solon-home-section > h2,
.solon-home-section > h3,
.solon-home-section > figure {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--sfh-canvas);
  margin-left: auto !important;
  margin-right: auto !important;
}

.solon-finished-home .wp-block-columns {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: var(--wp--style--block-gap, 24px);
}

.solon-finished-home .solon-hero-route-grid {
  width: var(--sfh-canvas) !important;
  max-width: var(--sfh-canvas) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.solon-finished-home .wp-block-column {
  min-width: 0;
  flex-grow: 1;
}

.solon-finished-home .solon-card-grid,
.solon-finished-home .solon-proof-stats,
.solon-finished-home .solon-quote-grid {
  display: grid !important;
  gap: 24px !important;
}

.solon-finished-home .solon-card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solon-finished-home .solon-card-grid-four,
.solon-finished-home .solon-proof-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solon-finished-home .solon-quote-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solon-finished-home .solon-card-grid > .wp-block-column,
.solon-finished-home .solon-proof-stats > .wp-block-column,
.solon-finished-home .solon-quote-grid > .wp-block-column {
  width: 100% !important;
  flex-basis: auto !important;
}

.solon-card-grid,
.solon-hero-route-grid,
.solon-proof-stats,
.solon-quote-grid {
  margin-top: 28px;
}

.solon-card-grid-three > .wp-block-column {
  flex-basis: calc(33.333% - 18px) !important;
}

.solon-card-grid-four > .wp-block-column,
.solon-proof-stats > .wp-block-column {
  flex-basis: calc(25% - 18px) !important;
}

.solon-hero-route-card,
.solon-dark-card,
.solon-light-card,
.solon-media-card,
.solon-mini-card,
.solon-stat-card,
.solon-proof-quote {
  height: 100%;
  box-sizing: border-box;
  border: 1px solid var(--sfh-rule);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.solon-hero-route-card,
.solon-dark-card,
.solon-stat-card,
.solon-proof-quote {
  border-color: var(--sfh-rule-dark);
  background: #0D1D32;
  color: #FFFFFF;
}

.solon-hero-route-card,
.solon-dark-card,
.solon-light-card,
.solon-mini-card,
.solon-stat-card,
.solon-proof-quote {
  padding: 28px;
}

.solon-light-card,
.solon-media-card,
.solon-mini-card {
  background: #fff;
  color: var(--sfh-body);
  box-shadow: var(--sfh-shadow);
}

.solon-media-card {
  padding: 16px 16px 28px;
}

.solon-dark-card,
.solon-light-card,
.solon-media-card,
.solon-mini-card,
.solon-stat-card,
.solon-proof-quote {
  display: flex;
  flex-direction: column;
}

.solon-home-section-dark,
.solon-home-section-dark p,
.solon-home-section-dark td,
.solon-home-section-dark summary,
.solon-home-section-dark cite,
.solon-dark-card p,
.solon-stat-card p,
.solon-proof-quote p {
  color: rgba(255, 254, 240, 0.86) !important;
}

.solon-home-section-dark .solon-finished-eyebrow,
.solon-home-section-dark .solon-card-link,
.solon-home-section-dark .solon-card-link a,
.solon-proof-quote cite {
  color: var(--sfh-gold) !important;
}

.solon-media-card > *:not(figure),
.solon-project-card > *:not(figure) {
  padding-left: 8px;
  padding-right: 8px;
}

.solon-hero-route-card:hover,
.solon-dark-card:hover,
.solon-light-card:hover,
.solon-media-card:hover,
.solon-mini-card:hover,
.solon-stat-card:hover,
.solon-proof-quote:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 209, 109, 0.55);
  box-shadow: 0 28px 80px rgba(13, 29, 50, 0.22);
}

.solon-dark-card h3,
.solon-dark-card h4,
.solon-stat-card h3,
.solon-proof-quote p,
.solon-hero-route-card h3 {
  color: var(--sfh-ivory);
}

.solon-finished-home .solon-hero-route-card h3,
.solon-finished-home .solon-dark-card h3,
.solon-finished-home .solon-light-card h3,
.solon-finished-home .solon-media-card h3,
.solon-finished-home .solon-mini-card h3 {
  font-size: clamp(24px, 2.05vw, 34px) !important;
  line-height: 1.08 !important;
  overflow-wrap: normal;
}

.solon-finished-home .solon-card-grid-four .solon-dark-card h3 {
  font-size: clamp(23px, 1.65vw, 30px) !important;
}

.solon-light-card h3,
.solon-media-card h3,
.solon-mini-card h3 {
  color: var(--sfh-navy);
}

.solon-finished-home .solon-card-link {
  margin-top: auto;
  font-family: var(--solon-f-mono, 'JetBrains Mono', ui-monospace, monospace) !important;
  font-size: 11px !important;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sfh-action) !important;
}

.solon-home-section-dark .solon-card-link,
.solon-hero-route-card .solon-card-link {
  color: var(--sfh-gold) !important;
}

.solon-home-image {
  margin: 0 0 20px !important;
  width: 100%;
  overflow: hidden;
  background-color: var(--sfh-navy);
  border: 1px solid rgba(20, 23, 28, 0.14);
}

.solon-home-image img {
  display: block;
  width: 100% !important;
  height: 240px !important;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 0.34s ease, filter 0.34s ease;
}

.solon-home-image-tall img {
  height: clamp(420px, 54vw, 680px) !important;
}

.solon-media-card:hover .solon-home-image img,
.solon-project-card:hover .solon-home-image img,
.solon-operating-partner .solon-home-image:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.06);
}

.solon-route-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: var(--sfh-shadow);
}

.solon-route-table td {
  padding: 18px 20px;
  border: 1px solid var(--sfh-rule);
  vertical-align: top;
  color: var(--sfh-body);
}

.solon-route-table td:nth-child(2) {
  font-family: var(--solon-f-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--sfh-action);
  white-space: nowrap;
}

.solon-stat-card h3 {
  font-size: clamp(32px, 4vw, 54px) !important;
  color: var(--sfh-gold) !important;
}

.solon-stat-card p {
  font-family: var(--solon-f-mono, 'JetBrains Mono', ui-monospace, monospace) !important;
  font-size: 10px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solon-proof-quote {
  margin: 0;
}

.solon-proof-quote p {
  font-family: var(--solon-f-serif, Newsreader, Georgia, serif) !important;
  font-size: clamp(20px, 2.2vw, 28px) !important;
  line-height: 1.32 !important;
}

.solon-proof-quote cite {
  display: block;
  margin-top: 18px;
  font-size: 13px;
  color: var(--sfh-gold);
}

.solon-faq-section .wp-block-details {
  margin: 12px 0;
  border: 1px solid var(--sfh-rule);
  background: #fff;
  box-shadow: 0 12px 32px rgba(13, 29, 50, 0.08);
}

.solon-faq-section summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  color: var(--sfh-navy);
}

.solon-faq-section details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--sfh-body);
}

/* Native-block interaction restoration: mirrors the original homepage hero
   slideshow and featured carousel without using core/html blocks. */
.solon-finished-hero.has-native-slideshow {
  min-height: max(760px, 92vh) !important;
  isolation: isolate;
}

.solon-finished-hero.has-native-slideshow > .wp-block-cover__image-background,
.solon-finished-hero.has-native-slideshow > .wp-block-cover__background {
  opacity: 0 !important;
}

.solon-native-hero-slides,
.solon-native-hero-slides .slide,
.solon-native-hero-slides .slide img,
.solon-native-hero-slides .slide-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.solon-native-hero-slides {
  z-index: 0;
  overflow: hidden;
  background: var(--sfh-navy);
}

.solon-native-hero-slides .slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.solon-native-hero-slides .slide.is-active {
  opacity: 1;
}

.solon-native-hero-slides .slide img {
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
  transform: none;
}

.solon-native-hero-slides .slide-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13, 29, 50, 0.10) 0%, rgba(13, 29, 50, 0.34) 54%, rgba(13, 29, 50, 0.78) 100%),
    linear-gradient(90deg, rgba(13, 29, 50, 0.46) 0%, rgba(13, 29, 50, 0.05) 66%);
}

.solon-native-hero-caption {
  width: 100%;
  max-width: var(--sfh-canvas);
  margin: clamp(34px, 5vw, 64px) auto 0 !important;
  padding: clamp(22px, 3vw, 34px) clamp(22px, 4vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  background: rgba(13, 29, 50, 0.58);
  border: 1px solid rgba(255, 254, 240, 0.2);
  color: var(--sfh-ivory);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.solon-native-hero-caption .caption-left,
.solon-native-hero-caption .caption-right {
  display: grid;
  gap: 14px;
}

.solon-native-hero-caption .meta-row {
  display: flex;
  gap: 14px;
  align-items: baseline;
  flex-wrap: wrap;
}

.solon-native-hero-caption .slide-tag,
.solon-native-hero-caption .slide-index,
.solon-native-hero-caption .slide-link,
.solon-native-hero-controls .hero-counter {
  font-family: var(--solon-f-mono, 'JetBrains Mono', ui-monospace, monospace) !important;
  font-size: 11px !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.solon-native-hero-caption .slide-tag,
.solon-native-hero-caption .slide-link {
  color: var(--sfh-gold) !important;
}

.solon-native-hero-caption .slide-index,
.solon-native-hero-caption .slide-desc,
.solon-native-hero-controls .hero-counter {
  color: rgba(255, 254, 240, 0.78) !important;
}

.solon-native-hero-caption .slide-title {
  font-size: clamp(24px, 2.5vw, 34px) !important;
  line-height: 1.08 !important;
  color: var(--sfh-ivory) !important;
}

.solon-native-hero-caption .slide-desc {
  margin: 0;
  font-size: clamp(14px, 1.15vw, 16px) !important;
  line-height: 1.58 !important;
}

.solon-native-hero-caption .slide-link {
  justify-self: start;
  text-decoration: none;
}

.solon-native-hero-controls {
  width: 100%;
  max-width: var(--sfh-canvas);
  margin: 0 auto !important;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 22px;
  align-items: center;
  border-top: 1px solid rgba(255, 254, 240, 0.18);
}

.solon-native-hero-controls .dots,
.solon-featured-routes .featured-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.solon-native-hero-controls .dot,
.solon-featured-routes .featured-dot {
  width: 34px;
  height: 2px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: rgba(255, 254, 240, 0.3);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.solon-native-hero-controls .dot.is-active,
.solon-featured-routes .featured-dot.is-active {
  background: var(--sfh-gold);
}

.solon-native-hero-controls .ctrl,
.solon-featured-routes .featured-ctrl {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 254, 240, 0.28);
  background: transparent;
  color: var(--sfh-ivory);
  font-family: var(--solon-f-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.solon-native-hero-controls .ctrl:hover {
  background: var(--sfh-ivory);
  border-color: var(--sfh-ivory);
  color: var(--sfh-navy);
}

.solon-native-hero-fallback {
  display: none !important;
}

@media (min-width: 901px) {
  .solon-finished-hero .solon-finished-title {
    max-width: min(980px, var(--sfh-canvas)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(58px, 6.3vw, 92px) !important;
    line-height: 0.92 !important;
    text-align: left !important;
    text-transform: none !important;
  }

  .entry-content .solon-finished-home .solon-finished-hero h1.wp-block-heading.solon-finished-title {
    max-width: min(980px, var(--sfh-canvas)) !important;
    text-transform: none !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
  }

  .solon-finished-hero .solon-finished-lede {
    width: min(540px, 100%) !important;
    max-width: min(540px, 100%) !important;
    margin-left: calc((100% - min(980px, var(--sfh-canvas))) / 2) !important;
    margin-right: auto !important;
    text-align: left !important;
  }

  .solon-finished-hero .solon-finished-buttons {
    width: min(980px, var(--sfh-canvas)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: flex-start !important;
  }

  .solon-operating-partner .solon-two-up {
    display: grid !important;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(56px, 7vw, 112px) !important;
    align-items: start !important;
  }

  .solon-operating-partner .solon-two-up > .wp-block-column:first-child {
    grid-column: 2;
    grid-row: 1;
    width: 100% !important;
    flex-basis: auto !important;
  }

  .solon-operating-partner .solon-two-up > .wp-block-column:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
    width: 100% !important;
    flex-basis: auto !important;
  }

  .solon-operating-partner .solon-section-title {
    font-size: clamp(42px, 5vw, 76px) !important;
    line-height: 1 !important;
    max-width: 100% !important;
  }

  .solon-operating-partner .solon-home-image {
    height: clamp(440px, 48vw, 640px);
    margin: 0 !important;
    box-shadow: none;
    background-color: var(--sfh-cream);
  }

  .solon-operating-partner .solon-home-image img {
    height: 100% !important;
    min-height: 100%;
    object-fit: cover;
  }

  .solon-operating-partner .solon-mini-metrics {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    margin-top: 28px !important;
    padding-top: 30px;
    border-top: 1px solid var(--sfh-rule);
  }

  .solon-operating-partner .solon-mini-card {
    padding: 8px 28px 0 0 !important;
    border: 0;
    border-right: 1px solid var(--sfh-rule);
    background: transparent;
    box-shadow: none;
  }

  .solon-operating-partner .solon-mini-metrics > .wp-block-column:last-child .solon-mini-card {
    border-right: 0;
    padding-right: 0 !important;
  }

  .solon-operating-partner .solon-mini-card p:not(.solon-finished-eyebrow) {
    font-family: var(--solon-f-serif, Newsreader, Georgia, serif) !important;
    font-size: clamp(22px, 2vw, 28px) !important;
    line-height: 1.1 !important;
    color: var(--sfh-navy) !important;
  }

  .solon-finished-home > .solon-home-section-dark:not(.solon-proof-section) .solon-card-grid-four {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solon-finished-home > .solon-home-section-dark:not(.solon-proof-section) .solon-card-grid-four > .wp-block-column {
    flex-basis: auto !important;
  }
}

.solon-featured-routes.has-native-carousel > .featured-show,
.solon-featured-routes.has-native-carousel > .featured-controls {
  position: relative;
  z-index: 1;
  width: var(--sfh-canvas);
  max-width: var(--sfh-canvas);
  margin-left: auto !important;
  margin-right: auto !important;
}

.solon-featured-routes.has-native-carousel > .featured-show {
  margin-top: 36px;
  min-height: 540px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--sfh-rule);
  box-shadow: var(--sfh-shadow);
}

.solon-featured-routes .featured-track {
  position: relative;
  width: 100%;
  min-height: 540px;
}

.solon-featured-routes .featured-slide {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  max-width: 100% !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 0.8s;
}

.solon-featured-routes .featured-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.solon-featured-routes .featured-slide > .wp-block-group {
  min-height: 540px;
  height: 100%;
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  grid-auto-rows: max-content;
  align-content: center;
  gap: 0;
  padding: 0 !important;
  border: 0;
  box-shadow: none;
  transform: none !important;
}

.solon-featured-routes .featured-slide > .wp-block-group::before {
  content: '';
  grid-column: 1;
  grid-row: 1 / span 10;
  min-height: 540px;
  background:
    radial-gradient(circle at 20% 18%, rgba(242, 209, 109, 0.34), transparent 26%),
    linear-gradient(135deg, #FBF6E8, #E8ECF3 52%, #0D1D32 52%, #122A4F);
}

.solon-featured-routes .featured-slide > .wp-block-group:has(figure)::before {
  display: none;
}

.solon-featured-routes .featured-slide figure {
  grid-column: 1;
  grid-row: 1 / span 10;
  height: 100%;
  min-height: 540px;
  margin: 0 !important;
  border: 0;
}

.solon-featured-routes .featured-slide figure img {
  height: 100% !important;
  min-height: 540px;
  object-fit: cover;
}

.solon-featured-routes .featured-slide > .wp-block-group > *:not(figure) {
  grid-column: 2;
  margin-left: clamp(34px, 5vw, 68px) !important;
  margin-right: clamp(34px, 5vw, 68px) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.solon-featured-routes .featured-slide .solon-finished-eyebrow {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sfh-rule);
  color: var(--sfh-gold-dark) !important;
}

.solon-featured-routes .featured-slide h3 {
  max-width: 18ch;
  margin-top: 24px !important;
  margin-bottom: 20px !important;
  font-size: clamp(30px, 3.2vw, 46px) !important;
}

.solon-featured-routes .featured-slide p:not(.solon-finished-eyebrow):not(.solon-card-link) {
  max-width: 54ch;
  font-size: 16px !important;
  line-height: 1.62 !important;
  color: var(--sfh-body) !important;
}

.solon-featured-routes .featured-slide .solon-card-link {
  align-self: end;
  margin-top: 24px !important;
  padding-top: 18px;
  border-top: 1px solid var(--sfh-rule);
}

.solon-featured-routes.has-native-carousel > .featured-controls {
  margin-top: 28px !important;
  padding-top: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 22px;
  align-items: center;
  border-top: 1px solid var(--sfh-rule);
}

.solon-featured-routes .featured-status {
  font-family: var(--solon-f-mono, 'JetBrains Mono', ui-monospace, monospace) !important;
  font-size: 11px !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sfh-body);
}

.solon-featured-routes .featured-cat-now {
  color: var(--sfh-gold-dark);
}

.solon-featured-routes .featured-dot {
  width: 28px;
  background: var(--sfh-rule);
}

.solon-featured-routes .featured-dot.is-active {
  background: var(--sfh-action);
}

.solon-featured-routes .featured-ctrl {
  border-color: var(--sfh-rule);
  color: var(--sfh-navy);
}

.solon-featured-routes .featured-ctrl:hover {
  background: var(--sfh-navy);
  border-color: var(--sfh-navy);
  color: var(--sfh-ivory);
}

@media (min-width: 901px) {
  .solon-featured-routes.has-native-carousel > .featured-show,
  .solon-featured-routes .featured-track,
  .solon-featured-routes .featured-slide,
  .solon-featured-routes .featured-slide > .wp-block-group {
    height: 540px !important;
    min-height: 540px !important;
    max-height: 540px !important;
    overflow: hidden !important;
  }

  .solon-featured-routes .featured-slide > .wp-block-group {
    grid-template-rows: minmax(0, 1fr) auto auto auto auto minmax(0, 1fr);
    align-content: stretch !important;
    align-items: stretch;
  }

  .solon-featured-routes .featured-slide > .wp-block-group::before,
  .solon-featured-routes .featured-slide figure {
    grid-row: 1 / -1;
    min-height: 0 !important;
    height: 100% !important;
    max-height: 540px !important;
    align-self: stretch;
  }

  .solon-featured-routes .featured-slide figure img {
    min-height: 0 !important;
    height: 100% !important;
    max-height: 540px !important;
    object-fit: cover;
  }

  .solon-featured-routes .featured-slide .featured-slide-tag {
    grid-row: 2;
  }

  .solon-featured-routes .featured-slide .featured-slide-title {
    grid-row: 3;
  }

  .solon-featured-routes .featured-slide .featured-slide-desc {
    grid-row: 4;
  }

  .solon-featured-routes .featured-slide .solon-card-link {
    grid-row: 5;
  }
}

@media (max-width: 900px) {
  .solon-finished-hero.has-native-slideshow {
    min-height: 0 !important;
  }

  .solon-native-hero-caption {
    grid-template-columns: 1fr;
  }

  .solon-native-hero-controls,
  .solon-featured-routes.has-native-carousel > .featured-controls {
    grid-template-columns: 1fr auto auto;
    gap: 14px;
  }

  .solon-native-hero-controls .hero-counter,
  .solon-featured-routes .featured-status {
    grid-column: 1 / -1;
  }

  .solon-featured-routes.has-native-carousel > .featured-show,
  .solon-featured-routes .featured-track {
    min-height: 0;
  }

  .solon-featured-routes .featured-slide {
    position: relative !important;
    inset: auto;
    display: none !important;
    opacity: 1;
  }

  .solon-featured-routes .featured-slide.is-active {
    display: block !important;
  }

  .solon-featured-routes .featured-slide > .wp-block-group {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .solon-featured-routes .featured-slide > .wp-block-group::before,
  .solon-featured-routes .featured-slide figure,
  .solon-featured-routes .featured-slide figure img {
    min-height: 300px;
    height: 300px !important;
  }

  .solon-featured-routes .featured-slide > .wp-block-group > *:not(figure) {
    grid-column: 1;
    margin-left: clamp(22px, 5vw, 36px) !important;
    margin-right: clamp(22px, 5vw, 36px) !important;
  }

  .solon-featured-routes .featured-slide .solon-finished-eyebrow {
    margin-top: 32px !important;
  }

  .solon-featured-routes .featured-slide .solon-card-link {
    margin-bottom: 34px !important;
  }
}

@media (max-width: 600px) {
  .solon-native-hero-caption {
    margin-top: 30px !important;
    padding: 20px;
  }

  .solon-native-hero-caption .slide-title {
    font-size: 23px !important;
  }

  .solon-native-hero-controls .dot,
  .solon-featured-routes .featured-dot {
    width: 24px;
  }

  .solon-featured-routes .featured-slide h3 {
    max-width: none;
    font-size: 27px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solon-finished-home *,
  .solon-finished-home *::before,
  .solon-finished-home *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1180px) {
  .solon-finished-home .solon-card-grid-four,
  .solon-finished-home .solon-proof-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solon-finished-home .solon-card-grid-four > .wp-block-column,
  .solon-finished-home .solon-proof-stats > .wp-block-column {
    flex-basis: calc(50% - 14px) !important;
  }
}

/* ====== Responsive ====== */

@media (max-width: 900px) {
  h1 { font-size: clamp(40px, 10vw, 64px); }
  h2 { font-size: clamp(28px, 7vw, 48px); }

  .solon-services-grid > .wp-block-columns {
    flex-direction: column !important;
  }
  .solon-services-grid > .wp-block-columns > .wp-block-column {
    border-right: none;
    border-bottom: 1px solid var(--solon-rule);
  }

  .solon-stats-row .wp-block-column {
    border-right: none;
    border-bottom: 1px solid var(--solon-rule);
    padding-bottom: var(--solon-space-7) !important;
  }

  .wp-block-group.is-style-solon-section,
  .wp-block-cover.is-style-solon-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .wp-block-group.is-style-solon-section-tight,
  .wp-block-cover.is-style-solon-section-tight {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .wp-block-group.is-style-solon-section-slim,
  .wp-block-cover.is-style-solon-section-slim {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .wp-block-group.is-style-solon-services-grid > .wp-block-columns {
    flex-direction: column !important;
  }

  .wp-block-columns.is-style-solon-stats-row > .wp-block-column {
    border-right: none;
    border-bottom: 1px solid var(--solon-rule);
    padding-bottom: var(--solon-space-7) !important;
  }

  .solon-hero-grid,
  .solon-hero-layout,
  .solon-proof-testimonial-grid,
  .solon-map-layout,
  .solon-contact-panel,
  .solon-tool-grid {
    grid-template-columns: 1fr;
  }

  .solon-finished-home .wp-block-columns,
  .solon-finished-home .solon-two-up,
  .solon-finished-home .solon-hero-route-grid {
    flex-wrap: wrap;
  }

  .solon-finished-home .solon-mini-metrics {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .solon-finished-home .solon-mini-metrics > .wp-block-column {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  .solon-finished-home .solon-mini-card {
    min-height: 0;
  }
  }

  .solon-finished-home .solon-card-grid-three,
  .solon-finished-home .solon-quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solon-finished-home .wp-block-column,
  .solon-finished-home .solon-card-grid-three > .wp-block-column,
  .solon-finished-home .solon-card-grid-four > .wp-block-column,
  .solon-finished-home .solon-proof-stats > .wp-block-column {
    flex-basis: calc(50% - 14px) !important;
  }

  .solon-finished-title {
    font-size: clamp(44px, 10vw, 82px) !important;
  }

  .solon-section-title {
    font-size: clamp(34px, 8vw, 64px) !important;
  }

  .solon-home-section {
    padding-top: 82px !important;
    padding-bottom: 82px !important;
  }

  .solon-route-table {
    overflow-x: auto;
  }

  .solon-proof-grid,
  .solon-media-band,
  .solon-package-grid,
  .solon-topic-grid,
  .solon-stage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solon-stage-node::after {
    display: none;
  }

  .solon-visual-caption {
    max-width: calc(100% - 36px);
    right: 18px;
  }
}

@media (max-width: 600px) {
  :root { --solon-gutter: 20px; }
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }

  .wp-site-blocks > .wp-block-group.is-position-sticky:first-child {
    position: static !important;
    top: auto !important;
  }

  .solon-proof-grid,
  .solon-media-band,
  .solon-package-grid,
  .solon-topic-grid,
  .solon-stage-grid,
  .solon-proof-outcomes {
    grid-template-columns: 1fr;
  }

  .solon-certification-strip {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .solon-certification-strip > .wp-block-column {
    flex-basis: auto !important;
    width: 100% !important;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 254, 240, 0.18);
  }

  .solon-certification-strip > .wp-block-column:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .wp-block-buttons {
    width: 100%;
    gap: 8px 10px;
  }

  .wp-block-button,
  .wp-block-button__link,
  .wp-element-button {
    max-width: 100%;
  }

  .wp-block-button__link,
  .wp-element-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    white-space: normal !important;
    overflow-wrap: anywhere;
    text-align: center;
    line-height: 1.15 !important;
    padding: 12px 16px !important;
  }

  .solon-contact-panel .wp-block-buttons,
  .solon-hero-copy .wp-block-buttons {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 8px !important;
    align-items: stretch;
  }

  .solon-contact-panel .wp-block-button,
  .solon-contact-panel .wp-block-button__link,
  .solon-hero-copy .wp-block-button,
  .solon-hero-copy .wp-block-button__link {
    margin: 0 !important;
    width: 100%;
    box-sizing: border-box;
  }

  .solon-media-slot,
  .solon-visual-shell {
    min-height: 190px;
  }

  .solon-media-slot--wide {
    min-height: 180px;
  }

  .solon-media-slot--tall {
    min-height: 220px;
  }

  .solon-tool-shell,
  .solon-testimonial-card,
  .solon-contact-panel,
  .solon-tool-result-card,
  .solon-hero-visual {
    padding: 24px;
  }

  .solon-visual-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 18px;
    margin-top: auto;
  }

  .solon-route-chip {
    width: 100%;
    justify-content: space-between;
  }

  .solon-proof-card-body,
  .solon-media-card-body,
  .solon-package-card-body,
  .solon-topic-card-body,
  .solon-tool-result-body {
    gap: 12px;
    padding: 20px;
  }

  .solon-proof-title,
  .solon-package-title,
  .solon-topic-title,
  .solon-contact-title,
  .solon-tool-result-title {
    font-size: 24px;
  }

  .wp-block-quote.is-style-solon-proof-quote p {
    font-size: 24px;
    line-height: 1.35;
  }

  .solon-finished-home .wp-block-column,
  .solon-finished-home .solon-card-grid-three > .wp-block-column,
  .solon-finished-home .solon-card-grid-four > .wp-block-column,
  .solon-finished-home .solon-proof-stats > .wp-block-column {
    flex-basis: 100% !important;
    width: 100% !important;
  }

  .solon-finished-home .solon-card-grid-three,
  .solon-finished-home .solon-card-grid-four,
  .solon-finished-home .solon-proof-stats,
  .solon-finished-home .solon-quote-grid {
    grid-template-columns: 1fr;
  }

  .solon-finished-title {
    font-size: 40px !important;
    line-height: 0.98 !important;
  }

  .solon-section-title {
    font-size: 32px !important;
    line-height: 1.02 !important;
  }

  .solon-finished-lede,
  .solon-section-copy {
    font-size: 16px !important;
  }

  .solon-hero-route-card,
  .solon-dark-card,
  .solon-light-card,
  .solon-mini-card,
  .solon-stat-card,
  .solon-proof-quote {
    padding: 22px;
  }

  .solon-media-card {
    padding: 12px 12px 22px;
  }

  .solon-home-image img {
    height: 210px !important;
  }

  .solon-home-image-tall img {
    height: 340px !important;
  }

  .solon-route-table td {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border-bottom: 0;
  }

  .solon-route-table tr {
    display: block;
    border-bottom: 1px solid var(--sfh-rule);
  }

  .solon-contact-panel {
    gap: 18px;
  }
}

/* Render-stability image fallbacks for Studio full-page screenshots.
   The native core/image blocks remain editable; these backgrounds only show
   behind the img while remote/offscreen media is still painting. */
.solon-finished-home .solon-home-image {
  background-color: var(--sfh-navy);
  background-size: cover;
  background-position: center;
}

.solon-finished-home .solon-home-image:has(img[src*="industrial-storage-silos-with-piping-stockpack-adobe-stock.webp"]) { background-image: url('/wp-content/uploads/2025/09/industrial-storage-silos-with-piping-stockpack-adobe-stock.webp') !important; }
.solon-finished-home .solon-home-image:has(img[src*="control-panel-wiring.jpg"]) { background-image: url('/wp-content/uploads/2025/07/control-panel-wiring.jpg') !important; }
.solon-finished-home .solon-home-image:has(img[src*="ferm-tanks-to-bh-10-barrel.jpeg"]) { background-image: url('/wp-content/uploads/2025/07/ferm-tanks-to-bh-10-barrel.jpeg') !important; }
.solon-finished-home .solon-home-image:has(img[src*="pexels-photo-5858069.webp"]) { background-image: url('/wp-content/uploads/2025/09/pexels-photo-5858069.webp') !important; }
.solon-finished-home .solon-home-image:has(img[src*="Augusta-drone-still-3-July-2021-1024x596.webp"]) { background-image: url('/wp-content/uploads/2025/08/Augusta-drone-still-3-July-2021-1024x596.webp') !important; }
.solon-finished-home .solon-home-image:has(img[src*="swing-panel-view.jpeg"]) { background-image: url('/wp-content/uploads/2025/07/swing-panel-view.jpeg') !important; }
.solon-finished-home .solon-home-image:has(img[src*="pexels-photo-3582392.webp"]) { background-image: url('/wp-content/uploads/2025/09/pexels-photo-3582392.webp') !important; }
.solon-finished-home .solon-home-image:has(img[src*="centralmachine--1.jpg"]) { background-image: url('/wp-content/uploads/2025/07/centralmachine--1.jpg') !important; }
.solon-finished-home .solon-home-image:has(img[src*="pexels-photo-5538167.webp"]) { background-image: url('/wp-content/uploads/2025/09/pexels-photo-5538167.webp') !important; }
.solon-finished-home .solon-home-image:has(img[src*="pexels-photo-4968338.webp"]) { background-image: url('/wp-content/uploads/2025/09/pexels-photo-4968338.webp') !important; }
.solon-finished-home .solon-home-image:has(img[src*="20240711_203313-1024x768.jpg"]) { background-image: url('/wp-content/uploads/2025/08/20240711_203313-1024x768.jpg') !important; }
.solon-finished-home .solon-home-image:has(img[src*="hopsquad-3.jpg"]) { background-image: url('/wp-content/uploads/2025/07/hopsquad-3.jpg') !important; }
.solon-finished-home .solon-home-image:has(img[src*="FMN-5-768x1024.jpg"]) { background-image: url('/wp-content/uploads/2025/08/FMN-5-768x1024.jpg') !important; }
.solon-finished-home .solon-home-image:has(img[src*="augusta-vin-after-2.jpg"]) { background-image: url('/wp-content/uploads/2025/07/augusta-vin-after-2.jpg') !important; }

/* Hard mobile containment for native-block homepage rendering. */
@media (max-width: 600px) {
  html,
  body,
  body .solon-finished-home {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body .solon-finished-home,
  body .solon-finished-home *,
  body .solon-finished-home *::before,
  body .solon-finished-home *::after {
    box-sizing: border-box !important;
  }

  body .solon-finished-home > .alignfull,
  body .solon-finished-home .alignfull,
  body .solon-finished-home .wp-block-cover {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  body .solon-finished-home .wp-block-cover__inner-container,
  body .solon-finished-home .alignwide {
    width: min(100%, calc(100vw - 32px)) !important;
    max-width: calc(100vw - 32px) !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body .solon-home-section {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  body .solon-home-section > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body .solon-finished-home .wp-block-columns,
  body .solon-finished-home .solon-two-up,
  body .solon-finished-home .solon-hero-route-grid,
  body .solon-finished-home .solon-card-grid,
  body .solon-finished-home .solon-proof-stats,
  body .solon-finished-home .solon-quote-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  body .solon-finished-home .wp-block-column,
  body .solon-finished-home .solon-card-grid-three > .wp-block-column,
  body .solon-finished-home .solon-card-grid-four > .wp-block-column,
  body .solon-finished-home .solon-proof-stats > .wp-block-column,
  body .solon-finished-home .solon-quote-grid > .wp-block-column {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex-basis: auto !important;
  }

  body .solon-finished-home .solon-hero-route-card,
  body .solon-finished-home .solon-dark-card,
  body .solon-finished-home .solon-light-card,
  body .solon-finished-home .solon-mini-card,
  body .solon-finished-home .solon-media-card,
  body .solon-finished-home .solon-stat-card,
  body .solon-finished-home .solon-proof-quote {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
  }

  body .solon-finished-lede,
  body .solon-section-copy {
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  body .wp-site-blocks,
  body .entry-content.wp-block-post-content,
  body .solon-finished-home {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  body .solon-finished-home > .alignfull,
  body .solon-finished-home .alignfull,
  body .solon-finished-home .wp-block-cover,
  body .solon-home-section {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body .solon-finished-home .wp-block-cover__inner-container,
  body .solon-finished-home .alignwide,
  body .solon-home-section > .wp-block-heading,
  body .solon-home-section > .wp-block-paragraph,
  body .solon-home-section > .wp-block-columns,
  body .solon-home-section > .wp-block-table,
  body .solon-home-section > .wp-block-buttons,
  body .solon-home-section > .wp-block-details,
  body .solon-home-section > figure,
  body .solon-finished-home .solon-card-grid,
  body .solon-finished-home .solon-hero-route-grid,
  body .solon-finished-home .solon-proof-stats,
  body .solon-finished-home .solon-quote-grid {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body .solon-finished-home .wp-block-columns,
  body .solon-finished-home .solon-card-grid,
  body .solon-finished-home .solon-hero-route-grid,
  body .solon-finished-home .solon-proof-stats,
  body .solon-finished-home .solon-quote-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body .solon-finished-home .solon-native-hero-fallback {
    display: none !important;
  }

  body .solon-finished-home .wp-block-column,
  body .solon-finished-home .wp-block-column > *,
  body .solon-finished-home .solon-hero-route-card,
  body .solon-finished-home .solon-dark-card,
  body .solon-finished-home .solon-light-card,
  body .solon-finished-home .solon-mini-card,
  body .solon-finished-home .solon-media-card,
  body .solon-finished-home .solon-stat-card,
  body .solon-finished-home .solon-proof-quote,
  body .solon-finished-home .solon-home-image,
  body .solon-finished-home .solon-home-image img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body .solon-finished-title {
    font-size: clamp(28px, 8.4vw, 33px) !important;
    line-height: 1.06 !important;
  }

  body .solon-section-title {
    font-size: clamp(26px, 7.8vw, 31px) !important;
    line-height: 1.08 !important;
  }

  body .solon-finished-home h3 {
    font-size: clamp(21px, 6.2vw, 25px) !important;
    line-height: 1.12 !important;
  }

  body .solon-route-table,
  body .solon-route-table table,
  body .solon-route-table tbody,
  body .solon-route-table tr,
  body .solon-route-table td {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  body .solon-route-table td:nth-child(2) {
    white-space: normal !important;
  }
}

/* ====== Homepage V2 visual-parity repair — 2026-05-28 ======
   Block validation can pass while the rendered page still drifts. This final
   layer restores the uploaded design's serif/italic accent language, grid
   cadence, and mobile word containment for the native Gutenberg version. */
.entry-content.wp-block-post-content .solon-finished-home h1.wp-block-heading,
.entry-content.wp-block-post-content .solon-finished-home h2.wp-block-heading,
.entry-content.wp-block-post-content .solon-finished-home h3.wp-block-heading,
.entry-content.wp-block-post-content .solon-finished-home h4.wp-block-heading,
.solon-finished-home .wp-block-heading,
.solon-finished-home .solon-finished-title,
.solon-finished-home .solon-section-title {
  text-transform: none !important;
  font-weight: 400 !important;
}

.solon-finished-home .wp-block-heading,
.solon-finished-home .wp-block-heading * {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: manual !important;
}

.solon-finished-home .wp-block-heading em,
.solon-finished-home .solon-mini-card em {
  color: var(--sfh-gold-dark) !important;
  font-style: italic !important;
  font-weight: 300 !important;
}

.solon-home-section-dark .wp-block-heading em,
.solon-home-section-dark .solon-dark-card em,
.solon-hero-route-card .wp-block-heading em,
.solon-hero-route-card em {
  color: var(--sfh-gold) !important;
}

.solon-finished-home .solon-card-grid-four,
.solon-finished-home .solon-card-grid-three {
  align-items: stretch !important;
}

@media (min-width: 1181px) {
  .solon-finished-home > .solon-home-section-dark:not(.solon-proof-section) .solon-card-grid-four {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    border-top: 1px solid var(--sfh-rule-dark);
    border-left: 1px solid var(--sfh-rule-dark);
  }

  .solon-finished-home > .solon-home-section-dark:not(.solon-proof-section) .solon-card-grid-four > .wp-block-column {
    flex: none !important;
    flex-basis: auto !important;
  }

  .solon-finished-home > .solon-home-section-dark:not(.solon-proof-section) .solon-dark-card {
    min-height: 315px;
    padding: clamp(32px, 3.1vw, 46px) !important;
    border-top: 0;
    border-left: 0;
    border-right: 1px solid var(--sfh-rule-dark);
    border-bottom: 1px solid var(--sfh-rule-dark);
    box-shadow: none !important;
  }
}

/* ====== SOLON WOOCOMMERCE TEMPLATE SYSTEM v1 ====== */

body.woocommerce-page main {
  --solon-commerce-gap: clamp(24px, 4vw, 64px);
  font-family: var(--solon-f-sans);
}

body.solon-product-category main .solon-commerce-archive-heading {
  width: min(100% - clamp(32px, 6vw, 96px), 1320px);
  margin: clamp(32px, 5vw, 72px) auto clamp(20px, 3vw, 40px);
}

body.solon-product-category main .solon-commerce-archive-heading .page-title {
  max-width: 18ch;
  margin: 0;
  color: var(--solon-navy-900);
  font-family: var(--solon-f-serif);
  font-size: clamp(40px, 5.2vw, 76px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

body.woocommerce-page main :where(a, button, select, summary):focus-visible {
  outline: 3px solid var(--solon-copper-400) !important;
  outline-offset: 4px;
}

body.woocommerce-page main :where(button, select, .wp-element-button) {
  min-height: 48px;
}

body.woocommerce-page main img:is(.woocommerce-placeholder, [src*="/woocommerce-placeholder"]) {
  opacity: 0 !important;
}

body.single-product main .wc-block-product-gallery-large-image__image.woocommerce-placeholder {
  aspect-ratio: 4 / 3 !important;
}

body.single-product main .wc-block-product-gallery-large-image:has(img.woocommerce-placeholder) {
  height: auto !important;
  min-height: 240px;
  aspect-ratio: 4 / 3 !important;
  flex-grow: 0 !important;
}

body.single-product main .wc-block-product-gallery-large-image:has(img.woocommerce-placeholder)
  :where(
    .wc-block-product-gallery-large-image__container,
    .wc-block-product-gallery-large-image__wrapper,
    .wc-block-components-product-image,
    .wc-block-components-product-image > a
  ) {
  height: 100% !important;
}

body.single-product main .wc-block-product-gallery-large-image:has(img.woocommerce-placeholder),
body.solon-product-category main .wp-block-woocommerce-product-image > a:has(img.woocommerce-placeholder) {
  position: relative;
  display: grid;
  min-height: clamp(240px, 34vw, 600px);
  place-items: center;
  border: 1px solid var(--solon-rule-strong);
  background-color: var(--solon-cream);
  background-image:
    linear-gradient(var(--solon-rule-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--solon-rule-light) 1px, transparent 1px),
    linear-gradient(135deg, transparent 47%, rgba(201, 165, 61, 0.16) 48%, rgba(201, 165, 61, 0.16) 52%, transparent 53%);
  background-size: 24px 24px, 24px 24px, 100% 100%;
}

body.single-product main .wc-block-product-gallery-large-image:has(img.woocommerce-placeholder)::after,
body.solon-product-category main .wp-block-woocommerce-product-image > a:has(img.woocommerce-placeholder)::after {
  content: "Image Not Supplied";
  position: absolute;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  color: var(--solon-navy-900);
  font-family: var(--solon-f-mono);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

body.solon-product-category main .entry-content {
  width: min(100% - clamp(32px, 6vw, 96px), 1320px);
  max-width: none !important;
  margin-inline: auto;
  padding-block: clamp(28px, 4vw, 64px) clamp(56px, 7vw, 112px);
}

body.solon-product-category main .term-description {
  max-width: 72ch;
  margin-bottom: clamp(24px, 3vw, 40px);
  color: var(--solon-ink-700);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
}

body.solon-product-category main .woocommerce-result-count {
  margin: 0 0 12px;
  color: var(--solon-ink-700);
  font-family: var(--solon-f-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.solon-product-category main .woocommerce-ordering {
  margin: 0 0 clamp(28px, 4vw, 56px);
}

body.solon-product-category main .woocommerce-ordering .orderby {
  width: min(100%, 360px);
  min-height: 48px;
  padding: 10px 42px 10px 14px;
  border: 1px solid var(--solon-rule-strong);
  background: var(--solon-white);
  color: var(--solon-navy-900);
  font-family: var(--solon-f-sans);
  font-size: 16px;
}

body.solon-product-category main ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 36px);
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.solon-product-category main ul.products::before,
body.solon-product-category main ul.products::after {
  display: none !important;
}

body.solon-product-category main ul.products li.product {
  display: flex;
  float: none !important;
  flex-direction: column;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  padding: clamp(16px, 2vw, 24px) !important;
  border: 1px solid var(--solon-rule-strong);
  background: var(--solon-white);
  box-shadow: 0 14px 36px rgba(16, 36, 63, 0.08);
  list-style: none !important;
}

body.solon-product-category main ul.products li.product::marker {
  content: "";
}

body.solon-product-category main ul.products li.product > a.woocommerce-LoopProduct-link {
  display: block;
  color: var(--solon-navy-900);
  text-decoration: none;
}

body.solon-product-category main ul.products li.product img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 0 18px !important;
  object-fit: cover;
}

body.solon-product-category main ul.products li.product > a.woocommerce-LoopProduct-link:has(img.woocommerce-placeholder) {
  display: grid;
  grid-template-rows: minmax(220px, 1fr) auto;
  position: relative;
  border: 1px solid var(--solon-rule-strong);
  background-color: var(--solon-cream);
  background-image:
    linear-gradient(var(--solon-rule-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--solon-rule-light) 1px, transparent 1px),
    linear-gradient(135deg, transparent 47%, rgba(201, 165, 61, 0.16) 48%, rgba(201, 165, 61, 0.16) 52%, transparent 53%);
  background-size: 24px 24px, 24px 24px, 100% 100%;
}

body.solon-product-category main ul.products li.product > a.woocommerce-LoopProduct-link:has(img.woocommerce-placeholder)::after {
  content: "Image Not Supplied";
  display: grid;
  grid-area: 1 / 1;
  min-height: 220px;
  padding: 24px;
  place-items: center;
  color: var(--solon-navy-900);
  font-family: var(--solon-f-mono);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

body.solon-product-category main ul.products li.product > a:has(img.woocommerce-placeholder) img {
  grid-area: 1 / 1;
  margin: 0 !important;
}

body.solon-product-category main ul.products li.product .woocommerce-loop-product__title {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--solon-navy-900);
  font-family: var(--solon-f-serif);
  font-size: clamp(23px, 2vw, 30px) !important;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

body.solon-product-category main ul.products li.product > a:has(img.woocommerce-placeholder) .woocommerce-loop-product__title {
  grid-area: 2 / 1;
  padding: 18px !important;
  background: var(--solon-white);
}

body.solon-product-category main ul.products li.product .price {
  margin: 16px 0 0 !important;
  color: var(--solon-copper-600) !important;
  font-size: 18px !important;
  font-weight: 700;
}

body.solon-product-category main a.button.add_to_cart_button {
  display: inline-flex !important;
  min-height: 48px !important;
  margin-top: 18px !important;
  padding: 12px 18px !important;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
}

@media (max-width: 900px) {
  body.solon-product-category main ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  body.solon-product-category main ul.products {
    grid-template-columns: 1fr;
  }
}

/* Classic product detail runtime. WordPress.com currently serves the
   PHP/WooCommerce product DOM on public singular products, while Studio can
   expose the block-product DOM. Both archetypes must meet the same contract. */
body.single-product main > .wp-block-group.has-global-padding,
body.single-product main .entry-content.wp-block-post-content {
  width: min(100% - clamp(32px, 6vw, 96px), 1320px);
  max-width: none !important;
  margin-inline: auto !important;
}

body.single-product main > .wp-block-group.has-global-padding {
  padding-top: clamp(32px, 5vw, 72px);
}

body.single-product main > .wp-block-group.has-global-padding h1 {
  max-width: 24ch;
  margin: 0 !important;
  color: var(--solon-navy-900);
  font-family: var(--solon-f-serif) !important;
  font-size: clamp(40px, 5vw, 72px) !important;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}

body.single-product main .entry-content.wp-block-post-content {
  padding-block: clamp(32px, 5vw, 72px) clamp(72px, 8vw, 120px);
}

body.single-product main div.product.type-product {
  display: grid !important;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: var(--solon-commerce-gap);
  width: 100%;
  align-items: start;
}

body.single-product main div.product.type-product::before,
body.single-product main div.product.type-product::after {
  display: none !important;
}

body.single-product main .woocommerce-product-gallery {
  float: none !important;
  width: 100% !important;
  min-width: 0;
  margin: 0 !important;
  opacity: 1 !important;
}

body.single-product main .woocommerce-product-gallery--without-images {
  position: relative;
  display: grid;
  min-height: clamp(300px, 34vw, 520px);
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--solon-rule-strong);
  background-color: var(--solon-cream);
  background-image:
    linear-gradient(var(--solon-rule-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--solon-rule-light) 1px, transparent 1px),
    linear-gradient(135deg, transparent 47%, rgba(201, 165, 61, 0.16) 48%, rgba(201, 165, 61, 0.16) 52%, transparent 53%);
  background-size: 24px 24px, 24px 24px, 100% 100%;
}

body.single-product main .woocommerce-product-gallery--without-images
  :where(.woocommerce-product-gallery__wrapper, .woocommerce-product-gallery__image--placeholder) {
  position: absolute;
  inset: 0;
}

body.single-product main .woocommerce-product-gallery--without-images::after {
  content: "Image Not Supplied";
  position: absolute;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  color: var(--solon-navy-900);
  font-family: var(--solon-f-mono);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

body.single-product main .summary.entry-summary {
  float: none !important;
  width: 100% !important;
  min-width: 0;
  margin: 0 !important;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--solon-rule-strong);
  background: var(--solon-paper);
  box-shadow: 0 14px 36px rgba(16, 36, 63, 0.08);
}

body.single-product main .summary.entry-summary .price:empty {
  display: none;
}

body.single-product main .woocommerce-product-details__short-description {
  color: var(--solon-ink-700);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.65;
}

body.single-product main .summary.entry-summary .product_meta {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--solon-rule);
  color: var(--solon-ink-700);
  font-size: 15px;
  line-height: 1.55;
}

body.single-product main .woocommerce-tabs,
body.single-product main section.related.products {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
  margin-top: clamp(48px, 7vw, 96px);
  padding-top: clamp(32px, 4vw, 56px);
  border-top: 1px solid var(--solon-rule-strong);
}

body.single-product main .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 32px !important;
  padding: 0 !important;
}

body.single-product main .woocommerce-tabs ul.tabs::before,
body.single-product main .woocommerce-tabs ul.tabs::after {
  display: none !important;
}

body.single-product main .woocommerce-tabs ul.tabs li {
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid var(--solon-rule-strong) !important;
  border-radius: 0 !important;
  background: var(--solon-paper) !important;
}

body.single-product main .woocommerce-tabs ul.tabs li a {
  display: inline-flex !important;
  min-height: 48px;
  padding: 12px 18px !important;
  align-items: center;
  color: var(--solon-navy-900) !important;
}

body.single-product main .woocommerce-tabs .woocommerce-Tabs-panel {
  width: 100%;
  max-width: none;
  margin: 0 !important;
  color: var(--solon-ink-700);
  font-size: 17px;
  line-height: 1.68;
}

body.single-product main .woocommerce-tabs :where(h2, h3) {
  max-width: 28ch;
  margin: 32px 0 18px !important;
  color: var(--solon-navy-900) !important;
  line-height: 1.08 !important;
}

body.single-product main .woocommerce-tabs table {
  width: min(100%, 980px) !important;
  border-collapse: collapse;
  font-size: 15px;
}

body.single-product main .woocommerce-tabs :where(th, td) {
  padding: 12px 14px !important;
  border-bottom: 1px solid var(--solon-rule) !important;
  vertical-align: top;
  overflow-wrap: anywhere;
}

body.single-product main .woocommerce-tabs th {
  width: min(34%, 260px);
  color: var(--solon-navy-900);
  font-weight: 600;
}

body.single-product main .jp-relatedposts .jp-relatedposts-headline em,
body.single-product main .jp-relatedposts .jp-relatedposts-headline {
  color: var(--solon-navy-900) !important;
}

body.single-product main .jp-relatedposts .jp-relatedposts-items {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
}

body.single-product main .jp-relatedposts .jp-relatedposts-post {
  float: none !important;
  width: auto !important;
  min-width: 0;
}

body.single-product main .jp-relatedposts .jp-relatedposts-post-excerpt {
  display: block !important;
  max-height: none !important;
  overflow: visible !important;
  opacity: 1 !important;
  color: var(--solon-ink-700) !important;
  overflow-wrap: anywhere;
}

body.single-product main section.related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
  margin: 30px 0 0 !important;
  padding: 0 !important;
}

body.single-product main section.related.products ul.products::before,
body.single-product main section.related.products ul.products::after {
  display: none !important;
}

body.single-product main section.related.products li.product {
  float: none !important;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  padding: 20px !important;
  border: 1px solid var(--solon-rule-strong);
  background: var(--solon-paper);
}

body.single-product main section.related.products a.button.add_to_cart_button {
  display: inline-flex !important;
  min-height: 48px !important;
  margin-top: 18px !important;
  padding: 12px 18px !important;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  body.single-product main div.product.type-product {
    grid-template-columns: minmax(0, 1fr);
  }

  body.single-product main .woocommerce-product-gallery,
  body.single-product main .summary.entry-summary {
    grid-column: 1;
  }

  body.single-product main .jp-relatedposts .jp-relatedposts-items,
  body.single-product main section.related.products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  body.single-product main > .wp-block-group.has-global-padding,
  body.single-product main .entry-content.wp-block-post-content {
    width: min(100% - 32px, 1320px);
  }

  body.single-product main > .wp-block-group.has-global-padding h1 {
    font-size: clamp(38px, 12vw, 52px) !important;
  }

  body.single-product main .woocommerce-product-gallery--without-images {
    min-height: 260px;
  }

  body.single-product main .summary.entry-summary {
    padding: 24px 18px;
  }

  body.single-product main .woocommerce-tabs table,
  body.single-product main .woocommerce-tabs :where(tbody, tr, th, td) {
    display: block;
    width: 100% !important;
  }

  body.single-product main .woocommerce-tabs tr {
    padding: 12px 0;
    border-bottom: 1px solid var(--solon-rule);
  }

  body.single-product main .woocommerce-tabs :where(th, td) {
    padding: 4px 0 !important;
    border: 0 !important;
  }

  body.single-product main .jp-relatedposts .jp-relatedposts-items,
  body.single-product main section.related.products ul.products {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Product detail: keep the selling summary beside the gallery, then allow
   the technical description and specification blocks to use the full rail. */
body.single-product main .wp-block-columns.alignwide {
  display: grid !important;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: var(--solon-commerce-gap) !important;
  align-items: start !important;
}

body.single-product main .wp-block-columns.alignwide > .wp-block-column:first-child {
  grid-column: 1;
  grid-row: 1 / span 3;
  min-width: 0;
  align-self: start;
}

body.single-product main .wp-block-columns.alignwide > .wp-block-column:nth-child(2) {
  display: contents;
}

body.single-product main .wp-block-columns.alignwide > .wp-block-column:nth-child(2) > .wp-block-group {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  margin: 0 !important;
}

body.single-product main .wp-block-columns.alignwide > .wp-block-column:nth-child(2) > .wp-block-woocommerce-product-summary {
  grid-column: 2;
  grid-row: 2;
  max-width: 68ch;
  margin: 24px 0 0 !important;
  color: var(--solon-ink-700);
  font-size: 18px;
  line-height: 1.62;
}

body.single-product main .wp-block-columns.alignwide > .wp-block-column:nth-child(2) > .wc-block-components-notices {
  grid-column: 2;
  grid-row: 3;
}

body.single-product .wp-block-woocommerce-product-details {
  grid-column: 1 / -1;
  grid-row: 4;
  width: 100%;
  max-width: none !important;
  margin: clamp(48px, 7vw, 96px) 0 0 !important;
  padding-top: clamp(32px, 4vw, 56px);
  border-top: 1px solid var(--solon-rule-strong);
}

body.single-product .wp-block-woocommerce-product-specifications {
  grid-column: 1 / -1;
  grid-row: 5;
  width: min(100%, 980px);
  max-width: none !important;
  margin: clamp(32px, 5vw, 64px) 0 0 !important;
}

body.single-product .wp-block-post-title {
  max-width: 18ch;
  margin: 0 !important;
  font-family: var(--solon-f-serif) !important;
  font-size: clamp(36px, 4vw, 58px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.025em !important;
  overflow-wrap: break-word;
}

body.single-product .wp-block-woocommerce-product-gallery,
body.single-product .wc-block-product-gallery-large-image,
body.single-product .wc-block-product-gallery-large-image__container,
body.single-product .wc-block-product-gallery-large-image__wrapper {
  width: 100%;
  min-width: 0;
}

body.single-product .wc-block-product-gallery-large-image__image {
  width: 100%;
  aspect-ratio: 1;
}

body.single-product .wp-block-woocommerce-product-description {
  width: 100%;
  max-width: none;
  color: var(--solon-ink-700);
  font-size: 17px;
  line-height: 1.68;
}

body.single-product .wp-block-woocommerce-product-description > :where(p, ul, ol) {
  max-width: 78ch;
}

body.single-product .wp-block-woocommerce-product-description :where(h2, h3) {
  max-width: 24ch;
  color: var(--solon-navy-900);
}

body.single-product .wp-block-woocommerce-product-description h2 {
  margin: clamp(40px, 6vw, 72px) 0 20px;
  font-size: clamp(34px, 4vw, 54px) !important;
  line-height: 1.04 !important;
}

body.single-product .wp-block-woocommerce-product-description h3 {
  margin: 32px 0 16px;
  font-size: clamp(25px, 2.6vw, 34px) !important;
  line-height: 1.1 !important;
}

body.single-product .wp-block-woocommerce-product-description table,
body.single-product .wp-block-woocommerce-product-specifications table {
  width: min(100%, 980px);
  border-collapse: collapse;
  table-layout: fixed;
  background: var(--solon-paper);
  color: var(--solon-ink-900);
  font-size: 16px;
  line-height: 1.5;
}

body.single-product .wp-block-woocommerce-product-description tr,
body.single-product .wp-block-woocommerce-product-specifications tr {
  border-bottom: 1px solid var(--solon-rule);
}

body.single-product .wp-block-woocommerce-product-description :where(th, td),
body.single-product .wp-block-woocommerce-product-specifications :where(th, td) {
  padding: 14px 16px;
  border: 0;
  vertical-align: top;
  overflow-wrap: anywhere;
}

body.single-product .wp-block-woocommerce-product-description td:first-child,
body.single-product .wp-block-woocommerce-product-specifications th {
  width: 34%;
  background: var(--solon-cream);
  font-family: var(--solon-f-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.single-product .wp-block-woocommerce-product-specifications td {
  width: 66%;
}

body.single-product main .wp-block-woocommerce-product-collection {
  padding-top: clamp(32px, 5vw, 64px);
  border-top: 1px solid var(--solon-rule-strong);
}

body.single-product main .wp-block-woocommerce-product-collection h2 {
  font-size: clamp(32px, 4vw, 52px) !important;
}

body.single-product main .wc-block-next-previous-buttons__button {
  min-width: 48px;
}

body.single-product main .is-product-collection-layout-carousel.wp-block-woocommerce-product-template {
  gap: 20px !important;
  scroll-padding-inline: 1px;
  scroll-snap-type: x mandatory;
}

body.single-product main .is-product-collection-layout-carousel > .wc-block-product {
  padding: 12px 12px 20px;
  border: 1px solid var(--solon-rule);
  background: var(--solon-paper);
  scroll-snap-align: start;
}

body.single-product main .is-product-collection-layout-carousel .wp-block-post-title {
  max-width: none;
  margin: 18px 0 0 !important;
  font-size: clamp(21px, 2vw, 28px) !important;
  line-height: 1.14 !important;
}

/* Category archives: maintain a dense four-up catalog at large widths while
   giving titles, prices, sort controls, and missing-image states clear roles. */
body.tax-product_cat main .wp-block-query-title {
  max-width: 18ch;
  font-family: var(--solon-f-serif) !important;
  font-size: clamp(46px, 5.2vw, 76px) !important;
  line-height: 1 !important;
}

body.tax-product_cat main .wp-block-term-description {
  max-width: 74ch;
  color: var(--solon-ink-700);
  font-size: 18px;
  line-height: 1.6;
}

body.tax-product_cat main .woocommerce-result-count {
  font-family: var(--solon-f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.tax-product_cat main .orderby {
  min-height: 48px;
  border: 1px solid var(--solon-rule-strong);
  border-radius: 0;
  padding: 0 42px 0 14px;
  background-color: var(--solon-paper);
  color: var(--solon-ink-900);
  font-family: var(--solon-f-sans);
  font-size: 15px;
}

body.tax-product_cat main .wp-block-woocommerce-product-template {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px !important;
  width: 100%;
  list-style: none;
}

body.tax-product_cat main .wc-block-product {
  display: flex !important;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  padding: 12px 12px 22px;
  border: 1px solid var(--solon-rule);
  background: var(--solon-paper);
  box-shadow: 0 14px 34px rgba(13, 29, 50, 0.06);
}

body.tax-product_cat main .wc-block-product .wp-block-post-title {
  max-width: none;
  margin: 18px 4px 0 !important;
  font-family: var(--solon-f-serif) !important;
  font-size: clamp(22px, 2.1vw, 30px) !important;
  line-height: 1.14 !important;
  letter-spacing: -0.015em !important;
  overflow-wrap: anywhere;
}

body.tax-product_cat main .wc-block-product .wp-block-post-title a:hover {
  color: var(--solon-action);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

body.tax-product_cat main .wc-block-product .wp-block-woocommerce-product-price {
  margin: auto 4px 0 !important;
  padding-top: 16px;
  font-family: var(--solon-f-mono);
  font-size: 13px;
}

@media (max-width: 1180px) {
  body.tax-product_cat main .wp-block-woocommerce-product-template {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  body.single-product main .wp-block-columns.alignwide {
    grid-template-columns: minmax(0, 1fr);
  }

  body.single-product main .wp-block-columns.alignwide > .wp-block-column:first-child {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 720px);
  }

  body.single-product main .wp-block-columns.alignwide > .wp-block-column:nth-child(2) > .wp-block-group {
    grid-column: 1;
    grid-row: 2;
    margin-top: 16px !important;
  }

  body.single-product main .wp-block-columns.alignwide > .wp-block-column:nth-child(2) > .wp-block-woocommerce-product-summary {
    grid-column: 1;
    grid-row: 3;
  }

  body.single-product main .wp-block-columns.alignwide > .wp-block-column:nth-child(2) > .wc-block-components-notices {
    grid-column: 1;
    grid-row: 4;
  }

  body.single-product .wp-block-woocommerce-product-details {
    grid-column: 1;
    grid-row: 5;
  }

  body.single-product .wp-block-woocommerce-product-specifications {
    grid-column: 1;
    grid-row: 6;
  }
}

@media (max-width: 900px) {
  body.tax-product_cat main .wp-block-woocommerce-product-template {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body.single-product main .wc-block-product-gallery-large-image:has(img.woocommerce-placeholder),
  body.tax-product_cat main .wp-block-woocommerce-product-image > a:has(img.woocommerce-placeholder) {
    min-height: min(82vw, 460px);
  }

  body.single-product .wp-block-post-title {
    max-width: 16ch;
    font-size: clamp(34px, 10vw, 42px) !important;
    line-height: 1.03 !important;
  }

  body.single-product .wp-block-woocommerce-product-details {
    margin-top: 36px !important;
    padding-top: 28px;
  }

  body.single-product .wp-block-woocommerce-product-description table,
  body.single-product .wp-block-woocommerce-product-specifications table {
    font-size: 15px;
  }

  body.single-product .wp-block-woocommerce-product-description tr,
  body.single-product .wp-block-woocommerce-product-specifications tr {
    display: grid;
    grid-template-columns: minmax(112px, 0.75fr) minmax(0, 1.25fr);
  }

  body.single-product .wp-block-woocommerce-product-description :where(th, td),
  body.single-product .wp-block-woocommerce-product-specifications :where(th, td) {
    width: auto;
    padding: 12px;
  }

  body.single-product main .is-product-collection-layout-carousel > .wc-block-product {
    flex: 0 0 min(78vw, 280px) !important;
  }

  body.tax-product_cat main .wp-block-query-title {
    font-size: clamp(36px, 11vw, 46px) !important;
  }

  body.tax-product_cat main .wp-block-group.alignwide.is-content-justification-space-between {
    align-items: flex-start;
    flex-direction: column;
  }

  body.tax-product_cat main .wp-block-woocommerce-product-template {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px !important;
  }

  body.tax-product_cat main .wc-block-product {
    padding: 10px 10px 20px;
  }

  body.tax-product_cat main .wc-block-product .wp-block-post-title {
    font-size: clamp(24px, 8vw, 30px) !important;
  }
}

@media (max-width: 480px) {
  body.single-product .wp-block-woocommerce-product-specifications {
    overflow-x: visible !important;
  }

  body.single-product .wp-block-woocommerce-product-description table,
  body.single-product .wp-block-woocommerce-product-specifications table {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.single-product .wp-block-woocommerce-product-description :where(tbody, tr, th, td),
  body.single-product .wp-block-woocommerce-product-specifications :where(tbody, tr, th, td) {
    display: block;
    width: 100%;
  }

  body.single-product .wp-block-woocommerce-product-description tr,
  body.single-product .wp-block-woocommerce-product-specifications tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    padding: 12px 0;
  }

  body.single-product .wp-block-woocommerce-product-description :where(th, td),
  body.single-product .wp-block-woocommerce-product-specifications :where(th, td) {
    padding: 8px 12px;
  }

  body.single-product .wp-block-woocommerce-product-description td:first-child,
  body.single-product .wp-block-woocommerce-product-specifications th {
    width: 100% !important;
    overflow-wrap: normal;
    word-break: normal;
  }
}

/* ====== END SOLON WOOCOMMERCE TEMPLATE SYSTEM v1 ====== */

/* ====== SOLON SHARED HEADER CLS REPAIR v2 ======
   The streamed body can paint before its .solon-header descendant is parsed.
   Reserve the measured shell height unconditionally so the :has() match does
   not move the full document after first paint. */

.solon-header {
  position: fixed !important;
  inset: 0 0 auto 0 !important;
  z-index: 1000 !important;
  width: 100% !important;
  background: var(--solon-ivory) !important;
  border-bottom: 1px solid rgba(13, 29, 50, 0.14) !important;
  box-shadow: 0 10px 28px rgba(13, 29, 50, 0.1) !important;
}

.admin-bar .solon-header { top: 32px !important; }

body { padding-top: 73px; }
body.admin-bar { padding-top: 105px; }

@media (max-width: 820px) {
  .admin-bar .solon-header { top: 46px !important; }
  body { padding-top: 149px; }
  body.admin-bar { padding-top: 195px; }
}

@media (max-width: 600px) {
  body { padding-top: 189px; }
  body.admin-bar { padding-top: 235px; }
}

@media (max-width: 340px) {
  body { padding-top: 197px; }
  body.admin-bar { padding-top: 243px; }
}

/* ====== END SOLON SHARED HEADER CLS REPAIR v2 ====== */

/* ====== SOLON LEGACY HEADER RESPONSIVE ACCESSIBILITY REPAIR v1 ======
   The current live template has no core mobile-menu control. Keep every
   top-level destination available while preventing the nowrap desktop row
   from escaping the viewport, and give links/toggles WCAG-sized targets. */

.solon-header .solon-nav > .wp-block-navigation__container > .wp-block-navigation-item > a,
.solon-header .solon-nav > .wp-block-navigation__container > .wp-block-navigation-item > button,
.solon-header .solon-header-cta a {
  min-width: 44px !important;
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.solon-header .solon-nav > .wp-block-navigation__container > .wp-block-navigation-item > button {
  margin: 0 !important;
  padding: 0 !important;
}

/* The legacy runtime injects an unstyled native button even though every
   top-level route remains visible in the responsive grid. Remove that dead
   control instead of exposing a six-pixel browser-default bar. */
.solon-header .solon-mobile-toggle {
  display: none !important;
}

@media (max-width: 1100px) {
  .solon-header-cta {
    display: none !important;
  }
}

@media (max-width: 820px) {
  .solon-header > header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px !important;
    padding: 8px 20px !important;
  }

  .solon-header .solon-brand {
    flex: 0 0 auto !important;
    min-width: 0 !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .solon-header .solon-nav {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  .solon-header .solon-nav > .wp-block-navigation__container {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 4px !important;
    width: 100% !important;
  }

  .solon-header .solon-nav > .wp-block-navigation__container > .wp-block-navigation-item {
    display: flex !important;
    min-width: 0 !important;
    justify-content: center !important;
  }

  .solon-header .solon-nav > .wp-block-navigation__container > .wp-block-navigation-item > a {
    flex: 1 1 auto !important;
    padding: 6px !important;
    text-align: center !important;
  }
}

@media (max-width: 600px) {
  .solon-header > header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 4px !important;
    padding: 8px 16px !important;
  }

  .solon-header .solon-brand {
    justify-content: center !important;
    width: 100% !important;
  }

  .solon-header .solon-brand__mark,
  .solon-header .solon-tagline {
    display: none !important;
  }

  .solon-header .solon-nav {
    width: 100% !important;
  }

  .solon-header .solon-nav > .wp-block-navigation__container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* ====== END SOLON LEGACY HEADER RESPONSIVE ACCESSIBILITY REPAIR v1 ====== */

/* ====== SOLON SHARED FOOTER RESPONSIVE REPAIR v1 ====== */

@media (max-width: 1100px) {
  footer.wp-block-template-part .has-navy-900-background-color > .wp-block-columns.alignwide {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(28px, 5vw, 56px) !important;
    width: 100% !important;
    align-items: start !important;
  }

  footer.wp-block-template-part .has-navy-900-background-color > .wp-block-columns.alignwide > .wp-block-column {
    min-width: 0 !important;
    width: auto !important;
    margin: 0 !important;
  }
}

@media (max-width: 700px) {
  footer.wp-block-template-part .has-navy-900-background-color > .wp-block-columns.alignwide {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* ====== END SOLON SHARED FOOTER RESPONSIVE REPAIR v1 ====== */

/* ====== SOLON WAVE LEGACY ADDITIONAL CSS NEUTRALIZATION v1 ======
   WordPress Additional CSS still contains retired page-2834 rules authored
   for the legacy BME layout. Those rules load after the child stylesheet and
   use !important, so the replacement page must out-specify them until the
   remote Additional CSS record can be retired through its own admin route. */

.page-id-2834 .wp-block-post-content > .solon-wave-page {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-inline: calc(50% - 50vw) !important;
}

.page-id-2834 .solon-wave-page .solon-wave-section--dark .solon-eyebrow-copper,
.page-id-2834 .solon-wave-page .solon-wave-hero .solon-eyebrow-copper {
  color: #e0b341 !important;
}

.page-id-2834 .solon-wave-page .solon-wave-faq .wp-block-details {
  margin: 0 !important;
  padding: 0 !important;
  border-bottom-color: var(--solon-rule-strong) !important;
  opacity: 1 !important;
  transform: none !important;
}

.page-id-2834 .solon-wave-page .solon-wave-faq details.wp-block-details summary {
  color: var(--solon-ink-900) !important;
  background: transparent !important;
  font-family: var(--solon-f-serif) !important;
  font-size: clamp(22px, 2.1vw, 31px) !important;
  font-weight: 400 !important;
}

.page-id-2834 .solon-wave-page .solon-wave-faq details.wp-block-details > p {
  color: var(--solon-ink-700) !important;
  font-size: 17px !important;
}

.page-id-2834 .solon-wave-page .solon-wave-actions .wp-block-button__link {
  width: auto !important;
  max-width: 100% !important;
  white-space: normal !important;
  text-align: center !important;
}

/* The legacy page-2844 contrast patch targets every link in any background
   group, including the shared ivory header. Keep that old content repair from
   repainting the global wordmark and navigation light blue. */
body.page-id-2844 .solon-header.wp-block-group.has-background .solon-brand.wp-block-group .solon-brand__text.wp-block-group .solon-wordmark.wp-block-paragraph > a,
body.page-id-2844 .solon-header .solon-nav > .wp-block-navigation__container > .wp-block-navigation-item > a.wp-block-navigation-item__content,
body.page-id-2844 .solon-header .solon-nav > .wp-block-navigation__container > .wp-block-navigation-item > a.wp-block-navigation-item__content > .wp-block-navigation-item__label {
  color: var(--solon-navy-900) !important;
  text-decoration: none !important;
}

@media (max-width: 340px) {
  .page-id-2834 .solon-wave-page :where(.solon-wave-hero, .solon-wave-section, .solon-wave-media-band) {
    padding-inline: 16px !important;
  }

  .page-id-2834 .solon-wave-page .solon-wave-actions :where(.wp-block-button, .wp-block-button__link) {
    width: 100% !important;
  }
}

/* ====== END SOLON WAVE LEGACY ADDITIONAL CSS NEUTRALIZATION v1 ====== */

/* =====================================================================
   SEO-DOMINANCE WAVE FACTORY — SCOPED PAGE ARCHETYPE
   Applies only to replacement sources assembled under .solon-wave-page.
   ===================================================================== */

.entry-content.wp-block-post-content:has(> .solon-wave-page) {
  margin-block-start: 0 !important;
}

.solon-wave-page {
  --swp-content: min(100% - 64px, 1320px);
  overflow: clip;
  background: var(--solon-ivory);
  color: var(--solon-ink-900);
}

.solon-wave-page :where(p, li, summary, a) {
  overflow-wrap: break-word;
}

.solon-wave-page .solon-eyebrow-copper {
  color: #79520f;
}

.solon-wave-page :where(.solon-wave-hero, .solon-wave-section--dark) .solon-eyebrow-copper {
  color: #e0b341 !important;
}

.solon-wave-hero,
.solon-wave-section,
.solon-wave-media-band {
  box-sizing: border-box;
  width: 100%;
  margin-block: 0 !important;
}

.solon-wave-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  grid-template-areas:
    "eyebrow media"
    "title media"
    "copy media"
    "actions media";
  align-items: center;
  column-gap: clamp(40px, 6vw, 104px);
  min-height: clamp(680px, 78vh, 900px);
  padding: clamp(76px, 9vw, 144px) max(32px, calc((100vw - 1320px) / 2)) !important;
  background:
    radial-gradient(circle at 78% 24%, rgba(232, 199, 102, 0.12), transparent 34%),
    linear-gradient(135deg, var(--solon-navy-900), #091425 72%);
  color: var(--solon-ivory);
}

.solon-wave-hero > .solon-eyebrow-copper { grid-area: eyebrow; margin: 0 0 24px !important; }
.solon-wave-hero > .solon-wave-hero__title { grid-area: title; }
.solon-wave-hero > .solon-wave-hero__copy { grid-area: copy; }
.solon-wave-hero > .solon-wave-actions { grid-area: actions; }
.solon-wave-hero > .solon-wave-image--hero { grid-area: media; }

.entry-content .solon-wave-hero__title,
.solon-wave-hero__title {
  max-width: 900px;
  margin: 0 !important;
  color: var(--solon-ivory) !important;
  font-size: clamp(48px, 6.2vw, 96px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.035em !important;
  text-wrap: balance;
}

/* ====== SOLON WAVE STREAMED TITLE CLS REPAIR v1 ======
   WordPress.com can flush the styled H1 element before its text node reaches
   the browser. Reserve the final page-specific line count so the hero grid
   cannot grow after first paint while the response continues streaming. */
.solon-wave-hero__title {
  min-height: 2.88em;
}

.solon-wave-page--brewery .solon-wave-hero__title { min-height: 3.84em; }

@media (max-width: 1024px) {
  .solon-wave-page--bme .solon-wave-hero__title { min-height: 1.92em; }
  .solon-wave-page--brewery .solon-wave-hero__title { min-height: 1.92em; }
  .solon-wave-page--services .solon-wave-hero__title { min-height: 1.92em; }
}

@media (max-width: 768px) {
  .solon-wave-page--bme .solon-wave-hero__title { min-height: 0.96em; }
  .solon-wave-page--brewery .solon-wave-hero__title { min-height: 1.92em; }
  .solon-wave-page--services .solon-wave-hero__title { min-height: 0.96em; }
}

@media (max-width: 600px) {
  .solon-wave-page--bme .solon-wave-hero__title { min-height: 2.97em; }
  .solon-wave-page--brewery .solon-wave-hero__title { min-height: 3.96em; }
  .solon-wave-page--services .solon-wave-hero__title { min-height: 2.97em; }
}

/* ====== END SOLON WAVE STREAMED TITLE CLS REPAIR v1 ====== */

.solon-wave-hero__copy {
  max-width: 68ch;
  margin: 30px 0 0 !important;
  color: rgba(255, 254, 240, 0.84);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.56;
}

.solon-wave-actions {
  margin-top: 34px !important;
  gap: 12px;
}

.solon-wave-actions .wp-block-button__link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.solon-wave-image {
  margin: 0 !important;
  border: 1px solid var(--solon-rule);
  background: var(--solon-paper);
}

.solon-wave-image img {
  width: 100%;
  height: clamp(320px, 42vw, 620px);
  object-fit: cover;
}

.solon-wave-image--hero {
  position: relative;
  isolation: isolate;
  border-color: rgba(255, 254, 240, 0.2);
  box-shadow: 24px 28px 0 rgba(201, 165, 61, 0.13);
}

.solon-wave-image--hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 16px;
  border: 1px solid rgba(255, 254, 240, 0.32);
  pointer-events: none;
}

.solon-wave-section {
  padding: clamp(80px, 9vw, 132px) max(32px, calc((100vw - 1320px) / 2)) !important;
  border-bottom: 1px solid var(--solon-rule);
  background: var(--solon-ivory);
}

.solon-wave-section--dark {
  background: var(--solon-navy-900);
  color: var(--solon-ivory);
  border-bottom-color: rgba(255, 254, 240, 0.12);
}

.entry-content .solon-wave-section__title,
.solon-wave-section__title {
  max-width: 1040px;
  margin: 14px 0 0 !important;
  font-size: clamp(38px, 5vw, 72px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.025em !important;
  text-wrap: balance;
}

.solon-wave-section--dark .solon-wave-section__title,
.solon-wave-section--dark .solon-wave-card__title {
  color: var(--solon-ivory) !important;
}

.solon-wave-section__intro {
  max-width: 78ch;
  margin: 28px 0 0 !important;
  color: var(--solon-ink-700);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.68;
}

.solon-wave-section--dark .solon-wave-section__intro {
  color: rgba(255, 254, 240, 0.78);
}

.solon-wave-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(42px, 5vw, 72px) !important;
  border: 1px solid var(--solon-rule);
  background: var(--solon-rule);
}

.solon-wave-section--dark .solon-wave-grid {
  border-color: rgba(255, 254, 240, 0.16);
  background: rgba(255, 254, 240, 0.16);
}

@media (min-width: 1025px) {
  .solon-wave-grid > .solon-wave-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .solon-wave-grid > .solon-wave-card:last-child:nth-child(odd) > :where(.solon-wave-card__title, .solon-wave-card__copy, .solon-wave-card__link, .solon-wave-disclosure) {
    max-width: 78ch;
  }
}

.solon-wave-card {
  min-width: 0;
  min-height: 250px;
  padding: clamp(28px, 4vw, 52px) !important;
  background: var(--solon-paper);
}

.solon-wave-section--dark .solon-wave-card {
  background: #10243e;
}

.entry-content .solon-wave-card__title,
.solon-wave-card__title {
  margin: 0 !important;
  font-size: clamp(26px, 2.35vw, 38px) !important;
  line-height: 1.08 !important;
}

.solon-wave-card__copy {
  margin: 20px 0 0 !important;
  color: var(--solon-ink-700);
  font-size: 17px;
  line-height: 1.62;
}

.solon-wave-section--dark .solon-wave-card__copy,
.solon-wave-section--dark .solon-wave-disclosure {
  color: rgba(255, 254, 240, 0.76);
}

.solon-wave-card__link {
  margin: 28px 0 0 !important;
  font-family: var(--solon-f-mono) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--solon-action);
}

.solon-wave-section--dark .solon-wave-card__link {
  color: var(--solon-copper-400);
}

.solon-wave-disclosure {
  margin: 24px 0 0 !important;
  padding-top: 16px;
  border-top: 1px solid currentColor;
  font-family: var(--solon-f-mono) !important;
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.solon-wave-faq {
  max-width: 980px;
  margin: clamp(42px, 5vw, 70px) 0 0 !important;
  border-top: 1px solid var(--solon-rule-strong);
}

.solon-wave-faq .wp-block-details {
  margin: 0 !important;
  padding: 0;
  border-bottom: 1px solid var(--solon-rule-strong);
}

.solon-wave-faq summary {
  position: relative;
  min-height: 64px;
  padding: 24px 52px 24px 0;
  cursor: pointer;
  font-family: var(--solon-f-serif);
  font-size: clamp(22px, 2.1vw, 31px);
  line-height: 1.2;
}

.solon-wave-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 8px;
  translate: 0 -50%;
  font-family: var(--solon-f-mono);
  font-size: 24px;
  color: var(--solon-action);
}

.solon-wave-faq details[open] summary::after { content: "−"; }

.solon-wave-faq details > p {
  max-width: 72ch;
  margin: 0 !important;
  padding: 0 52px 28px 0;
  color: var(--solon-ink-700);
  font-size: 17px;
  line-height: 1.68;
}

.solon-wave-media-band {
  padding: clamp(48px, 7vw, 96px) max(32px, calc((100vw - 1120px) / 2)) !important;
  background: var(--solon-cream);
}

.solon-wave-media-band .solon-wave-image img {
  height: clamp(340px, 55vw, 760px);
}

.solon-wave-page :where(a, button, summary):focus-visible {
  outline: 3px solid var(--solon-copper-400) !important;
  outline-offset: 4px;
}

@media (max-width: 1024px) {
  .solon-wave-hero {
    grid-template-columns: 1fr;
    grid-template-areas: "eyebrow" "title" "copy" "actions" "media";
    min-height: 0;
  }

  .solon-wave-hero > .solon-wave-image--hero {
    margin-top: 56px !important;
    max-width: 860px;
  }

  .solon-wave-grid { grid-template-columns: 1fr; }
  .solon-wave-card { min-height: 0; }
}

@media (max-width: 600px) {
  .solon-wave-page { --swp-content: min(100% - 36px, 1320px); }

  .solon-wave-hero,
  .solon-wave-section,
  .solon-wave-media-band {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .entry-content .solon-wave-hero__title,
  .solon-wave-hero__title {
    font-size: clamp(40px, 13vw, 58px) !important;
    line-height: 0.99 !important;
  }

  .entry-content .solon-wave-section__title,
  .solon-wave-section__title {
    font-size: clamp(34px, 10vw, 48px) !important;
  }

  .solon-wave-image--hero { box-shadow: 10px 12px 0 rgba(201, 165, 61, 0.13); }
  .solon-wave-image img { height: 300px; }
  .solon-wave-media-band .solon-wave-image img { height: 330px; }
  .solon-wave-card { padding: 28px 22px !important; }
  .solon-wave-faq summary { padding-right: 42px; }
  .solon-wave-faq details > p { padding-right: 0; }
  .solon-wave-actions .wp-block-button,
  .solon-wave-actions .wp-block-button__link { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .solon-wave-page *,
  .solon-wave-page *::before,
  .solon-wave-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (min-width: 701px) {
  .solon-industries-section .solon-card-grid-three {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }

  .solon-industries-section .solon-card-grid-three > .wp-block-column {
    flex: none !important;
    flex-basis: auto !important;
  }
}

@media (max-width: 900px) {
  .entry-content.wp-block-post-content .solon-finished-home .solon-finished-title,
  .solon-finished-home .solon-finished-title {
    text-transform: none !important;
    font-size: clamp(34px, 7.1vw, 58px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.018em !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .solon-finished-home .solon-card-grid-four,
  .solon-finished-home .solon-card-grid-three,
  .solon-industries-section .solon-card-grid-three {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  .solon-finished-hero.has-native-slideshow {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .entry-content.wp-block-post-content .solon-finished-home .solon-finished-title,
  .solon-finished-home .solon-finished-title {
    font-size: clamp(27px, 7.45vw, 31px) !important;
    line-height: 1.08 !important;
    max-width: min(100%, 340px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .solon-finished-home .solon-finished-eyebrow {
    font-size: 10px !important;
    letter-spacing: 0.13em !important;
  }

  .solon-native-hero-caption {
    margin-top: 24px !important;
  }

  .solon-operating-partner .solon-mini-metrics {
    gap: 0 !important;
    margin-top: 28px !important;
    border-top: 1px solid var(--sfh-rule);
  }

  .solon-operating-partner .solon-mini-card {
    padding: 18px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid var(--sfh-rule) !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .solon-operating-partner .solon-mini-card p:not(.solon-finished-eyebrow) {
    font-family: var(--solon-f-serif, Newsreader, Georgia, serif) !important;
    font-size: 22px !important;
    line-height: 1.12 !important;
    color: var(--sfh-navy) !important;
  }

  .solon-operating-partner .solon-two-up > .wp-block-column:nth-child(2) {
    margin-top: 28px !important;
  }

  .solon-finished-home .solon-card-grid-four,
  .solon-finished-home .solon-card-grid-three,
  .solon-industries-section .solon-card-grid-three {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .solon-finished-home .solon-media-card {
    padding: 12px 12px 24px !important;
  }

  .solon-industries-section .solon-media-card .solon-home-image img {
    height: 190px !important;
  }
}

/* Practice matrix repair: Gutenberg serializes the 12 capability cards as
   three 4-column blocks, but the uploaded design is one continuous matrix.
   Flatten the wrapper rows so desktop does not render 3+1 orphan patterns. */
@media (min-width: 1181px) {
  .solon-finished-home > .solon-home-section-dark:not(.solon-proof-section) {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }

  .solon-finished-home > .solon-home-section-dark:not(.solon-proof-section) > .solon-finished-eyebrow,
  .solon-finished-home > .solon-home-section-dark:not(.solon-proof-section) > .solon-section-title,
  .solon-finished-home > .solon-home-section-dark:not(.solon-proof-section) > .solon-section-copy {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .solon-finished-home > .solon-home-section-dark:not(.solon-proof-section) > .solon-card-grid-four {
    display: contents !important;
  }

  .solon-finished-home > .solon-home-section-dark:not(.solon-proof-section) > .solon-card-grid-four > .wp-block-column {
    display: block !important;
    flex: none !important;
    flex-basis: auto !important;
    min-width: 0 !important;
    width: auto !important;
  }

  .solon-finished-home > .solon-home-section-dark:not(.solon-proof-section) > .solon-card-grid-four .solon-dark-card {
    height: 100% !important;
    min-height: 300px !important;
  }
}
