:root {
  --ink: #171717;
  --muted: #66615d;
  --paper: #fffdf8;
  --surface: #f3efe7;
  --line: #ded6c8;
  --accent: #b3262d;
  --accent-strong: #7e171d;
  --gold: #c09a44;
  --dark: #111111;
  --dark-2: #24211f;
  --white: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 14px clamp(20px, 5vw, 64px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 176px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: #2d2a27;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  content: "";
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(44px, 7vw, 92px) clamp(20px, 5vw, 64px);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.78) 45%, rgba(126, 23, 29, 0.42)),
    url("https://static.wixstatic.com/media/nsplsh_644b6542302d4d39696941~mv2_d_3482_2611_s_4_2.jpg/v1/fill/w_1200,h_800,al_c,q_80,enc_avif,quality_auto/nsplsh_644b6542302d4d39696941~mv2_d_3482_2611_s_4_2.jpg") center/cover;
  content: "";
}

.hero-media,
.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-media {
  justify-self: center;
  width: min(100%, 390px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92) contrast(1.05);
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(3.5rem, 10vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 18px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.15;
}

h4 {
  margin: 10px 0 16px;
  color: var(--accent);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.hero-copy {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-outline {
  border-color: var(--accent);
  background: transparent;
  color: var(--accent);
}

.button-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.hero-panel {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
}

.hero-panel strong,
.hero-panel a {
  color: var(--white);
  text-decoration: none;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 64px);
}

.section-muted {
  max-width: none;
  background: var(--surface);
}

.section-muted > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-dark {
  max-width: none;
  background: var(--dark);
  color: var(--white);
}

.section-dark.compact {
  padding-top: clamp(56px, 8vw, 86px);
  padding-bottom: clamp(56px, 8vw, 86px);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(320px, 1.35fr);
  gap: clamp(30px, 6vw, 86px);
}

.copy {
  color: #302d2a;
  font-size: 1.03rem;
}

.signature {
  color: var(--accent);
  font-weight: 800;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.cover-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 28px;
}

.cover-strip.compact-covers {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 10px;
}

.cover-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #151515;
  isolation: isolate;
}

.cover-card::after {
  position: absolute;
  inset: 38% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  content: "";
}

.cover-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.cover-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

.cover-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.cover-card-wide {
  min-height: 210px;
}

.cover-card-wide img {
  min-height: 210px;
  aspect-ratio: 16 / 10;
}

.cover-card-logo {
  min-height: 180px;
  background: var(--white);
}

.cover-card-logo::after {
  inset: auto 0 0;
  height: 58%;
}

.cover-card-logo img {
  min-height: 180px;
  padding: 34px;
  object-fit: contain;
  background: var(--white);
}

.lead {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
}

.lead-small {
  color: var(--muted);
  font-weight: 600;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.work-grid article,
.feature-list p,
.columns p,
.client-list span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.work-grid article {
  min-height: 116px;
  padding: 18px;
  font-weight: 700;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-list p {
  margin: 0;
  padding: 18px 20px;
  font-size: 1.04rem;
  font-weight: 700;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.service-row a {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.service-row a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.service-row .service-budget {
  border-color: var(--accent);
  background: var(--accent);
}

.service-row .service-budget:hover {
  border-color: var(--gold);
  background: var(--accent-strong);
  color: var(--white);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.portfolio-block {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.portfolio-block:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.columns {
  columns: 3 260px;
  column-gap: 14px;
}

.columns p {
  display: inline-block;
  width: 100%;
  margin: 0 0 12px;
  padding: 12px 14px;
  break-inside: avoid;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.logo-grid img {
  width: 100%;
  height: 92px;
  padding: 16px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
}

.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.client-list span {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 0.75fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(20px, 4vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
}

.contact-actions .button {
  min-width: 180px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  padding: 26px 20px;
  background: var(--dark-2);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

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

  .hero,
  .section-split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: 2;
    justify-self: start;
    max-width: 310px;
  }

  .work-grid,
  .feature-list,
  .cover-strip,
  .cover-strip.compact-covers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 72px;
  }

  .brand img {
    width: 138px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-panel {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }

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

  .cover-strip,
  .cover-strip.compact-covers {
    grid-template-columns: 1fr;
  }

  .cover-card,
  .cover-card img,
  .cover-card-wide,
  .cover-card-wide img {
    min-height: 230px;
  }
}
