@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;700;900&display=swap');

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

:root {
  --orange: #FF5A1F;
  --navy: #0D1B2A;
  --offwhite: #F6F4EE;
  --yellow: #FFD500;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  background: var(--offwhite);
  color: var(--navy);
  line-height: 1.5;
}

/* GRAIN OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* NAV */
nav {
  background: var(--navy);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--orange);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--offwhite);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-cta {
  background: var(--orange);
  color: var(--offwhite);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.4rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.nav-cta:hover { background: var(--yellow); color: var(--navy); }

/* HERO */
.hero {
  background: var(--navy);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}

.hero-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  color: var(--offwhite);
  text-transform: uppercase;
  max-width: 14ch;
}

.hero h1 span { color: var(--orange); }

.hero-sub {
  font-size: 1.1rem;
  color: #8ea5b8;
  margin-top: 1.5rem;
  max-width: 42ch;
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  padding-bottom: 0.5rem;
}

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--offwhite);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border: 2px solid var(--orange);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.btn-primary:hover { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }

.hero-note {
  font-size: 0.75rem;
  color: #5a7a94;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* SECTION RULES */
.section-rule {
  height: 4px;
  background: var(--orange);
  width: 100%;
}

/* SECTIONS */
section { padding: 4rem 2rem; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.25;
  display: block;
  margin-bottom: -1rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2rem;
  line-height: 1;
}

/* SERVICES */
.services-bg { background: var(--navy); }

.services-bg .section-title { color: var(--offwhite); }
.services-bg .section-num { color: var(--orange); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border: 1px solid #1e3a52;
  margin-top: 2rem;
}

.service-card {
  padding: 2rem;
  border-right: 1px solid #1e3a52;
  border-bottom: 1px solid #1e3a52;
}

.service-card:last-child { border-right: none; }

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  color: var(--orange);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--offwhite);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.service-card p {
  font-size: 0.9rem;
  color: #8ea5b8;
  line-height: 1.6;
}

/* CLIENTS */
.clients-section { background: var(--offwhite); }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.client-block {
  border-left: 3px solid var(--orange);
  padding-left: 1.25rem;
}

.client-block h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.client-block p {
  font-size: 0.9rem;
  color: #3a5268;
  line-height: 1.65;
}

/* ABOUT */
.about-section { background: var(--navy); }
.about-section .section-title { color: var(--offwhite); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.about-bio {
  font-size: 1rem;
  color: #8ea5b8;
  line-height: 1.75;
}

.about-bio strong { color: var(--offwhite); }

.about-stats { display: flex; flex-direction: column; gap: 1.5rem; }

.stat-item { border-top: 1px solid #1e3a52; padding-top: 1.25rem; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: #5a7a94;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 0.25rem;
}

/* TEAM */
.team-section { background: var(--offwhite); }

.team-block {
  margin-top: 2rem;
  border-top: 4px solid var(--navy);
  padding-top: 2rem;
  max-width: 640px;
}

.team-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
}

.team-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.95rem;
  color: #3a5268;
  line-height: 1.65;
}

/* CONTACT */
.contact-section { background: var(--navy); }
.contact-section .section-title { color: var(--offwhite); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-info p {
  color: #8ea5b8;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.contact-detail {
  font-size: 0.85rem;
  color: #5a7a94;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-detail a { color: var(--orange); text-decoration: none; }
.contact-detail a:hover { color: var(--yellow); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

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

.contact-form input,
.contact-form textarea {
  background: #0a1520;
  border: 1px solid #1e3a52;
  color: var(--offwhite);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--orange); }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #3a5268; }

.contact-form textarea { resize: vertical; min-height: 130px; }

.btn-submit {
  background: var(--orange);
  color: var(--offwhite);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.15s, color 0.15s;
}

.btn-submit:hover { background: var(--yellow); color: var(--navy); }

/* FOOTER */
footer {
  background: #060e16;
  padding: 2rem;
  border-top: 3px solid var(--orange);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--offwhite);
  letter-spacing: 0.05em;
}

.footer-links { display: flex; gap: 1.5rem; }

.footer-links a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #5a7a94;
  text-decoration: none;
}

.footer-links a:hover { color: var(--orange); }

.footer-copy {
  font-size: 0.75rem;
  color: #3a5268;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-address {
  font-size: 0.75rem;
  color: #3a5268;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cta-block { align-items: flex-start; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 375px) {
  nav { padding: 0.75rem 1rem; }
  section { padding: 3rem 1rem; }
  .hero { padding: 3rem 1rem 2.5rem; }
}
