/* ============================================
   MAN & VAN — shared styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Work+Sans:wght@400;500;600&display=swap');

:root {
  --navy-950: #0c1826;
  --navy-800: #142948;
  --navy-700: #1b3560;
  --amber-500: #f5b400;
  --amber-600: #d99b00;
  --paper: #f6f4ee;
  --ink: #16273f;
  --grey-600: #5c6472;
  --grey-300: #d8d9d4;
  --white: #ffffff;

  --headline: 'Oswald', sans-serif;
  --body: 'Work Sans', sans-serif;

  --max-width: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--headline);
  margin: 0;
  line-height: 1.05;
  font-weight: 700;
}

p { margin: 0 0 1em; color: var(--grey-600); }

a { color: inherit; }

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 3px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-amber {
  background: var(--amber-500);
  color: var(--navy-950);
}
.btn-amber:hover { background: var(--amber-600); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--amber-500); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--navy-700);
  color: var(--navy-800);
}
.btn-outline-dark:hover { border-color: var(--amber-600); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy-950);
  border-bottom: 3px solid var(--amber-500);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: var(--headline);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}
.logo span { color: var(--amber-500); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  color: var(--grey-300);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--amber-500);
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-500);
  color: var(--navy-950) !important;
  padding: 10px 18px;
  border-radius: 3px;
  font-weight: 600;
  border-bottom: none !important;
}
.nav-phone:hover { background: var(--amber-600); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 820px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy-950);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 18px;
    border-bottom: 3px solid var(--amber-500);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 14px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-phone {
    margin: 12px 28px 0;
    justify-content: center;
  }
  .nav-toggle { display: block; }
}

/* ---------- Hero (diagonal split, echoes the flyer) ---------- */
.hero {
  position: relative;
  background: var(--navy-950);
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 560px;
  gap: 40px;
}
.hero-copy .eyebrow-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--amber-500);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 18px;
}
.hero-copy .eyebrow-line::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--amber-500);
}
.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--amber-500);
}
.hero-copy .lead {
  color: var(--grey-300);
  font-size: 1.15rem;
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}
.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  color: var(--grey-300);
  font-weight: 500;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 18px;
}
.hero-strip span { color: var(--amber-500); margin-right: 6px; }

.hero-media {
  position: relative;
  height: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-media .cut-panel {
  position: absolute;
  inset: 0;
  background: var(--navy-700);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-media .badge {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--amber-500);
  color: var(--navy-950);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--headline);
  font-size: 0.72rem;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

@media (max-width: 820px) {
  .hero .wrap { grid-template-columns: 1fr; min-height: 0; padding-top: 44px; padding-bottom: 40px; }
  .hero-media { min-height: 260px; order: -1; }
}

/* ---------- Section scaffolding ---------- */
section { padding: 84px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head .eyebrow-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--amber-600);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-head .eyebrow-line::before {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--amber-600);
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--navy-950);
  text-transform: uppercase;
}
.section-head p { margin-top: 14px; font-size: 1.05rem; }

.on-navy { background: var(--navy-950); color: var(--white); }
.on-navy p { color: var(--grey-300); }
.on-navy .section-head h2 { color: var(--white); }

/* ---------- Services grid (home teaser) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--grey-300);
  border: 1px solid var(--grey-300);
}
.service-tile {
  background: var(--paper);
  padding: 34px 32px;
  display: flex;
  gap: 20px;
}
.service-tile .star {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--amber-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.service-tile h3 {
  font-size: 1.15rem;
  color: var(--navy-950);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.service-tile p { margin: 0; font-size: 0.98rem; }

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

/* ---------- Work strip (photo pair) ---------- */
.work-strip {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.work-strip figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  min-height: 260px;
}
.work-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.work-strip figcaption {
  position: relative;
  z-index: 2;
  padding: 16px;
  color: var(--white);
  font-weight: 600;
  align-self: flex-end;
  margin-top: auto;
  background: linear-gradient(to top, rgba(12,24,38,0.88), rgba(12,24,38,0));
  width: 100%;
  position: absolute;
  bottom: 0;
}
@media (max-width: 820px) {
  .work-strip { grid-template-columns: 1fr; }
  .work-strip figure { min-height: 220px; }
}

