:root {
  --gold: #c8a96e;
  --gold-light: #e8d5a3;
  --gold-dark: #76571f;
  --dark: #1a1a1a;
  --ink: #1a1a1a;
  --ink-soft: #25251f;
  --text: #2c2c2c;
  --muted: #67645e;
  --bg: #faf9f7;
  --cream: #f6f2e9;
  --paper: #fffdf9;
  --white: #fff;
  --border: #e5e0d8;
  --line: #e5e0d8;
  --gsp-blue: #123b67;
  --gsp-shell-width: 1280px;
  --gsp-content-width: 1180px;
  --gsp-radius: 12px;
  --gsp-shadow: 0 16px 38px rgba(31, 27, 20, .07);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body :where(h1, h2) {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -.025em;
  text-wrap: balance;
}

body :where(h1, h2, h3, [id]) {
  scroll-margin-top: 150px;
}

body :where(button, input, select, textarea) {
  font-family: inherit;
}

body :where(a, button, input, select, textarea, [role="button"]):focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 1px;
  box-shadow: 0 0 0 4px var(--gold-dark);
}

.gsp-skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 1200;
  border: 2px solid var(--gold-dark);
  border-radius: 6px;
  background: var(--white);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 14px;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform .16s ease;
}

.gsp-skip-link:focus {
  transform: translateY(0);
}

.gsp-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

/* One compact brand header for every inner page. */
body > .gsp-site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 1px 10px rgba(25, 24, 20, .06);
  color: var(--dark);
}

.gsp-header-inner {
  display: grid;
  width: min(var(--gsp-shell-width), calc(100% - 48px));
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 72px;
  align-items: center;
  gap: 24px;
  margin-inline: auto;
}

.gsp-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--gsp-blue);
  text-decoration: none;
}

.gsp-brand img {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
}

.gsp-brand-copy {
  display: grid;
  gap: 3px;
  line-height: 1.05;
}

.gsp-brand-copy strong {
  color: var(--gsp-blue);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .115em;
}

.gsp-brand-copy small {
  color: #80642d;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .105em;
  text-transform: uppercase;
}

.gsp-primary-nav {
  display: flex;
  grid-column: 2;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.gsp-primary-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 6px;
  color: #45433e;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 11px;
  text-decoration: none;
  white-space: nowrap;
}

.gsp-primary-nav a:hover {
  background: var(--cream);
  color: var(--dark);
}

.gsp-primary-nav a[aria-current] {
  background: var(--cream);
  background-image: linear-gradient(var(--gold-dark), var(--gold-dark));
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: calc(100% - 16px) 2px;
  color: var(--dark);
}

.gsp-header-cta {
  display: inline-flex;
  grid-column: 3;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-dark);
  border-radius: 6px;
  background: var(--gold-dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  padding-inline: 16px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.gsp-header-cta:hover,
.gsp-header-cta[aria-current] {
  border-color: #634718;
  background: #634718;
  color: var(--white);
}

.gsp-cta-short {
  display: none;
}

/* The same quiet wayfinding band joins every inner page to the shared shell. */
.gsp-breadcrumbs {
  position: static;
  top: auto;
  z-index: auto;
  padding: 0;
  border-bottom: 1px solid var(--border);
  background: var(--paper);
  color: var(--muted);
}

.gsp-breadcrumbs-inner {
  display: flex;
  width: min(var(--gsp-content-width), calc(100% - 48px));
  min-height: 44px;
  align-items: center;
  gap: 7px;
  margin-inline: auto;
  max-width: none;
  padding: 0;
  font-size: 11px;
  line-height: 1.45;
}

.gsp-breadcrumbs a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: none;
}

