:root {
  /* Logo palette */
  --logo-gold: #b8975d;
  --logo-gold-light: #d4bc84;
  --logo-gold-deep: #8f7345;
  --logo-brown: #5c3d2e;
  --logo-brown-mid: #4a3328;
  --logo-brown-deep: #2c1e17;
  --logo-bg: #ffffff;
  --shield: var(--logo-bg);
  --gold: var(--logo-gold);
  --gold-dark: var(--logo-gold-deep);
  --brown: var(--logo-brown);
  --brown-deep: var(--logo-brown-deep);
  --cream: #ffffff;
  --paper: #f5f5f5;
  --surface: #fafafa;
  --text: #2c1e17;
  --text-muted: #5c4a42;
  --white: #ffffff;
  --accent-warm: #f3ede3;
  --line-gold: rgba(184, 151, 93, 0.4);
  --line-gold-soft: rgba(184, 151, 93, 0.14);
  --shadow-sm: 0 1px 2px rgba(44, 30, 23, 0.03), 0 4px 14px rgba(44, 30, 23, 0.05);
  --shadow: 0 4px 20px rgba(44, 30, 23, 0.06), 0 12px 36px rgba(44, 30, 23, 0.05);
  --shadow-gold: 0 8px 28px rgba(184, 151, 93, 0.14);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --header-h: 72px;
  --section-y: clamp(3.25rem, 6vw, 5rem);
  --gap: 1.25rem;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--logo-bg);
  background-image:
    radial-gradient(ellipse 85% 48% at 50% -8%, rgba(184, 151, 93, 0.045), transparent 52%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  display: block;
}

::selection {
  background: rgba(184, 151, 93, 0.35);
  color: var(--logo-brown-deep);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--logo-brown-mid);
}

a:hover {
  color: var(--logo-gold-deep);
}

.wrap {
  width: min(1140px, calc(100% - 2.5rem));
  margin-inline: auto;
  padding-inline: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--logo-brown-deep);
  color: var(--shield);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--logo-bg);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid var(--line-gold-soft);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, var(--shadow-sm);
}

.header-inner {
  width: min(1140px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding-block: 0.5rem;
}

.brand-logo {
  max-height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-icon {
  width: auto;
  height: 52px;
  max-width: 52px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--logo-brown);
  letter-spacing: 0.03em;
  line-height: 1.1;
  white-space: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1;
  padding: 0;
  background: transparent;
  text-decoration: none;
}

.brand:hover .brand-logo,
.brand:focus-visible .brand-logo,
.brand:hover .brand-icon,
.brand:focus-visible .brand-icon {
  transform: scale(1.05);
}

.brand:hover .brand-name,
.brand:focus-visible .brand-name {
  color: var(--logo-gold-deep);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 100%;
  max-width: 2.75rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--logo-gold), transparent);
  border-radius: 2px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta)[aria-current="page"]::after {
  transform: translateX(-50%) scaleX(1);
}

.site-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--logo-brown-mid);
}

.site-nav a:hover {
  color: var(--logo-gold-deep);
}

.site-nav a[aria-current="page"] {
  color: var(--logo-gold-deep);
  font-weight: 600;
}

.site-nav a.nav-cta[aria-current="page"] {
  color: var(--shield) !important;
  text-decoration: none;
  box-shadow: inset 0 0 0 2px var(--logo-gold-light);
}

.nav-cta {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  background: var(--logo-brown);
  color: var(--shield) !important;
  border: 1px solid rgba(184, 151, 93, 0.35);
  box-shadow: var(--shadow-sm);
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.nav-cta:hover {
  background: var(--logo-brown-deep);
  color: var(--shield) !important;
  border-color: var(--logo-gold);
  box-shadow: var(--shadow);
}

.nav-cta:active {
  transform: scale(0.97);
}

.nav-dropdown {
  position: relative;
}

/* Invisible bridge so hover reaches menu without a click (desktop) */
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -0.5rem;
  right: -0.5rem;
  top: 100%;
  height: 0.85rem;
  z-index: 59;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--logo-brown-mid);
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown-toggle[aria-current="true"] {
  color: var(--logo-gold-deep);
}

