/* ============================================================
   TC West Theme - Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700&family=Barlow:wght@300;400;500&display=swap');

:root {
  --navy:       #0d1b2a;
  --navy-mid:   #162033;
  --red:        #c8102e;
  --red-dark:   #a10d25;
  --gold:       #d4a017;
  --gold-light: #f0c040;
  --offwhite:   #f4f1eb;
  --light-gray: #e8e4dc;
  --mid-gray:   #9a9590;
  --text-dark:  #1a1a1a;
  --text-body:  #3a3530;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text-body);
  background: var(--offwhite);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--navy);
  color: var(--offwhite);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 7px 0;
  border-bottom: 2px solid var(--red);
}
@media (max-width: 900px) {
  .top-bar { display: none; }
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: var(--gold-light); }
.top-bar a:hover { text-decoration: underline; }
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar span { display: flex; align-items: center; gap: 6px; }

/* ============ HEADER / NAV ============ */
#site-header {
  background: var(--navy-mid);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 20px rgba(0,0,0,0.4);
  transition: box-shadow 0.3s;
}
#site-header.scrolled { box-shadow: 0 3px 30px rgba(0,0,0,0.55); }
@media (max-width: 900px) {
  #site-header { top: 0; }
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
}
.site-branding { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.site-branding .logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--offwhite);
  letter-spacing: 0.06em;
  line-height: 1;
}
.site-branding .logo-main span { color: var(--red); }
.site-branding .logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Primary nav */
#primary-navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
#primary-navigation ul li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--offwhite);
  padding: 8px 12px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  display: block;
}
#primary-navigation ul li a:hover,
#primary-navigation ul li.current-menu-item > a,
#primary-navigation ul li.current_page_item > a { background: var(--red); color: #fff; }

#primary-navigation ul li.menu-cta > a {
  background: var(--red);
  color: #fff;
  padding: 8px 16px;
  font-weight: 700;
}
#primary-navigation ul li.menu-cta > a:hover { background: var(--red-dark); }

/* Dropdown */
#primary-navigation ul li { position: relative; }
#primary-navigation ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy);
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  flex-direction: column;
  z-index: 100;
}
#primary-navigation ul li:hover > ul,
#primary-navigation ul li:focus-within > ul { display: flex; }
#primary-navigation ul li ul li a {
  padding: 10px 16px;
  font-size: 0.82rem;
  border-radius: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

/* Admin bar offset */
.admin-bar #site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar #site-header { top: 46px; } }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(200,16,46,0.04) 60px, rgba(200,16,46,0.04) 61px),
    linear-gradient(160deg, #0d1b2a 0%, #1a2a40 40%, #0d1b2a 100%);
}
.hero-bg.has-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg.has-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.78);
}
.hero-accent {
  position: absolute; right: -80px; top: -60px; width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(200,16,46,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-accent2 {
  position: absolute; left: -120px; bottom: -100px; width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero-stripe {
  position: absolute; left: 0; bottom: 0; width: 100%; height: 6px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 50%, var(--red) 100%);
  z-index: 3;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.8rem, 8vw, 7rem);
  color: var(--offwhite);
  line-height: 0.92;
  letter-spacing: 0.04em;
}
.hero-text h1 .red { color: var(--red); }
.hero-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  font-weight: 600;
}
.hero-divider { width: 60px; height: 3px; background: var(--red); margin: 18px 0; }
.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,241,235,0.75);
  line-height: 1.55;
}
.hero-sub strong { color: var(--gold-light); font-weight: 600; }
.hero-buttons { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--red);
  padding: 18px 16px;
  border-radius: 3px;
  transition: background 0.2s, border-left-color 0.2s;
  text-decoration: none;
}
.hero-service-card:hover { background: rgba(255,255,255,0.07); border-left-color: var(--gold); }
.hero-service-card .icon { font-size: 1.6rem; margin-bottom: 8px; }
.hero-service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--offwhite);
}
.hero-service-card p { font-size: 0.78rem; color: rgba(244,241,235,0.5); margin-top: 4px; line-height: 1.4; }

