/* =========================================================
   DESIGN TOKENS — edit here to retheme the entire site
   ========================================================= */
:root {
  --yellow:      #F5C400;
  --yellow-dark: #D4A900;
  --black:       #0C0C0C;
  --dark:        #141414;
  --card:        #1C1C1C;
  --border:      #2A2A2A;
  --white:       #F4F4F4;
  --grey:        #9A9A9A;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --max-w:        1200px;
  --radius:       4px;
}

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

/* =========================================================
   UTILITIES
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
.tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid var(--yellow);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,196,0,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
}
.section-title span { color: var(--yellow); }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: rgba(12,12,12,0.97);
  padding: 0.75rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,244,244,0.75);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-phone {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--yellow);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--yellow-dark); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 6rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: var(--black);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.4s ease-in-out;
  will-change: opacity, transform;
}
.hero-slide.is-active {
  opacity: 1;
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,12,12,0.55) 0%,
    rgba(12,12,12,0.25) 35%,
    rgba(12,12,12,0.75) 70%,
    rgba(12,12,12,0.97) 100%
  );
}
.hero-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0, var(--yellow) 40px,
    var(--black) 40px, var(--black) 52px
  );
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.3s forwards;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  width: fit-content;
}
.hero-eyebrow-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--yellow);
}
.hero-eyebrow span {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.15em;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}
.hero-title .highlight {
  color: var(--yellow);
  display: block;
}
.hero-subtitle {
  font-family: var(--font-cond);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(244,244,244,0.7);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.7s forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.9s forwards;
}
.hero-badge {
  margin-left: auto;
  background: rgba(245,196,0,0.1);
  border: 1px solid rgba(245,196,0,0.3);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 1.1s forwards;
}
.hero-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--yellow);
  line-height: 1;
}
.hero-badge-text {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,244,244,0.7);
  line-height: 1.3;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   SERVICES TICKER
   ========================================================= */
.ticker {
  background: var(--yellow);
  overflow: hidden;
  padding: 0.6rem 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 2rem;
  white-space: nowrap;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}
.ticker-dot {
  width: 6px;
  height: 6px;
  background: var(--black);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
  background: var(--yellow);
  padding: 1.5rem 2rem;
}
.stats-bar-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--black);
  line-height: 1;
}
.stats-bar-inner .stat-label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3a3000;
  margin-top: 0.25rem;
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background: var(--dark);
}
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--card);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.25s;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: #212121; }
.service-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(245,196,0,0.1);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.25s;
}
.service-card:hover .service-num { color: rgba(245,196,0,0.18); }
.service-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.service-name {
  font-family: var(--font-cond);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
}

/* =========================================================
   CASE STUDIES SECTION
   ========================================================= */
.case-studies {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background: var(--black);
}
.case-studies-header {
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}
.case-studies-sub {
  font-family: var(--font-cond);
  font-size: 1.05rem;
  color: var(--grey);
  margin-top: 0.75rem;
  max-width: 480px;
}
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.case-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}
.case-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}
.case-card-image {
  position: relative;
  height: 200px;
}
.case-card-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--grey);
}
.case-card-image-placeholder span { font-size: 2rem; opacity: 0.4; }
.case-card-image-placeholder p {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.4;
}
.case-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.case-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.case-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.1;
}
.case-card-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.case-card-meta span {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  color: var(--grey);
}
.case-card-desc {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
  flex: 1;
}
.case-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
  text-align: center;
}
.case-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--yellow);
  line-height: 1;
}
.case-stat-label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.15rem;
}
@media (max-width: 900px) {
  .case-studies-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  z-index: 0;
}
.about-image {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05) saturate(0.85);
}
.about-content .tag { margin-bottom: 1.25rem; }
.about-lead {
  font-family: var(--font-cond);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: rgba(244,244,244,0.8);
  margin: 1.25rem 0;
  line-height: 1.65;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-val {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--yellow);
  line-height: 1;
}
.about-stats .stat-label {
  color: var(--white);
}

/* =========================================================
   WHY US / FEATURES
   ========================================================= */
.why {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background: var(--yellow);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
  color: var(--black);
}
.why-sub {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  color: rgba(12,12,12,0.65);
  margin-top: 1rem;
  max-width: 380px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(12,12,12,0.07);
  border-radius: var(--radius);
  border-left: 4px solid var(--black);
  transition: background 0.2s, transform 0.2s;
}
.why-item:hover {
  background: rgba(12,12,12,0.12);
  transform: translateX(4px);
}
.why-item-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.why-item-title {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
}
.why-item-text {
  font-size: 0.88rem;
  color: rgba(12,12,12,0.7);
  margin-top: 0.2rem;
}

