/*
Theme Name: The Print Smith
Theme URI: https://theprintsmith.ca
Author: The Print Smith
Author URI: https://theprintsmith.ca
Description: Custom WordPress theme for The Print Smith — screen printing, DTF transfers, and hard-surface prints. Camrose, Alberta.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: printsmith
*/

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:      #0A0A09;
  --black-2:    #111110;
  --black-3:    #1A1A18;
  --black-4:    #242420;
  --gold:       #C9A84C;
  --gold-light: #E2C47A;
  --gold-dark:  #9A7A2E;
  --gold-muted: rgba(201,168,76,0.18);
  --white:      #FFFFFF;
  --off-white:  #F4F1E8;
  --muted:      #7A7870;
  --border-dark: rgba(201,168,76,0.14);
  --border-light: rgba(201,168,76,0.22);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --max-width: 1400px;
  --section-pad: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
}

html { scroll-behavior: smooth; }

/* Force dark background — prevents WordPress/theme defaults from bleeding through */
html,
body {
  background: var(--black) !important;
  background-color: var(--black) !important;
  color: var(--white) !important;
}

body {
  font-family: var(--font-body);
  background: var(--black) !important;
  color: var(--white);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

/* Kill WordPress admin bar color interference */
#wpadminbar { background: #1a1a18 !important; }

/* Override any inherited/default link colors */
a { color: inherit; text-decoration: none; }

/* Override default WordPress heading/body colors that may bleed in */
h1, h2, h3, h4, h5, h6, p, span, li, div { color: inherit; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  line-height: 1;
}

p { line-height: 1.7; }

.display-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 0.75rem;
  display: block;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 1px;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-dark {
  background: var(--black-3);
  color: var(--white);
  border: 1px solid var(--border-light);
}
.btn-dark:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 2px;
  display: inline-block;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

/* =============================================
   LAYOUT HELPERS
   ============================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.section { padding: var(--section-pad); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
}

/* =============================================
   GOLD RULE DIVIDER
   ============================================= */
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--black) !important;
  border-bottom: 1px solid var(--border-dark);
  transition: box-shadow 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.5rem, 4vw, 3rem);
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 52px;
  width: auto;
}

/* Fallback text logo if no image */
.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--white);
}
.site-logo-text span { color: var(--gold); }

.primary-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.primary-menu a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s;
}
.primary-menu a:hover,
.primary-menu .current-menu-item > a { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 1px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  border-bottom: 1px solid var(--border-dark);
}

.hero-left {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
  background: var(--black) !important;
}

/* subtle halftone dot texture top-right */
.hero-left::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background-image: radial-gradient(circle, rgba(201,168,76,0.18) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  color: var(--white) !important;
}
.hero-title em {
  font-style: normal;
  color: var(--gold) !important;
  display: block;
}

.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Right panel — dark surface */
.hero-right {
  background: var(--black-3) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem clamp(1.5rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}

/* large ghost text behind */
.hero-right::before {
  content: 'SMITH';
  font-family: var(--font-display);
  font-size: 14rem;
  line-height: 1;
  color: rgba(201,168,76,0.04);
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: var(--black-4);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: background 0.2s;
}
.stat-card:hover { background: #2a2a26; }

.stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.03em;
}
.stat-number span { color: var(--gold); }

.stat-label {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-top: 0.4rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold-muted);
  border: 1px solid var(--border-light);
  padding: 0.85rem 1.25rem;
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 1;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.badge-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}
.badge-text strong { color: var(--gold); font-weight: 500; }

/* =============================================
   CLIENTS BAR
   ============================================= */
