/* ==========================================================================
   Nashville Audio Visual — main.css
   Mobile-first, semantic, no frameworks
   Colors: --red: #CF0000  |  --black: #111111  |  --white: #ffffff
   Fonts: Barlow Condensed (headings), Barlow / Lato (body)
   ========================================================================== */

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

:root {
  --red:    #CF0000;
  --red-dk: #a80000;
  --black:  #111111;
  --gray:   #222222;
  --gray-2: #444444;
  --gray-3: #888888;
  --off-white: #f5f5f5;
  --white:  #ffffff;

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', 'Lato', sans-serif;

  --container: 1200px;
  --radius:    4px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

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

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

a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus { color: var(--red-dk); text-decoration: underline; }

ul, ol { list-style: none; }

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  padding: 0.65em 1.5em;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform 0.1s ease;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.96); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--red-dk);
  border-color: var(--red-dk);
  color: var(--white);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover, .btn-outline:focus {
  background: var(--white);
  color: var(--black);
  text-decoration: none;
}
.service-card .btn-outline {
  color: var(--black);
  border-color: var(--black);
}
.service-card .btn-outline:hover, .service-card .btn-outline:focus {
  background: var(--black);
  color: var(--white);
}

.btn-header {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5em 1.4em;
  border-radius: 2px;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-header:hover, .btn-header:focus {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
  text-decoration: none;
}

.header-socials {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.header-socials a {
  color: #555;
  opacity: 1;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}
.header-socials a:hover { color: var(--red); }
@media (max-width: 899px) { .header-socials { display: none; } }

/* Phone link in header */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
}
.nav-phone span { display: inline; }
.nav-phone svg { flex-shrink: 0; }
.nav-phone:hover { color: var(--red); text-decoration: none; }

@media (max-width: 767px) {
  .nav-phone {
    display: flex;
    margin-right: 0.25rem;
  }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
  /* Contain the absolute-positioned mobile nav drawer */
  isolation: isolate;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.65rem;
}

.logo img { width: clamp(130px, 38vw, 170px); height: auto; filter: none; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav — mobile: dark animated drawer */
.primary-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #111;
  border-top: 3px solid var(--red);
  box-shadow: 0 20px 50px rgba(0,0,0,0.65);
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              padding 0.35s ease;
}
.primary-nav.is-open {
  max-height: calc(100vh - 58px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 1;
  pointer-events: auto;
  padding: 0.75rem 1.5rem 2rem;
}

.primary-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.primary-nav a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  padding: 0.75em 0;
  border-bottom: 1px solid #222;
  transition: color var(--transition), padding-left var(--transition);
}
.primary-nav > ul > li:last-child > a { border-bottom: none; }
.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--red);
  padding-left: 0.35rem;
  text-decoration: none;
}
.primary-nav .btn-header { margin-top: 1rem; align-self: flex-start; }

/* Nav — desktop */
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex !important;
    position: static;
    width: auto;
    background: transparent;
    padding: 0;
    border: none;
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    overflow: visible;
    box-shadow: none;
    transition: none;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .primary-nav ul { flex-direction: row; gap: 0.25rem; }
  /* restore dark link color on desktop */
  .primary-nav a {
    color: var(--black);
    font-size: 0.9rem;
    padding: 0.3em 0.5em;
    border-bottom: none;
  }
  .primary-nav a:hover,
  .primary-nav a[aria-current="page"] {
    color: var(--red);
    padding-left: 0.5em;
  }
  .primary-nav .btn-header { margin-top: 0; }
}

