@import url('http://code.cdn.mozilla.net/fonts/fira.css');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap');

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

:root {
  --navy: #252536;
  --red: #b70303;
  --white: #ffffff;
  --footer-bg: #f4f4f4;
}

html { scroll-behavior: smooth; height: 100%; }
body {
  font-family: 'Fira Sans', sans-serif;
  color: var(--navy);
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main, .page-content, .contact-info-block { flex: 1; }
footer { margin-top: auto; }
a { text-decoration: none; color: var(--navy); }
a:hover { color: var(--red); }
img { max-width: 100%; display: block; }

/* ─── NAV ─── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 80px;
  position: relative;
}

.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo img {
  width: 220px;
  display: block;
}

.nav-left,
.nav-right {
  display: flex;
  list-style: none;
  flex: 1;
}

.nav-right { justify-content: flex-end; }

.nav-left li a,
.nav-right li a {
  display: block;
  padding: 28px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.15s;
  position: relative;
}

.nav-left li a::after,
.nav-right li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-left li a:hover,
.nav-right li a:hover,
.nav-left li.active a,
.nav-right li.active a {
  color: #fff;
}

.nav-left li a:hover::after,
.nav-right li a:hover::after,
.nav-left li.active a::after,
.nav-right li.active a::after {
  transform: scaleX(1);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  position: absolute;
  right: 20px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

/* ─── HOME HERO ─── */
.home-hero {
  width: 100%;
  height: 480px;
  overflow: hidden;
}

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

/* ─── HOME INTRO ─── */
.home-intro {
  text-align: center;
  padding: 60px 40px 30px;
}

.home-intro h2 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.home-intro p {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
}

/* ─── THREE IMAGE GRID ─── */
.image-grid {
  display: flex;
  padding: 20px 40px 50px;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.image-grid .col { flex: 1; }

.image-grid .col img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 12px;
}

.image-grid .col h3 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ─── WHAT WE DO ─── */
.what-we-do {
  background: var(--navy);
  padding: 70px 40px;
  text-align: center;
}

.what-we-do h2 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}

.what-we-do .sub {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 50px;
}

.wwd-cols {
  display: flex;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.wwd-col h3 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
  text-align: center;
}

.wwd-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  text-align: center;
}

/* ─── INNER PAGE HERO ─── */
.page-hero {
  width: 100%;
  height: 320px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.82;
}

.page-hero-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 60px;
  background: linear-gradient(to top, rgba(37,37,54,0.9) 0%, transparent 100%);
}

.page-hero-title h1 {
  font-family: 'Fira Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 4px;
}

.page-hero-title .page-subtitle {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

/* ─── INNER CONTENT ─── */
.page-content {
  padding: 50px 80px 70px;
  max-width: 960px;
}

.page-content h2 {
  font-family: 'Fira Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 14px;
}

.page-content blockquote {
  border-left: 3px solid #ddd;
  padding-left: 20px;
  margin: 0 0 30px 0;
}

.page-content blockquote p,
.page-content p {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.page-content a { color: var(--navy); font-weight: 700; text-decoration: underline; }
.page-content a:hover { color: var(--red); }

/* ─── CONTACT INFO ─── */
.contact-info-block {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.contact-info-block div h2 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  margin-top: 0;
}

.contact-info-block div p {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.9;
}

.contact-info-block div a { color: #555; text-decoration: none; }
.contact-info-block div a:hover { color: var(--red); }

/* ─── FOOTER ─── */
footer {
  background: var(--footer-bg);
  text-align: center;
  padding: 28px 20px;
  font-size: 0.85rem;
  color: var(--navy);
  border-top: 1px solid #e0e0e0;
}

footer p { margin-bottom: 4px; }

/* Mobile nav dropdown (hidden on desktop) */
.nav-links {
  display: none;
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .nav-inner {
    padding: 0 20px;
    height: 68px;
    justify-content: space-between;
  }

  .nav-logo {
    position: static;
    transform: none;
  }

  .nav-logo img { width: 150px; }

  .nav-left, .nav-right { display: none; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
  }

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

  .nav-links li a {
    display: block;
    padding: 16px 24px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.85);
    font-family: 'PT Sans Narrow', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .nav-links li a:hover { background: rgba(255,255,255,0.05); color: #fff; }

  .home-hero { height: 280px; }
  .page-hero { height: 220px; }
  .page-hero-title { padding: 20px 24px; }

  .home-intro { padding: 36px 20px 16px; }
  .home-intro h2 { font-size: 1.4rem; }

  .image-grid { flex-direction: column; padding: 20px; gap: 16px; }
  .image-grid .col img { height: 200px; }

  .what-we-do { padding: 44px 24px; }
  .wwd-cols { flex-direction: column; gap: 32px; }

  .page-content { padding: 30px 24px 50px; }
  .page-content h2 { font-size: 1.6rem; }

  .contact-info-block { flex-direction: column; gap: 30px; }

  footer { font-size: 0.8rem; padding: 22px 16px; }
}
