/* ============================================================
   HARVESTOWNE AUTO BODY — Design System
   Heritage Craftsman aesthetic: rust · cream · charcoal
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Lato:wght@300;400;700;900&display=swap');

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

:root {
  --rust:          #C8191A;
  --rust-hover:    #A51416;
  --rust-light:    rgba(200, 25, 26, 0.08);
  --cream:         #F0F4FB;
  --cream-dark:    #DDE5F5;
  --warm-white:    #FFFFFF;
  --charcoal:      #0D2B6E;
  --charcoal-mid:  #2C3E7A;
  --charcoal-light:#566BA0;
  --gold:          #1E6AC8;
  --gold-light:    #6B9FE8;
  --border:        rgba(13, 43, 110, 0.12);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;

  --shadow-sm:  0 2px 8px rgba(13,43,110,0.07);
  --shadow-md:  0 4px 20px rgba(13,43,110,0.11);
  --shadow-lg:  0 8px 40px rgba(13,43,110,0.16);

  --nav-height: 80px;
  --max-width:  1200px;
  --ease:       0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--warm-white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  line-height: 1.15;
}

/* --- Layout helpers --------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.section        { padding: 88px 0; }
.section--cream { background: var(--cream); }
.section--dark  { background: var(--charcoal); color: var(--warm-white); }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--rust);
  color: #fff;
  border-color: var(--rust);
}
.btn--primary:hover {
  background: var(--rust-hover);
  border-color: var(--rust-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194,66,26,0.35);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.07);
}

.btn--outline-rust {
  background: transparent;
  color: var(--rust);
  border-color: var(--rust);
}
.btn--outline-rust:hover {
  background: var(--rust);
  color: #fff;
}

.btn--lg {
  padding: 17px 36px;
  font-size: 14px;
}

/* --- Type utilities --------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--rust);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-title--white { color: var(--warm-white); }

.section-body {
  font-size: 17px;
  color: var(--charcoal-light);
  line-height: 1.8;
  max-width: 580px;
}
.section-body--white { color: rgba(253,250,245,0.72); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13,43,110,0.1);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(13,43,110,0.18); }

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

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.nav__logo img {
  height: 46px;
  width: auto;
  border-radius: 2px;
}
.nav__logo-block { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
}
.nav__logo-sub {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-top: 3px;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav__links a {
  display: block;
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(13,43,110,0.6);
  border-radius: 3px;
  transition: color var(--ease);
}
.nav__links a:hover,
.nav__links a.active { color: var(--charcoal); }
.nav__links a.active { color: var(--rust); }

/* Phone CTA */
.nav__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--rust);
  color: #fff;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  margin-left: 16px;
  transition: background var(--ease);
  white-space: nowrap;
}
.nav__phone:hover { background: var(--rust-hover); }
.nav__phone svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--charcoal);
  border-bottom: 2px solid var(--rust);
  padding: 20px 28px 28px;
  z-index: 999;
  animation: slideDown 0.25s ease forwards;
}
.nav__drawer.open { display: block; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav__drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.nav__drawer-links a {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--ease);
}
.nav__drawer-links a.active { color: var(--gold-light); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  background-image: url('assets/facility.webp');
  background-size: cover;
  background-position: center 40%;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Navy overlay so image shows through subtly */
.hero__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(9, 22, 65, 0.90) 0%,
    rgba(9, 22, 65, 0.80) 55%,
    rgba(9, 22, 65, 0.65) 100%
  );
  pointer-events: none;
}

/* Subtle grain on overlay */
.hero__glow::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

/* Right-side vignette to keep text readable */
.hero__panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 36%;
  background: linear-gradient(160deg, rgba(200,25,26,0.08) 0%, transparent 70%);
  border-left: 1px solid rgba(255,255,255,0.08);
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Ghost year watermark */
.hero__watermark {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(100px, 16vw, 220px);
  font-weight: 900;
  color: rgba(245,239,224,0.035);
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 64px 0;
}

.hero__est {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
}
.hero__est::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold-light);
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.13;
  margin-bottom: 30px;
}
.hero__tagline .accent {
  font-style: italic;
  color: var(--rust);
}
.hero__tagline .bold {
  font-weight: 900;
  color: #fff;
  font-style: normal;
}

.hero__sub {
  font-size: 17px;
  color: rgba(240,244,251,0.72);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Stat row */
.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--rust);
  line-height: 1;
}
.hero__stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.42);
  margin-top: 5px;
}