@media (min-width: 1024px) {
  .primary-nav a { font-size: 0.95rem; padding: 0.3em 0.75em; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: clamp(420px, 75vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  padding-block: 4rem 5rem;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-content h1 span { color: var(--red); }

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  max-width: 640px;
  margin: 1rem auto 2rem;
  opacity: 0.9;
}

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding-block: clamp(2.5rem, 8vw, 4rem) clamp(2rem, 6vw, 3.5rem);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.page-hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 700px;
  margin: 0.75rem auto 0;
  opacity: 0.85;
}

.page-hero .red-bar {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 1rem auto 0;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
section { padding-block: clamp(2.5rem, 8vw, 4rem); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.section-intro {
  max-width: 720px;
  margin: 0.75rem 0 2rem;
  font-size: 1.05rem;
  color: var(--gray-2);
}

.red-accent {
  display: inline-block;
  width: 50px;
  height: 4px;
  background: var(--red);
  margin-bottom: 1rem;
}

/* Dark section */
.section-dark {
  background: var(--black);
  color: var(--white);
}
.section-dark .section-intro { color: rgba(255,255,255,0.75); }

/* Light gray section */
.section-light {
  background: var(--off-white);
}

/* ==========================================================================
   SERVICE CARDS (homepage)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.service-card-body p {
  color: var(--gray-2);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   TWO-COLUMN FEATURE SECTIONS
   ========================================================================== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

@media (min-width: 768px) {
  .feature-row { grid-template-columns: 1fr 1fr; }
  .feature-row.reverse .feature-text { order: 2; }
  .feature-row.reverse .feature-img  { order: 1; }
}

.feature-img img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.feature-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.feature-text p {
  color: var(--gray-2);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.feature-text ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.feature-text ul li {
  padding: 0.35em 0 0.35em 1.5em;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray-2);
}
.feature-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.section-dark .feature-text p,
.section-dark .feature-text ul li { color: rgba(255,255,255,0.8); }

/* ==========================================================================
   CLIENT LOGOS
   ========================================================================== */
.logos-section {
  background: var(--off-white);
  padding-block: 3rem;
  text-align: center;
}

.logos-section h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-3);
  margin-bottom: 2rem;
}

.logos-scroll {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logos-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  width: max-content;
  animation: logos-marquee 30s linear infinite;
}

.logos-scroll:hover .logos-track {
  animation-play-state: paused;
}

@keyframes logos-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logos-track a {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logos-track img {
  height: 70px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.logos-track a:hover img {
  opacity: 1;
}

/* ==========================================================================
   AUDIO STATS STRIP
   ========================================================================== */
.audio-stats-strip {
  background: var(--black);
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  padding-block: clamp(2rem, 5vw, 3rem);
}
.audio-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  text-align: center;
}
@media (min-width: 600px) {
  .audio-stats { grid-template-columns: repeat(4, 1fr); }
}
.audio-stat {
  padding: 2rem 1.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.audio-stat + .audio-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.audio-stat svg {
  color: var(--red);
  opacity: 0.85;
  flex-shrink: 0;
}
.audio-stat strong,
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.01em;
}
.audio-stat span,
.stat-label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
}
.stat-plus {
  font-size: 0.55em;
  vertical-align: super;
  color: var(--red);
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding-block: clamp(2rem, 6vw, 3rem);
}

.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.cta-band p {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  opacity: 0.9;
  margin-bottom: 1.75rem;
  max-width: 600px;
  margin-inline: auto;
}

.cta-band .btn-outline { border-color: var(--white); }

.cta-band .btn {
  margin: 0.35rem 0.4rem;
}

@media (max-width: 479px) {
  .cta-band .btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0.4rem auto;
  }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.5fr; }
}

.contact-info h2 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-info p, .contact-info address {
  font-style: normal;
  color: var(--gray-2);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-info a { color: var(--red); }

/* Service checkboxes */
.services-check h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.check-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.check-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-2);
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 0.7em 0.9em;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
  transition: border-color var(--transition);
  background: var(--white);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(207,0,0,0.12);
}

.form-field textarea { min-height: 140px; resize: vertical; }

.form-submit { margin-top: 0.5rem; }

