/* ==========================================================
   LandAxis — Site Stylesheet
   Brand: Navy #1C3557 · Orange #D95C2A
   ========================================================== */

:root {
  --navy: #1C3557;
  --navy-deep: #122438;
  --navy-ink: #0C1929;
  --orange: #D95C2A;
  --orange-bright: #F26E38;
  --sand: #F6F3EE;
  --white: #FFFFFF;
  --text: #2A3948;
  --text-muted: #5D6B7A;
  --line: rgba(28, 53, 87, 0.12);
  --radius: 14px;
  --shadow: 0 10px 40px rgba(12, 25, 41, 0.10);
  --shadow-lg: 0 24px 64px rgba(12, 25, 41, 0.18);
  --font-head: "Barlow", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.container { width: min(1180px, 92%); margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 16px; }
.section-head p { color: var(--text-muted); font-size: 18px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding: 15px 32px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  text-transform: uppercase;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-bright); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(217, 92, 42, 0.35); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, 0.08); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); color: #fff; transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(12, 25, 41, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}
.site-header.scrolled { background: rgba(12, 25, 41, 0.94); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 56px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links .btn { padding: 11px 22px; font-size: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* Dropdown */
.has-drop { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  min-width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s ease;
  list-style: none;
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 11px 16px;
  border-radius: 8px;
  color: var(--navy) !important;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.02em;
}
.dropdown a:hover { background: var(--sand); color: var(--orange) !important; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(12, 25, 41, 0.88) 0%, rgba(12, 25, 41, 0.55) 52%, rgba(12, 25, 41, 0.25) 100%);
}
.hero-inner { padding: 160px 0 120px; max-width: 780px; }
.hero h1 {
  color: #fff;
  font-size: clamp(40px, 6vw, 68px);
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--orange-bright); }
.hero p.lead {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  isolation: isolate;
  padding: 180px 0 90px;
  color: #fff;
  background: var(--navy-ink);
  overflow: hidden;
}
.page-hero .hero-bg { animation: none; transform: none; }
.page-hero .hero-overlay { background: linear-gradient(100deg, rgba(12,25,41,0.92) 0%, rgba(12,25,41,0.62) 60%, rgba(12,25,41,0.38) 100%); }
.page-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 54px); margin-bottom: 16px; max-width: 800px; }
.page-hero p { color: rgba(255,255,255,0.87); font-size: 19px; max-width: 660px; }
.breadcrumbs { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; color: rgba(255,255,255,0.65); font-family: var(--font-head); font-weight: 600;}
.breadcrumbs a { color: rgba(255,255,255,0.65); }
.breadcrumbs a:hover { color: #fff; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--navy-ink); color: #fff; padding: 64px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat h3 {
  color: var(--orange-bright);
  font-size: clamp(38px, 4.6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.stat p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-head);
  font-weight: 500;
  margin-top: 6px;
}

/* ---------- Service cards ---------- */
/* 6-column grid: 5 cards lay out as a row of 3 plus a centered row of 2 */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}
.cards-grid .card { grid-column: span 2; }
.cards-grid .card:nth-child(4) { grid-column: 2 / span 2; }
.cards-grid .card:nth-child(5) { grid-column: 4 / span 2; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card .icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: rgba(217, 92, 42, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.card .icon svg { width: 28px; height: 28px; stroke: var(--orange); }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 15.5px; flex: 1; }
.card .card-link {
  margin-top: 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.card .card-link::after { content: " →"; transition: margin 0.2s; }
.card:hover .card-link::after { margin-left: 5px; }

/* ---------- Industry showcase (alternating) ---------- */
.industry-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 44px;
  background: #fff;
  border: 1px solid var(--line);
}
.industry-block:nth-child(even) .industry-media { order: 2; }
.industry-media { position: relative; min-height: 380px; }
.industry-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.industry-copy { padding: 56px 54px; display: flex; flex-direction: column; justify-content: center; }
.industry-copy h3 { font-size: 30px; margin-bottom: 14px; }
.industry-copy p { color: var(--text-muted); margin-bottom: 12px; }
.industry-copy ul { list-style: none; margin: 10px 0 22px; }
.industry-copy li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 15.5px;
}
.industry-copy li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 8px;
  border-left: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
  transform: rotate(-45deg);
}
.industry-copy .btn { align-self: flex-start; }