/* ============ BUTTONS ============ */
.btn-primary, .wp-block-button__link, .wpcf7-submit {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  border: 2px solid var(--red);
  cursor: pointer;
}
.btn-primary:hover, .wpcf7-submit:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--offwhite) !important;
  padding: 14px 32px;
  border-radius: 2px;
  border: 2px solid rgba(244,241,235,0.4);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold) !important; transform: translateY(-1px); }

/* ============ SECTION SHARED ============ */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 8px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1; color: var(--navy); letter-spacing: 0.03em;
}
.section-title-light { color: var(--offwhite); }
.section-lead {
  font-size: 1.05rem; line-height: 1.75; color: var(--text-body); max-width: 680px; margin-top: 14px;
}
.section-divider { width: 50px; height: 3px; background: var(--red); margin: 16px 0; }

/* ============ WELCOME SECTION ============ */
.welcome-section { background: var(--offwhite); padding: 80px 0; }
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.welcome-visual {
  position: relative; background: var(--navy);
  border-radius: 4px; overflow: hidden; min-height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.welcome-visual-bg {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-30deg, transparent, transparent 30px, rgba(200,16,46,0.07) 30px, rgba(200,16,46,0.07) 31px),
    linear-gradient(135deg, var(--navy) 0%, #1e3050 100%);
}
.welcome-visual-content { position: relative; z-index: 2; padding: 40px; width: 100%; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.07); border-radius: 3px; overflow: hidden; }
.stat-item { background: rgba(13,27,42,0.8); padding: 28px 24px; text-align: center; }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--gold); line-height: 1; }
.stat-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,241,235,0.55); margin-top: 4px; }
.welcome-text .section-lead { max-width: none; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.service-tag {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--navy); color: var(--offwhite);
  padding: 6px 14px; border-radius: 2px; border-left: 3px solid var(--red);
}

/* ============ SERVICES SECTION ============ */
.services-section { background: var(--navy); padding: 80px 0; }
.services-header { text-align: center; margin-bottom: 50px; }
.services-header .section-lead { color: rgba(244,241,235,0.65); margin: 14px auto 0; text-align: center; }
.services-header .section-divider { margin: 16px auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card {
  background: rgba(255,255,255,0.03); padding: 40px 32px;
  text-align: center; border-top: 3px solid transparent;
  transition: background 0.25s, border-top-color 0.25s;
  text-decoration: none; display: block;
}
.service-card:hover { background: rgba(200,16,46,0.09); border-top-color: var(--red); }
.service-card .svc-icon { font-size: 2.6rem; margin-bottom: 16px; display: block; }
.service-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; color: var(--offwhite); letter-spacing: 0.06em; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: rgba(244,241,235,0.5); line-height: 1.65; }
.service-card .learn-more { display: inline-block; margin-top: 16px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.service-card .learn-more::after { content: ' \2192'; }

/* ============ WHY US BAND ============ */
.why-band { background: var(--red); padding: 50px 0; }
.why-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.why-item h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: #fff; letter-spacing: 0.06em; margin-bottom: 6px; }
.why-item p { font-size: 0.85rem; color: rgba(255,255,255,0.82); line-height: 1.55; }
.why-item .why-icon { font-size: 1.8rem; margin-bottom: 10px; }

/* ============ CUSTOMERS SECTION ============ */
.customers-section { background: var(--light-gray); padding: 80px 0; }
.customers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 46px; }
.customer-card { background: var(--offwhite); border: 1px solid #ddd8ce; padding: 28px 20px; text-align: center; border-radius: 3px; transition: box-shadow 0.2s, transform 0.2s; }
.customer-card:hover { box-shadow: 0 6px 24px rgba(13,27,42,0.1); transform: translateY(-3px); }
.customer-card .cust-icon { font-size: 2.2rem; margin-bottom: 10px; }
.customer-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); }

