/*
Theme Name:  PMP Corporate V11
Theme URI:   https://pmplating.com
Author:      PMP
Description: Precious Metals Plating Co. - Corporate website theme
Version:     11.0.0
Text Domain: pmp-corporate
*/

/* ══════════════════════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════════════════════ */
:root {
  --black:       #0d0e0f;
  --charcoal:    #1c1d1f;
  --charcoal2:   #252628;
  --white:       #ffffff;
  --smoke:       #f5f5f4;
  --border:      #e4e4e2;
  --muted:       #767674;
  --soft:        #4a4a48;
  --accent:      #b8860b;   /* dark goldenrod */
  --accent-lt:   #d4a017;

  --font-sans:   'Inter', system-ui, sans-serif;
  --font-serif:  'Fraunces', Georgia, serif;

  --cert-bar-h:  44px;
  --nav-h:       112px; /* cert-bar + site-nav */
  --max:         1320px;
  --gutter:      clamp(24px, 6vw, 96px);
  --section-v:   clamp(64px, 8vw, 120px);
}

/* ══ Reset ══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); background: var(--white); color: var(--charcoal); line-height: 1.6; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ══ Typography imports ══ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300&display=swap');

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
/* Certification bar */
.cert-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  height: var(--cert-bar-h);
  background: rgba(13,14,15,0.98);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
}
.cert-bar-logo {
  height: 28px; width: auto; object-fit: contain;
  opacity: 0.85; transition: opacity 0.15s;
}
.cert-bar-logo:hover { opacity: 1; }

.site-nav {
  position: fixed; top: var(--cert-bar-h); left: 0; right: 0; z-index: 100;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  background: rgba(28,29,31,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.nav-logo {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600;
  color: var(--white); letter-spacing: -0.01em; flex-shrink: 0;
}
.nav-logo-wrapper {
  display: flex; align-items: center; gap: 12px;
  flex: 1;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.nav-logo span { color: var(--accent-lt); }
.nav-links {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  list-style: none; padding: 0;
  flex: 1;
}
.nav-links > li {
  position: relative;
}
.nav-links a {
  display: block; padding: 8px 14px; font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.65); border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-cta {
  background: var(--accent); color: var(--white) !important;
  padding: 9px 18px !important; border-radius: 4px !important;
  font-size: 0.8rem !important; font-weight: 600 !important;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--accent-lt) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; }
.nav-actions {
  display: flex; align-items: center; gap: 16px;
  flex: 1;
  justify-content: flex-end;
}
.nav-phone {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.nav-phone:hover {
  color: var(--white);
}
.nav-quote-btn {
  background: var(--accent);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background 0.15s;
}
.nav-quote-btn:hover {
  background: var(--accent-lt);
}

/* Dropdown Submenu */
.nav-links .sub-menu {
  position: absolute; top: 100%; left: 0;
  min-width: 200px;
  background: rgba(28,29,31,0.98);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  padding: 4px 0;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  list-style: none;
  z-index: 1000;
}
.nav-links li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links .sub-menu li {
  display: block;
}
.nav-links .sub-menu a {
  padding: 10px 16px;
  font-size: 0.8rem;
  border-radius: 0;
}
.nav-links .sub-menu a:hover {
  background: rgba(255,255,255,0.1);
}

/* ══════════════════════════════════════════════════════════════
   HOMEPAGE HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; width: 100%; min-height: 100svh;
  overflow: hidden; display: flex; align-items: center;
  padding-top: var(--nav-h);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(25%) brightness(0.55) contrast(1.12);
  transform: scale(1.06);
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1.0); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(13,14,15,0.75) 0%, rgba(13,14,15,0.35) 55%, rgba(13,14,15,0.1) 100%),
    linear-gradient(to top, rgba(13,14,15,0.5) 0%, transparent 45%);
}
.hero-body {
  position: relative; z-index: 2;
  padding: 0 var(--gutter) 130px;
  max-width: 780px;
  animation: fadeUp 1s 0.15s ease both;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 32px;
}
.hero-eyebrow-rule { width: 40px; height: 1px; background: rgba(255,255,255,0.35); flex-shrink: 0; }
.hero-eyebrow-text {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 300; color: var(--white);
  line-height: 1.02; letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero-title strong { font-weight: 700; display: block; }
.hero-desc {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  line-height: 1.85; max-width: 500px; margin-bottom: 44px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Shared button styles */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  font-size: 0.82rem; font-weight: 600; padding: 13px 26px;
  border-radius: 3px; transition: background 0.15s, transform 0.15s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--accent-lt); transform: translateY(-1px); }
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 0.82rem; font-weight: 500; padding: 13px 26px;
  border-radius: 3px; transition: color 0.15s, border-color 0.15s;
}
.btn-ghost-white:hover { color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-ghost-dark {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--charcoal);
  border: 1px solid rgba(28,29,31,0.3);
  font-size: 0.82rem; font-weight: 500; padding: 12px 24px;
  border-radius: 3px; transition: background 0.15s;
}
.btn-ghost-dark:hover { background: var(--smoke); }

