/* =============================================
   MARKIT SIGNS — MAIN STYLESHEET
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --black:      #0a0a0a;
  --cream:      #f4f0e6;
  --gold:       #c8920a;
  --gold-light: #e0a812;
  --green:      #1a2b1a;
  --white:      #ffffff;
  --gray:       #888888;
  --light-gray: #e8e4da;
  --nav-height: 80px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--black);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo img {
  height: 50px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 24px;
  margin: 0 auto;
}
.nav-links a {
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  color: var(--black) !important;
}

.nav-pay {
  color: rgba(255,255,255,0.5) !important;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 16px;
  margin-left: 4px;
}
.nav-pay:hover {
  color: var(--gold) !important;
}
.nav-mobile .nav-pay {
  background: var(--gold);
  color: var(--black) !important;
  font-size: 12px;
  padding: 10px 18px;
  border-radius: 3px;
  border-left: none;
  margin-left: 0;
  text-align: center;
}
.nav-mobile .nav-pay:hover {
  background: #b8960a;
  color: var(--black) !important;
}
.footer-pay-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--black) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 3px;
  margin-top: 4px;
  transition: background 0.2s;
}
.footer-pay-btn:hover {
  background: #b8960a;
}

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--black);
  padding: 24px 40px 32px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .nav-cta,
.nav-mobile .nav-pay {
  display: inline-block;
  width: calc(50% - 6px);
  box-sizing: border-box;
  text-align: center;
  margin-top: 16px;
  padding: 12px 8px;
  border-bottom: none;
  vertical-align: top;
  font-size: 12px;
}
.nav-mobile .nav-cta {
  margin-right: 4px;
  color: var(--black) !important;
}
.nav-mobile .nav-pay {
  margin-left: 4px;
  border-left: none;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 40px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-top: 2px;
  margin-bottom: 20px;
}
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.footer-nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-nav-links a:hover { color: var(--gold); }
.footer-col h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col p,
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  display: block;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-quote-btn {
  display: inline-block;
  margin-top: 16px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 3px;
  transition: all 0.2s;
}
.footer-quote-btn:hover {
  background: var(--gold);
  color: var(--black) !important;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

/* =============================================
   SECTION PATTERNS
   ============================================= */
.section { padding: 80px 40px; }
.section-sm { padding: 60px 40px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  max-width: 540px;
  margin-top: 16px;
  line-height: 1.7;
}
.section-subtitle.light { color: rgba(255,255,255,0.65); }

.gold-bar {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0;
}
.gold-bar.center { margin: 16px auto; }

/* =============================================
   HERO SECTIONS
   ============================================= */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: var(--nav-height);
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.85;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.55) 30%, rgba(10,10,10,0.05) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 40px;
  margin-left: calc((100% - 1200px) / 2);
}
.hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.01em;
}
.hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin: 20px 0 32px;
  line-height: 1.7;
  max-width: 480px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* Page hero (shorter) */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: var(--nav-height);
  background: var(--black);
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--cream);
  padding: 48px 40px;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
}
.stat-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  color: var(--black);
}
.stat-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.stat-item p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* =============================================
   BENEFITS BAR (dark)
   ============================================= */
.benefits-bar {
  background: var(--black);
  padding: 48px 40px;
}
.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-item {
  text-align: center;
  padding: 8px;
}
.benefit-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  color: var(--gold);
}
.benefit-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.benefit-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* =============================================
   PROJECT GRIDS
   ============================================= */
.projects-section {
  padding: 80px 40px;
  background: var(--white);
}
.projects-header {
  max-width: 1200px;
  margin: 0 auto 48px;
  text-align: center;
}
.projects-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.project-card {
  position: relative;
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 1 / 1;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s;
  opacity: 0.9;
}
.project-card:hover img {
  transform: scale(1.05);
  opacity: 0.7;
}
.project-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
.project-card-info h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.project-card-info span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

/* Placeholder for missing images */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 12px;
  text-align: center;
  padding: 16px;
  gap: 8px;
}
.img-placeholder svg { opacity: 0.3; }

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-section {
  background: var(--black);
  padding: 80px 40px;
  text-align: center;
}
.process-header {
  max-width: 1200px;
  margin: 0 auto 56px;
}
.process-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.process-step {
  text-align: center;
  padding: 8px;
}
.process-step-icon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
}
.process-step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* =============================================
   WHY MARKIT (split section)
   ============================================= */
.why-section {
  padding: 80px 40px;
  background: var(--cream);
}
.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.why-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.why-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.why-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--black);
}
.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
  padding: 80px 40px;
  background: var(--black);
}
.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.faq-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 40px;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.faq-item h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.faq-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--black);
  border-radius: 4px;
  align-self: center;
}
.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =============================================
   HOME: WHAT WE DO
   ============================================= */
.what-we-do {
  background: var(--cream);
  padding: 80px 40px;
}
.what-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.what-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 68px);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
}
.what-right p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 28px;
}
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  transition: gap 0.2s;
}
.arrow-link:hover { gap: 14px; color: var(--gold); }
.arrow-link svg { width: 18px; height: 18px; }

/* =============================================
   HOME: SERVICES GRID
   ============================================= */
.services-grid-section {
  padding: 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--black);
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 0.5s, opacity 0.3s;
}
.service-card:hover img { transform: scale(1.06); opacity: 0.65; }
.service-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.72));
}
.service-card-overlay h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.service-card-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* =============================================
   HOME: ABOUT BANNER
   ============================================= */