/* ============ QUOTE CTA ============ */
.quote-cta-section { background: var(--navy); padding: 90px 0; position: relative; overflow: hidden; }
.quote-cta-bg { position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.02) 80px, rgba(255,255,255,0.02) 81px); }
.quote-cta-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; padding: 0 24px; text-align: center; }
.quote-cta-inner h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 6vw, 4.5rem); color: var(--offwhite); letter-spacing: 0.05em; line-height: 1; }
.quote-cta-inner h2 span { color: var(--gold); }
.quote-cta-inner p { font-size: 1.05rem; color: rgba(244,241,235,0.65); margin: 16px auto 32px; max-width: 560px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ GALLERY PREVIEW ============ */
.gallery-section { background: var(--offwhite); padding: 80px 0; }
.gallery-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 220px 220px; gap: 10px; margin-top: 36px; }
.gallery-tile { border-radius: 3px; overflow: hidden; position: relative; background: var(--navy); display: flex; align-items: center; justify-content: center; }
.gallery-tile:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-tile:hover img { transform: scale(1.04); }
.gallery-tile-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.15; }
.gallery-tile-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(13,27,42,0.9)); padding: 30px 16px 14px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--offwhite); font-weight: 600; opacity: 0; transform: translateY(4px); transition: opacity 0.25s, transform 0.25s; }
.gallery-tile:hover .gallery-tile-label { opacity: 1; transform: translateY(0); }
.tile-c1 { background: linear-gradient(135deg, #1a2a3a 0%, #0d1b2a 100%); }
.tile-c2 { background: linear-gradient(135deg, #2a1020 0%, #1a0815 100%); }
.tile-c3 { background: linear-gradient(135deg, #1a2010 0%, #0d1508 100%); }
.tile-c4 { background: linear-gradient(135deg, #2a2010 0%, #1a1208 100%); }
.tile-c5 { background: linear-gradient(135deg, #1a1030 0%, #0d0820 100%); }
.gallery-cta { text-align: center; margin-top: 30px; }

/* ============ WHOLESALE SECTION ============ */
.wholesale-section { background: var(--light-gray); padding: 80px 0; }
.wholesale-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.wholesale-benefits { background: var(--navy); border-radius: 4px; padding: 40px 36px; }
.wholesale-benefits h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 600; }
.benefit-list { list-style: none; }
.benefit-list li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-family: 'Barlow Condensed', sans-serif; color: rgba(244,241,235,0.8); font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase; }
.benefit-list li:last-child { border-bottom: none; }
.benefit-list li::before { content: '\25C6'; color: var(--red); font-size: 0.7rem; flex-shrink: 0; }

/* ============ CONTACT / QUOTE FORM ============ */
.contact-page { padding: 80px 0; background: var(--offwhite); }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-list { margin-top: 30px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--light-gray); }
.contact-info-item:last-child { border-bottom: none; }
.ci-icon-wrap { width: 44px; height: 44px; background: var(--navy); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.ci-text strong { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); font-weight: 600; display: block; margin-bottom: 4px; }
.ci-text p, .ci-text a { font-size: 0.95rem; color: var(--text-body); line-height: 1.5; }
.ci-text a:hover { color: var(--red); }

/* CF7 / Generic Form Styles */
.contact-form-wrap { background: var(--navy); border-radius: 4px; padding: 40px; }
.contact-form-wrap h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--offwhite); letter-spacing: 0.05em; margin-bottom: 24px; }
.wpcf7-form p, .tcwest-form-group { margin-bottom: 18px; }
.wpcf7-form label, .tcwest-form label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,241,235,0.6); font-weight: 600; display: block; margin-bottom: 6px; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select,
.tcwest-form input,
.tcwest-form textarea,
.tcwest-form select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--offwhite);
  padding: 12px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  border-radius: 2px;
  transition: border-color 0.2s;
  outline: none;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.tcwest-form input:focus,
.tcwest-form textarea:focus { border-color: var(--gold); }
.wpcf7-form textarea, .tcwest-form textarea { min-height: 120px; resize: vertical; }

/* ============ PAGE HEADER / BANNER ============ */
.page-hero {
  background: var(--navy);
  padding: 70px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(200,16,46,0.05) 40px, rgba(200,16,46,0.05) 41px);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 6vw, 4.5rem); color: var(--offwhite); letter-spacing: 0.05em; line-height: 1; }
.page-hero p { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,241,235,0.6); margin-top: 10px; }
.page-hero-stripe { position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--red) 0%, var(--gold) 50%, var(--red) 100%); }

