/* ============================================================
   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; }

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

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);
}
.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); }
.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; }
}