/* Form notice */
.form-notice {
  padding: 0.75em 1em;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: none;
}
.form-notice.success { background: #d4edda; color: #155724; display: block; }
.form-notice.error   { background: #f8d7da; color: #721c24; display: block; }

/* ==========================================================================
   CRYPTO FOOTER SECTION
   ========================================================================== */
.crypto-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.crypto-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.crypto-label {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.2em 0.5em;
  border-radius: 3px;
  white-space: nowrap;
  margin-top: 2px;
}

.crypto-addr {
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  word-break: break-all;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #111;
  color: var(--white);
}

/* --- CTA Band --- */
.footer-cta-band {
  background: var(--red);
  padding: 1.6rem 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-cta-text {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0;
}
.footer-cta-btn {
  background: #fff;
  color: var(--red);
  border: 2px solid #fff;
  font-weight: 700;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.footer-cta-btn:hover {
  background: transparent;
  color: #fff;
}

/* --- Main Footer --- */
.footer-main {
  border-top: 1px solid #1e1e1e;
  padding: 3rem 0 2.5rem;
}
.footer-main-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

/* Brand column */
.footer-logo-wrap {
  display: inline-block;
  background: #fff;
  border-radius: 6px;
  padding: 0.5rem 0.9rem;
  margin-bottom: 0.85rem;
  line-height: 0;
}
.footer-logo-wrap img { display: block; }
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-socials {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.footer-socials a {
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  text-decoration: none;
}
.footer-socials a:hover {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

/* Nav columns */
.footer-col h3,
.footer-contact h3 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--red);
  margin-bottom: 0.9rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid #252525;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; list-style: none; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.875rem; text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--red); }

/* Contact column */
.footer-contact address {
  font-style: normal;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
}
.footer-contact address a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color var(--transition); }
.footer-contact address a:hover { color: var(--red); }

/* --- Bottom bar --- */
.footer-bottom {
  border-top: 1px solid #1e1e1e;
  text-align: center;
  padding-block: 1.1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

/* --- Responsive: Tablet (700–1099px) ---
   Row 1: [brand (col 1–2)] [contact (col 3–4)]
   Row 2: [company] [services] [equipment] [clients]
   ------------------------------------------------- */
@media (min-width: 700px) and (max-width: 1099px) {
  .footer-main-inner {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
  }
  /* Brand: top-left, spans 2 cols */
  .footer-main-inner > *:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
    padding-bottom: 2rem;
  }
  /* Contact: top-right, spans 2 cols */
  .footer-main-inner > *:nth-child(6) {
    grid-column: 3 / 5;
    grid-row: 1;
    padding-bottom: 2rem;
  }
  /* Nav cols: row 2, each in their own column */
  .footer-main-inner > *:nth-child(2) { grid-column: 1; grid-row: 2; }
  .footer-main-inner > *:nth-child(3) { grid-column: 2; grid-row: 2; }
  .footer-main-inner > *:nth-child(4) { grid-column: 3; grid-row: 2; }
  .footer-main-inner > *:nth-child(5) { grid-column: 4; grid-row: 2; }
  /* Divider between rows */
  .footer-main-inner > *:nth-child(n+2):nth-child(-n+5) {
    border-top: 1px solid #252525;
    padding-top: 2rem;
  }
}

/* --- Responsive: Mobile (<700px) ---
   [brand — full width, centered]
   [company] [services]
   [equipment] [clients]
   [contact — full width, centered]
   ---------------------------------- */
@media (max-width: 699px) {
  /* CTA band stacks and centers */
  .footer-cta-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }
  .footer-cta-text { font-size: 1.1rem; }
  .footer-cta-btn  { width: 100%; max-width: 260px; text-align: center; }

  /* Main grid: 2 columns */
  .footer-main-inner {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
    row-gap: 2.25rem;
  }

  /* Brand: full width, everything centered */
  .footer-main-inner > *:nth-child(1) {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #252525;
  }
  .footer-brand p   { text-align: center; }
  .footer-socials   { justify-content: center; }

  /* Nav cols: auto-placed 2x2 — no extra rules needed */

  /* Contact: full width, centered, visually separated */
  .footer-main-inner > *:nth-child(6) {
    grid-column: 1 / -1;
    text-align: center;
    border-top: 1px solid #252525;
    padding-top: 1.75rem;
  }
  .footer-contact address { text-align: center; }

  /* Bigger tap targets — min 44px, 16px font */
  .footer-col a {
    display: block;
    padding: 0.35rem 0;
    font-size: 1rem;
  }
  .footer-col ul { gap: 0; }
}

/* ==========================================================================
   RESPONSIVE IMAGES — service page layout
   ========================================================================== */
.content-section {
  padding-block: 4rem;
}
.content-section + .content-section { padding-top: 0; }

/* ==========================================================================
   SCROLL ANIMATION — staggered reveal
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
/* Stagger children inside a revealed container */
[data-reveal].revealed > *:nth-child(1) { transition-delay: 0s; }
[data-reveal].revealed > *:nth-child(2) { transition-delay: 0.08s; }
[data-reveal].revealed > *:nth-child(3) { transition-delay: 0.16s; }
[data-reveal].revealed > *:nth-child(4) { transition-delay: 0.24s; }

/* ==========================================================================
   SKIP LINK (accessibility)
   ========================================================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--red);
  color: var(--white);
  padding: 0.5em 1em;
  border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

/* ==========================================================================
   HEADER — glassmorphism blur on scroll
   ========================================================================== */
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* Animated red underline on desktop nav links */
@media (min-width: 768px) {
  .primary-nav > ul > li > a:not(.btn) {
    position: relative;
  }
  .primary-nav > ul > li > a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.25s ease;
  }
  .primary-nav > ul > li > a:not(.btn):hover::after,
  .primary-nav > ul > li > a[aria-current="page"]::after {
    width: 100%;
  }
}

/* Section title — animated red underline accent */
.section-title {
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-top: 0.4rem;
  transition: width 0.4s ease;
}
.revealed .section-title::after { width: 60px; }

/* Button red glow on hover */
.btn-primary:hover {
  box-shadow: 0 4px 20px rgba(207,0,0,0.45);
}

/* Service + client card image zoom on hover */
.service-card img,
.clients-card img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.service-card:hover img,
.clients-card:hover img {
  transform: scale(1.04);
}
.service-card,
.clients-card {
  overflow: hidden;
}

/* Hero dot — active grows slightly */
.hero-dot.is-active {
  transform: scale(1.4);
  transition: background 0.3s, transform 0.3s;
}

/* Red bar in page heroes pulses in */
.red-bar {
  animation: redBarIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
@keyframes redBarIn {
  from { width: 0; opacity: 0; }
  to   { opacity: 1; }
}

/* ==========================================================================
   HERO — gradient overlay, animated subtitle
   ========================================================================== */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(207,0,0,0.18) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.8) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content { z-index: 2; }

.hero-content p {
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-content .btn-primary,
.hero-content .btn-outline {
  animation: fadeUp 0.8s ease 0.5s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* Red animated underline on hero h1 */
.hero-content h1::after {
  content: '';
  display: block;
  width: 0;
  height: 4px;
  background: var(--red);
  margin: 0.5rem auto 0;
  animation: growLine 0.7s ease 0.6s forwards;
}
@keyframes growLine {
  to { width: 120px; }
}

/* ==========================================================================
   PAGE HERO — richer gradient
   ========================================================================== */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(17,17,17,0.75) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.page-hero-content { z-index: 2; }

/* ==========================================================================
   HERO SLIDESHOW
   ========================================================================== */
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slider__slide.is-active {
  opacity: 1;
}

.hero-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-slider__slide img[src*="LDE-Nyk"] {
  object-position: center 60%;
}

.hero-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.hero-dot.is-active {
  background: var(--red);
}

/* ==========================================================================
   PULLQUOTE
   ========================================================================== */
.pullquote {
  border-left: 4px solid var(--red);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-2);
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ==========================================================================
   TEAM GRID
   ========================================================================== */
/* Founder — single card centered */
.team-row-founder {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.team-row-founder .team-card {
  width: 100%;
  max-width: 280px;
}

/* 3-column grid for shop pups */
.team-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 600px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.team-img-wrap {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.04); }

.team-info {
  padding: 1rem;
  text-align: center;
  border-top: 3px solid var(--red);
}
.team-info h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  color: var(--black);
}
.team-info span {
  font-size: 0.82rem;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
/* Gallery section */
.gallery-section {
  background: var(--off-white);
  padding-block: 3rem 4rem;
}

/* Uniform grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
@media (min-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 4/3;
}
.gallery-item.hidden { display: none; }

.gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.gallery-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
  display: block;
}
.gallery-item:hover .gallery-link img {
  transform: scale(1.07);
  filter: brightness(0.45);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery-overlay svg { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6)); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.2s ease;
}
.lightbox[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox-img-wrap {
  max-width: min(1200px, 95vw);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  transition: background var(--transition), border-color var(--transition);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--red);
  border-color: var(--red);
}
.lightbox-close { top: 1.25rem; right: 1.25rem; }
.lightbox-prev  { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item[open] {
  box-shadow: 0 4px 16px rgba(207,0,0,0.1);
  border-color: var(--red);
}

.faq-item summary {
  padding: 1.1rem 1.5rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  background: var(--white);
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { background: var(--black); color: var(--white); }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--red);
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  padding: 1.25rem 1.5rem;
  background: var(--off-white);
  border-top: 1px solid #e0e0e0;
}
.faq-answer p { color: var(--gray-2); line-height: 1.7; margin-bottom: 0.75rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--red); }

/* ==========================================================================
   CAREERS
   ========================================================================== */
.careers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) { .careers-grid { grid-template-columns: repeat(2, 1fr); } }

.career-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  transition: transform var(--transition), box-shadow var(--transition);
}
.career-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.5); }

