/* Junk Bros — styles */

:root {
  --navy: #1a2d4a;
  --navy-light: #243a5c;
  --green: #2d5a3d;
  --orange: #e86c2a;
  --orange-dark: #c9561a;
  --brown: #5c3d2e;
  --cream: #f5f0e8;
  --white: #ffffff;
  --gray-100: #e8e4dc;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --shadow: 0 4px 24px rgba(15, 26, 46, 0.12);
  --radius: 12px;
  --font-display: "Archivo Black", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--cream);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 26, 46, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
  transition: transform 0.2s;
}

.logo:hover .logo-img {
  transform: scale(1.04);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--orange-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(232, 108, 42, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(45, 90, 61, 0.12) 0%, transparent 50%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
}

.hero-logo {
  width: clamp(160px, 28vw, 240px);
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.hero-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-lead {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(240, 90, 40, 0.4);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
}

.hero-trust li {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  padding-left: 1.25rem;
  position: relative;
}

.hero-trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* Sections */

section {
  padding: 5rem 0;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.section-head-light {
  color: var(--white);
}

.section-eyebrow {
  color: var(--orange);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.section-head-light h2 {
  color: var(--white);
}

.section-head p {
  color: var(--gray-500);
}

.section-head-light p {
  color: rgba(255, 255, 255, 0.7);
}

/* Services */

.services {
  background: var(--cream);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(15, 26, 46, 0.14);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
}

/* Process */

.process {
  background: var(--navy);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  list-style: none;
  counter-reset: none;
}

.process-steps li {
  position: relative;
  padding-top: 0.5rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.process-steps h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.process-steps p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
}

/* Why Us */

.why-us {
  background: var(--white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-us-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.why-us-copy p {
  margin-bottom: 1rem;
  color: var(--gray-500);
}

.why-list {
  list-style: none;
  margin-top: 1.5rem;
}

.why-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-weight: 500;
  color: var(--navy);
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.why-us-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.why-us-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: var(--orange);
  opacity: 0.15;
  border-radius: 50%;
}

.why-us-card blockquote {
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--white);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.quote-attr {
  margin-top: 1.25rem;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9375rem;
  position: relative;
  z-index: 1;
}

/* Area */

.area {
  background: var(--cream);
}

.area-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.area-map {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.area-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(255, 255, 255, 0.04) 39px,
      rgba(255, 255, 255, 0.04) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(255, 255, 255, 0.04) 39px,
      rgba(255, 255, 255, 0.04) 40px
    );
}

.map-pin {
  width: 20px;
  height: 20px;
  background: var(--orange);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 8px rgba(240, 90, 40, 0.25);
  position: relative;
  z-index: 1;
}

.map-label {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 1;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.5rem;
  list-style: none;
}

.area-list li {
  padding-left: 1.25rem;
  position: relative;
  font-weight: 500;
  color: var(--navy);
}

.area-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.area-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--gray-500);
  font-size: 0.9375rem;
}

/* Contact */

.contact {
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-copy .section-eyebrow {
  margin-bottom: 0.5rem;
}

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

.contact-card {
  display: block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

a.contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--orange);
  transform: translateX(4px);
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.contact-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.contact-hint {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.35rem;
}

/* Footer */

.site-footer {
  background: #0a1220;
  padding: 2.5rem 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--orange);
  font-weight: 500;
  font-size: 0.9375rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8125rem;
  margin-top: 0.5rem;
}

/* Mobile nav */

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    text-align: center;
    width: 100%;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .why-us-grid,
  .area-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .area-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 60px;
  }
}