.hero-statsbar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 1s 0.5s ease both;
}
.hero-stat {
  padding: 20px 0 20px var(--gutter);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-val {
  font-family: var(--font-serif); font-size: 1.9rem;
  font-weight: 700; color: var(--white); line-height: 1;
}
.hero-stat-lbl { font-size: 0.7rem; color: rgba(255,255,255,1); margin-top: 5px; }

/* ══════════════════════════════════════════════════════════════
   SHARED PAGE ELEMENTS
══════════════════════════════════════════════════════════════ */

/* Page hero (inner pages) */
.page-hero {
  background: var(--charcoal); padding-top: var(--nav-h);
  padding-bottom: 0;
}
.page-hero-inner {
  padding: 56px var(--gutter) 0;
  display: grid; grid-template-columns: 1fr 340px;
  gap: 60px; align-items: end; max-width: var(--max); margin: 0 auto;
}
.page-breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
}
.page-breadcrumb a { transition: color 0.15s; }
.page-breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.page-breadcrumb-sep { opacity: 0.35; }
.page-eyebrow {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-lt); margin-bottom: 12px;
}
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 300; color: var(--white); line-height: 1.08; letter-spacing: -0.02em;
}
.page-title strong { font-weight: 700; }
.page-desc { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.85; margin-top: 16px; }
.page-hero-tags { display: flex; flex-direction: column; gap: 8px; padding-bottom: 8px; }
.page-hero-tag {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.76rem; color: rgba(255,255,255,1);
}
.tag-dot { width: 5px; height: 5px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }

/* Section label + title pattern */
.sec-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.9rem);
  font-weight: 300; color: var(--charcoal); line-height: 1.1; letter-spacing: -0.02em;
}
.sec-title strong { font-weight: 700; }
.sec-title--white { color: var(--white); }

/* Section wrapper */
.section { padding: var(--section-v) var(--gutter); max-width: var(--max); margin: 0 auto; }
.section-outer { padding: var(--section-v) 0; }
.section-outer--smoke { background: var(--smoke); }
.section-outer--dark { background: var(--charcoal); }

/* Section head (label + title left, desc/link right) */
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: 48px; flex-wrap: wrap;
}
.section-head-link { font-size: 0.8rem; font-weight: 600; color: var(--accent); transition: opacity 0.15s; white-space: nowrap; }
.section-head-link:hover { opacity: 0.7; }

/* CTA Band */
.cta-band {
  background: var(--charcoal); padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px; align-items: center;
  max-width: var(--max); margin: 0 auto;
}
.cta-band-eyebrow { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.cta-band-title { font-family: var(--font-serif); font-size: clamp(1.8rem,3vw,3.2rem); font-weight: 300; color: var(--white); line-height: 1.08; letter-spacing: -0.02em; }
.cta-band-title strong { font-weight: 700; }
.cta-band-desc { font-size: 0.88rem; color: rgba(255,255,255,1); margin-top: 14px; max-width: 420px; line-height: 1.85; }
.cta-band-btns { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; min-width: 200px; }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ══════════════════════════════════════════════════════════════
   FINISH TABS (nav between finishes)
══════════════════════════════════════════════════════════════ */
.finish-tabs {
  display: flex; gap: 0; overflow-x: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  scrollbar-width: none;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
}
.finish-tabs::-webkit-scrollbar { display: none; }
.finish-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 20px; font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,1); white-space: nowrap;
  border-bottom: 2px solid transparent; transition: color 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.finish-tab:hover { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.2); }
.finish-tab.active { color: var(--white); border-color: var(--accent-lt); }
.finish-tab-sym { font-family: var(--font-serif); font-weight: 700; font-size: 0.95rem; color: var(--accent-lt); }

/* ══════════════════════════════════════════════════════════════
   INDIVIDUAL FINISH PAGE
══════════════════════════════════════════════════════════════ */
.finish-intro {
  max-width: 900px;
  margin: 0 auto 64px;
}
.finish-intro p {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.9;
  margin-bottom: 20px;
}
.finish-intro h3 {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--white);
  margin: 40px 0 20px;
}
.finish-intro h3 strong {
  font-weight: 700;
}