.about-banner {
  padding: 80px 40px;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 100%;
}
.about-banner-text { padding-left: calc((100% - 1200px) / 2); }
.about-banner-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 60px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
}
.about-banner-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin: 20px 0 32px;
  max-width: 440px;
}
.about-banner-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}
.about-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-section {
  background: var(--black);
  padding: 80px 40px;
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
}
.contact-info p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.8;
  margin: 16px 0 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}
.contact-detail a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--gold); }

.contact-form-box {
  background: var(--white);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  background: #fafafa;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 2px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 2px;
}
.form-submit:hover { background: var(--gold-light); }

/* =============================================
   SIGN TYPES (Exterior Signage page)
   ============================================= */
.sign-types {
  background: var(--black);
  padding: 60px 40px;
}
.sign-types-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.sign-type-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #111;
}
.sign-type-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.3s, transform 0.5s;
}
.sign-type-card:hover img { opacity: 0.4; transform: scale(1.04); }
.sign-type-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.72));
}
.sign-type-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 6px;
}
.sign-type-info p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-story {
  padding: 100px 40px;
  background: var(--white);
}
.about-story-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
}
.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-values {
  padding: 80px 40px;
  background: var(--cream);
}
.about-values-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.value-card {
  padding: 32px;
  background: var(--white);
}
.value-card-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 20px;
}
.value-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page-hero {
  margin-top: var(--nav-height);
  background: var(--black);
  padding: 100px 40px;
  text-align: center;
}
.contact-page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.contact-page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 17px;
  margin-top: 16px;
}
.contact-page-body {
  padding: 80px 40px;
  background: var(--white);
}
.contact-page-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
}
.contact-page-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info-item-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  display: block;
  margin-bottom: 4px;
}
.contact-info-item p,
.contact-info-item a {
  font-size: 15px;
  color: var(--black);
  line-height: 1.6;
}

/* CTA BANNER */
.cta-banner {
  background: var(--gold);
  padding: 60px 40px;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(0,0,0,0.65);
  margin-bottom: 32px;
}
.cta-banner .btn {
  background: var(--black);
  color: var(--white);
  padding: 16px 36px;
  font-size: 14px;
}
.cta-banner .btn:hover { background: #222; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .hero-content { margin-left: 0 !important; }
  .about-banner-text { padding-left: 40px; }
}

/* Ensure hero content never overflows on any screen */
.page-hero, .hero { overflow: hidden; }
.hero-content { max-width: 100% !important; }

@media (max-width: 900px) {
  :root { --nav-height: 70px; }
  .nav-links, .nav-cta, .nav-pay { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content h1 { font-size: clamp(40px, 8vw, 64px); }
  .stats-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .sign-types-grid { grid-template-columns: repeat(2, 1fr); }
  .what-grid, .why-grid, .faq-inner, .about-story-grid,
  .contact-inner, .contact-page-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-banner { grid-template-columns: 1fr; }
  .about-banner-text { padding-left: 0; }
  .faq-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section, .section-sm { padding: 60px 24px; }
  .nav { padding: 0 24px; }
  .stats-grid, .benefits-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Gallery grids: 1 column so photos are large and readable */
  .projects-grid { grid-template-columns: 1fr; gap: 8px; padding: 0; }
  .sign-types-grid { grid-template-columns: 1fr; }

  /* Smaller text overlay so it doesn't overpower the image */
  .project-card-info { padding: 10px 12px; }
  .project-card-info h4 { font-size: 13px; }
  .project-card-info span { font-size: 11px; }
  .sign-type-info { padding: 12px 14px; }
  .sign-type-info h3 { font-size: 15px; }
  .sign-type-info p { font-size: 11px; }

  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { padding: 40px 24px !important; margin-left: 0 !important; }
  .about-values-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px !important; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .why-grid, .faq-inner { gap: 32px; }
  .why-image, .faq-image { display: none; }
  .benefits-bar, .benefits-grid { padding: 40px 24px; }
  .benefit-item { padding: 20px 16px; }
  .process-section { padding: 60px 24px; }
  .projects-header, .process-header { padding: 0 24px; }
  .faq-inner, .why-grid { padding: 0 24px; }
  .contact-grid { padding: 0 24px; }
  /* About page mobile */
  .about-story-grid, .about-shop-grid { padding: 0 24px; gap: 32px; }
  .about-story-img img, .about-shop-img img { height: 260px; }
  /* Stats row on about page */
  [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }

  /* About shop — stack vertically on mobile */
  .about-shop-grid { grid-template-columns: 1fr !important; }
  .about-shop-img img { height: 220px; }

  /* Hero mobile — reduce height and center focal point */
  .hero { min-height: 55vh; }
  .page-hero { min-height: 42vh; }
  .hero-bg, .page-hero .hero-bg { background-position: center center !important; background-size: cover !important; }

  /* Footer buttons stacked, same size, with gap */
  .footer-quote-btn, .footer-pay-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 12px 16px;
    font-size: 12px;
    margin-right: 0;
    margin-left: 0;
  }
  .footer-quote-btn { margin-top: 12px; margin-bottom: 0; }
  .footer-pay-btn { margin-top: 10px; }

  /* Tinting section — stack on mobile */
  .tinting-grid { grid-template-columns: 1fr !important; gap: 32px !important; padding: 0 24px !important; }
  .tinting-photos { height: auto !important; grid-template-rows: auto auto !important; }
  .tinting-photos > div img { height: 240px !important; }

  /* Apparel grid — single column on mobile */
  .apparel-grid { grid-template-columns: 1fr !important; }
  .apparel-grid img { height: 260px !important; }
}
