:root {
  --ink: #f7f7f7;
  --muted: #c4c4c4;
  --paper: #050505;
  --white: #ffffff;
  --red: #d71920;
  --red-dark: #9f151a;
  --yellow: #ffd72e;
  --black: #050505;
  --panel: #111111;
  --soft: #171717;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 70px rgba(10, 10, 10, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0));
}

.inner-header {
  position: absolute;
  background: var(--black);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.text-brand {
  color: var(--yellow);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 900;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: clamp(76px, 8vw, 112px);
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.38));
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 126px clamp(18px, 5vw, 70px) 70px;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.9) 0%, rgba(5, 6, 7, 0.64) 42%, rgba(5, 6, 7, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 6, 7, 0.68), rgba(5, 6, 7, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-logo {
  display: block;
  width: min(560px, 88vw);
  height: auto;
  margin: 0 0 28px;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.58));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 9vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 10px 0 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--black);
  background: var(--yellow);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(215, 25, 32, 0.64);
}

.section {
  padding: clamp(64px, 9vw, 124px) clamp(18px, 5vw, 70px);
  border-top: 1px solid var(--line);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.two-column,
.connect-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.body-copy {
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.78;
}

.about-story {
  color: var(--ink);
  font-weight: 800;
}

.work-intro {
  color: var(--ink);
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  font-weight: 800;
  line-height: 1.55;
}

.body-copy p:first-child {
  margin-top: 0;
}

.mission-section {
  background: var(--black);
}

.services-section {
  background: var(--panel);
  border-top-color: rgba(215, 25, 32, 0.32);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

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

.section-title-label {
  color: var(--yellow);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.service-copy {
  max-width: 920px;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  font-weight: 700;
  line-height: 1.65;
}

.service-copy p,
.work-intro p,
.about-story p {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.page-hero {
  padding: 180px clamp(18px, 5vw, 70px) 88px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.94), rgba(215, 25, 32, 0.74)),
    var(--black);
}

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(2.8rem, 7vw, 6rem);
}

.about-page-section {
  background: var(--panel);
}

.portfolio-section {
  background: var(--panel);
}

.portfolio-copy {
  margin-top: 22px;
}

.contact-section {
  background: var(--panel);
}

.contact-list {
  display: grid;
  gap: 14px;
}

.simple-contact {
  gap: 12px;
}

.simple-contact h3 {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.simple-contact a {
  display: block;
  color: var(--white);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 800;
  text-decoration: none;
}

.simple-contact a:hover {
  color: var(--yellow);
}

.connect-section {
  color: var(--white);
  background: var(--black);
  border-top-color: rgba(255, 215, 46, 0.24);
}

.connect-section .body-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.connect-section .eyebrow {
  color: var(--yellow);
}

.social-panel {
  display: grid;
  gap: 14px;
}

.social-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 20px;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(215, 25, 32, 0.24), rgba(255, 215, 46, 0.08));
  box-shadow: var(--shadow);
  transition: transform 160ms ease, border-color 160ms ease;
}

.social-panel a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 215, 46, 0.42);
}

.social-panel span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.social-panel strong {
  text-align: right;
  color: var(--white);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 70px);
  color: var(--muted);
  background: var(--black);
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .site-header {
    position: fixed;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .brand-logo {
    width: 86px;
  }

  .nav-links {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 10px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero {
    min-height: 820px;
    padding-top: 154px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(5, 6, 7, 0.9) 0%, rgba(5, 6, 7, 0.54) 58%, rgba(5, 6, 7, 0.28) 100%),
      linear-gradient(90deg, rgba(5, 6, 7, 0.78), rgba(5, 6, 7, 0.24));
  }

  .two-column,
  .connect-layout {
    grid-template-columns: 1fr;
  }

  .social-panel a,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-panel strong {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: 80px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .button {
    width: 100%;
  }
}