.nav-dropdown-toggle[aria-current="true"] {
  font-weight: 600;
}

.nav-dropdown-icon {
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.nav-dropdown.is-open .nav-dropdown-icon {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 11.5rem;
  padding: 0.4rem;
  margin: 0;
  list-style: none;
  background: var(--shield);
  border: 1px solid var(--line-gold-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s var(--ease),
    transform 0.22s var(--ease),
    visibility 0.22s;
  z-index: 60;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

@media (min-width: 721px) {
  .nav-dropdown-toggle {
    pointer-events: auto;
  }
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: calc(var(--radius-lg) - 2px);
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown-menu a:hover {
  background: var(--surface);
}

.nav-dropdown-menu a[aria-current="page"] {
  background: rgba(184, 151, 93, 0.12);
}

.page-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.page-media-grid--single {
  grid-template-columns: 1fr;
}

.page-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-gold-soft);
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}

.page-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-media--wide img {
  aspect-ratio: 21 / 9;
}

/* Inline images within prose / article content */
.content-prose .content-media-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
  margin: 1.75rem 0;
}

.content-prose .content-figure {
  margin: 1.75rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-gold-soft);
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}

.content-prose .content-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.content-prose .content-figure--wide img,
.content-prose .content-figure--lead img {
  aspect-ratio: 21 / 9;
}

.content-prose .content-figure figcaption {
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--surface);
}

.about-card .content-media-row,
.about-card .content-figure,
.split-text .content-media-row,
.split-text .content-figure {
  margin: 1.5rem 0;
}

.about-card .content-figure,
.split-text .content-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-gold-soft);
  box-shadow: var(--shadow-sm);
}

.about-card .content-figure img,
.split-text .content-figure img,
.about-card .content-media-row img,
.split-text .content-media-row img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@media (max-width: 640px) {
  .content-prose .content-media-row {
    grid-template-columns: 1fr;
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  position: absolute;
  left: 11px;
  top: 21px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  left: 0;
}

.nav-toggle-bar::before {
  top: -7px;
}

.nav-toggle-bar::after {
  top: 7px;
}

.site-header.nav-open .nav-toggle-bar {
  background: transparent;
}

.site-header.nav-open .nav-toggle-bar::before {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      125deg,
      rgba(44, 30, 23, 0.82) 0%,
      rgba(92, 61, 46, 0.55) 38%,
      rgba(92, 61, 46, 0.35) 55%,
      rgba(184, 151, 93, 0.22) 100%
    ),
    url("assets/factory-1.png") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 15% 100%, rgba(255, 255, 255, 0.22), transparent 58%),
    linear-gradient(180deg, transparent 55%, rgba(44, 30, 23, 0.35) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding-top: calc(var(--header-h) + 2rem);
}

.eyebrow {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-warm);
  opacity: 0.95;
  margin: 0 0 1rem;
}

.hero h1,
.hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  max-width: min(22ch, 100%);
}

.hero h1 em,
.hero-title em {
  font-style: italic;
  color: var(--logo-gold-light);
}

.hero-lead {
  max-width: 36rem;
  font-size: 1.1rem;
  opacity: 0.95;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--logo-gold);
  color: var(--logo-brown-deep);
  border-color: rgba(143, 115, 69, 0.35);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--logo-gold-light);
  color: var(--logo-brown-deep);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--shield);
  border-color: rgba(212, 188, 132, 0.65);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--shield);
  border-color: var(--logo-gold-light);
}

.btn-secondary {
  background: var(--shield);
  color: var(--logo-brown);
  border-color: var(--line-gold-soft);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--line-gold);
  box-shadow: var(--shadow);
}

.btn-inline {
  margin-top: 1rem;
  align-self: flex-start;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}

.metrics-overlap {
  margin-top: -2.5rem;
}

.section-tight-top {
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
}

.section--no-top-pad {
  padding-top: 0;
}