.clients-bar {
  border-bottom: 1px solid var(--border-dark);
  padding: 1.35rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.clients-label {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.clients-divider {
  width: 1px;
  height: 18px;
  background: var(--border-dark);
  flex-shrink: 0;
}

.clients-list {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.client-item {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  opacity: 0.5;
  transition: opacity 0.2s;
}
.client-item:hover { opacity: 0.85; }

/* =============================================
   SERVICES
   ============================================= */
.services-section { padding: var(--section-pad); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
}

.service-card {
  background: var(--black-2) !important;
  padding: 2.5rem 2rem;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.service-card:hover { background: var(--black-3) !important; }
.service-card:hover::after { width: 100%; }

.service-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
  color: var(--white);
  opacity: 0.6;
}

.service-name {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.service-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

/* =============================================
   BRAND / SECTOR 51 SECTION
   ============================================= */
.brand-section {
  background: var(--black-3);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: var(--section-pad);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

/* halftone dots deco */
.brand-section::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(circle, rgba(201,168,76,0.12) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
}

.brand-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.brand-desc {
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 3px;
  transition: border-color 0.2s;
}
.brand-link:hover { border-color: var(--gold); }

.brand-features {
  display: flex;
  flex-direction: column;
  gap: 1px;
  position: relative;
  z-index: 1;
}

.brand-feature {
  background: rgba(201,168,76,0.04);
  border: 1px solid var(--border-dark);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1px;
  transition: background 0.2s, border-color 0.2s;
}
.brand-feature:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--border-light);
}

.brand-feature-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold);
  flex-shrink: 0;
  width: 2rem;
}

.brand-feature-title {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.brand-feature-body {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
}

/* =============================================
   PROCESS
   ============================================= */
.process-section { padding: var(--section-pad); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
}

.process-step {
  background: var(--black-2);
  padding: 2rem 1.75rem;
  position: relative;
  transition: background 0.2s;
}
.process-step:hover { background: var(--black-3); }

.process-step::after {
  content: '→';
  position: absolute;
  right: -0.55rem;
  top: 2rem;
  font-size: 0.8rem;
  color: var(--gold);
  opacity: 0.35;
  z-index: 1;
}
.process-step:last-child::after { display: none; }

.process-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(201,168,76,0.07);
  margin-bottom: 0.75rem;
}

.process-title {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process-body {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-section {
  background: var(--black-3);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  position: relative;
  overflow: hidden;
}

/* Gold glow behind title */
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.cta-title span { color: var(--gold); }

.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  max-width: 500px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem clamp(1.5rem, 4vw, 3rem);
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-logo img { height: 44px; width: auto; }

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
.footer-logo-text span { color: var(--gold); }

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.65;
  max-width: 240px;
  margin-top: 0.75rem;
}

.footer-col-title {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 1rem;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-menu a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-menu a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 1.1rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-copy { font-size: 0.74rem; color: rgba(255,255,255,0.18); }

.footer-location {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.loc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  border-bottom: 1px solid var(--border-dark);
}

.contact-info {
  padding: var(--section-pad);
  border-right: 1px solid var(--border-dark);
}

.contact-info h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 1.5rem;
  color: var(--white);
}

.contact-info > p {
  color: var(--muted);
  max-width: 380px;
  line-height: 1.75;
}

.contact-detail {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item-label {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.contact-item-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}

.contact-form-wrap {
  padding: var(--section-pad);
  background: var(--black-3);
}

.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--white);
}

/* Form fields */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-dark);
  border-radius: 1px;
  background: var(--black-4);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option { background: var(--black-4); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about-hero p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 420px; }
  .hero-left { border-right: none; border-bottom: 1px solid var(--border-dark); }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .brand-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2)::after { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-info { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .about-hero { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .primary-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black-2);
    border-bottom: 1px solid var(--border-dark);
    padding: 1rem 0;
    z-index: 100;
  }
  .primary-menu.open { display: flex; }
  .primary-menu a { padding: 0.75rem clamp(1.5rem, 4vw, 3rem); }
  .nav-toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { max-width: 100%; }
}

/* =============================================
   WORDPRESS OVERRIDE BLOCK
   Prevents default WP/Gutenberg styles bleeding in
   ============================================= */
.wp-site-blocks,
.wp-block-group,
.entry-content,
.wp-block-post-content {
  background: transparent !important;
  color: var(--white) !important;
}

/* Force ALL sections to use dark palette */
.services-section,
.process-section,
.clients-bar,
.cta-section,
.contact-section,
.about-hero { background: var(--black) !important; }

.brand-section,
.contact-form-wrap,
.hero-right { background: var(--black-3) !important; }

/* Ensure gold is always gold, never red */
.display-tag,
.service-num,
.process-num,
.brand-feature-num,
.stat-number span,
.badge-text strong,
.brand-link,
.hero-title em { color: var(--gold) !important; }

/* Nav never shows a light background */
.site-header,
.primary-menu,
.primary-menu.open { background: var(--black) !important; }

/* Footer always black */
.site-footer,
.footer-bottom { background: var(--black) !important; }
