/* ============================================================
   MIRAMAR BEACH TRANSMISSION — LAMBORGHINI DESIGN SYSTEM
   ============================================================ */

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

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

:root {
  /* Lamborghini Color System */
  --gold:        #FFC000;
  --gold-dark:   #917300;
  --black:       #000000;
  --charcoal:    #202020;
  --iron:        #181818;
  --white:       #FFFFFF;
  --smoke:       #F5F5F5;
  --ash:         #7D7D7D;
  --steel:       #969696;
  --graphite:    #494949;
  --shadow:      #313131;
  --cyan:        #29ABE2;
  --link-blue:   #3860BE;
  --teal-action: #1EAEDB;

  /* Spacing */
  --sp-2:  2px;
  --sp-4:  4px;
  --sp-8:  8px;
  --sp-12: 12px;
  --sp-16: 16px;
  --sp-20: 20px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-40: 40px;
  --sp-48: 48px;
  --sp-56: 56px;

  /* Typography — Barlow Condensed as LamboType substitute */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

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

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ----------------------------------------------------------
   GLOBAL UTILITIES
   ---------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-40);
}

.section-pad {
  padding: var(--sp-12) 0;
}

.gold { color: var(--gold); }
.uppercase { text-transform: uppercase; }

/* ----------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--sp-20) var(--sp-40);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid rgba(255, 192, 0, 0.15);
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-32);
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
  color: var(--gold);
  outline: none;
}

.nav-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp-12) var(--sp-24);
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--gold-dark);
  outline: none;
}

.nav-cta:active {
  background: var(--gold-dark);
  opacity: 0.85;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--sp-8);
}

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

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-32);
}

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

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}

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

.nav-mobile .nav-cta {
  font-size: 1.1rem;
  padding: var(--sp-16) var(--sp-40);
}

.nav-close {
  position: absolute;
  top: var(--sp-20);
  right: var(--sp-40);
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */
.btn-gold {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp-16) var(--sp-40);
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold-dark);
  color: var(--white);
  outline: none;
}

.btn-gold:active { opacity: 0.85; }

.btn-ghost {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: var(--sp-16) var(--sp-32);
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 0;
  cursor: pointer;
  opacity: 0.8;
  transition: background 0.2s, opacity 0.2s, border-color 0.2s;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--teal-action);
  opacity: 1;
  border-color: var(--teal-action);
  outline: none;
}

.btn-ghost:active { opacity: 0.7; }

/* ----------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-56);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.25) 70%,
    rgba(0,0,0,0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-16);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-24);
  max-width: 800px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--smoke);
  max-width: 540px;
  margin-bottom: var(--sp-40);
}

.hero-actions {
  display: flex;
  gap: var(--sp-16);
  flex-wrap: wrap;
}

/* ----------------------------------------------------------
   TRUST STRIP
   ---------------------------------------------------------- */
.trust-strip {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,192,0,0.2);
  border-bottom: 1px solid rgba(255,192,0,0.1);
  padding: var(--sp-12) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-40);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  padding: 0 var(--sp-32);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.trust-item:last-child {
  border-right: none;
}

.trust-label {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--gold);
}

.trust-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}

.trust-body {
  font-size: 0.875rem;
  color: var(--ash);
  line-height: 1.6;
}

/* ----------------------------------------------------------
   LEAD FORM SECTION
   ---------------------------------------------------------- */
.form-section {
  background: var(--black);
  padding: var(--sp-12) 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-56);
  align-items: start;
}

.form-intro-label {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-16);
}

.form-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.38rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-24);
}

.form-intro p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ash);
  margin-bottom: var(--sp-24);
}

.towing-banner {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-16);
  background: var(--charcoal);
  border-left: 3px solid var(--gold);
  padding: var(--sp-20) var(--sp-24);
  margin-top: var(--sp-32);
}

.towing-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--gold);
}

.towing-banner strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.towing-banner p {
  font-size: 0.8125rem;
  color: var(--ash);
  line-height: 1.5;
  margin: 0;
}

/* FORM CARD */
.form-card {
  background: var(--charcoal);
  padding: var(--sp-40);
  border-top: 3px solid var(--gold);
}

.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-24);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
}

.form-group {
  margin-bottom: var(--sp-16);
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: var(--sp-8);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--iron);
  color: var(--white);
  border: 1px solid rgba(125,125,125,0.3);
  border-radius: 0;
  padding: var(--sp-12) var(--sp-16);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group 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='%23969696' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(255,192,0,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--graphite);
}

.form-group select option {
  background: var(--charcoal);
  color: var(--white);
}

.form-submit {
  width: 100%;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--sp-16) var(--sp-24);
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 0;
  cursor: pointer;
  margin-top: var(--sp-8);
  transition: background 0.2s;
}

.form-submit:hover,
.form-submit:focus-visible {
  background: var(--gold-dark);
  color: var(--white);
  outline: none;
}

.form-submit:active { opacity: 0.85; }

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--graphite);
  margin-top: var(--sp-12);
  line-height: 1.5;
  text-align: center;
}

/* Form message */
.form-message {
  display: none;
  margin-top: var(--sp-16);
  padding: var(--sp-16);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

.form-message.success {
  display: block;
  background: rgba(255,192,0,0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
}

.form-message.error {
  display: block;
  background: rgba(200,50,50,0.1);
  border: 1px solid #c83232;
  color: #e04444;
}

/* ----------------------------------------------------------
   IMAGE + COPY SPLIT SECTION
   ---------------------------------------------------------- */
.split-section {
  background: var(--iron);
  padding: 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.split-image {
  position: relative;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-56) var(--sp-56);
  background: var(--charcoal);
}

.split-copy .eyebrow {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-16);
}

.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-24);
}