/* Breadcrumb */
.breadcrumb { background: var(--navy-mid); padding: 10px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; letter-spacing: 0.08em; color: rgba(244,241,235,0.45); }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--offwhite); }
.breadcrumb span { margin: 0 8px; }

/* ============ INNER PAGE CONTENT ============ */
.entry-content { padding: 70px 0; }
.entry-content .section-inner h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--navy); letter-spacing: 0.04em; margin-bottom: 14px; }
.entry-content .section-inner h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; margin-top: 30px; }
.entry-content .section-inner p { font-size: 1rem; line-height: 1.8; color: var(--text-body); margin-bottom: 16px; }
.entry-content .section-inner ul, .entry-content .section-inner ol { margin: 0 0 16px 22px; line-height: 1.8; }
.entry-content .section-inner img { border-radius: 3px; margin-bottom: 20px; }

/* Photo Gallery Page */
.gallery-page { padding: 60px 0; background: var(--offwhite); }
.gallery-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.gallery-page-item { border-radius: 3px; overflow: hidden; aspect-ratio: 1; position: relative; background: var(--navy); }
.gallery-page-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.gallery-page-item:hover img { transform: scale(1.06); }
.gallery-page-item a { display: block; width: 100%; height: 100%; }

/* ============ FOOTER ============ */
#site-footer { background: var(--navy-mid); padding-top: 70px; }
.footer-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px 60px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; }
.footer-brand .logo-main { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--offwhite); }
.footer-brand .logo-main span { color: var(--red); }
.footer-brand .logo-sub { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; margin-top: 2px; }
.footer-brand p { font-size: 0.9rem; color: rgba(244,241,235,0.55); margin-top: 12px; line-height: 1.65; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 3px; color: var(--offwhite); font-size: 0.85rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; transition: background 0.2s; }
.footer-social a:hover { background: var(--red); color: #fff; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(244,241,235,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item .fci-icon { color: var(--red); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; width: 16px; text-align: center; }
.footer-contact-item p { font-size: 0.88rem; color: rgba(244,241,235,0.65); line-height: 1.5; }
.footer-contact-item a { color: rgba(244,241,235,0.65); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { background: #080f18; padding: 18px 24px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; letter-spacing: 0.08em; color: rgba(244,241,235,0.3); }
.footer-bottom a { color: rgba(244,241,235,0.4); }
.footer-bottom a:hover { color: var(--gold); }

/* ============ SIDEBAR ============ */
.with-sidebar-layout { display: grid; grid-template-columns: 1fr 300px; gap: 50px; align-items: start; }
.sidebar { padding-top: 10px; }
.widget { background: var(--offwhite); border: 1px solid var(--light-gray); padding: 24px; margin-bottom: 24px; border-radius: 3px; border-top: 3px solid var(--red); }
.widget-title { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--navy); font-weight: 700; margin-bottom: 14px; }
.widget ul { list-style: none; }
.widget ul li { border-bottom: 1px solid var(--light-gray); padding: 8px 0; font-size: 0.9rem; }
.widget ul li a { color: var(--text-body); }
.widget ul li a:hover { color: var(--red); }

/* ============ FADE ANIMATIONS ============ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .customers-grid { grid-template-columns: repeat(3, 1fr); }
  .why-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  #primary-navigation {
    position: fixed; inset: 70px 0 0; background: var(--navy);
    z-index: 999; padding: 20px 24px;
    transform: translateX(100%); transition: transform 0.3s; overflow-y: auto;
  }
  #primary-navigation.nav-open { transform: translateX(0); }
  #primary-navigation ul { flex-direction: column; align-items: stretch; gap: 4px; }
  #primary-navigation ul li a { padding: 12px 16px; font-size: 1.1rem; display: block; }
  #primary-navigation ul li ul { position: static; display: none; background: rgba(255,255,255,0.04); }
  #primary-navigation ul li.open > ul { display: flex; }
  .admin-bar #primary-navigation { top: 102px; }
  @media screen and (max-width: 782px) { .admin-bar #primary-navigation { top: 116px; } }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-services { display: none; }
  .welcome-grid, .wholesale-grid, .contact-page-grid { grid-template-columns: 1fr; }
  .welcome-visual { min-height: 240px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .customers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .with-sidebar-layout { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px; }
  .gallery-tile:first-child { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .customers-grid { grid-template-columns: 1fr 1fr; }
  .top-bar-left { display: none; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   QUOTE FORM - Full Detail Form Styles
   ============================================================ */

.quote-page-wrap {
    background: var(--offwhite);
    padding: 70px 0 90px;
}
.quote-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 50px;
    align-items: start;
}
.quote-sidebar {
    position: sticky;
    top: 90px;
}
.quote-info-card {
    background: var(--navy);
    border-radius: 4px;
    padding: 32px 28px;
    margin-bottom: 20px;
}
.quote-info-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--offwhite);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.quote-info-card .qi-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 600;
}
.quote-info-card p {
    font-size: 0.9rem;
    color: rgba(244,241,235,0.65);
    line-height: 1.7;
    margin-bottom: 0;
}
.quote-tip-list {
    list-style: none;
    margin-top: 18px;
    padding: 0;
}
.quote-tip-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.88rem;
    color: rgba(244,241,235,0.6);
    line-height: 1.6;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.quote-tip-list li:last-child { border-bottom: none; }