.gsp-breadcrumbs a:hover {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gsp-breadcrumbs [aria-current="page"] {
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gsp-breadcrumb-separator {
  flex: 0 0 auto;
  color: #9a968e;
}

.gsp-main-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 150px;
}

.gsp-main-anchor:focus {
  outline: 0;
}

.gsp-main-landmark {
  display: block;
}

/* Shared typography and component treatment across legacy page families. */
body :where(.eyebrow, .kicker, .section-kicker) {
  color: var(--gold-dark);
  font-family: "DM Sans", "Avenir Next", Avenir, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

body :where(.hero, .section.dark, .rfq, .quote-panel, .catalog-finder) :where(.eyebrow, .kicker, .section-kicker) {
  color: var(--gold-light);
}

body :where(.lead, .section-intro p) {
  color: var(--muted);
}

body :where(.card, .faq-item, .proof-card, .step-card, .answer-card, .related-card, .index-card, .resource-card) {
  border-color: var(--border);
  border-radius: var(--gsp-radius);
}

body :where(.card, .faq-item, .proof-card, .step-card, .answer-card) {
  box-shadow: 0 10px 30px rgba(31, 27, 20, .045);
}

body :where(.hero-img, .hero-media, .hero-visual picture) {
  border-color: var(--border);
  border-radius: 14px;
  box-shadow: var(--gsp-shadow);
}

body :where(.note, .rfq, .quote-panel, .catalog-finder) {
  border-radius: var(--gsp-radius);
  background-color: var(--dark);
}

body :where(.btn, .button) {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-dark);
  border-radius: 6px;
  background: var(--gold-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  padding: 11px 18px;
  text-align: center;
  text-decoration: none;
}

body :where(.btn, .button):hover {
  border-color: #634718;
  background: #634718;
  color: var(--white);
}

body :where(.btn.alt, .button.alt) {
  border-color: var(--border);
  background: var(--white);
  color: var(--dark);
}

body :where(.hero, .section.dark, .rfq, .quote-panel, .catalog-finder) :where(.btn.alt, .button.alt) {
  border-color: rgba(255, 255, 255, .34);
  background: transparent;
  color: var(--white);
}

body :where(.btn.whatsapp, .button.whatsapp) {
  border-color: #187a46;
  background: #187a46;
  color: var(--white);
}

body :where(.table-scroll, .spec-wrap) {
  overflow-x: auto;
  border-color: var(--border);
  border-radius: var(--gsp-radius);
  background: var(--white);
}

body :where(.table, .decision-table, .spec-table) {
  border-color: var(--border);
}

body :where(.table, .decision-table, .spec-table) caption {
  background: var(--cream);
  color: var(--dark);
}

body :where(.table, .decision-table, .spec-table) th {
  background: var(--dark);
  color: var(--gold-light);
}

/* The same closing structure now appears on every inner page. */
body > .gsp-site-footer {
  margin-top: 0;
  border-top: 1px solid #302f2a;
  background: #171713;
  color: #aaa79f;
}

.gsp-footer-inner {
  display: grid;
  width: min(var(--gsp-shell-width), calc(100% - 48px));
  grid-template-columns: minmax(260px, 1.25fr) minmax(240px, 1fr) minmax(220px, .8fr);
  gap: 48px;
  margin-inline: auto;
  padding-block: 42px 34px;
}

.gsp-footer-brand .gsp-brand {
  margin-bottom: 13px;
}

.gsp-footer-brand .gsp-brand-copy strong {
  color: var(--white);
}

.gsp-footer-brand .gsp-brand-copy small {
  color: var(--gold);
}

.gsp-footer-brand p {
  max-width: 390px;
  margin: 0;
  color: #918e87;
  font-size: 12px;
  line-height: 1.7;
}

.gsp-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 10px 22px;
}

.gsp-footer-nav a,
.gsp-footer-contact a {
  color: #bbb7ae;
  font-size: 12px;
  text-decoration: none;
}

.gsp-footer-nav a:hover,
.gsp-footer-contact a:hover {
  color: var(--gold-light);
}

.gsp-footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
  color: #918e87;
  font-size: 12px;
}

.gsp-footer-contact strong {
  margin-bottom: 3px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.gsp-footer-bottom {
  display: flex;
  width: min(var(--gsp-shell-width), calc(100% - 48px));
  justify-content: space-between;
  gap: 20px;
  margin-inline: auto;
  border-top: 1px solid #2c2b27;
  color: #77746e;
  font-size: 11px;
  padding-block: 16px 20px;
}

/* Homepage keeps its richer navigation, while sharing the same brand details. */
body > header:not(.gsp-site-header) .logo-text .brand {
  color: var(--gsp-blue);
}

body > header:not(.gsp-site-header) .logo-text .sub {
  color: #80642d;
}

.gsp-inquiry-action,
.gsp-inquiry-close {
  font-family: "DM Sans", "Avenir Next", Avenir, sans-serif;
}

@media (max-width: 900px) {
  .gsp-header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 14px;
    padding-block: 11px 10px;
  }

  .gsp-primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .gsp-primary-nav a {
    min-height: 38px;
    padding: 7px 10px;
  }

  .gsp-header-cta {
    grid-column: 2;
    grid-row: 1;
  }

  .gsp-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .gsp-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .gsp-header-inner,
  .gsp-breadcrumbs-inner,
  .gsp-footer-inner,
  .gsp-footer-bottom {
    width: min(100% - 28px, var(--gsp-shell-width));
  }

  .gsp-brand img {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .gsp-brand-copy strong {
    font-size: 15px;
  }

  .gsp-primary-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    overflow: visible;
    padding-bottom: 0;
  }

  .gsp-primary-nav a {
    min-height: 36px;
    justify-content: center;
    font-size: 11px;
    line-height: 1.15;
    padding-inline: 3px;
    text-align: center;
    white-space: normal;
  }

  .gsp-header-cta {
    min-height: 40px;
    padding-inline: 13px;
  }

  .gsp-cta-long {
    display: none;
  }

  .gsp-cta-short {
    display: inline;
  }

  .gsp-breadcrumbs-inner {
    min-height: 40px;
  }

  body table.table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .gsp-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 34px 28px;
  }

  .gsp-footer-brand {
    grid-column: auto;
  }

  .gsp-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media print {
  body > .gsp-site-header,
  body > .gsp-site-footer {
    position: static;
    box-shadow: none;
  }
}
