/* ============================================
   Tribute Fencing & Barricade — styles.css
   Complete component library and design tokens
   Dark industrial theme — bold, professional, rugged
   ============================================ */

/* ----- Custom Properties ----- */
:root {
  --orange:         #E8891A;  /* bright brand — use on dark backgrounds & decorative accents */
  --orange-dark:    #A85B0A;  /* WCAG AA amber (~5:1 on white) — text, links, buttons on light */
  --orange-deep:    #7A4108;  /* darker amber for hover/active states */
  --orange-light:   #FFF5EB;
  --charcoal:       #1B1B1B;
  --charcoal-deep:  #161616;
  --charcoal-mid:   #2A2A2A;
  --white:          #FFFFFF;
  --gray-light:     #F6F6F6;
  --gray-mid:       #E0E0E0;
  --gray-text:      #A0A0A0;
  --text-primary:   #1B1B1B;
  --text-secondary: #555555;
  --text-light:     #F0F0F0;
  --border:         #E0E0E0;
  --border-dark:    #333333;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:      0 4px 12px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg:      0 12px 40px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.08);
}

/* ----- Reset & Base ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--text-primary);
  font-family: 'Lato', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  padding-top: 72px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--orange-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--orange-deep);
}

ul, ol {
  list-style: none;
}

/* ----- Skip Navigation ----- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--orange-dark);
  color: var(--white);
  font-weight: 700;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  z-index: 999;
  transition: top 0.2s ease;
}

.skip-nav:focus {
  top: 0;
  color: var(--white);
}

/* ----- Focus Styles ----- */
*:focus-visible {
  outline: 2px solid var(--orange-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

/* ----- Screen Reader Only ----- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----- Typography Scale ----- */

/* Display — hero headlines */
.text-display {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--white);
}

/* H1 — page headlines */
h1, .text-h1 {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--text-primary);
}

/* H2 — section headlines */
h2, .text-h2 {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--charcoal);
}

/* H3 — card headlines, subsections */
h3, .text-h3 {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: var(--text-primary);
}

/* H4 — small headings */
h4, .text-h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-primary);
}

/* Body — standard paragraph text */
p, .text-body {
  font-family: 'Lato', sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
}

/* Supporting — captions, meta, fine print */
.text-supporting {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Label — section identifiers, tags */
.text-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
}

/* ----- Buttons ----- */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--orange-dark);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: var(--orange-deep);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: transparent;
  color: var(--orange-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--orange-dark);
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-secondary:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-phone:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

/* ----- Navigation ----- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: var(--charcoal);
  border-bottom: 1px solid var(--border-dark);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

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

.nav-logo-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-text);
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links .active {
  color: var(--orange);
}

.nav-phone {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white) !important;
  letter-spacing: 0.02em;
}

.nav-phone:hover {
  color: var(--orange) !important;
}

.nav-cta .btn-primary {
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--white);
}

.nav-cta .btn-primary:hover {
  color: var(--white);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Nav Overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27, 27, 27, 0.97);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 80px 24px 40px;
}

.nav-mobile-overlay.open {
  display: flex;
}

.nav-mobile-overlay a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gray-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-mobile-overlay a:hover {
  color: var(--orange);
}

.nav-mobile-overlay .btn-primary {
  margin-top: 16px;
}

.nav-mobile-overlay .nav-phone-mobile {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 8px;
}

/* ----- Hero ----- */

.hero {
  background: var(--charcoal-deep);
  background-size: cover;
  background-position: center center;
  padding: 100px 40px 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 22, 22, 0.55);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-logo {
  max-width: 420px;
  margin: 0 auto 16px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.hero-oneliner {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gray-text);
  margin-bottom: 32px;
}

/* ----- Paragon Legacy Callout ----- */

.perigon-callout {
  background: var(--charcoal-mid);
  padding: 40px 40px;
  text-align: center;
  border-top: 3px solid var(--orange);
}