.quote-tip-list li .tip-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; font-style: normal; }
.quote-contact-box {
    background: var(--red);
    border-radius: 4px;
    padding: 24px 28px;
    text-align: center;
}
.quote-contact-box p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}
.quote-contact-box a.call-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 0.06em;
    text-decoration: none;
    display: block;
    line-height: 1;
}
.quote-contact-box a.call-link:hover { color: rgba(255,255,255,0.85); }

/* Form shell */
.quote-form-shell {
    background: var(--navy);
    border-radius: 4px;
    overflow: hidden;
}
.qf-header {
    background: rgba(0,0,0,0.25);
    padding: 26px 36px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.qf-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--offwhite);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 4px;
}
.qf-header p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    color: rgba(244,241,235,0.45);
    text-transform: uppercase;
}
.qf-body {
    padding: 36px;
}

/* Section headers inside form */
.qf-section {
    margin-bottom: 34px;
}
.qf-section:last-of-type { margin-bottom: 0; }
.qf-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.qf-section-label span.qf-num {
    width: 22px;
    height: 22px;
    background: var(--red);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0;
}

/* Field rows */
.qf-row {
    display: grid;
    gap: 0 18px;
    margin-bottom: 0;
}
.qf-row-2 { grid-template-columns: 1fr 1fr; }
.qf-row-3 { grid-template-columns: 1fr 1fr 1fr; }

/* Individual field group */
.qf-field {
    margin-bottom: 18px;
}
.qf-field label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(244,241,235,0.55);
    font-weight: 600;
    margin-bottom: 7px;
}
.qf-field label .req {
    color: var(--red);
    margin-left: 2px;
}
.qf-field input[type="text"],
.qf-field input[type="email"],
.qf-field input[type="tel"],
.qf-field select,
.qf-field textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--offwhite);
    padding: 11px 14px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    border-radius: 2px;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.qf-field input:focus,
.qf-field select:focus,
.qf-field textarea:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.09);
}
.qf-field input::placeholder,
.qf-field textarea::placeholder { color: rgba(244,241,235,0.22); }
.qf-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4a017' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}
.qf-field select option { background: #162033; color: var(--offwhite); }

/* Checkbox & Radio groups */
.qf-check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.qf-check-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.qf-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 14px;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    user-select: none;
}
.qf-check-item:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }
.qf-check-item input[type="checkbox"],
.qf-check-item input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--red);
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
}
.qf-check-item span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    color: rgba(244,241,235,0.75);
    line-height: 1.2;
    text-transform: uppercase;
}
.qf-check-item:has(input:checked) {
    background: rgba(200,16,46,0.15);
    border-color: rgba(200,16,46,0.45);
}
.qf-check-item:has(input:checked) span { color: var(--offwhite); }

