/* ============ NARA Services — Stylesheet ============ */
:root {
  --navy:        #0f1d3a;
  --navy-2:      #14264a;
  --navy-3:      #1d3461;
  --lime:        #c8ff3e;
  --lime-dark:   #b8ef2e;
  --ink:         #1a1a1a;
  --muted:       #5b6478;
  --soft:        #e9edf5;
  --soft-2:      #dde4f0;
  --bg-blue:     #dbe6f5;
  --bg-blue-2:   #eaf1fb;
  --white:       #ffffff;
  --border:      #cfd6e4;
  --shadow-sm:   0 2px 8px rgba(15, 29, 58, 0.06);
  --shadow-md:   0 8px 24px rgba(15, 29, 58, 0.10);
  --shadow-lg:   0 20px 60px rgba(15, 29, 58, 0.18);
  --radius:      6px;
  --radius-lg:   12px;
  --maxw:        1280px;
  --header-h:    74px;
  --utility-h:   38px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; color: var(--navy); margin: 0 0 .5em; line-height: 1.15; letter-spacing: -0.01em;}
p  { margin: 0 0 1em; color: var(--muted); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--lime);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ============ UTILITY BAR ============ */
.utility-bar {
  background: var(--navy);
  color: #cdd5e4;
  font-size: 12.5px;
  height: var(--utility-h);
  display: flex;
  align-items: center;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.util-left, .util-right { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.util-item { display: inline-flex; align-items: center; gap: 6px; }
.util-item a { display: inline-flex; align-items: center; gap: 6px; color: inherit; }
.util-item a:hover, .util-right a:hover { color: var(--lime); }
.util-right a {
  color: #cdd5e4;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color .2s;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 30px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.04em;
}
.logo-text small {
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--muted);
  margin-top: 3px;
}
.logo-light .logo-text,
.logo-light .logo-text small { color: var(--white); }
.logo-light .logo-text small { color: #99a3b7; }

.nav { flex: 1; }
.nav ul {
  display: flex;
  justify-content: center;
  gap: 38px;
  margin: 0; padding: 0;
  list-style: none;
}
.nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--navy);
  text-transform: uppercase;
  position: relative;
  padding: 26px 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.nav .caret { transition: transform .2s; opacity: .7; }
.nav a:hover { color: var(--navy-2); }
.nav .has-dropdown:hover > a .caret { transform: rotate(180deg); }
.nav > ul > li > a::after {
  content:''; position:absolute; left:0; bottom:18px; height:2px; width:0;
  background: var(--lime); transition: width .25s ease;
}
.nav > ul > li > a:hover::after { width:100%; }

/* dropdowns */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 12px);
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 200;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.dropdown-inner { padding: 12px; display: grid; gap: 2px; }
.drop-link {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background .15s, transform .15s;
}
.drop-link strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--navy);
  margin-bottom: 2px;
}
.drop-link span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.drop-link:hover {
  background: var(--bg-blue-2);
}
.drop-link:hover strong { color: var(--navy-2); }

.header-cta {
  background: var(--lime);
  color: var(--navy);
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(200,255,62,.4);
  transition: transform .15s, box-shadow .2s, background .2s;
}
.header-cta:hover {
  background: var(--lime-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(200,255,62,.5);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  margin: 0 auto;
  transition: transform .2s, opacity .2s;
}

.progress-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--lime-dark));
  width: 100%;
  opacity: .85;
}

/* ============ HERO ============ */
.hero {
  background: var(--bg-blue);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h) - var(--utility-h));
}
.hero-form-side {
  display: flex;
  align-items: center;
  padding: 56px 56px;
}
.form-card {
  width: 100%;
  max-width: 580px;
  margin-left: auto;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin: 0 0 6px;
  text-transform: uppercase;
}
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0 0 22px;
}
.divider {
  border: 0;
  height: 1px;
  background: var(--navy);
  opacity: .3;
  margin: 0 0 26px;
}

