/* =============================================
   RAY SAGAN & SONS — STYLESHEET
   ============================================= */

/* ---------- CSS VARIABLES ---------- */
:root {
  --color-navy:      #1a2942;
  --color-navy-dark: #0a1520;
  --color-orange:    #e87020;
  --color-orange-dk: #c45e10;
  --color-light:     #dcdcda;
  --color-white:     #ffffff;
  --color-text:      #2d2d2d;
  --color-muted:     #666666;
  --color-border:    #dde0e5;
  --color-success:   #2a7a4b;

  --font-heading: 'Archivo', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);

  --transition: 0.25s ease;

  --container-width: 1200px;
  --header-height: 75px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img, svg, iframe {
  display: block;
  max-width: 100%;
}

ul { list-style: none; }

address { font-style: normal; }

a {
  color: var(--color-orange);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--color-light);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.gallery .section-header {
  margin-bottom: 1.5rem;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--color-muted);
  font-size: 1.05rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary {
  background: #b5d334;
  color: var(--color-navy-dark);
  border-color: #b5d334;
}
.btn-primary:hover {
  background: #9fbb2a;
  border-color: #9fbb2a;
  color: var(--color-navy-dark);
}

.btn-outline {
  background: transparent;
  color: #b5d334;
  border-color: #b5d334;
}
.btn-outline:hover {
  background: rgba(181,211,52,0.15);
  border-color: #b5d334;
  color: #b5d334;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--color-navy-dark);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: var(--color-navy-dark);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

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

.logo-tagline {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 0.25rem;
  font-family: var(--font-body);
}

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.1);
}

.nav-link.nav-cta {
  background: #b5d334;
  color: var(--color-navy-dark);
  padding: 0.5rem 1.1rem;
}

.nav-link.nav-cta:hover {
  background: #9fbb2a;
  color: var(--color-navy-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover { background: rgba(255,255,255,0.1); }

.bar {
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  display: block;
}

.hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--color-navy);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top left, var(--color-navy-dark) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle geometric background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,112,32,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,112,32,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,29,48,0.9) 0%, rgba(26,41,66,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 1.03rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-orange);
  width: 1020px;
  max-width: 100%;
  margin-top: -20px;
  margin-bottom: 1rem;
  margin-left: 8px;
}

.hero-logo {
  display: block;
  width: 1020px;
  max-width: 100%;
  height: auto;
  margin-bottom: 0.15rem;
  margin-left: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.03rem, 3.3vw, 3.31rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.03;
  letter-spacing: 0;
  white-space: nowrap;
  width: 1020px;
  max-width: 100%;
  margin-top: 2px;
  margin-bottom: 1.5rem;
  margin-left: 3px;
}