/* Yes/No radio row */
.qf-yesno {
    display: flex;
    gap: 12px;
}
.qf-yesno .qf-check-item { flex: 1; justify-content: center; font-size: 1rem; }

/* Multi-select list (garment types) */
.qf-multi-select {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

/* Divider between sections */
.qf-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin: 28px 0;
}

/* Submit area */
.qf-submit-area {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.qf-submit-area .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    letter-spacing: 0.15em;
    text-align: center;
    display: block;
    border: none;
    cursor: pointer;
}
.qf-submit-area .btn-primary:hover { background: var(--red-dark); }
.qf-required-note {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(244,241,235,0.3);
    text-align: center;
    margin-top: 12px;
}

/* Success / Error messages */
.qf-success {
    background: rgba(30,200,100,0.1);
    border: 1px solid rgba(30,200,100,0.3);
    border-radius: 4px;
    padding: 40px 36px;
    text-align: center;
}
.qf-success .success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}
.qf-success h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--offwhite);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.qf-success p {
    font-size: 1rem;
    color: rgba(244,241,235,0.7);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 20px;
}
.qf-error-msg {
    background: rgba(200,16,46,0.12);
    border: 1px solid rgba(200,16,46,0.35);
    color: #fbbbc8;
    padding: 14px 18px;
    border-radius: 3px;
    margin-bottom: 22px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}
.qf-field .field-error {
    color: #f87a8a;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    margin-top: 5px;
    display: none;
}
.qf-field.has-error input,
.qf-field.has-error select,
.qf-field.has-error textarea { border-color: var(--red); }
.qf-field.has-error .field-error { display: block; }

/* Responsive */
@media (max-width: 900px) {
    .quote-layout { grid-template-columns: 1fr; }
    .quote-sidebar { position: static; }
    .qf-body { padding: 24px 20px; }
    .qf-header { padding: 20px 20px; }
    .qf-row-2, .qf-row-3 { grid-template-columns: 1fr; }
    .qf-multi-select { grid-template-columns: repeat(2, 1fr); }
    .qf-check-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .qf-check-grid { grid-template-columns: 1fr 1fr; }
    .qf-multi-select { grid-template-columns: 1fr 1fr; }
    .qf-yesno { flex-direction: row; }
}

/* ============================================================
   HERO LOGO IMAGE
   ============================================================ */

.hero-logo-wrap {
    margin-bottom: 14px;
    position: relative;
}
.hero-logo-img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    filter:
        drop-shadow(0 0 3px rgba(255,255,255,0.9))
        drop-shadow(0 0 6px rgba(255,255,255,0.6))
        drop-shadow(0 4px 24px rgba(0,0,0,0.80))
        drop-shadow(0 2px 8px rgba(200,16,46,0.4));
}

/* ============================================================
   SVG ICON SYSTEM
   Replaces all emoji — inline SVGs inherit currentColor
   ============================================================ */

/* Hero service cards */
.hero-service-card .icon svg {
    width: 36px;
    height: 36px;
    color: var(--gold);
    display: block;
}

/* Services grid cards */
.service-card .svc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: rgba(200,16,46,0.12);
    border-radius: 50%;
    border: 1px solid rgba(200,16,46,0.25);
    transition: background 0.25s, border-color 0.25s;
}
.service-card .svc-icon svg {
    width: 30px;
    height: 30px;
    color: var(--gold);
    transition: color 0.25s;
}
.service-card:hover .svc-icon {
    background: rgba(200,16,46,0.22);
    border-color: rgba(200,16,46,0.5);
}
.service-card:hover .svc-icon svg {
    color: #fff;
}

/* Why band icons */
.why-item .why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
}
.why-item .why-icon svg {
    width: 26px;
    height: 26px;
    color: #fff;
}

/* Customer cards */
.customer-card .cust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    background: var(--light-gray);
    border-radius: 50%;
    border: 2px solid rgba(13,27,42,0.08);
    transition: background 0.2s, border-color 0.2s;
}
.customer-card .cust-icon svg {
    width: 24px;
    height: 24px;
    color: var(--navy);
    transition: color 0.2s;
}
.customer-card:hover .cust-icon {
    background: var(--navy);
    border-color: var(--navy);
}
.customer-card:hover .cust-icon svg {
    color: var(--gold);
}

