@font-face {
  font-family: "Archivo Narrow";
  src: url("https://fonts.gstatic.com/s/archivonarrow/v35/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhv8laKoXOtFCQ76Q.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo Narrow";
  src: url("https://fonts.gstatic.com/s/archivonarrow/v35/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvy1aKoXOtFCQ76Q.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Corben";
  src: url("https://fonts.gstatic.com/s/corben/v23/LYjAdGzzklQtCMpFHCZgqHArXN7HWQ.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: rgb(5, 5, 5);
  --white: rgb(255, 255, 255);
  --red: rgb(255, 20, 11);
  --cream: rgb(246, 241, 234);
  --gray: rgb(110, 106, 102);
  --border: rgba(5, 5, 5, .22);
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  color: var(--red);
  background: var(--black);
  font-family: "Archivo Narrow", Arial, sans-serif;
  font-size: 12px;
}

h1, h2, h3, p, figure {
  margin: 0;
}

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

/* Navigation — preserves the original Framer proportions */
.nav {
  height: 72px;
  width: 100%;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: black;
  position: relative;
  z-index: 5;
}

.brand {
  font-family: "Corben", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: -.8px;
  color: var(--red);
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav nav a {
  font-size: 14px;
  font-weight: 600;
  line-height: 1em;
}

.nav nav a:hover,
.footer a:hover,
.contact-email:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  height: min(100vh, 900px);
  min-height: 680px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color:  var(--red);
  width: 100%;
  padding: 40px;
}

.hero-index {
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  color:  var(--red)
}

.hero h1 {
  margin-top: 25px;
  font-family: "Corben", Georgia, serif;
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 700;
  line-height: .95em;
  letter-spacing: -2px;
}

.hero-note {
  margin-top: 18px;
  font-size: 28px;
  font-weight: 600;
}

/* Selected work */
.work {
  background: var(--white);
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 110px 60px 120px;
}

.work-header {
  height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
}

.work-header h2,
.work-header span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1em;
}

.work-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.work-grid figure {
  min-width: 0;
}

.work-grid figure img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center;
}

.work-grid figcaption {
  margin-top: 13px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1em;
}

/* About */
.about {
  background: var(--black);
  border-top: 1px solid var(--border);
  width: 100%;
  padding: 100px 60px 110px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

.about-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1em;
}

.about-copy {
  max-width: 960px;
  color: var(--cream);
  background: var(--red);
  font-family: "Corben", Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: -1px;
  padding: 0;
  background: transparent;
  color: var(--red);
}

/* Contact */
.contact {
  width: 100%;
  min-height: 540px;
  padding: 90px 60px 100px;
  background: var(--red);
  color: var(--cream);
}

.contact-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1em;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.contact h2 {
  max-width: 1000px;
  margin-top: 35px;
  font-family: "Corben", Georgia, serif;
  font-size: 64px;
  font-weight: 700;
  line-height: .95em;
  letter-spacing: -2px;
}

.contact-email {
  display: inline-block;
  margin-top: 38px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1em;
}

/* Footer */
.footer {
  min-height: 72px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--black);
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer-links a:last-child {
  font-size: 20px;
}

/* Responsive */
@media (max-width: 800px) {
  .nav {
    height: auto;
    min-height: 72px;
    padding: 20px 28px;
    gap: 20px;
  }

  .brand {
    font-size: 18px;
  }

  .nav nav {
    gap: 16px;
  }

  .nav nav a {
    font-size: 12px;
  }

  .hero {
    height: calc(100vh - 72px);
    min-height: 560px;
  }

  .hero h1 {
    font-size: clamp(36px, 8vw, 58px);
  }

  .work {
    padding: 80px 28px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .work-grid figure img {
    height: auto;
    aspect-ratio: 1200 / 2133;
  }

  .about {
    padding: 80px 28px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-copy {
    font-size: clamp(30px, 7vw, 42px);
  }

  .contact {
    padding: 75px 28px 85px;
  }

  .contact h2 {
    font-size: clamp(42px, 9vw, 64px);
  }

  .footer {
    padding: 25px 28px;
    min-height: 80px;
    align-items: flex-start;
    gap: 25px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 520px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    height: calc(100vh - 110px);
  }

  .hero h1 {
    font-size: 38px;
  }

  .footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