/* Inner page banner with industry imagery */
.page-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(240px, 42vw, 380px);
  margin-bottom: 0;
  overflow: hidden;
}

main.wrap > .page-banner {
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.page-banner-media {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  transform: scale(1.02);
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(44, 30, 23, 0.88) 0%,
      rgba(92, 61, 46, 0.72) 42%,
      rgba(44, 30, 23, 0.55) 100%
    ),
    linear-gradient(0deg, rgba(44, 30, 23, 0.65) 0%, transparent 55%);
  pointer-events: none;
}

.page-banner-inner {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 2rem) 0 clamp(2rem, 5vw, 3rem);
}

.page-banner .breadcrumb {
  color: rgba(255, 255, 255, 0.75);
}

.page-banner .breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
}

.page-banner .breadcrumb a:hover {
  color: var(--logo-gold-light);
}

.page-banner .breadcrumb span[aria-current] {
  color: var(--logo-gold-light);
}

.page-banner .eyebrow {
  color: var(--logo-gold-light);
  opacity: 1;
}

.page-banner h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.65rem;
  line-height: 1.12;
  max-width: 18ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.page-banner .page-lead {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.5vw, 1.05rem);
  line-height: 1.65;
}

.page-banner .blog-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.page-banner .blog-meta time {
  color: var(--logo-gold-light);
}

.page-hero {
  padding: calc(var(--header-h) + 1.75rem) 0 2.25rem;
  background: var(--white);
  border-bottom: 1px solid var(--line-gold-soft);
}

.page-hero--flush {
  margin-inline: calc(-1 * clamp(0.75rem, 2vw, 1.25rem));
  padding-inline: clamp(0.75rem, 2vw, 1.25rem);
  width: auto;
}

main.wrap .section {
  padding-inline: 0;
}

main.wrap {
  padding-bottom: var(--section-y);
}

.page-hero .eyebrow,
.page-banner--plain .eyebrow {
  color: var(--logo-gold-deep);
  opacity: 1;
}

.page-hero h1,
.page-banner--plain h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  color: var(--logo-brown);
  margin: 0 0 0.65rem;
  line-height: 1.15;
}

.page-lead {
  max-width: 38rem;
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.page-hero .page-lead {
  max-width: 42rem;
}

.nav-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  align-items: stretch;
}

.nav-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  background: var(--shield);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-gold-soft);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.3s var(--ease-out),
    transform 0.3s var(--ease-out);
}

.nav-card:hover {
  border-color: var(--line-gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: inherit;
}

.nav-card:focus-visible {
  outline: 2px solid var(--logo-gold);
  outline-offset: 3px;
}

.nav-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
  color: var(--logo-brown);
}

.nav-card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.nav-card-cta {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--logo-gold-deep);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 0;
}

.page-actions-center {
  justify-content: center;
  text-align: center;
}

.metric-card {
  position: relative;
  background: var(--shield);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-gold-soft);
  text-align: center;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease),
    border-color 0.25s var(--ease);
}

.metric-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--line-gold);
}

.metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--logo-gold-deep), var(--logo-gold-light));
}

.metric-value {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--logo-brown);
  line-height: 1.1;
}

.metric-unit {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--logo-gold-deep);
  margin-top: 0.15rem;
}

.metric-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.section {
  padding-block: var(--section-y);
}

.section-alt {
  position: relative;
  z-index: 0;
  padding-block: clamp(4.5rem, 8vw, 7rem);
  background: transparent;
  border: none;
}

.section-alt::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset-block: 0;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  transform: translateX(-50%);
  background: var(--surface);
  border-block: 1px solid var(--line-gold-soft);
  pointer-events: none;
}

/* Full section padding where a white band meets an off-white band */
.section-alt + .section.section-tight-top:not(.section--no-top-pad),
.section.section-tight-top:not(.section--no-top-pad) + .section-alt {
  padding-top: var(--section-y);
}

.section-alt + .section:not(.section-alt):not(.section--no-top-pad) {
  padding-top: var(--section-y);
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
}

.section-head-left {
  text-align: left;
  margin-inline: 0;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--logo-brown);
  margin: 0 0 0.5rem;
}