.finish-section-title {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 32px;
  text-align: center;
}
.finish-section-title strong {
  font-weight: 700;
}

/* Specifications Grid */
.finish-specs-section {
  margin-bottom: 80px;
}
.finish-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.finish-spec-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.finish-spec-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  border-color: rgba(184,134,11,0.4);
}
.spec-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-lt);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.spec-card-value {
  font-size: 0.88rem;
  color: var(--white);
  line-height: 1.7;
}

/* Properties Grid */
.finish-props-section {
  margin-bottom: 80px;
}
.finish-props-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.finish-prop-card-new {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.finish-prop-card-new:hover {
  transform: translateY(-2px);
  border-color: rgba(184,134,11,0.4);
}
.prop-card-key {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 10px;
}
.prop-card-val {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

/* Applications List */
.finish-apps-section {
  margin-bottom: 80px;
}
.finish-apps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
}
.finish-app-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,134,11,0.1);
  border: 1px solid rgba(184,134,11,0.3);
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}
.finish-app-item:hover {
  background: rgba(184,134,11,0.15);
  border-color: rgba(184,134,11,0.5);
}
.app-icon {
  font-size: 1.1rem;
}

/* Navigation */
.finish-nav {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.finish-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-lt);
  transition: color 0.15s;
}
.finish-back-link:hover {
  color: var(--white);
}

/* Keep old sidebar styles for backward compatibility */
.finish-layout {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 0; border-top: 1px solid var(--border);
  max-width: var(--max); margin: 0 auto;
}
.finish-sidebar {
  background: var(--charcoal); padding: 48px 36px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: sticky; top: var(--nav-h); align-self: start;
  height: fit-content;
}
.finish-sym {
  font-family: var(--font-serif); font-size: 4rem; font-weight: 700;
  color: var(--accent-lt); line-height: 1; margin-bottom: 4px;
}
.finish-element { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-bottom: 16px; letter-spacing: 0.06em; }
.finish-name-sb { font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.finish-aka { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-bottom: 32px; }
.finish-specs-list { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; margin-bottom: 32px; }
.finish-spec-row { display: flex; flex-direction: column; gap: 2px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.finish-spec-key { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,1); }
.finish-spec-val { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.finish-sb-cta {
  display: block; width: 100%; text-align: center;
  background: var(--accent); color: var(--white);
  font-size: 0.78rem; font-weight: 600; padding: 11px 16px; border-radius: 3px;
  transition: background 0.15s;
}
.finish-sb-cta:hover { background: var(--accent-lt); }

.finish-content { padding: 56px var(--gutter) var(--section-v); }
.finish-content-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.finish-content-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem,3vw,3rem); font-weight: 300;
  color: var(--white); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 28px;
}
.finish-content-title strong { font-weight: 700; }
.finish-body-text { font-size: 0.92rem; color: var(--white); line-height: 1.9; margin-bottom: 20px; max-width: 720px; }

.finish-props { margin-top: 44px; }
.finish-props-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.finish-props-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.finish-prop-card {
  background: var(--smoke); border: 1px solid var(--border);
  border-radius: 5px; padding: 16px 18px;
}
.finish-prop-key { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 6px; }
.finish-prop-val { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); }

.finish-apps { margin-top: 40px; }
.finish-apps-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.finish-apps-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.finish-app-chip {
  display: flex; align-items: center; gap: 7px;
  background: var(--smoke); border: 1px solid var(--border);
  border-radius: 100px; padding: 7px 14px;
  font-size: 0.78rem; color: var(--charcoal); font-weight: 500;
  transition: background 0.15s, border-color 0.15s;
}
.finish-app-chip:hover { background: var(--border); border-color: var(--charcoal); }
.finish-app-icon { font-size: 0.9rem; }

.finish-pagination {
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.finish-pag-btn {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 20px; border: 1px solid var(--border); border-radius: 4px;
  transition: background 0.15s; min-width: 160px;
}
.finish-pag-btn:hover { background: var(--smoke); }
.finish-pag-btn--next { text-align: right; }
.pag-dir { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); }
.pag-name { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); }
.finish-pag-all {
  font-size: 0.78rem; font-weight: 600; color: var(--accent);
  padding: 10px 16px; border: 1px solid var(--border); border-radius: 3px;
  transition: background 0.15s;
}
.finish-pag-all:hover { background: var(--smoke); }