/* ---------- Coverage / stats strip ---------- */
.coverage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.coverage-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.fact b {
  display: block;
  font-family: var(--headline);
  font-size: 1.8rem;
  color: var(--amber-600);
}
.fact span { color: var(--grey-600); font-size: 0.92rem; }

@media (max-width: 820px) {
  .coverage { grid-template-columns: 1fr; }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  background: var(--amber-500);
  overflow: hidden;
}
.cta-banner .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 52px 28px;
}
.cta-banner h2 {
  color: var(--navy-950);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  max-width: 480px;
}
.cta-banner .cut {
  position: absolute;
  inset: 0;
  background: var(--navy-950);
  clip-path: polygon(0 0, 13% 0, 7% 100%, 0 100%);
}
.cta-banner .wrap { padding-left: 64px; }
.cta-phone {
  font-family: var(--headline);
  font-size: 2rem;
  color: var(--navy-950);
  text-decoration: none;
}
.cta-phone small {
  display: block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy-950);
  color: var(--grey-300);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.footer-grid a {
  display: block;
  color: var(--grey-300);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.footer-grid a:hover { color: var(--amber-500); }
.footer-logo { color: var(--white); font-family: var(--headline); font-size: 1.3rem; text-transform: uppercase; margin-bottom: 12px; }
.footer-logo span { color: var(--amber-500); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- Page header (services / contact) ---------- */
.page-header {
  background: var(--navy-950);
  padding: 62px 0 54px;
  border-bottom: 4px solid var(--amber-500);
}
.page-header .eyebrow-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--amber-500);
  font-weight: 600;
  margin-bottom: 14px;
}
.page-header .eyebrow-line::before { content: ""; width: 30px; height: 3px; background: var(--amber-500); }
.page-header h1 {
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4vw, 3rem);
  max-width: 640px;
}
.page-header p {
  color: var(--grey-300);
  max-width: 56ch;
  margin-top: 16px;
  font-size: 1.05rem;
}

/* ---------- Service detail rows ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid var(--grey-300);
}
.service-detail:first-of-type { padding-top: 0; }
.service-detail:last-of-type { border-bottom: none; }
.service-detail .num-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--amber-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.service-detail h3 {
  font-size: 1.5rem;
  color: var(--navy-950);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-detail ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--grey-600);
}
.service-detail li { margin-bottom: 6px; }

@media (max-width: 640px) {
  .service-detail { grid-template-columns: 1fr; }
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.form-card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: 3px;
  padding: 40px;
}
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 7px;
  color: var(--navy-950);
}
.form-row .hint { font-weight: 400; color: var(--grey-600); font-size: 0.85rem; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 560px) {
  .two-col { grid-template-columns: 1fr; }
}
input, select, textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--grey-300);
  border-radius: 3px;
  background: var(--paper);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  background: var(--white);
}
textarea { resize: vertical; min-height: 130px; }
.form-note {
  font-size: 0.88rem;
  color: var(--grey-600);
  margin-top: 6px;
}
.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 3px;
  font-size: 0.95rem;
  display: none;
}
.form-status.success { display: block; background: #e8f5e9; color: #1e5c2a; border: 1px solid #b7dcb9; }
.form-status.error { display: block; background: #fdecec; color: #8a2020; border: 1px solid #f2bcbc; }

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  background: var(--navy-950);
  color: var(--white);
  padding: 30px 32px;
  border-radius: 3px;
}
.contact-card h3 {
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--amber-500);
}
.contact-card .big-phone {
  font-family: var(--headline);
  font-size: 1.8rem;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}
.contact-card p { color: var(--grey-300); font-size: 0.95rem; margin-bottom: 0; }
.contact-card.light {
  background: var(--white);
  border: 1px solid var(--grey-300);
  color: var(--ink);
}
.contact-card.light h3 { color: var(--navy-800); }
.contact-card.light p { color: var(--grey-600); }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
  color: var(--grey-300);
}
.contact-list li:last-child { border-bottom: none; }