.split-copy p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ash);
  margin-bottom: var(--sp-16);
}

/* ----------------------------------------------------------
   SERVICES PAGE — SERVICES GRID
   ---------------------------------------------------------- */
.services-section {
  background: var(--black);
  padding: var(--sp-12) 0;
}

.services-header {
  margin-bottom: var(--sp-48);
}

.services-header .eyebrow {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-16);
}

.services-header h1,
.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-24);
}

.services-header p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ash);
  max-width: 600px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.service-card {
  background: var(--black);
  padding: var(--sp-40);
  transition: background 0.2s;
}

.service-card:hover {
  background: var(--charcoal);
}

.service-card:focus-within {
  background: var(--charcoal);
}

.service-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255,192,0,0.12);
  line-height: 1;
  margin-bottom: var(--sp-24);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-16);
  line-height: 1.2;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ash);
  margin-bottom: var(--sp-24);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.service-list li {
  font-size: 0.8125rem;
  color: var(--steel);
  letter-spacing: 0.05em;
  padding-left: var(--sp-16);
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* Service Feature Image */
.service-feature {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.service-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.1) 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-40);
}

.service-feature-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}

.service-feature-text span {
  color: var(--gold);
}

/* ----------------------------------------------------------
   CONTACT PAGE
   ---------------------------------------------------------- */
.contact-section {
  background: var(--black);
  padding: var(--sp-12) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-56);
  align-items: start;
}

.contact-info .eyebrow {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-16);
}

.contact-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-24);
}

.contact-info p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ash);
  margin-bottom: var(--sp-32);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-24);
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding-bottom: var(--sp-24);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-detail-item:last-child {
  border-bottom: none;
}

.contact-detail-label {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-detail-value {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.5;
}

.contact-detail-value a {
  color: var(--white);
  transition: color 0.2s;
}

.contact-detail-value a:hover { color: var(--gold); }

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--ash);
}

.hours-row .day { color: var(--steel); }
.hours-row .time { color: var(--white); }
.hours-row.closed .time { color: var(--graphite); }

/* ----------------------------------------------------------
   PAGE HERO (inner pages)
   ---------------------------------------------------------- */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-48);
  overflow: hidden;
  margin-top: 0;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

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

.page-hero-content .eyebrow {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-12);
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--white);
}

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */
.site-footer {
  background: var(--iron);
  border-top: 1px solid rgba(255,192,0,0.15);
  padding: var(--sp-48) 0 var(--sp-32);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-48);
  margin-bottom: var(--sp-48);
  padding-bottom: var(--sp-48);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-8);
}

.footer-brand h3 span { color: var(--gold); }

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ash);
  margin-bottom: var(--sp-16);
  max-width: 280px;
}

.footer-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  transition: color 0.2s;
}

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

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-20);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--ash);
  transition: color 0.2s;
}

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

.footer-col address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ash);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-24);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--graphite);
  line-height: 1.5;
}

.footer-disclaimer {
  font-size: 0.6875rem;
  color: var(--graphite);
  line-height: 1.5;
  max-width: 560px;
  text-align: right;
}

/* ----------------------------------------------------------
   GOLD BAR / DIVIDER
   ---------------------------------------------------------- */
.gold-bar {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* ----------------------------------------------------------
   PHONE LINK
   ---------------------------------------------------------- */
.call-tracking-number {
  /* intentional class for tracking — no extra styling needed */
}

a.call-tracking-number,
.call-tracking-number a {
  color: inherit;
  transition: color 0.2s;
}

/* ----------------------------------------------------------
   INLINE PHONE HIGHLIGHT
   ---------------------------------------------------------- */
.phone-inline {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.phone-inline:hover { color: var(--white); }

/* ----------------------------------------------------------
   PAGE SPACER (below fixed nav)
   ---------------------------------------------------------- */
.nav-spacer { height: 72px; }

/* ----------------------------------------------------------
   SECTION HEADINGS
   ---------------------------------------------------------- */
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-16);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.38rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-24);
}

/* ----------------------------------------------------------
   TRUCK SECTION (index highlight)
   ---------------------------------------------------------- */
.truck-section {
  background: var(--black);
  padding: var(--sp-12) 0;
}

.truck-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-40);
  align-items: center;
}

.truck-image {
  position: relative;
  overflow: hidden;
}

.truck-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.truck-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,192,0,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.truck-copy .eyebrow {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-16);
}

.truck-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-20);
}

.truck-copy p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ash);
  margin-bottom: var(--sp-20);
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .container { padding: 0 var(--sp-24); }

  .form-grid { grid-template-columns: 1fr; gap: var(--sp-40); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--sp-40); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .truck-grid { grid-template-columns: 1fr; }
  .truck-image img { height: 320px; }
}

@media (max-width: 768px) {
  :root {
    --sp-56: 40px;
    --sp-48: 32px;
  }

  .nav-links,
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .trust-grid { grid-template-columns: 1fr; gap: var(--sp-24); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0 0 var(--sp-24); }
  .trust-item:last-child { border-bottom: none; }

  .split-grid { grid-template-columns: 1fr; }
  .split-image { height: 300px; }
  .split-image::after { background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%); }
  .split-copy { padding: var(--sp-40) var(--sp-24); }

  .form-card { padding: var(--sp-24); }
  .form-row { grid-template-columns: 1fr; }
  .form-row .form-group { grid-column: 1; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-32); }
  .footer-disclaimer { text-align: left; }
  .footer-bottom { flex-direction: column; }

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

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

  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
}

@media (max-width: 425px) {
  .container { padding: 0 var(--sp-16); }
  .hero-actions { flex-direction: column; }
  .btn-gold, .btn-ghost { width: 100%; text-align: center; }
}