.section-head:not(.section-head-left) h2::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin: 0.65rem auto 0;
  background: var(--logo-gold);
  border-radius: 1px;
}

.section-head-left h2::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin: 0.65rem 0 0;
  background: var(--logo-gold);
  border-radius: 1px;
}

.section-sub {
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.section-head-left .section-sub {
  margin-inline: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.product-tile {
  background: var(--shield);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--line-gold-soft);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease),
    border-color 0.25s var(--ease);
}

.product-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--line-gold);
}

.product-tile h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
  color: var(--logo-brown);
}

.product-tile p {
  margin: 0;
  color: var(--text-muted);
}

.spec-table {
  background: var(--shield);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-gold-soft);
  max-width: 640px;
  margin-inline: auto;
  box-shadow: var(--shadow-sm);
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(92, 61, 46, 0.07);
}

.spec-row-head {
  background: var(--logo-brown);
  color: var(--shield);
  font-weight: 600;
  border-top: none;
  border-bottom: 1px solid rgba(184, 151, 93, 0.35);
}

.spec-row span:last-child {
  font-weight: 600;
  color: var(--logo-brown);
}

.spec-row-head span:last-child {
  color: var(--logo-gold-light);
}

.spec-note {
  text-align: center;
  max-width: 36rem;
  margin: 1.25rem auto 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  margin-bottom: 2rem;
}

.checklist {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
}

.checklist li {
  margin-bottom: 0.5rem;
}

.checklist li::marker {
  color: var(--logo-gold-deep);
}

.split-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-gold-soft);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.facility-wide {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-gold-soft);
}

.facility-wide img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.about-card {
  background: var(--shield);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
  border: 1px solid var(--line-gold-soft);
  max-width: 720px;
  margin-inline: auto;
  box-shadow: var(--shadow-sm);
}

.about-card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.about-card p:last-child {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.contact-card {
  background: var(--shield);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--line-gold-soft);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease),
    border-color 0.25s var(--ease);
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--line-gold);
}

.contact-layout {
  display: grid;
  gap: 2rem;
}

.contact-card-wide {
  grid-column: 1 / -1;
}

.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--logo-brown);
}

.contact-name {
  font-weight: 700;
  margin: 0;
  color: var(--text);
}

.contact-role {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-link {
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

.address {
  margin: 1rem 0 0;
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.55;
}

.site-footer {
  background: linear-gradient(165deg, var(--logo-brown) 0%, var(--logo-brown-deep) 100%);
  color: rgba(255, 255, 255, 0.88);
  padding-block: 2.75rem 0;
  margin-top: 0;
  border-top: 3px solid var(--logo-gold);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.25rem;
}

.footer-columns .footer-col--brand,
.footer-columns .footer-col:first-child {
  background: transparent;
  padding: 0;
  border-radius: 0;
  align-self: start;
  box-shadow: none;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  margin-bottom: 0.35rem;
}

.footer-brand-link:hover .footer-brand-name {
  color: #ffffff;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--logo-gold-light);
  line-height: 1.1;
}

.footer-columns .footer-col--brand p,
.footer-columns .footer-col:first-child p {
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.footer-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(165deg, #faf6ef 0%, #ebe0d0 48%, #d9c9ad 100%);
  border: 1px solid rgba(184, 151, 93, 0.55);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.footer-logo {
  width: auto;
  height: 2.5rem;
  max-width: 2.75rem;
  margin: 0;
  display: block;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-copyright {
  background: #121212;
  padding: 0.9rem 1.25rem;
  text-align: center;
  border-top: 1px solid rgba(184, 151, 93, 0.22);
}

.footer-copyright p {
  margin: 0;
  font-size: clamp(0.78rem, 1.8vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
}

.footer-copyright-sep {
  margin: 0 0.45rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

.footer-copyright-credit {
  color: #ffffff;
  font-weight: 600;
}

.fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  border: 2px solid rgba(184, 151, 93, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 1px rgba(44, 30, 23, 0.15);
  transition: transform 0.2s;
}

.fab:hover {
  transform: scale(1.06);
  color: var(--white);
}

@media (max-width: 1024px) {
  .utility-card {
    flex: 1 1 calc(50% - 1rem);
    max-width: none;
  }

  .nav-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-overlap {
    margin-top: -2rem;
  }

  .product-catalog {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split-aside {
    order: -1;
  }
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--logo-gold-deep);
}

.breadcrumb span[aria-current] {
  color: var(--logo-brown);
  font-weight: 500;
}

/* Utilities */
.utilities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 72rem;
  margin-inline: auto;
  align-items: stretch;
}

.utilities-section {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding-top: 0.25rem;
}

.content-prose-panel {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0;
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.5rem, 3.5vw, 2.25rem);
  background: var(--shield);
  border: 1px solid var(--line-gold-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  max-width: none;
}

.content-prose-panel h2:first-child {
  margin-top: 0;
}

/* Image left / content right (and reverse for zigzag) */
.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  margin: clamp(2rem, 4vw, 2.75rem) 0;
}

.content-split-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-gold-soft);
  box-shadow: var(--shadow-sm);
}

.content-split-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.content-split-body {
  min-width: 0;
}

.content-split-body h2:first-child {
  margin-top: 0;
}

.zigzag {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.75rem);
}

.zigzag-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.zigzag-row--reverse .zigzag-media {
  order: 2;
}

.zigzag-row--reverse .zigzag-body {
  order: 1;
}

.zigzag-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-gold-soft);
  box-shadow: var(--shadow-sm);
}