.career-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity var(--transition);
}
.career-card:hover .career-card-bg { transform: scale(1.05); opacity: 0.55; }

/* Dark gradient so text always readable */
.career-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
  border-bottom: 3px solid var(--red);
}

.career-card-body {
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.career-card-body svg {
  color: var(--red);
  margin-bottom: 1rem;
  display: block;
}
.career-card h3 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.career-card p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.7;
}

.careers-positions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) { .careers-positions { grid-template-columns: repeat(3, 1fr); } }

.position-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.position-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.position-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}
.position-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}
.position-card p { color: rgba(255,255,255,0.78); font-size: 0.95rem; line-height: 1.7; }

/* ==========================================================================
   SERVICES DETAIL PAGE
   ========================================================================== */
.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .services-detail-grid { grid-template-columns: repeat(2, 1fr); } }

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}

.sdc-img { overflow: hidden; aspect-ratio: 16/9; }
.sdc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-detail-card:hover .sdc-img img { transform: scale(1.05); }

.sdc-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--red);
}
.sdc-body h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.sdc-body ul {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}
.sdc-body ul li {
  padding: 0.3em 0 0.3em 1.25em;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray-2);
}
.sdc-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

/* ==========================================================================
   HEADER — nav active indicator
   ========================================================================== */