/* Gallery placeholder SVGs */
.gallery-tile-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
}
.gallery-tile-placeholder svg {
    width: 52px;
    height: 52px;
    color: rgba(255,255,255,0.15);
}

/* ============================================================
   HERO responsive tweaks with logo image
   ============================================================ */
@media (max-width: 900px) {
    .hero-logo-img {
        max-width: 380px;
        margin: 0 auto;
    }
    .hero-text { text-align: center; }
    .hero-tagline { text-align: center; }
    .hero-divider { margin: 18px auto; }
    .hero-sub { text-align: center; }
    .hero-buttons { justify-content: center; }
}
@media (max-width: 600px) {
    .hero-logo-img { max-width: 290px; }
    .hero { min-height: auto; padding: 40px 0 60px; }
}

/* ============================================================
   TRIBAL DESIGN SYSTEM
   Geometric, angular motifs inspired by Native American / 
   Southwest tribal patterns — professional & restrained.
   ============================================================ */

/* ── Tribal SVG border patterns via CSS clip/mask ── */

/* Hero service cards — tribal corner accents */
.hero-service-card {
    position: relative;
    overflow: visible;
}
.hero-service-card::before,
.hero-service-card::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    pointer-events: none;
    opacity: 0.55;
}
/* Top-right corner: stepped tribal corner mark */
.hero-service-card::before {
    top: -1px;
    right: -1px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 60% 100%, 60% 40%, 0 40%);
}
/* Bottom-left corner */
.hero-service-card::after {
    bottom: -1px;
    left: -1px;
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    clip-path: polygon(0 0, 40% 0, 40% 60%, 100% 60%, 100% 100%, 0 100%);
}
.hero-service-card:hover::before,
.hero-service-card:hover::after {
    opacity: 1;
    border-color: var(--gold-light);
}

/* Services section cards — full tribal border treatment */
.service-card {
    position: relative;
    overflow: visible;
}
/* Tribal stepped corner — top left */
.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 28px;
    height: 28px;
    pointer-events: none;
    border-top: 2.5px solid var(--gold);
    border-left: 2.5px solid var(--gold);
    clip-path: polygon(0 0, 100% 0, 100% 35%, 35% 35%, 35% 100%, 0 100%);
    opacity: 0.4;
    transition: opacity 0.25s, border-color 0.25s;
}
/* Tribal stepped corner — bottom right */
.service-card::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 28px;
    height: 28px;
    pointer-events: none;
    border-bottom: 2.5px solid var(--gold);
    border-right: 2.5px solid var(--gold);
    clip-path: polygon(65% 0, 100% 0, 100% 100%, 0 100%, 0 65%, 65% 65%);
    opacity: 0.4;
    transition: opacity 0.25s, border-color 0.25s;
}
.service-card:hover::before,
.service-card:hover::after {
    opacity: 0.9;
    border-color: var(--gold-light);
}

/* Customer cards — diamond/arrowhead accent mark */
.customer-card {
    position: relative;
    overflow: visible;
}
.customer-card::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border: 2px solid var(--gold);
    background: var(--offwhite);
    opacity: 0;
    transition: opacity 0.25s;
}
.customer-card:hover::before {
    opacity: 1;
}

/* ── Tribal divider lines ── */
/* Replace plain section-divider with a geometric tribal bar */
.section-divider {
    position: relative;
    margin: 18px 0 22px;
    height: 4px;
    width: 56px;
    background: var(--gold);
    /* step notch in the middle */
    clip-path: polygon(
        0 0,
        38% 0,
        38% 0%,
        42% 0,
        42% 100%,
        58% 100%,
        58% 0,
        62% 0,
        62% 0,
        100% 0,
        100% 100%,
        62% 100%,
        58% 100%,
        58% 100%,
        42% 100%,
        38% 100%,
        0 100%
    );
}
.section-divider::after {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 32px;
    height: 2px;
    background: var(--gold);
    opacity: 0.35;
}