.zigzag-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.zigzag-body h2:first-child {
  margin-top: 0;
}

.zigzag-lead {
  font-size: 1.02rem;
  color: var(--logo-brown-mid);
  line-height: 1.65;
  margin: 0 0 1rem;
}

.zigzag-body .page-actions {
  margin-top: 1.25rem;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .content-split,
  .zigzag-row {
    grid-template-columns: 1fr;
  }

  .zigzag-row--reverse .zigzag-media,
  .zigzag-row--reverse .zigzag-body {
    order: unset;
  }

  .zigzag-row .zigzag-media {
    order: -1;
  }
}

.utility-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 220px;
  max-width: 280px;
  min-width: min(100%, 220px);
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.35rem, 2.5vw, 1.75rem);
  background: var(--shield);
  border: 1px solid var(--line-gold-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease),
    border-color 0.25s var(--ease);
}

.utility-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow);
  color: inherit;
}

.utility-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 0.65rem;
  color: var(--logo-brown);
}

.utility-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Product catalog (Caliber-style listing) */
.product-catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--shield);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-gold-soft);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease),
    border-color 0.25s var(--ease);
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--line-gold);
}

.product-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.35rem 1.35rem;
}

.product-card-body .product-card-link {
  margin-top: auto;
  padding-top: 0.5rem;
}

.product-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  color: var(--logo-brown);
}

.product-card-body p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.product-card-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--logo-gold-deep);
  text-decoration: none;
}

.product-card-link:hover {
  color: var(--logo-brown);
}

/* Product detail page */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
  margin-bottom: 2.5rem;
}

.product-detail .page-actions {
  margin-top: 1.25rem;
}

.product-detail-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow);
}

.product-detail-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--shield);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-gold-soft);
  box-shadow: 0 8px 28px rgba(44, 34, 28, 0.06);
}

.product-info-table th,
.product-info-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(92, 61, 46, 0.08);
  font-size: 0.95rem;
}

.product-info-table th {
  width: 42%;
  background: var(--paper);
  color: var(--logo-brown);
  font-weight: 600;
}

.product-info-table tr:last-child th,
.product-info-table tr:last-child td {
  border-bottom: none;
}

.product-block {
  margin-bottom: 2rem;
}

.product-block h2 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--logo-brown);
  margin: 0 0 0.75rem;
}

.product-block p,
.product-block ul {
  color: var(--text-muted);
  margin: 0;
}

.product-block ul {
  padding-left: 1.2rem;
}

.product-block li {
  margin-bottom: 0.4rem;
}