/* =========================================================
   QUOTE REQUEST
   ========================================================= */
.quote {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background: var(--dark);
}
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.quote-info .section-title { margin-bottom: 1.25rem; }
.quote-body {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  color: var(--grey);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.quote-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.quote-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245,196,0,0.1);
  border: 1px solid rgba(245,196,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.quote-contact-val {
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}
.quote-contact-sub {
  font-size: 0.8rem;
  color: var(--grey);
}
.quote-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.5rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239A9A9A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,196,0,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: #444; }
.form-select option { background: var(--card); }
.form-note {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 0.75rem;
  text-align: center;
}

/* =========================================================
   CONTACT / CTA BANNER
   ========================================================= */
.cta-banner {
  padding: clamp(3rem, 8vh, 5rem) 0;
  background: var(--black);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,196,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner::before { top: -100px; left: -100px; }
.cta-banner::after  { bottom: -100px; right: -100px; }
.cta-phone {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--yellow);
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 1rem 0;
  display: block;
  position: relative;
}
.cta-phone:hover { color: var(--yellow-dark); }
.cta-label {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #080808;
  padding: clamp(3rem, 6vh, 4.5rem) 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.footer-tagline {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
  max-width: 280px;
}
.footer-heading {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}
.footer-links li + li { margin-top: 0.6rem; }
.footer-links a {
  font-family: var(--font-cond);
  font-size: 0.95rem;
  color: var(--grey);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.footer-contact-line span {
  font-size: 1rem;
}
.footer-contact-line a, .footer-contact-line p {
  font-family: var(--font-cond);
  font-size: 0.95rem;
  color: var(--grey);
  transition: color 0.2s;
}
.footer-contact-line a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: #555;
}
.footer-stripe {
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0, var(--yellow) 30px,
    var(--black) 30px, var(--black) 40px
  );
  margin-top: 1.5rem;
}

/* =========================================================
   CAREERS SECTION
   ========================================================= */
.careers {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background: var(--black);
}
.careers-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}
.careers-header .section-title { margin-top: 0.5rem; }
.careers-print-btn {
  white-space: nowrap;
  font-size: 0.95rem;
}
.careers-print-btn[hidden] { display: none; }
.job-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
}
.job-card-header {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.job-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.job-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--grey);
}
.job-pill.highlight {
  background: rgba(245,196,0,0.1);
  border-color: rgba(245,196,0,0.35);
  color: var(--yellow);
}
.job-apply-block {
  text-align: right;
  flex-shrink: 0;
}
.job-apply-block .btn { white-space: nowrap; }
.job-apply-note {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 0.5rem;
}
.job-apply-email {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  color: var(--yellow);
  font-weight: 600;
}
.job-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.job-col {
  padding: 2.5rem;
}
.job-col + .job-col {
  border-left: 1px solid var(--border);
}
.job-col-title {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.job-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.job-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-cond);
  font-size: 1rem;
  color: rgba(244,244,244,0.85);
  line-height: 1.5;
}
.job-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  margin-top: 0.55em;
}
.job-assets {
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
}
.job-assets-title {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
}
.job-asset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.job-asset-tag {
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(244,244,244,0.65);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.3rem 0.75rem;
}
.job-cta-bar {
  background: rgba(245,196,0,0.06);
  border-top: 1px solid rgba(245,196,0,0.2);
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.job-cta-text {
  font-family: var(--font-cond);
  font-size: 1rem;
  color: rgba(244,244,244,0.7);
}
.job-cta-text strong {
  color: var(--yellow);
  font-size: 1.1rem;
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-phone { font-size: 1.1rem; }

  .about-inner,
  .why-inner,
  .quote-inner { grid-template-columns: 1fr; }
  .about-image-wrap { order: -1; }
  .about-image { height: 280px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .job-body { grid-template-columns: 1fr; }
  .job-col + .job-col { border-left: none; border-top: 1px solid var(--border); }
  .job-card-header { flex-direction: column; }
  .job-apply-block { text-align: left; }
}
@media (max-width: 600px) {
  .hero-badge { display: none; }
  .about-stats { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* =========================================================
   MOBILE NAV MENU
   ========================================================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--yellow); }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--grey);
}
.mobile-menu-phone {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--yellow);
  margin-top: 1rem;
}

/* =========================================================
   THEME TOGGLE BUTTON
   ========================================================= */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover { opacity: 1; }
.theme-toggle .icon-dark { display: block; }
.theme-toggle .icon-light { display: none; }
html[data-theme="light"] .theme-toggle .icon-dark { display: none; }
html[data-theme="light"] .theme-toggle .icon-light { display: block; }