/* form */
form { display: grid; gap: 18px; }
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.req { color: #d33; }
input[type="text"],
input[type="tel"],
input[type="email"],
select, textarea {
  width: 100%;
  background: var(--white);
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 2px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s;
}
.field-zip input { max-width: 140px; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-bottom-color: var(--lime);
  box-shadow: 0 4px 12px rgba(15,29,58,.12);
}
textarea { resize: vertical; min-height: 88px; }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--navy);
}
.consent input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--lime-dark);
  flex-shrink: 0;
}
.consent strong { display: block; margin-bottom: 6px; font-weight: 700; }
.consent small {
  display: block;
  color: var(--navy);
  opacity: .82;
  font-size: 12px;
  line-height: 1.55;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s, color .2s, border-color .2s;
  text-decoration: none;
  user-select: none;
}
.btn-primary {
  background: var(--lime);
  color: var(--navy);
  box-shadow: 0 6px 14px rgba(200,255,62,.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--lime-dark);
  box-shadow: 0 10px 22px rgba(200,255,62,.55);
}
.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-lg { padding: 18px 38px; font-size: 14px; }

.form-msg { font-size: 14px; min-height: 1.2em; }
.form-msg.error { color: #c0392b; }
.form-msg.success { color: #1e7a3f; }
.form-msg a { text-decoration: underline; color: var(--navy); }

/* hero image side */
.hero-image-side { position: relative; }
.hero-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(15,29,58,0) 30%, rgba(15,29,58,.7) 100%),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
}
.hero-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 48px;
  color: var(--white);
}
.hero-caption h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin: 0 0 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.hero-caption .eyebrow {
  background: rgba(200,255,62,.95);
}
.hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-badges .badge {
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 16px;
  border-radius: 10px;
  text-align: center;
}
.hero-badges .badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--lime);
  line-height: 1;
}
.hero-badges .badge span {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e5ecf8;
  margin-top: 4px;
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  padding: 38px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-label {
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 20px;
}
.trust-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.trust-logos span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: #95a0b8;
  transition: color .2s, transform .2s;
}
.trust-logos span:hover { color: var(--navy); transform: translateY(-2px); }

/* ============ SECTIONS ============ */
section { padding: 100px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); }
.section-head p { font-size: 1.05rem; }

/* ============ SERVICES ============ */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy);
}
.service-card.highlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  border-color: var(--navy);
  color: var(--white);
}
.service-card.highlight h3 { color: var(--white); }
.service-card.highlight p  { color: #c9d2e4; }
.service-card.highlight .icon { background: rgba(200,255,62,.18); color: var(--lime); }
.service-card.highlight .card-link { color: var(--lime); }
.service-card .icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: var(--bg-blue);
  color: var(--navy);
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.service-card p { margin: 0 0 18px; font-size: .95rem; flex: 1; }
.card-link {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap .2s, color .2s;
}
.card-link:hover { color: var(--navy-2); }

/* ============ PROCESS ============ */
.process {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-blue-2) 100%);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--lime-dark);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { margin: 0; font-size: .95rem; }

/* ============ GALLERY ============ */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 18px;
}
.g-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform .3s;
}
.g-card:hover { transform: scale(1.02); }
.g-1 { grid-column: span 2; grid-row: span 2; background-image: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.7) 100%), url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1200&q=80'); }
.g-2 { background-image: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.7) 100%), url('https://images.unsplash.com/photo-1605276374104-dee2a0ed3cd6?auto=format&fit=crop&w=900&q=80'); }
.g-3 { background-image: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.7) 100%), url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?auto=format&fit=crop&w=900&q=80'); }
.g-4 { background-image: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.7) 100%), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=900&q=80'); }
.g-5 { background-image: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.7) 100%), url('https://images.unsplash.com/photo-1582268611958-ebfd161ef9cf?auto=format&fit=crop&w=900&q=80'); grid-column: span 2; }
.g-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  color: var(--white);
}
.g-overlay span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 4px;
}
.g-overlay strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
}

/* ============ ABOUT ============ */
.about {
  background: linear-gradient(180deg, var(--bg-blue-2) 0%, var(--bg-blue) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  padding-left: 32px;
  position: relative;
  color: var(--navy);
  font-weight: 500;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 18px; height: 18px;
  background: var(--lime);
  border-radius: 50%;
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 5px; top: 10px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg);
}
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.stat {
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--navy);
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--navy); color: var(--white); }
.testimonials .section-head h2 { color: var(--white); }
.testimonials .eyebrow { background: var(--lime); color: var(--navy); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.quote {
  margin: 0;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .25s, background .25s;
}
.quote:hover { transform: translateY(-4px); background: rgba(255,255,255,0.07); }
.quote .stars {
  color: var(--lime);
  font-size: 1.1rem;
  letter-spacing: .2em;
  margin-bottom: 12px;
}
.quote blockquote {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #eef2fb;
}
.quote figcaption {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
}

/* ============ FINANCING ============ */
.financing { background: var(--white); }
.financing-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.financing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.fin-card {
  padding: 32px 20px;
  background: linear-gradient(135deg, var(--bg-blue-2) 0%, var(--bg-blue) 100%);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.fin-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fin-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1;
}
.fin-card span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ FAQ ============ */
.faq { background: var(--bg-blue-2); }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq details {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-blue);
  color: var(--navy);
  display: grid; place-items: center;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  transition: transform .25s, background .2s;
  flex-shrink: 0;
}
.faq details[open] .plus { transform: rotate(45deg); background: var(--lime); }
.faq details p {
  padding: 0 28px 24px;
  margin: 0;
  font-size: .98rem;
  line-height: 1.65;
}