/* ══════════════════════════════════════════════════════════════
   METAL FINISHES OVERVIEW PAGE
══════════════════════════════════════════════════════════════ */
.finishes-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
}
.finish-card {
  display: flex; flex-direction: column;
  padding: 32px 24px; border-right: 1px solid var(--border);
  background: var(--white); position: relative; transition: background 0.15s;
  text-decoration: none;
}
.finish-card:last-child { border-right: none; }
.finish-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.finish-card:hover { background: var(--smoke); }
.finish-card:hover::after { transform: scaleX(1); }
.fc-sym { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: var(--charcoal); line-height: 1; margin-bottom: 6px; }
.fc-name { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.fc-spec { font-size: 0.67rem; font-weight: 500; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 14px; }
.fc-desc { font-size: 0.8rem; color: var(--soft); line-height: 1.7; flex: 1; }
.fc-link { margin-top: 18px; font-size: 0.74rem; font-weight: 600; color: var(--accent); }

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════════ */
.about-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 4px; width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--charcoal); color: var(--white);
  padding: 18px 24px; border-radius: 4px; min-width: 220px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.badge-title { font-size: 0.82rem; font-weight: 700; margin-bottom: 4px; }
.badge-sub { font-size: 0.7rem; color: rgba(255,255,255,1); }