.perigon-callout h2 {
  color: var(--orange);
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.perigon-callout p {
  color: var(--gray-text);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.hero-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  color: var(--gray-text);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-credibility {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--gray-text);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ----- Section Layout ----- */

.section-full {
  padding: 72px 40px;
}

.section-surface {
  background: var(--gray-light);
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-dark h2 {
  color: var(--white);
}

.section-dark p {
  color: var(--gray-text);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 640px;
  margin: 12px auto 0;
}

/* ----- Grid System ----- */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ----- Cards ----- */

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  margin-bottom: 16px;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

/* ----- Trust Signals Strip ----- */

.trust-strip {
  background: var(--orange-dark);
  padding: 20px 40px;
  text-align: center;
}

.trust-strip-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.trust-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ----- Product Cards ----- */

.product-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.product-card h3 {
  margin-bottom: 8px;
}

.product-card .product-dimensions {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.product-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.team-headshot {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid var(--orange);
}

.team-headshot-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  background: var(--charcoal);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 2px;
}

.product-card-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* ----- Industries Grid ----- */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.industry-item {
  background: var(--white);
  border-radius: 8px;
  padding: 16px 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.industry-item:hover {
  border-color: var(--orange-dark);
  box-shadow: var(--shadow-sm);
}

/* ----- Why Choose / Features List ----- */

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--orange-light);
  color: var(--orange-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.feature-text h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ----- Service Area ----- */

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.service-area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 8px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.service-area-tag:hover {
  border-color: var(--orange-dark);
  background: var(--orange-light);
}

/* ----- Paragon Legacy Section ----- */

.legacy-section {
  text-align: center;
}

.legacy-section p {
  max-width: 680px;
  margin: 12px auto 0;
  color: var(--text-secondary);
}

/* ----- Product Photo ----- */

.product-photo {
  margin-top: 48px;
  text-align: center;
}

.product-photo img {
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}

/* ----- Response Time ----- */

.response-time {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-text);
  margin-top: 20px;
  letter-spacing: 0.02em;
}

/* ----- Service Area Inline ----- */

.service-area-inline {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.service-area-inline h3 {
  margin-bottom: 8px;
}

.service-area-inline p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ----- CTA Banner ----- */

.cta-banner {
  background: var(--charcoal);
  padding: 64px 40px;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--gray-text);
  max-width: 560px;
  margin: 0 auto 28px;
}

.cta-banner-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----- Form Embed Container ----- */

.form-embed-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background: var(--gray-light);
  border-radius: 12px;
}

.form-embed-container iframe {
  width: 100%;
  border: none;
  min-height: 600px;
}

.form-fallback {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
  margin-top: 16px;
}

.form-fallback p {
  margin-bottom: 8px;
}

/* ----- FAQ Accordion ----- */

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--orange-dark);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--orange-dark);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ----- Footer ----- */

.footer {
  background: var(--charcoal-deep);
  padding: 56px 40px 28px;
  color: #D0D0D0; /* brightened for readable contrast on the dark footer */
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.footer-col-label {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #D0D0D0;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact-info {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-contact-info a {
  display: inline;
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
}

.footer-bottom p {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: var(--gray-text);
}

.footer-bottom a {
  color: var(--gray-text);
  margin: 0 8px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-metal-works {
  margin-top: 12px;
  font-size: 0.85rem;
}

.footer-metal-works a {
  display: inline; /* keep the link inline so the sentence doesn't break onto separate lines */
  color: var(--orange);
}

.footer-metal-works a:hover {
  color: var(--white);
}

/* Override the global `p` rule (dark body color + larger size) so the footer's
   plain-text lines match the rest of the footer text and stay readable on dark. */
.footer-contact-info p,
.footer-metal-works p {
  color: #D0D0D0;
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  margin: 0;
}

/* ----- Sticky CTA ----- */

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta .btn-primary {
  box-shadow: var(--shadow-lg);
  padding: 14px 24px;
  font-size: 0.9rem;
}

/* ----- Scroll Animations ----- */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Page Header ----- */

.page-header {
  background: var(--charcoal);
  padding: 56px 40px 48px;
  text-align: center;
}

.page-header .text-label {
  margin-bottom: 8px;
  display: block;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  color: var(--gray-text);
  max-width: 640px;
  margin: 0 auto;
}

/* ----- Gallery Grid ----- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.gallery-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-item img[src*="barricade-photo-1"] {
  object-fit: contain;
  background: var(--gray-light);
}

.gallery-item-caption {
  padding: 20px 24px;
}

.gallery-item-caption h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.gallery-item-caption p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ----- Contact Card ----- */

.contact-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.contact-card .card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-card h3 {
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-secondary);
}

.contact-card a {
  font-weight: 600;
}

/* ----- Legal Content ----- */

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
}

.legal-content h2 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin: 40px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 4px;
}

.legal-content a {
  font-weight: 600;
}

/* ----- Stub Page Content ----- */

.stub-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}

.stub-content h1 {
  margin-bottom: 16px;
}

.stub-content p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ----- Utility Classes ----- */

.text-center { text-align: center; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ============================================
   Responsive Breakpoints
   ============================================ */

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav {
    padding: 0 20px;
  }

  .hero {
    padding: 56px 24px 48px;
  }

  .section-full {
    padding: 48px 24px;
  }

  .cta-banner {
    padding: 48px 24px;
  }

  .footer {
    padding: 40px 24px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trust-strip {
    padding: 16px 24px;
  }

  .trust-strip-inner {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 64px;
  }

  .nav {
    height: 64px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-ghost,
  .hero-buttons .btn-phone {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .cta-banner-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner-buttons .btn-primary,
  .cta-banner-buttons .btn-ghost {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .text-display {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .stub-content {
    padding: 56px 24px 80px;
  }

  .page-header {
    padding: 40px 24px 32px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .legal-content {
    padding: 0 24px;
  }
}
