@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --black: #11100f;
  --ink: #1b1917;
  --cream: #f2eadb;
  --paper: #fbf7ef;
  --red: #a62d27;
  --muted: #776e64;
  --line: rgba(27,25,23,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: absolute;
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 5vw;
  color: #fff;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 2px solid #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: .04em;
}
.brand-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: .85;
  letter-spacing: .07em;
}
.brand-name small { font-size: 11px; letter-spacing: .18em; }
nav { display: flex; gap: 28px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; }
nav a { opacity: .85; transition: opacity .2s; }
nav a:hover { opacity: 1; }

.hero {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8,7,6,.92), rgba(8,7,6,.58), rgba(8,7,6,.25)),
    radial-gradient(circle at 75% 55%, #694a35, #211c18 55%, #090908);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: repeating-linear-gradient(0deg, #fff 0 1px, transparent 1px 4px);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; width: 90%; max-width: 1100px; margin: 100px auto 0; }
.eyebrow, .section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow { color: #e3b69b; margin-bottom: 20px; }
h1, h2, h3 { font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; }
h1 { font-size: clamp(62px, 10vw, 140px); line-height: .78; letter-spacing: -.025em; margin: 0; }
h1 span { color: #d7c0a1; }
.hero-copy { font-size: 20px; margin: 30px 0; color: #ddd3c7; }
.button {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 13px 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  border: 1px solid var(--red);
  transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); background: #8f2722; }

.section { padding: 110px 7vw; }
.section-label { color: var(--red); border-top: 1px solid var(--line); padding-top: 13px; margin-bottom: 55px; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; max-width: 1150px; margin: auto; }
h2 { font-size: clamp(48px, 6vw, 82px); line-height: .9; margin: 0; letter-spacing: -.02em; }
em { color: var(--red); font-style: normal; }
.lead { font-size: 23px; line-height: 1.4; margin-top: 0; }
.intro p:not(.lead) { color: var(--muted); }

.story { background: var(--cream); }
.story-card {
  max-width: 1150px; margin: auto;
  display: grid; grid-template-columns: 110px 1fr; gap: 50px;
}
.story-number {
  font-family: "Barlow Condensed"; font-size: 72px; font-weight: 800;
  color: var(--red); line-height: 1;
}
.story-card h2 { margin-bottom: 35px; }
.story-card p { max-width: 800px; color: #625a51; }
.closing-line { font-weight: 700; color: var(--ink) !important; margin-top: 30px; }

.team-grid { max-width: 1150px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }
.person { background: #e9e1d5; }
.portrait { aspect-ratio: 4 / 5; position: relative; overflow: hidden; background: #302b27; }
.portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-placeholder {
  display: none; width: 100%; height: 100%; align-items: center; justify-content: center;
  color: #c7b9a7; font-family: "Barlow Condensed"; font-size: 32px; font-weight: 700;
  text-align: center; letter-spacing: .08em;
}
.person-info { padding: 22px 25px 27px; }
.person-info h3 { font-size: 31px; margin: 0; line-height: 1; }
.person-info p { color: var(--red); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; margin: 8px 0 0; }

.projects { background: var(--cream); }
.projects-heading { max-width: 1150px; margin: 0 auto 55px; }
.project-card {
  max-width: 1150px; margin: auto;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px;
  align-items: center;
  background: #fff;
}
.project-image { aspect-ratio: 1402 / 1122; overflow: hidden; background: #171310; display: flex; align-items: center; justify-content: center; }
.project-image img { width: 100%; height: 100%; object-fit: contain; display: block; }
.project-info { padding: 20px 45px 20px 0; }
.project-info h3 { font-size: 34px; line-height: 1; margin: 0; }
.project-date { color: var(--red); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; margin: 16px 0 26px; }
.project-links { display: flex; flex-wrap: wrap; gap: 14px; }
.project-links .button-light { margin-top: 0; background: transparent; color: var(--ink); border-color: var(--ink); }
.project-links .button-light:hover { background: var(--ink); color: #fff; }

.contact { background: var(--black); color: #fff; }
.contact .section-label { border-color: rgba(255,255,255,.2); }
.contact-content { max-width: 1150px; margin: auto; display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; }
.contact-content p { color: #aaa19a; max-width: 430px; }
.button-light { margin-top: 18px; }

footer {
  background: #090908; color: #837c74; padding: 28px 7vw;
  display: flex; justify-content: space-between; gap: 20px;
  font-size: 11px; text-transform: uppercase; letter-spacing: .1em;
}
.footer-brand { color: #ddd2c5; font-weight: 700; }

@media (max-width: 750px) {
  nav { display: none; }
  .site-header { padding: 18px 5vw; }
  .hero { min-height: 82vh; }
  .section { padding: 75px 7vw; }
  .intro-grid, .team-grid, .contact-content, .project-card { grid-template-columns: 1fr; }
  .project-info { padding: 25px; }
  .story-card { grid-template-columns: 1fr; gap: 10px; }
  .story-number { font-size: 46px; }
  .team-grid { gap: 25px; }
  footer { flex-direction: column; }
}
/* Razor Blade Productions Logo */
.brand-logo {
  display: block;
  width: 190px;
  max-width: 32vw;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 750px) {
  .brand-logo {
    width: 155px;
    max-width: 55vw;
    max-height: 48px;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  display: block;
  width: 175px;
  max-width: 42vw;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}