/* Go Green */
.green-hero {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
}

.green-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.green-pillar {
  background: var(--shield);
  border: 1px solid var(--line-gold-soft);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease),
    border-color 0.25s var(--ease);
}

.green-pillar:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--line-gold);
}

.green-pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--logo-brown);
  margin: 0 0 0.5rem;
}

.green-pillar p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.green-quote {
  margin: 2rem auto 0;
  max-width: 40rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, rgba(184, 151, 93, 0.06) 0%, rgba(184, 151, 93, 0.1) 100%);
  border-left: 4px solid var(--logo-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--logo-brown);
  text-align: center;
}

/* Google Map */
.map-section {
  margin-top: 2rem;
}

.map-section h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--logo-brown);
  margin: 0 0 0.5rem;
}

.map-hint {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.map-wrap {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-gold-soft);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: box-shadow 0.3s var(--ease), border-color 0.25s var(--ease);
}

.map-wrap:hover {
  box-shadow: var(--shadow);
  border-color: var(--line-gold);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: min(420px, 55vh);
  border: 0;
  pointer-events: none;
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent 55%, rgba(44, 30, 23, 0.55) 100%);
  pointer-events: none;
}

.map-overlay span {
  background: linear-gradient(180deg, var(--logo-gold-light) 0%, var(--logo-gold) 100%);
  color: var(--logo-brown-deep);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(44, 34, 28, 0.25);
}

.map-wrap:hover .map-overlay span {
  transform: scale(1.03);
}

/* Blog / news listing */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 720px;
  margin-inline: auto;
}

.post-list--blog {
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 720px) {
  .post-list--blog {
    grid-template-columns: 1fr;
  }
}

.post-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.post-item-link:hover h3 {
  color: var(--logo-gold-deep);
}

.post-item-read-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--logo-gold-deep);
}

.post-item-link:hover .post-item-read-more {
  color: var(--logo-brown);
}

.blog-meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.blog-meta time {
  color: var(--logo-gold-deep);
  font-weight: 600;
}

/* Article / expo detail — left column + sidebar (Caliber-style) */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
  padding-bottom: 3rem;
}

.article-main {
  min-width: 0;
  text-align: left;
}

.article-entry-header {
  margin-bottom: 1.25rem;
}

.article-date {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--logo-gold-deep);
}

.article-date svg {
  flex-shrink: 0;
  color: var(--logo-gold);
}

.article-date time {
  color: inherit;
}

.article-entry-title {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: var(--logo-brown);
  margin: 0;
  line-height: 1.2;
  text-align: left;
}

.article-featured-media {
  margin: 0 0 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-gold-soft);
  box-shadow: var(--shadow-sm);
}

.article-featured-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

.article-expo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.article-details-list {
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line-gold-soft);
  border-radius: var(--radius-md);
  list-style: none;
}

.article-details-list li {
  margin: 0;
  padding: 0.35rem 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--line-gold-soft);
}

.article-details-list li:last-child {
  border-bottom: none;
}

.article-details-list strong {
  color: var(--logo-brown);
  font-weight: 600;
  min-width: 5.5rem;
  display: inline-block;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.article-gallery figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-gold-soft);
}

.article-gallery img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-gallery figcaption {
  padding: 0.5rem 0.65rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--surface);
}

.article-sidebar {
  position: sticky;
  top: calc(var(--header-h, 72px) + 1.25rem);
}

.sidebar-widget {
  background: var(--shield);
  border: 1px solid var(--line-gold-soft);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.15rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--logo-brown);
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--line-gold-soft);
}

.sidebar-post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-post-item + .sidebar-post-item {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line-gold-soft);
}

.sidebar-post-link {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.75rem;
  align-items: start;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s var(--ease);
}

.sidebar-post-link:hover {
  opacity: 0.85;
}

.sidebar-post-link:hover .sidebar-post-title {
  color: var(--logo-gold-deep);
}

.sidebar-post-thumb {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line-gold-soft);
}

.sidebar-post-title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--logo-brown);
  transition: color 0.2s var(--ease);
}