/* ── Services section: tribal band background pattern ── */
.services-section {
    position: relative;
}
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--gold)      0px,
        var(--gold)      8px,
        transparent      8px,
        transparent      12px,
        var(--red)       12px,
        var(--red)       16px,
        transparent      16px,
        transparent      20px
    );
    opacity: 0.6;
}
.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--gold)      0px,
        var(--gold)      8px,
        transparent      8px,
        transparent      12px,
        var(--red)       12px,
        var(--red)       16px,
        transparent      16px,
        transparent      20px
    );
    opacity: 0.6;
}

/* ── Hero section: tribal stripe accent above the service cards ── */
.hero-services {
    position: relative;
}
.hero-services::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        var(--gold-light) 0px,
        var(--gold-light) 6px,
        transparent 6px,
        transparent 9px,
        rgba(255,255,255,0.2) 9px,
        rgba(255,255,255,0.2) 12px,
        transparent 12px,
        transparent 15px
    );
    opacity: 0.5;
}

/* ── Why-band: arrowhead/chevron tribal separators ── */
.why-band {
    position: relative;
}
.why-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: repeating-linear-gradient(
        90deg,
        var(--gold) 0px,
        var(--gold) 12px,
        transparent 12px,
        transparent 16px
    );
    opacity: 0.45;
}

/* ── Section label: tribal arrowhead prefix ── */
.section-label {
    position: relative;
    padding-left: 18px;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent var(--gold);
    opacity: 0.85;
}

/* ── Gallery section: tribal frame on mosaic ── */
.gallery-mosaic {
    position: relative;
}
.gallery-mosaic::before,
.gallery-mosaic::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 2;
}
.gallery-mosaic::before {
    top: -4px;
    left: -4px;
    width: 40px;
    height: 40px;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
    clip-path: polygon(0 0, 100% 0, 100% 35%, 35% 35%, 35% 100%, 0 100%);
    opacity: 0.6;
}
.gallery-mosaic::after {
    bottom: -4px;
    right: -4px;
    width: 40px;
    height: 40px;
    border-bottom: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    clip-path: polygon(65% 0, 100% 0, 100% 100%, 0 100%, 0 65%, 65% 65%);
    opacity: 0.6;
}

/* ── Quote CTA: decorative tribal band ── */
.quote-cta-section {
    position: relative;
}
.quote-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: repeating-linear-gradient(
        90deg,
        var(--gold)      0px,
        var(--gold)      10px,
        transparent      10px,
        transparent      14px,
        var(--gold-light) 14px,
        var(--gold-light) 18px,
        transparent      18px,
        transparent      24px
    );
    opacity: 0.55;
}


/* ============================================================
   INLINE QUOTE FORM (quote-cta-section)
   ============================================================ */
.cta-form {
    margin-top: 28px;
    width: 100%;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.cta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 560px) {
    .cta-form-row { grid-template-columns: 1fr; }
}
.cta-form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}
.cta-form-field label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(244,241,235,0.65);
    margin-bottom: 6px;
}
.cta-form-field label span {
    color: var(--gold);
}
.cta-form-field input,
.cta-form-field textarea {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(244,241,235,0.18);
    border-radius: 2px;
    color: var(--offwhite);
    font-family: 'Barlow', sans-serif;
    font-size: 0.92rem;
    padding: 11px 14px;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    resize: vertical;
}
.cta-form-field input::placeholder,
.cta-form-field textarea::placeholder {
    color: rgba(244,241,235,0.28);
}
.cta-form-field input:focus,
.cta-form-field textarea:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.11);
}
.cta-form-field.has-error input,
.cta-form-field.has-error textarea {
    border-color: var(--red);
}
.field-error {
    font-size: 0.75rem;
    color: #ff7a7a;
    margin-top: 5px;
}
.cta-form-submit {
    margin-top: 8px;
    width: 100%;
    cursor: pointer;
    border: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.cta-form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    background: rgba(212,160,23,0.12);
    border: 1px solid var(--gold);
    border-radius: 3px;
    padding: 18px 22px;
    color: var(--gold-light);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}
.cta-form-success svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--gold);
}