/* ============ SERVICE AREAS ============ */
.areas { background: var(--white); }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.areas-grid span {
  padding: 12px 22px;
  background: var(--bg-blue-2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: background .2s, transform .2s;
  cursor: default;
}
.areas-grid span:hover {
  background: var(--lime);
  transform: translateY(-2px);
}

/* ============ NEWS ============ */
.news { background: var(--bg-blue-2); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.news-1 { background-image: url('https://images.unsplash.com/photo-1513519245088-0e12902e5a38?auto=format&fit=crop&w=900&q=80'); }
.news-2 { background-image: url('https://images.unsplash.com/photo-1518627719498-c4f7d9f4cd4f?auto=format&fit=crop&w=900&q=80'); }
.news-3 { background-image: url('https://images.unsplash.com/photo-1572120360610-d971b9d7767c?auto=format&fit=crop&w=900&q=80'); }
.news-body { padding: 24px 26px 28px; }
.news-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--lime);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  font-weight: 600;
}
.news-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.news-card p { font-size: .95rem; }

/* ============ CTA ============ */
.cta {
  background:
    linear-gradient(135deg, rgba(15,29,58,.92) 0%, rgba(29,52,97,.85) 100%),
    url('https://images.unsplash.com/photo-1542621334-a254cf47733d?auto=format&fit=crop&w=1600&q=80') center/cover;
  padding: 80px 0;
  color: var(--white);
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cta h2 { margin: 0 0 8px; font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: var(--white); }
.cta p { margin: 0; color: #cdd5e4; max-width: 580px; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy);
  color: #cdd5e4;
  padding: 70px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand { padding-right: 12px; }
.site-footer h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 9px;
}
.site-footer a { transition: color .2s; }
.site-footer a:hover { color: var(--lime); }
.muted { color: #99a3b7; font-size: 14px; margin: 14px 0 18px; }
.socials { display: flex; gap: 10px; }
.socials a {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #cdd5e4;
  transition: background .2s, color .2s, transform .2s;
}
.socials a:hover {
  background: var(--lime);
  color: var(--navy);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  color: #8893ad;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a:hover { color: var(--lime); }

/* ============ BACK TO TOP ============ */
.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s, background .2s;
  box-shadow: var(--shadow-lg);
  z-index: 90;
}
.back-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top:hover { background: var(--lime); color: var(--navy); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .nav ul { gap: 24px; }
  .nav a { letter-spacing: 0.16em; font-size: 12.5px; }
  .header-cta { display: none; }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form-side { padding: 70px 28px 60px; }
  .form-card { max-width: 640px; margin: 0 auto; }
  .hero-image-side { min-height: 360px; position: relative; }
  .about-grid,
  .financing-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .g-1 { grid-column: span 2; grid-row: span 1; }
  .g-5 { grid-column: span 2; }
}
@media (max-width: 768px) {
  .utility-bar { display: none; }
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: block;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 18px 28px 24px;
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.open ul {
    flex-direction: column;
    gap: 4px;
  }
  .nav.open .nav a { padding: 12px 0; width: 100%; }
  .nav.open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    min-width: 0;
    margin-left: 16px;
    padding: 0 0 6px;
  }
  .nav.open .dropdown::before { display: none; }
  .nav.open .drop-link { padding: 6px 12px; }
  .services-grid,
  .process-grid,
  .testimonial-grid,
  .news-grid { grid-template-columns: 1fr; }
  .stats,
  .financing-cards { grid-template-columns: 1fr 1fr; }
  .row { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-inner { flex-direction: column; text-align: center; align-items: stretch; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 180px); }
  .g-1, .g-5 { grid-column: span 1; }
  .hero-form-side { padding: 50px 24px 40px; }
}

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