.blog-article-body,
.article-main .content-prose--article {
  max-width: none;
  margin: 0;
  text-align: left;
}

.content-prose--article {
  max-width: none;
}

.content-prose--article h2,
.content-prose--article h3 {
  text-align: left;
}

.content-prose--article h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--logo-brown);
  margin: 1.5rem 0 0.6rem;
}

.content-prose--article .blog-lead {
  font-size: 1.08rem;
  color: var(--logo-brown-mid);
  line-height: 1.7;
}

.blog-article-footer,
.article-footer {
  margin: 2.5rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line-gold-soft);
  text-align: left;
}

.article-footer .page-actions {
  justify-content: flex-start;
}

.post-item--linked {
  padding: 0;
}

.post-item--linked .post-item-link {
  display: block;
  padding: 1.35rem 1.5rem;
  text-decoration: none;
  color: inherit;
}

.post-item--linked h3 {
  transition: color 0.2s var(--ease);
}

.post-item--linked:hover h3 {
  color: var(--logo-gold-deep);
}

.post-item-read-more {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--logo-gold-deep);
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .article-gallery {
    grid-template-columns: 1fr;
  }
}

.blog-article-cta-text {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.news-section {
  margin-bottom: 2.5rem;
}

.news-section-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--logo-brown);
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--line-gold-soft);
}

.news-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.news-badge--upcoming {
  background: rgba(184, 151, 93, 0.18);
  color: var(--logo-gold-deep);
}

.news-badge--past {
  background: var(--surface);
  color: var(--text-muted);
  border: 1px solid var(--line-gold-soft);
}

.expo-meta {
  margin: 0.35rem 0 0.65rem;
  font-size: 0.88rem;
  color: var(--logo-gold-deep);
  font-weight: 600;
}

.post-item {
  background: var(--shield);
  border: 1px solid var(--line-gold-soft);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.3s var(--ease-out),
    transform 0.3s var(--ease-out);
}

.post-item:hover {
  border-color: var(--line-gold);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.post-item time {
  font-size: 0.8rem;
  color: var(--logo-gold-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.post-item h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0.35rem 0 0.5rem;
  color: var(--logo-brown);
}

.post-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Footer columns */
.footer-columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  width: 100%;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(184, 151, 93, 0.28);
  align-items: start;
}

.content-prose {
  max-width: 46rem;
  margin: 0 auto 2rem;
}

.content-prose h2 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--logo-brown);
  margin: 2rem 0 0.75rem;
}

.content-prose h2:first-child {
  margin-top: 0;
}

.content-prose p,
.content-prose li {
  color: var(--text-muted);
  line-height: 1.7;
}

.content-prose p {
  margin: 0 0 1rem;
}

.content-prose ul {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
}

.content-prose li {
  margin-bottom: 0.45rem;
}

.content-prose li::marker {
  color: var(--logo-gold-deep);
}

.footer-col p {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 22rem;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--logo-gold-light);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.45rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--white);
}

@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-brand-link {
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
  }

  .footer-logo-mark {
    width: 3.5rem;
    height: 3.5rem;
  }

  .footer-logo {
    max-height: 2.25rem;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 60;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 3px double var(--line-gold-soft);
    box-shadow: var(--shadow);
    display: none;
    max-height: min(80vh, 32rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 1.25rem;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    text-align: left;
    pointer-events: none;
    color: var(--logo-brown);
    font-weight: 600;
  }

  .nav-dropdown-icon {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block;
    min-width: 0;
    margin: 0;
    padding: 0 0 0.25rem;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-dropdown-menu a {
    padding: 0.65rem 1.25rem 0.65rem 2rem;
    border-radius: 0;
    white-space: normal;
  }

  .page-media-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-wide {
    grid-column: 1;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .utilities-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .utility-card {
    flex: 1 1 auto;
    max-width: none;
  }

  .wrap {
    width: min(1140px, calc(100% - 1.5rem));
  }

  .header-inner {
    width: min(1140px, calc(100% - 1.5rem));
  }
}