/* ---------- Why band ---------- */
.why-band { background: var(--sand); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.why-item { background: #fff; border-radius: var(--radius); padding: 32px 26px; border-top: 4px solid var(--orange); box-shadow: var(--shadow); }
.why-item h3 { font-size: 19px; margin-bottom: 10px; }
.why-item p { font-size: 15px; color: var(--text-muted); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--navy); color: #fff; }
.testimonials .section-head h2, .testimonials .section-head p { color: #fff; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.quote p { font-size: 16.5px; color: rgba(255, 255, 255, 0.92); font-style: italic; margin-bottom: 20px; }
.quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-bright);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 110px 0;
  overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 16px; }
.cta-band p { color: rgba(255, 255, 255, 0.85); font-size: 19px; max-width: 640px; margin: 0 auto 34px; }

/* ---------- Contact / form ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 18px; }
.contact-info p { color: var(--text-muted); margin-bottom: 26px; }
.contact-lines { list-style: none; }
.contact-lines li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-lines .icon {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(28, 53, 87, 0.07);
  display: flex; align-items: center; justify-content: center;
}
.contact-lines .icon svg { width: 22px; height: 22px; stroke: var(--navy); }
.contact-lines strong { display: block; font-family: var(--font-head); font-size: 15px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); }
.contact-lines a, .contact-lines span { color: var(--text-muted); font-size: 16px; }

.lead-form {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 44px 40px;
}
.lead-form h3 { font-size: 24px; margin-bottom: 6px; }
.lead-form > p { color: var(--text-muted); font-size: 15px; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--text);
  background: #FBFAF8;
  transition: border 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.lead-form .btn { width: 100%; margin-top: 6px; }
.form-note { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 14px; }

/* ---------- Service page layout ---------- */
.service-layout { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }
.service-body h2 { font-size: 30px; margin: 44px 0 16px; }
.service-body h2:first-child { margin-top: 0; }
.service-body h3 { font-size: 22px; margin: 32px 0 12px; }
.service-body p { margin-bottom: 16px; color: var(--text); }
.service-body ul { margin: 0 0 20px 22px; }
.service-body li { margin-bottom: 9px; color: var(--text); }
.service-aside { position: sticky; top: 110px; }
.aside-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin-bottom: 24px;
}
.aside-card h3 { font-size: 20px; margin-bottom: 14px; }
.aside-card ul { list-style: none; }
.aside-card li { border-bottom: 1px solid var(--line); }
.aside-card li:last-child { border-bottom: 0; }
.aside-card a { display: block; padding: 11px 2px; color: var(--navy); font-size: 15.5px; font-weight: 500; }
.aside-card a:hover, .aside-card a.active { color: var(--orange); }
.aside-cta {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
}
.aside-cta h3 { color: #fff; font-size: 21px; margin-bottom: 10px; }
.aside-cta p { color: rgba(255, 255, 255, 0.8); font-size: 14.5px; margin-bottom: 20px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 4px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 19px;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 26px;
  color: var(--orange);
  transition: transform 0.25s ease;
  flex: 0 0 auto;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 4px 26px; color: var(--text-muted); max-width: 780px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-ink); color: rgba(255, 255, 255, 0.75); padding: 72px 0 0; font-size: 15px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 52px;
}
.footer-grid h4 {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(255, 255, 255, 0.72); }
.footer-grid a:hover { color: var(--orange-bright); }
.footer-brand img { height: 100px; margin-bottom: 18px; }
.footer-brand p { max-width: 300px; font-size: 14.5px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .cards-grid, .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid .card, .cards-grid .card:nth-child(4), .cards-grid .card:nth-child(5) { grid-column: auto; }
  .cards-grid .card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .why-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-layout { grid-template-columns: 1fr; }
  .service-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: rgba(12, 25, 41, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 6%;
    gap: 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; padding: 6px 0 0 14px; display: none; }
  .has-drop.open .dropdown { display: block; }
  .dropdown a { color: rgba(255,255,255,0.75) !important; padding: 7px 0; }
  .industry-block { grid-template-columns: 1fr; }
  .industry-block:nth-child(even) .industry-media { order: 0; }
  .industry-media { min-height: 260px; }
  .industry-copy { padding: 38px 30px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .cards-grid, .quote-grid, .why-grid, .stats-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero-inner { padding: 140px 0 90px; }
  .footer-grid { grid-template-columns: 1fr; }
  .lead-form { padding: 32px 24px; }
}