.tablet-break { display: none; }
.mobile-break { display: none; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.hero-actions .btn {
  flex: 1;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 900;
  color: var(--color-orange);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

.stat-divider {
  width: 2px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  align-self: center;
  transform: translateX(-25px);
}

/* =============================================
   ABOUT
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--color-navy);
}

.about-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: calc(50% + 3px) center;
}

.about-image-placeholder svg {
  width: 100%;
  height: 100%;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-year {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
  opacity: 0.9;
}

.about-content .section-title {
  margin-top: 0.5rem;
}

.about-content p {
  color: var(--color-muted);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.about-highlights {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.98rem;
  font-weight: 500;
}

.highlight-icon {
  width: 22px;
  height: 22px;
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-orange);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, var(--color-navy-dark) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials .section-title {
  color: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(181,211,52,0.25);
  transition: border-color 0.2s ease;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 280px;
}

.testimonial-stars {
  color: #b5d334;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(181,211,52,0.4) transparent;
}

.testimonial-author {
  border-top: 1px solid rgba(181,211,52,0.3);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-author strong {
  font-size: 0.95rem;
  color: #b5d334;
}

.testimonial-author span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.testimonial-card:hover {
  border-color: var(--color-orange);
}

/* =============================================
   GALLERY — CONTENT RIVER
   ============================================= */
.gallery-river-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-river {
  display: flex;
  gap: 0.6rem;
  overflow-x: scroll;
  padding: 0.25rem 0 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  user-select: none;
}

.gallery-river::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 auto;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-note {
  text-align: center;
  margin-top: 1.25rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.gallery-truck {
  margin-top: 1.5rem;
}

.gallery-truck-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.gallery-video {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.video-wrap {
  position: relative;
  display: block;
  width: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.video-wrap:hover img {
  transform: scale(1.03);
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play svg {
  width: 72px;
  height: 52px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform var(--transition);
}

.video-wrap:hover .video-play svg {
  transform: scale(1.12);
}

@media (max-width: 768px) {
  .video-wrap { width: 100%; }
}

/* legacy — no longer used */
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 600px) {
  .gallery-item { height: 220px; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover { background: rgba(255,255,255,0.3); }

/* =============================================
   QUOTE FORM
   ============================================= */
.quote-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  margin-bottom: 1.25rem;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy);
}

.required { color: var(--color-orange); }

input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(232,112,32,0.15);
}

input.error, select.error, textarea.error {
  border-color: #c0392b;
}

.field-error {
  font-size: 0.8rem;
  color: #c0392b;
  min-height: 1rem;
}

textarea { resize: vertical; min-height: 120px; }

.form-submit {
  text-align: center;
  margin-top: 1.5rem;
}

#submit-btn .btn-loading { display: none; }
#submit-btn.loading .btn-text { display: none; }
#submit-btn.loading .btn-loading { display: inline; }
#submit-btn.loading { opacity: 0.7; cursor: not-allowed; }

.form-success {
  display: none;
  align-items: center;
  gap: 1rem;
  background: #eafaf1;
  border: 1.5px solid #2a7a4b;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  color: var(--color-success);
}

.form-success.visible { display: flex; }

.success-icon {
  font-size: 1.5rem;
  background: var(--color-success);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-success p { margin: 0; font-size: 0.9rem; opacity: 0.8; }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info p {
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.contact-item-icon {
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  background: var(--color-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin-bottom: 0.2rem;
}

.contact-item-text span {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.5;
}

.contact-item:hover .contact-item-icon { background: var(--color-orange); color: #fff; }

.hiring-badge {
  margin-top: 2rem;
  background: var(--color-navy);
  border: 2px solid #b5d334;
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}

.hiring-label {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: #b5d334;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hiring-badge p {
  margin: 0;
  color: var(--color-white);
  font-size: 0.95rem;
  max-width: 100%;
}

.hiring-note {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.7);
}

.hiring-badge .btn {
  width: auto;
  align-self: center;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
}

.map-wrap {
  margin-top: 70px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.map-wrap iframe {
  display: block;
  filter: invert(90%) hue-rotate(195deg) saturate(0.55) brightness(0.85) contrast(1.05);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.75);
}

.footer-inner {
  display: block;
  padding: 2rem 1.25rem 1.5rem;
}

.footer-brand p {
  margin-top: 0.4rem;
  font-size: 0.65rem;
}

.footer-brand address,
.footer-brand a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  display: block;
  text-decoration: none;
}

.footer-brand address {
  margin-top: 0.5rem;
}

.footer-brand a:hover { color: var(--color-orange); }

.footer-brand .logo-primary,
.footer-brand .logo-secondary {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer-brand .logo-amp {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-orange);
  font-weight: 700;
  margin: 0 0.25rem;
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--color-orange); }

.footer-contact address,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  display: block;
}

.footer-contact a:hover { color: var(--color-orange); }

.footer-fb { margin-top: 0.5rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 46px;
  height: 46px;
  background: var(--color-orange);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover { background: var(--color-orange-dk); }

/* =============================================
   HERO TRUCK
   ============================================= */
.hero-truck {
  position: absolute;
  right: 3%;
  bottom: 100px;
  width: 58.3%;
  max-width: 658px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.4));
}

/* Reserve right-side space inside hero-content so text never sits under the truck */
.hero-content {
  padding-right: 42%;
}


@media (max-width: 900px) {
  .hero-truck { display: none; }
  .hero-content { padding-right: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
}

/* =============================================
   ANIMATIONS (scroll reveal)
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================= */
@media (max-width: 900px) {
  :root { --header-height: 64px; }

  /* Nav becomes mobile menu */
  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-navy-dark);
    padding: 1rem 0 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 1.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

  .nav-link.nav-cta {
    margin-top: 0.75rem;
    text-align: center;
  }

  /* Layout */
  .container { padding: 0 3rem; }

  /* Hero */
  .tablet-break { display: inline; }
  .hero-content { padding-top: calc(var(--header-height) + 0.5rem); }
  .hero-title { margin-top: 20px; }
  .hero-logo { width: 75%; margin-left: auto; margin-right: auto; }
  .hero-actions .btn { font-size: 0.9rem; padding: 0.75rem 1.5rem; flex: 0 0 180px; }
  .hero-title,
  .hero-sub { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-stats {
    gap: 1.25rem;
    justify-content: center;
  }
  .stat { align-items: center; }
  .stat-label { text-align: center; }

  /* Paragraphs */
  p { max-width: 60ch; margin-left: auto; margin-right: auto; }

  /* Contact */
  .contact-items { flex-direction: row; justify-content: center; gap: 1rem; }
  .contact-item { flex-direction: column; align-items: center; }
  .contact-item-text { display: none; }
  .contact-item-icon { width: 56px; height: 56px; font-size: 1.6rem; border-radius: var(--radius-md); }

  /* About */
  .about-content { text-align: center; }
  .about-highlights { align-items: center; }
  .about-highlights li { justify-content: center; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image-placeholder { max-width: 60%; margin: 0 auto; }

  .about-badge {
    right: 1rem;
    bottom: -1rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Quote form */
  .quote-form {
    padding: 2rem 1.5rem;
  }

  /* Contact */
  .contact-info { text-align: center; }
  .contact-items { align-items: center; }
  .contact-item { flex-direction: column; align-items: center; text-align: center; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================= */
@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  #contact { padding-bottom: 1.75rem; }

  /* Hero */
  .hero-eyebrow,
  .hero-title,
  .hero-sub { text-align: center; }
  .hero-content { padding-top: calc(var(--header-height) + 1.5rem); padding-right: 1.25rem; transform: translateX(-15px); }
  .hero-sub { font-size: 1rem; line-height: 1.5; }
  .tablet-break { display: none; }
  .hero-actions .btn { width: 80%; }
  .mobile-break { display: inline; }
  .hero-eyebrow { font-size: 0.8rem; }
  .hero-title { font-size: 1.45rem; white-space: nowrap; margin-top: 25px; text-align: center; }
  .hero-logo { margin-left: auto; margin-right: auto; width: 100%; }
  #submit-btn { width: 100%; box-sizing: border-box; }
.hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 70%; text-align: center; flex: none; font-size: 1rem; padding: 0.75rem 1.5rem; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; justify-content: unset; margin-top: 2rem; align-items: start; margin-bottom: 4rem; }
  .stat-divider { display: none; }
  .stat { align-items: center; flex-shrink: 1; min-width: 0; }
  .stat-label { text-align: center; }

  /* Paragraphs */
  p { max-width: 100%; }

  /* About */
  .about-image-placeholder { max-width: 100%; }
  .about-text { text-align: center; }
  .about-text h2,
  .about-text p { text-align: center; }
  .about-content { text-align: center; }
  .about-content p { text-align: center; }
  .about-highlights { align-items: center; }
  .about-highlights li { justify-content: center; white-space: nowrap; font-size: 0.85rem; }
  .about-badge { padding: 0.6rem 0.9rem; bottom: -0.75rem; right: -0.5rem; }
  .badge-year { font-size: 1.2rem; }
  .badge-text { font-size: 0.6rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .service-card { text-align: center; }

  /* Contact */
  .contact-info { text-align: center; }
  .contact-info p { text-align: center; }
  .contact-items { align-items: center; }
  .contact-item { flex-direction: column; align-items: center; text-align: center; }
  .contact-item address { text-align: center; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 1.5rem 1rem; }

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

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.25rem 2rem;
  }
  .footer-brand { text-align: center; }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 380px)
   ============================================= */
@media (max-width: 380px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.6rem; white-space: normal; }
}

@media (min-width: 901px) {
  .hero-title { margin-top: 17px; margin-left: 0; }
  .hero-logo { margin-left: -6px; }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 3px;
}