.primary-nav a[aria-current="page"] {
  color: var(--red) !important;
  position: relative;
}
.primary-nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
}

/* ==========================================================================
   BUTTON PULSE on primary CTA
   ========================================================================== */
.btn-primary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.cta-band .btn-outline {
  position: relative;
  overflow: hidden;
}
.cta-band .btn-outline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.cta-band .btn-outline:hover::after { transform: scaleX(1); }

/* ==========================================================================
   SERVICE CARD — image zoom
   ========================================================================== */
.service-card .service-card-img {
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card { overflow: hidden; }

/* ==========================================================================
   SECTION DARK — feature-text light override
   ========================================================================== */
.section-dark .feature-text h2 { color: var(--white); }



/* ===================================================
   EQUIPMENT GRID
   =================================================== */
.equip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.equip-card {
  flex: 0 1 160px;
}
@media (min-width: 600px) { .equip-card { flex: 0 1 200px; } }
@media (min-width: 900px) { .equip-card { flex: 0 1 220px; } }

.equip-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.equip-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.13); }
.equip-img { aspect-ratio: 1; overflow: hidden; background: #f8f8f8; }
.equip-img img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; transition: transform 0.4s ease; }
.equip-card:hover .equip-img img { transform: scale(1.06); }
.equip-info { padding: 0.85rem 1rem; border-top: 3px solid var(--red); }
.equip-info h3 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; line-height: 1.3; }

