@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --black: #111111;
  --charcoal: #1f2937;
  --steel: #374151;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --silver: #e5e7eb;
  --light: #f3f4f6;
  --text: #111827;
  --muted: #6b7280;
  --white: #ffffff;
  --line: #d1d5db;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

.wrap { width: min(var(--max), 92vw); margin: 0 auto; }

.ribbon {
  background: var(--orange);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.5rem 0;
}

.ribbon .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.ribbon a { color: var(--black); text-decoration: underline; text-underline-offset: 2px; }

.header {
  background: var(--black);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

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

.logo img { width: 46px; height: 46px; }

.logo .title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.logo .tag {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
}

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

.nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #9ca3af;
  transition: color 0.2s;
}

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

.nav .cta {
  background: var(--orange);
  color: var(--black);
  padding: 0.55rem 1.1rem;
  font-weight: 700;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

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

.menu-btn {
  display: none;
  background: none;
  border: 1px solid #374151;
  padding: 0.45rem 0.75rem;
  font: inherit;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
}

.hero {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(249,115,22,0.12) 100%);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.hero .lead {
  color: #d1d5db;
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 0.85rem;
}

.hero .email-line {
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.hero .email-line a {
  color: var(--orange);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.35rem;
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-orange {
  background: var(--orange);
  color: var(--black);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

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

.btn-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid #4b5563;
}

.btn-dark:hover { border-color: var(--orange); color: var(--orange); }

.hero-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}

.band {
  background: var(--black);
  color: var(--white);
  padding: 1.5rem 0;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.band-grid strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  color: var(--orange);
  text-transform: uppercase;
}

.band-grid span {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section { padding: 4.5rem 0; }
.section-gray { background: var(--light); }

.head { margin-bottom: 2.5rem; max-width: 620px; }
.head.center { text-align: center; margin-left: auto; margin-right: auto; }

.head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.65rem;
}

.head p { color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cards article {
  background: var(--white);
  border-left: 4px solid var(--orange);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.section-gray .cards article { border: 1px solid var(--line); border-left: 4px solid var(--orange); }

.cards h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
}

.cards p { font-size: 0.88rem; color: var(--muted); }

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

.split img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.split h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.split p { color: var(--muted); margin-bottom: 0.85rem; }
.split a { color: var(--orange); font-weight: 700; }

.profile {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
}

.profile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
}

.profile h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.45rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.profile .role {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.profile p { color: var(--muted); margin-bottom: 0.75rem; }

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

.panel-dark {
  background: var(--black);
  color: var(--white);
  padding: 2.25rem;
}

.panel-dark h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.panel-dark p { color: #9ca3af; margin-bottom: 1.25rem; }

.panel-dark li {
  padding: 0.85rem 0;
  border-bottom: 1px solid #374151;
}

.panel-dark li:last-child { border-bottom: 0; }

.panel-dark strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.3rem;
}

.panel-dark a { color: var(--white); word-break: break-all; font-weight: 600; }

.form-box {
  background: var(--light);
  padding: 2.25rem;
  border: 1px solid var(--line);
}

.form-group { margin-bottom: 1rem; }

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

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: var(--white);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
}

.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.75rem; }

.map { margin-top: 1.25rem; overflow: hidden; }
.map iframe { width: 100%; height: 220px; border: 0; display: block; }

.footer {
  background: var(--black);
  color: #9ca3af;
  padding: 2.5rem 0 1.25rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-grid h4 {
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

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

.footer-end {
  border-top: 1px solid #374151;
  padding-top: 1.25rem;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

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

@media (max-width: 960px) {
  .hero-layout, .split, .contact-row, .footer-grid, .profile { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .band-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .menu-btn { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid #374151;
  }
  .nav.open { display: flex; }
  .header .wrap { position: relative; }
  .cards, .band-grid { grid-template-columns: 1fr; }
}