/* =========================================================
   LIGHT MODE
   ========================================================= */
html[data-theme="light"] {
  --black:  #FFFFFF;
  --dark:   #F2F2F2;
  --card:   #FFFFFF;
  --border: #DEDEDE;
  --white:  #111111;
  --grey:   #5A5A5A;
}

/* Hero — keep entirely unchanged in light mode */
html[data-theme="light"] .hero-title { color: #F4F4F4; }
html[data-theme="light"] .hero-subtitle { color: rgba(244,244,244,0.7); }
html[data-theme="light"] .hero .btn-outline {
  color: #F4F4F4;
  border-color: rgba(255,255,255,0.4);
}
html[data-theme="light"] .hero .btn-outline:hover {
  border-color: #F4F4F4;
  background: rgba(255,255,255,0.05);
}
html[data-theme="light"] .hero-badge-text { color: rgba(244,244,244,0.7); }
html[data-theme="light"] .hero-stripe {
  background: repeating-linear-gradient(
    90deg,
    #F5C400 0, #F5C400 40px,
    #0C0C0C 40px, #0C0C0C 52px
  );
}

/* btn-primary — keep black text on yellow in light mode */
html[data-theme="light"] .btn-primary { color: #0C0C0C; }

/* Nav */
html[data-theme="light"] .nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}

/* About watermark */
html[data-theme="light"] .about::before {
  color: rgba(0,0,0,0.03);
}

/* Why section items (hardcoded rgba dark values) */
html[data-theme="light"] .why-item {
  background: rgba(12,12,12,0.07);
}
html[data-theme="light"] .why-item:hover {
  background: rgba(12,12,12,0.13);
  transform: translateX(4px);
}

/* Form inputs */
html[data-theme="light"] .form-input,
html[data-theme="light"] .form-select,
html[data-theme="light"] .form-textarea {
  background: #F8F8F8;
  color: #111111;
}
html[data-theme="light"] .form-input::placeholder,
html[data-theme="light"] .form-textarea::placeholder { color: #BBBBBB; }
html[data-theme="light"] .form-select option {
  background: #FFFFFF;
  color: #111111;
}

/* Footer stays dark (brand element) */
html[data-theme="light"] .footer { background: #111111; }
html[data-theme="light"] .footer-tagline,
html[data-theme="light"] .footer-links a,
html[data-theme="light"] .footer-contact-line a,
html[data-theme="light"] .footer-contact-line p { color: #888888; }
html[data-theme="light"] .footer-links a:hover,
html[data-theme="light"] .footer-contact-line a:hover { color: #F4F4F4; }
html[data-theme="light"] .footer-copy { color: #666666; }
html[data-theme="light"] .footer-bottom { border-color: #2A2A2A; }

/* Mobile menu */
html[data-theme="light"] .mobile-menu { background: #FFFFFF; }
html[data-theme="light"] .mobile-menu a { color: #111111; }

/* About lead text */
html[data-theme="light"] .about-lead { color: #333333; }

/* Careers job list text */
html[data-theme="light"] .job-list li { color: #222222; }
html[data-theme="light"] .job-cta-text { color: #333333; }

/* CTA banner glow orbs */
html[data-theme="light"] .cta-banner::before,
html[data-theme="light"] .cta-banner::after {
  background: radial-gradient(circle, rgba(245,196,0,0.12) 0%, transparent 70%);
}

/* Hide print-only elements on screen */
.hero-print-img    { display: none; }
.print-qr          { display: none; }
.hero-stripe-canvas { display: none; }

/* =========================================================
   PRINT — brochure layout
   Shows: hero, stats bar, services
   Hides: nav, ticker, case studies, about, why, careers,
          quote form, CTA banner, footer
   ========================================================= */
@media print {
  /* -- Page setup -- */
  @page {
    margin: 0.6in 0.65in;
    size: letter portrait;
  }

  html, body {
    overflow: visible;
    background: white !important;
    color: #111 !important;
  }

  /* -- Kill animations & transitions globally -- */
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /* -- Make all reveal elements visible -- */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  /* -- Hide everything that isn't hero / stats / services / CTA -- */
  .nav,
  .mobile-menu,
  .ticker,
  .case-studies,
  .about,
  .why,
  .careers,
  .quote,
  .footer,
  .hero-actions,
  .theme-toggle {
    display: none !important;
  }

  /* ---- Print-only hero image (real <img> so it always prints) ---- */
  .hero-print-img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    z-index: 0;
    /* Darken so white text stays legible */
    filter: brightness(0.35);
  }

  /* ---- HERO ---- */
  .hero {
    position: relative;
    height: 28vh;
    min-height: 200px;
    max-height: 240px;
    page-break-after: avoid;
    overflow: hidden;
    background-color: #1a1a1a !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .hero-bg {
    display: none !important;
  }

  /* Hide overlay — image filter handles contrast */
  .hero-overlay {
    display: none !important;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 0.75rem;
    padding-bottom: 1rem; /* keeps yellow ::after box clear of the stripe */
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    opacity: 1 !important;
    background: transparent !important;
    padding: 0;
    width: fit-content;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .hero-eyebrow span {
    font-family: var(--font-cond);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #F5C400 !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .hero-eyebrow-line {
    background: #F5C400 !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 0.88;
    letter-spacing: 0.04em;
    color: #000000 !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .hero-title .highlight {
    color: #F5C400 !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .hero-subtitle {
    font-family: var(--font-cond);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #000000 !important;
    margin-top: 0.4rem;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  /* print contact line below the subtitle */
  .hero-content::after {
    content: 'cleansweepproperty.com  \2022  (709) 747-4000  \2022  St. John\2019s, NL';
    display: block;
    font-family: var(--font-cond);
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #000000 !important;
    background-color: #F5C400 !important;
    margin-top: 0.6rem;
    padding: 0.25rem 1.25rem;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  /* ---- HERO STRIPE — hide CSS version, use canvas instead ---- */
  .hero-stripe { display: none !important; }

  .hero-stripe-canvas {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    z-index: 10;
  }

  /* ---- STATS BAR ---- */
  .stats-bar {
    background: #F5C400 !important;
    page-break-inside: avoid;
    padding: 0.4rem 0;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 2.5rem);
    text-align: center;
  }

  .stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: #0C0C0C !important;
    line-height: 1;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .stat-label {
    font-family: var(--font-cond);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(12, 12, 12, 0.65) !important;
    margin-top: 0.15rem;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  /* -- White backgrounds on non-hero sections -- */
  .stats-bar-inner,
  .services,
  .services .container,
  .services-header,
  .services-grid,
  .service-card {
    background: white !important;
    color: #111 !important;
  }

  /* ---- SERVICES ---- */
  .services {
    padding: 0.6rem 0 0.6rem;
    page-break-before: avoid;
  }

  .services-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 0.6rem;
    border-bottom: 2px solid #F5C400;
    padding-bottom: 0.4rem;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .services-header .tag {
    display: none !important;
  }

  .services-header .section-title {
    font-size: 1.8rem !important;
    color: #111 !important;
    line-height: 1 !important;
    margin-top: 0.25rem;
  }

  .services-header .section-title span {
    color: #b38f00 !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  /* Hide subtitle under "Our Services" */
  .services-header p {
    display: none !important;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .service-card {
    background: white !important;
    border: 1px solid #ddd !important;
    border-top: 3px solid #F5C400 !important;
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    page-break-inside: avoid;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .service-num {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #e8bb00 !important;
    line-height: 1;
    margin-bottom: 0.1rem;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .service-icon {
    display: none !important;
  }

  .service-name {
    font-family: var(--font-cond);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #111 !important;
    margin-bottom: 0.25rem;
    line-height: 1.2;
  }

  .service-desc {
    font-size: 0.75rem;
    color: #555 !important;
    line-height: 1.4;
  }

  /* ---- CTA PHONE BANNER ---- */
  .cta-banner {
    background-color: #0C0C0C !important;
    padding: 0.6rem 0;
    margin-top: 0.4rem;
    page-break-inside: avoid;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  /* Suppress decorative radial glows */
  .cta-banner::before,
  .cta-banner::after {
    display: none !important;
  }

  /* Row layout: phone info left, QR code right */
  .cta-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    text-align: left;
  }

  .cta-label {
    font-family: var(--font-cond);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #888 !important;
    display: block;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .cta-phone {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: #F5C400 !important;
    letter-spacing: 0.05em;
    line-height: 1.05;
    display: block;
    white-space: nowrap;
    margin: 0.1rem 0;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  /* ---- PRINT QR CODE (inside .cta-banner) ---- */
  .print-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    flex-shrink: 0;
  }

  /* qrcodejs creates both a canvas AND an img — hide the duplicate */
  #printQrCode img {
    display: none !important;
  }

  #printQrCode canvas {
    display: block !important;
    width: 85px !important;
    height: 85px !important;
    border: 3px solid #F5C400;
    border-radius: 4px;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .print-qr-url {
    font-family: var(--font-cond);
    font-size: 0.58rem;
    letter-spacing: 0.05em;
    color: #aaa !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .print-qr-caption {
    font-family: var(--font-cond);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #ddd !important;
    text-align: center;
    max-width: 95px;
    line-height: 1.3;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}