/* ===================================================
   BLOG GRID
   =================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 600px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h2 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; line-height: 1.3; }
.blog-card-body p { color: var(--gray-2); font-size: 0.9rem; flex: 1; margin-bottom: 1rem; }
.blog-meta { font-size: 0.8rem; color: var(--gray-3); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.75rem; }

/* ===================================================
   ARTICLE BODY
   =================================================== */
.article-body { max-width: 780px; }
.article-body h2 { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; text-transform: uppercase; margin: 2rem 0 0.75rem; }
.article-body h3 { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; margin: 1.5rem 0 0.5rem; }
.article-body p { color: var(--gray-2); line-height: 1.8; margin-bottom: 1rem; }
.article-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.article-body ul li { color: var(--gray-2); line-height: 1.7; padding: 0.2em 0; }
.article-back { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--red); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2rem; }

/* ==========================================================================
   DROPDOWN NAV
   ========================================================================== */

/* Mobile: dropdown items shown inline below parent */
.has-dropdown > .dropdown {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 1rem;
  border-left: 2px solid var(--red);
  margin: 0.25rem 0 0.5rem;
}
.has-dropdown > .dropdown li a {
  font-size: 0.95rem;
  opacity: 0.8;
  padding: 0.25em 0;
}

/* Desktop: hover/focus dropdown */
@media (min-width: 768px) {
  .has-dropdown {
    position: relative;
  }
  .has-dropdown > .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-top: 3px solid var(--red);
    border-radius: 0 0 var(--radius) var(--radius);
    min-width: 220px;
    padding: 0.5rem 0;
    flex-direction: column;
    gap: 0;
    z-index: 200;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    margin: 0;
    padding-left: 0;
    border-left: none;
  }
  .has-dropdown:hover > .dropdown,
  .has-dropdown:focus-within > .dropdown {
    display: flex;
  }
  .has-dropdown > .dropdown li a {
    display: block;
    padding: 0.55em 1.25em;
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    opacity: 1;
    white-space: nowrap;
    letter-spacing: 0.04em;
  }
  .has-dropdown > .dropdown li a:hover {
    background: rgba(207,0,0,0.07);
    color: var(--red);
    text-decoration: none;
  }
  /* Arrow indicator on parent link */
  .has-dropdown > a::after {
    content: ' ▾';
    font-size: 0.7em;
    opacity: 0.7;
    vertical-align: middle;
  }
}

/* ==========================================================================
   SERVICE CARD — direct child img (homepage + equipment index page)
   ========================================================================== */
.service-card > img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-card > div {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card > div h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.service-card > div p {
  color: var(--gray-2);
  font-size: 0.92rem;
  flex: 1;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
/* On dark backgrounds — make cards dark too so they feel part of the section */
.section-dark .service-card {
  background: #1a1a1a;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  border: 1px solid #2a2a2a;
}
.section-dark .service-card > div h3 { color: var(--white); }
.section-dark .service-card > div p  { color: rgba(255,255,255,0.6); }
.section-dark .service-card .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.section-dark .service-card .btn-outline:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ==========================================================================
   PAYMENT METHODS PAGE
   ========================================================================== */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.payment-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-top: 4px solid var(--red);
}
.payment-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.payment-card p { font-size: 0.9rem; color: var(--gray-2); }

/* ==========================================================================
   HOMEPAGE — STATS BAR
   ========================================================================== */
.stats-bar {
  background: var(--red);
  color: var(--white);
  padding-block: clamp(1.75rem, 5vw, 2.5rem);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 600px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

/* stat-num / stat-label / stat-plus consolidated into AUDIO STATS STRIP above */

/* ==========================================================================
   HOMEPAGE — PHOTO STRIP
   ========================================================================== */
.photo-strip {
  padding-block: 0 !important;
  overflow: hidden;
}

.photo-strip-inner {
  display: flex;
  height: 320px;
}

@media (min-width: 768px) {
  .photo-strip-inner { height: 420px; }
}

.photo-strip-inner img {
  flex: 1;
  min-width: 0;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: flex 0.4s ease, filter 0.4s ease;
}
.photo-strip-inner img:hover {
  flex: 2.5;
  filter: brightness(1);
}

/* ==========================================================================
   HOMEPAGE — CLIENTS SERVE GRID
   ========================================================================== */
.clients-serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .clients-serve-grid { grid-template-columns: repeat(4, 1fr); }
}

.clients-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  text-decoration: none;
}

