:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --ink: #050505;
  --muted: #4a4a4a;
  --line: #dedede;
  --soft: #f7f7f7;
  --accent: #ff6a00;
  --accent-soft: #ffe0cc;
  --accent-dark: #a33f00;
  --shadow: 0 24px 70px rgba(0, 0, 0, .16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--ink);
  color: #fff;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: #fff;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, padding .25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .1);
  backdrop-filter: blur(12px);
}

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

.brand img {
  border-radius: 0;
}

.brand-logo {
  width: auto;
  height: 58px;
  background: #000;
  object-fit: contain;
}

.footer-brand .brand-logo {
  height: 70px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: .95rem;
  letter-spacing: 0;
}

.brand small {
  color: currentColor;
  font-size: .72rem;
  opacity: .75;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: .9rem;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.nav-cta {
  color: var(--ink);
  background: var(--accent);
}

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

.button.primary {
  background: var(--accent);
  color: var(--ink);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .08);
}

.button.outline {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  min-height: 92svh;
  color: #fff;
  background: #000;
  overflow: hidden;
}

.hero-content {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 820px;
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
  padding: 150px clamp(28px, 5vw, 70px) 78px 0;
  flex-direction: column;
  justify-content: end;
  align-items: flex-start;
}

.hero-media {
  min-height: 92svh;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .38em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(1rem, 2vw, 1.65rem);
  font-style: italic;
  letter-spacing: .42em;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Impact, "Arial Narrow", "Roboto Condensed", Haettenschweiler, sans-serif;
  font-size: clamp(4.7rem, 10.2vw, 10.8rem);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: .84;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.band {
  background: var(--soft);
}

.intro {
  padding: 46px 0;
}

.intro-grid,
.experience-grid,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.3rem);
  font-weight: 500;
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 1.22rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.section-head h2 {
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-grid article {
  min-height: 285px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.service-grid span {
  display: inline-block;
  margin-bottom: 50px;
  color: var(--accent-dark);
  font-size: .82rem;
  font-weight: 800;
}

.service-grid p {
  margin-bottom: 0;
}

.portrait-stack {
  min-height: 0;
}

.portrait-detail {
  width: 100%;
  height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.experience-copy p {
  max-width: 620px;
}

.facts {
  display: grid;
  gap: 1px;
  margin: 34px 0 0;
  background: var(--line);
}

.facts div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 16px 0;
  background: var(--soft);
}

.facts dt {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
}

.process {
  background: #000;
  color: #fff;
}

.process p,
.process span {
  color: rgba(255, 255, 255, .7);
}

.process-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 6vw, 88px);
}

.process ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.process li {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.process strong {
  color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(2) {
  grid-column: span 2;
  grid-row: span 2;
}

.contact h2 {
  max-width: 640px;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  padding: 34px 0;
  color: #fff;
  background: #000;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, .64);
}

.footer-grid {
  align-items: center;
}

@media (max-width: 1040px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid article:last-child {
    grid-column: span 2;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .site-header {
    padding: 14px 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 88svh;
  }

  .hero-media {
    grid-row: 1;
    min-height: 44svh;
    opacity: .92;
  }

  .hero-content {
    grid-row: 2;
    margin: 0;
    padding: 32px 20px 48px;
  }

  .button {
    width: 100%;
  }

  .intro-grid,
  .experience-grid,
  .contact-grid,
  .footer-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article:last-child,
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }

  .service-grid article {
    min-height: 230px;
  }

  .service-grid span {
    margin-bottom: 34px;
  }

  .portrait-stack {
    min-height: 0;
  }

  .portrait-detail {
    position: static;
    width: 100%;
    min-width: 0;
    height: auto;
    border: 0;
  }

  .facts div,
  .process li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gallery-grid {
    grid-auto-rows: 280px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand-logo {
    height: 50px;
  }
}