.about-points { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.about-point { display: grid; grid-template-columns: 36px 1fr; gap: 16px; }
.about-point-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--charcoal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 0.9rem; font-weight: 700; flex-shrink: 0;
}
.about-point-title { font-size: 0.88rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.about-point-desc { font-size: 0.82rem; color: var(--white); line-height: 1.75; }

/* ══════════════════════════════════════════════════════════════
   QUALITY PAGE
══════════════════════════════════════════════════════════════ */
.quality-steps { display: flex; flex-direction: column; gap: 0; }
.quality-step {
  display: grid; grid-template-columns: 56px 1fr; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--border); align-items: start;
}
.quality-step:last-child { border-bottom: none; }
.qs-num {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--charcoal);
  flex-shrink: 0; margin-top: 2px;
}
.qs-title { font-size: 0.92rem; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.qs-desc { font-size: 0.84rem; color: var(--soft); line-height: 1.8; }

.specs-table {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
  font-size: 0.84rem;
}
.specs-table th {
  background: var(--charcoal); color: rgba(255,255,255,0.8);
  font-size: 0.67rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 18px; text-align: left;
}
.specs-table td { padding: 12px 18px; border-bottom: 1px solid var(--border); color: var(--charcoal); }
.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:nth-child(even) td { background: var(--smoke); }

/* ══════════════════════════════════════════════════════════════
   CONTACT / QUOTE PAGES
══════════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start;
}
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--charcoal); margin-bottom: 7px; letter-spacing: 0.02em; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 11px 14px; font-size: 0.88rem; font-family: var(--font-sans);
  border: 1.5px solid var(--border); border-radius: 4px; background: var(--white);
  color: var(--charcoal); outline: none; transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--charcoal); box-shadow: 0 0 0 3px rgba(28,29,31,0.06);
}
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.7; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  background: var(--charcoal); color: var(--white);
  font-size: 0.84rem; font-weight: 600; padding: 13px 28px;
  border-radius: 3px; transition: background 0.15s; width: 100%; text-align: center; cursor: pointer;
}
.form-submit:hover { background: var(--black); }

.contact-info-block { background: var(--smoke); border: 1px solid var(--border); border-radius: 6px; padding: 32px; }
.contact-info-label { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.contact-info-item { display: flex; flex-direction: column; gap: 3px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-key { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); }
.contact-info-val { font-size: 0.88rem; color: var(--charcoal); font-weight: 500; }

/* ══════════════════════════════════════════════════════════════
   EMPLOYMENT PAGE
══════════════════════════════════════════════════════════════ */
.jobs-list { display: flex; flex-direction: column; gap: 12px; }
.job-row {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 5px; padding: 22px 28px; gap: 20px;
  transition: box-shadow 0.15s;
}
.job-row:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.job-title { font-size: 0.92rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.job-meta { font-size: 0.76rem; color: var(--soft); }
.job-type { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; background: var(--accent); padding: 5px 12px; border-radius: 100px; color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--black); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px var(--gutter) 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; max-width: var(--max); margin: 0 auto 48px;
}
.footer-logo { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.footer-logo span { color: var(--accent-lt); }
.footer-desc { font-size: 0.78rem; color: rgba(255,255,255,1); line-height: 1.8; max-width: 260px; }
.footer-col-head { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,1); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,1); transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  max-width: var(--max); margin: 0 auto;
  font-size: 0.72rem; color: rgba(255,255,255,1);
}
.footer-nadcap {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.7rem; color: rgba(255,255,255,1);
}
.footer-nadcap-dot { width: 5px; height: 5px; border-radius: 50%; background: #4ade80; }

/* ══════════════════════════════════════════════════════════════
   MARKETS SERVED
══════════════════════════════════════════════════════════════ */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.market-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.market-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.market-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1;
}
.market-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.market-desc {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.75;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   GENERIC PAGE (page.php)
══════════════════════════════════════════════════════════════ */
.gp-outer { max-width: var(--max); margin: 0 auto; padding: var(--section-v) var(--gutter); }
.gp-content h2 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--charcoal); margin: 40px 0 14px; }
.gp-content h3 { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin: 28px 0 10px; }
.gp-content p  { font-size: 0.92rem; color: var(--white); line-height: 1.9; margin-bottom: 18px; max-width: 720px; }
.gp-content ul, .gp-content ol { font-size: 0.9rem; color: var(--white); line-height: 1.8; margin: 0 0 18px 22px; }
.gp-content li { margin-bottom: 5px; }
.gp-content a  { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.gp-content blockquote { border-left: 3px solid var(--border); padding: 14px 22px; margin: 24px 0; background: var(--smoke); font-style: italic; color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   FINISH BODY DETAIL (finish_body ACF field content)
══════════════════════════════════════════════════════════════ */
.fbd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.fbd-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.fbd-grid p {
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 20px;
}
.fbd-grid p.fbd-note {
  font-size: 0.84rem;
  color: var(--soft);
  line-height: 1.8;
  margin-bottom: 16px;
}
.fbd-features { margin-bottom: 0; }
.fbd-feature {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.fbd-feature:last-child { margin-bottom: 0; }
.fbd-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(184,134,11,0.12);
  color: var(--accent-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.fbd-feature-title { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); }
.fbd-feature-desc  { font-size: 0.78rem; color: var(--soft); }

.fbd-warning {
  background: rgba(184,134,11,0.08);
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.fbd-warning-head {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.fbd-warning ul { list-style: none; padding: 0; margin: 0; }
.fbd-warning li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(184,134,11,0.12);
  color: var(--charcoal);
  font-size: 0.82rem;
  line-height: 1.6;
}
.fbd-warning li:last-child { border-bottom: none; }

.fbd-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.fbd-chip {
  background: rgba(184,134,11,0.12);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.fbd-spec-card {
  background: var(--smoke);
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 8px;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
}
.fbd-spec-card:last-child { margin-bottom: 0; }
.fbd-spec-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.fbd-spec-sub {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.fbd-spec-detail {
  font-size: 0.75rem;
  color: var(--soft);
  line-height: 1.75;
}
.fbd-spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}
.fbd-spec-tag {
  font-size: 0.72rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 2px 8px;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .finishes-grid { grid-template-columns: repeat(3,1fr); }
  .finish-card:nth-child(3) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 1024px) {
  .finish-layout { grid-template-columns: 240px 1fr; }
  .finish-props-grid { grid-template-columns: repeat(2,1fr); }
  .about-two-col { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 520px; }
  .contact-layout { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .hero-statsbar { grid-template-columns: repeat(2,1fr); }
  .page-hero-inner { grid-template-columns: 1fr; }
  .finish-layout { grid-template-columns: 1fr; }
  .finish-sidebar { position: static; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }
  .fbd-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 680px) {
  .finishes-grid { grid-template-columns: repeat(2,1fr); }
  .finish-card { border-bottom: 1px solid var(--border); }
  .finish-card:nth-child(even) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .markets-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .finishes-grid { grid-template-columns: 1fr; }
  .finish-card { border-right: none; }
  .hero-btns { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .finish-props-grid { grid-template-columns: repeat(2,1fr); }
  .finish-pagination { flex-direction: column; }
}

/* ── WordPress nav menu compatibility ── */
.nav-links { list-style: none; margin: 0; padding: 0; }
.nav-links li { display: inline-flex; }
.nav-links li a { display: block; padding: 8px 14px; font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.65); border-radius: 4px; transition: color 0.15s, background 0.15s; letter-spacing: 0.01em; }
.nav-links li a:hover,
.nav-links li.current-menu-item a,
.nav-links li.current_page_item a { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links li.menu-item-cta a { background: var(--accent) !important; color: var(--white) !important; padding: 9px 18px !important; border-radius: 4px !important; font-size: 0.8rem !important; font-weight: 600 !important; }
.nav-links li.menu-item-cta a:hover { background: var(--accent-lt) !important; }