/* Hero animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__est     { animation: fadeUp 0.6s ease 0.05s both; }
.hero__tagline { animation: fadeUp 0.65s ease 0.18s both; }
.hero__sub     { animation: fadeUp 0.65s ease 0.32s both; }
.hero__ctas    { animation: fadeUp 0.65s ease 0.46s both; }
.hero__stats   { animation: fadeUp 0.65s ease 0.6s both; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--charcoal);
  padding: 0;
}
.trust-bar__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.22);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   SERVICES GRID (homepage overview)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.service-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--rust);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleY(1); }

.service-card__icon {
  width: 44px; height: 44px;
  color: var(--rust);
  margin-bottom: 18px;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.service-card__desc {
  font-size: 13.5px;
  color: var(--charcoal-light);
  line-height: 1.65;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-item {
  text-align: center;
  padding: 40px 20px;
  border-radius: 4px;
  background: rgba(245,239,224,0.55);
  border: 1px solid var(--cream-dark);
  transition: box-shadow var(--ease), transform var(--ease);
}
.why-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.why-item__icon {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  color: var(--rust);
}
.why-item__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.why-item__desc {
  font-size: 13.5px;
  color: var(--charcoal-light);
  line-height: 1.65;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  padding: 88px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 5% 50%, rgba(200,25,26,0.22) 0%, transparent 50%);
}
.cta-banner__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}
.cta-banner__desc {
  font-size: 17px;
  color: rgba(245,239,224,0.68);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 40px;
}
.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--charcoal);
  padding: 128px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 60%, rgba(200,25,26,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(107,159,232,0.08) 0%, transparent 50%);
}
/* grain */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--cream);
}
.page-hero__sub {
  font-size: 17px;
  color: rgba(245,239,224,0.62);
  margin-top: 12px;
  max-width: 500px;
  line-height: 1.7;
}

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.service-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: flex-start;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 20px;
  transition: box-shadow var(--ease);
}
.service-detail:hover { box-shadow: var(--shadow-md); }

.service-detail__icon-wrap {
  width: 64px; height: 64px;
  background: var(--rust-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rust);
  flex-shrink: 0;
}
.service-detail__icon-wrap svg { width: 34px; height: 34px; }

.service-detail__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.service-detail__body {
  font-size: 15.5px;
  color: var(--charcoal-mid);
  line-height: 1.8;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-split__image-wrap {
  position: relative;
}
.about-split__image-wrap img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.about-split__image-wrap::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  right: 18px; bottom: 18px;
  border: 2px solid var(--rust);
  border-radius: 4px;
  z-index: 0;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rust);
  color: #fff;
  padding: 10px 18px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.value-item {
  padding: 24px;
  background: var(--cream);
  border-radius: 4px;
  border: 1px solid var(--cream-dark);
}
.value-item__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rust);
  line-height: 1;
  margin-bottom: 6px;
}
.value-item__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal-mid);
  letter-spacing: 0.04em;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info { }
.contact-info__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 36px;
}
.contact-info__icon-wrap {
  width: 48px; height: 48px;
  background: var(--rust-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rust);
  flex-shrink: 0;
}
.contact-info__icon-wrap svg { width: 22px; height: 22px; }
.contact-info__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 5px;
}
.contact-info__value {
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.45;
}
.contact-info__value a:hover { color: var(--rust); }
.contact-info__note {
  font-size: 13px;
  color: var(--charcoal-light);
  margin-top: 4px;
  line-height: 1.5;
}

/* Hours table */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 5px 0;
  font-size: 14px;
  color: var(--charcoal-mid);
}
.hours-table td:first-child { font-weight: 700; width: 130px; }
.hours-table .closed { color: var(--charcoal-light); font-style: italic; }

/* Contact form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 44px;
  box-shadow: var(--shadow-sm);
}
.contact-form__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.contact-form__sub {
  font-size: 14px;
  color: var(--charcoal-light);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--warm-white);
  transition: border-color var(--ease), background var(--ease);
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--rust);
  background: #fff;
}
.form-textarea { min-height: 120px; resize: vertical; }

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

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success__icon {
  width: 56px; height: 56px;
  background: var(--rust-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--rust);
}
.form-success__icon svg { width: 28px; height: 28px; }
.form-success__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.form-success__msg { font-size: 15px; color: var(--charcoal-light); line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050E2E;
  color: rgba(200,215,255,0.65);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__logo img { height: 50px; width: auto; margin-bottom: 14px; }
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.footer__tagline-text {
  font-size: 12px;
  font-style: italic;
  color: rgba(200,215,255,0.42);
  line-height: 1.6;
  margin-top: 10px;
  max-width: 250px;
}

.footer__col-heading {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer__links a {
  font-size: 14px;
  color: rgba(200,215,255,0.55);
  transition: color var(--ease);
}
.footer__links a:hover { color: #fff; }

.footer__contact-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer__contact-row svg {
  width: 15px; height: 15px;
  color: var(--rust);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__contact-row span,
.footer__contact-row a {
  font-size: 13.5px;
  color: rgba(200,215,255,0.58);
  line-height: 1.5;
}
.footer__contact-row a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 12px; color: rgba(200,215,255,0.3); }
.footer__est  { font-size: 12px; color: var(--rust); font-weight: 700; letter-spacing: 0.1em; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }
.reveal-delay-7 { transition-delay: 0.56s; }
.reveal-delay-8 { transition-delay: 0.64s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer__grid  { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-split   { grid-template-columns: 1fr; gap: 48px; }
  .about-split__image-wrap { max-width: 480px; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }

  .nav__links,
  .nav__phone { display: none; }
  .nav__hamburger { display: flex; }

  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  .trust-bar__item {
    padding: 14px 18px;
    font-size: 11px;
  }

  .service-detail {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
  .service-detail__icon-wrap { width: 56px; height: 56px; }

  .about-values { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }

  .trust-bar__inner { flex-direction: column; }
  .trust-bar__item {
    width: 100%;
    justify-content: center;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.18);
  }
  .trust-bar__item:last-child { border-bottom: none; }

  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__stats { gap: 24px; }

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