.clients-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: brightness(0.6);
}

.clients-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.45);
}

.clients-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 0.75rem 0.85rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
}

/* ==========================================================================
   DARK LIST GRID — client/service equipment lists on dark bg
   ========================================================================== */
.dark-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 1rem;
}
@media (min-width: 600px) { .dark-list-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .dark-list-grid { grid-template-columns: repeat(3, 1fr); } }

.dark-list-col h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--red);
}
.dark-list-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dark-list-col ul li {
  padding: 0.4em 0 0.4em 1.4em;
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dark-list-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

/* ==========================================================================
   SERVICES PAGE — icon service cards
   ========================================================================== */
.service-icon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
@media (min-width: 600px) { .service-icon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .service-icon-grid { grid-template-columns: repeat(4, 1fr); } }

.service-icon-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), background var(--transition);
}
.service-icon-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.07); }
.service-icon-card svg { color: var(--red); margin-bottom: 1rem; }
.service-icon-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.service-icon-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.6; }

/* ==========================================================================
   FAQ PAGE — improved styling
   ========================================================================== */
.faq-section-wrap {
  background: var(--off-white);
  padding-block: 4rem;
}
.faq-still-q {
  margin-top: 3rem;
  padding: 2.5rem 2rem;
  background: var(--black);
  border-radius: var(--radius);
  text-align: center;
  border-top: 4px solid var(--red);
}
.faq-still-q h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.faq-still-q p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.faq-still-q .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.4); }
.faq-still-q .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ==========================================================================
   CONTACT PAGE — improvements
   ========================================================================== */
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.contact-info address { line-height: 1.9; color: var(--gray-2); }
.contact-info address a { color: var(--red); }
.contact-info address a:hover { color: var(--red-dk); }

/* ==========================================================================
   MOBILE — comprehensive overrides  (max-width: 767px)
   ========================================================================== */
@media (max-width: 767px) {

  /* Header — tighter padding, phone number in nav */
  .header-inner { padding-block: 0.55rem; }

  /* Nav drawer fills viewport height on mobile, scrollable */
  .primary-nav {
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Nav links — dark drawer overrides */
  .primary-nav a { border-bottom-color: #222; }
  .primary-nav > ul > li:last-child > a { border-bottom: none; }

  /* Dropdown links indented, dimmer */
  .has-dropdown > .dropdown {
    margin-top: 0;
    margin-bottom: 0.25rem;
  }
  .has-dropdown > .dropdown li a {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5em 0 0.5em 1rem;
    color: rgba(255,255,255,0.55);
    border-bottom-color: #1a1a1a;
  }
  .has-dropdown > .dropdown li a:hover { color: var(--red); padding-left: 1.35rem; }

  /* Socials inside dark drawer */
  .primary-nav .header-socials a {
    color: rgba(255,255,255,0.5);
    border-color: rgba(255,255,255,0.15);
  }
  .primary-nav .header-socials a:hover {
    color: #fff;
    background: var(--red);
    border-color: var(--red);
  }

  /* Phone in nav — white */
  .nav-phone { color: rgba(255,255,255,0.75) !important; margin-top: 0.5rem; }
  .nav-phone:hover { color: var(--red) !important; }
  .nav-phone span { font-size: 1rem; }

  /* HIRE US — full width, impactful */
  .primary-nav .btn-header {
    width: 100%;
    text-align: center;
    margin-top: 1.25rem;
    padding: 0.9em 1em;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  /* Hero — stronger text contrast on small screens */
  .hero-content h1 { text-shadow: 0 2px 24px rgba(0,0,0,0.6); }
  .hero-content p   { text-shadow: 0 1px 12px rgba(0,0,0,0.5); }

  /* Page hero — less padding, subtitle wraps cleanly */
  .page-hero h1 { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  .page-hero .subtitle { font-size: 0.95rem; padding-inline: 0.5rem; }

  /* Section padding — tighter on mobile */
  .section-dark, .section-light { padding-block: 2.75rem; }

  /* Section titles scale down */
  .section-title { font-size: clamp(1.4rem, 6vw, 2rem); }

  /* iOS input zoom fix — must be 16px to prevent auto-zoom */
  input, textarea, select { font-size: 16px !important; }

  /* Feature rows — image always AFTER text on mobile, smaller gap */
  .feature-row { gap: 1.5rem; }
  .feature-row .feature-img { order: 2; }
  .feature-row .feature-text { order: 1; }
  .feature-row.reverse .feature-text { order: 1; }
  .feature-row.reverse .feature-img  { order: 2; }

  /* Feature text spacing */
  .feature-text h2 { font-size: clamp(1.35rem, 5vw, 1.75rem); }
  .feature-text p  { font-size: 0.95rem; }

  /* Cards — full width on very small screens */
  .service-detail-card { break-inside: avoid; }
  .services-detail-grid { gap: 1.5rem; }

  /* Equip cards — 2 cols min on mobile */
  .equip-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .equip-info h3 { font-size: 0.82rem; }

  /* Blog grid */
  .blog-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  /* FAQ — tighter summary padding */
  .faq-item summary {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }
  .faq-answer { padding: 1rem; }

  /* FAQ still-q box */
  .faq-still-q { padding: 1.75rem 1.25rem; }
  .faq-still-q .btn {
    display: block;
    width: 100%;
    max-width: 260px;
    margin: 0.4rem auto;
  }

  /* Contact form — single column always */
  .form-row { grid-template-columns: 1fr; }

  /* Services check — single col */
  .check-group { grid-template-columns: 1fr; }

  /* Careers positions — single col on very small */
  .careers-positions { grid-template-columns: 1fr; }

  /* Footer — padding tighter */
  .footer-brand img { width: 140px; }

  /* Photo strip — shorter on mobile */
  .photo-strip-inner { height: 220px; }

  /* Pull quote smaller */
  .pullquote { font-size: 0.95rem; padding: 0.75rem 1rem; }

  /* Dark list single col */
  .dark-list-grid { gap: 2rem; }

  /* Clients serve grid — always 2 col on mobile */
  .clients-serve-grid { gap: 0.75rem; }

  /* Gallery — tighter gap */
  .gallery-grid { gap: 0.5rem; }
}

/* ==========================================================================
   MOBILE — very small screens (max-width: 380px)
   ========================================================================== */
@media (max-width: 380px) {
  .page-hero h1 { font-size: 1.6rem; }
  .section-title { font-size: 1.3rem; }
  .btn { font-size: 0.88rem; padding: 0.6em 1.1em; }
  .equip-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .logo img { width: 120px; }
}

/* ==========================================================================
   TOUCH — remove hover effects that cause sticking on iOS
   ========================================================================== */
@media (hover: none) {
  .service-card:hover,
  .career-card:hover,
  .equip-card:hover,
  .blog-card:hover,
  .team-card:hover,
  .position-card:hover,
  .service-detail-card:hover { transform: none; box-shadow: none; }

  .photo-strip-inner img:hover { flex: 1; filter: brightness(0.75); }
  .logos-scroll:hover .logos-track { animation-play-state: running; }
  .gallery-item:hover .gallery-link img { transform: none; filter: none; }
  .gallery-item:hover .gallery-overlay { opacity: 0; }
}

/* ==========================================================================
   TABLET — 768px to 1023px tweaks
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1023px) {
  .primary-nav a { font-size: 0.82rem; padding: 0.3em 0.4em; }
  .btn-header { font-size: 0.75rem; padding: 0.45em 1em; }
  .feature-row { gap: 2rem; }
  .dark-list-grid { grid-template-columns: repeat(2, 1fr); }
}

