:root {
  --charcoal: #333333;
  --black: #080808;
  --ink: #111111;
  --cream: #fffff0;
  --muted: rgba(255, 255, 240, 0.72);
  --soft: rgba(255, 255, 240, 0.1);
  --accent: #ffc107;
  --line: rgba(255, 255, 240, 0.16);
  --max: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --display: Impact, Haettenschweiler, "Arial Black", "Arial Narrow Bold", sans-serif;
  --mono: "Lucida Console", "Courier New", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--mono);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(0, 0, 0, .74), rgba(0, 0, 0, 0));
  transition: background .3s var(--ease), padding .3s var(--ease);
}

.site-header.is-scrolled {
  padding-block: 14px;
  background: rgba(8, 8, 8, .88);
  border-bottom: 1px solid rgba(255, 255, 240, .08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: clamp(142px, 12vw, 196px);
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: rgba(255, 255, 240, .84);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a:not(.button):hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #111;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

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

.button-ghost {
  background: transparent;
  color: var(--cream);
}

.button-ghost:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--black);
}

.button-small {
  min-height: 38px;
  padding-inline: 16px;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 54px);
  right: clamp(18px, 4vw, 54px);
  bottom: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 255, 240, .2), transparent);
  z-index: 3;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--black);
  transform: scale(1.01);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .32) 48%, rgba(0, 0, 0, .72)),
    linear-gradient(0deg, rgba(8, 8, 8, .86), rgba(8, 8, 8, .04) 46%, rgba(8, 8, 8, .42));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 132px 0 74px;
}

.accent-line {
  width: 86px;
  height: 3px;
  margin-bottom: 26px;
  background: var(--accent);
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: clamp(3.6rem, 9.4vw, 8.6rem);
  line-height: .88;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 6vw, 6.6rem);
  line-height: .88;
}

h3 {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 12px;
  color: var(--cream);
  font-size: clamp(1.25rem, 3vw, 2.1rem);
  font-weight: 700;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.04rem;
}

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

section {
  position: relative;
}

.intro-band,
.work-section,
.gallery-section,
.services-section,
.packages-section,
.faq-section,
.process-section {
  padding: clamp(80px, 11vw, 150px) clamp(18px, 4vw, 54px);
}

.intro-band {
  background: var(--charcoal);
}

.section-intro {
  width: min(100%, var(--max));
  margin: 0 auto clamp(36px, 6vw, 70px);
}

.section-intro p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
}

.section-label {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.work-section,
.services-section,
.faq-section {
  background: #0e0e0e;
}

.work-grid,
.package-grid,
.process-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  background: #171717;
  border: 1px solid var(--line);
  transform:
    perspective(900px)
    translate3d(var(--tilt-x, 0), var(--tilt-y, 0), 0)
    rotateX(var(--rotate-x, 0deg))
    rotateY(var(--rotate-y, 0deg));
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}

.service-card::before {
  content: none;
}

.service-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  background: #080808;
  transition: transform .7s var(--ease), filter .7s var(--ease);
}

.service-card:hover {
  border-color: rgba(255, 193, 7, .72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .44);
}

.service-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.05);
}

.service-card span,
.service-card p {
  position: relative;
  z-index: 1;
  padding-inline: 24px;
}

.service-card span {
  margin-top: 22px;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-card p {
  max-width: 310px;
  margin-bottom: 24px;
  color: rgba(255, 255, 240, .76);
  font-size: .95rem;
}

.split-section {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: clamp(80px, 11vw, 150px) 0;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(300px, .7fr);
  align-items: center;
  gap: clamp(30px, 7vw, 90px);
}

.split-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.portrait-frame {
  margin: 0;
  overflow: visible;
  background: #171717;
}

.portrait-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.rim-preview {
  padding: clamp(80px, 11vw, 150px) clamp(18px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(280px, .65fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  background: var(--charcoal);
}

.rim-copy {
  max-width: 520px;
  justify-self: end;
}

.rim-copy img {
  width: clamp(132px, 15vw, 210px);
  margin-bottom: 26px;
}

.rim-copy p {
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color .3s var(--ease), padding-left .3s var(--ease), transform .3s var(--ease);
}

.service-list span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-list a:hover {
  color: var(--accent);
  padding-left: 18px;
  transform: translateX(8px);
}

.gallery-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  columns: 3 280px;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin: 0 0 16px;
  overflow: visible;
  background: #171717;
  transition: transform .45s var(--ease), filter .45s var(--ease);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.gallery-item:hover {
  transform: translateY(-8px) rotate(-0.35deg);
}

.gallery-item:hover img {
  filter: saturate(1.08) contrast(1.04);
}

.item-1 {
  grid-column: span 7;
  grid-row: span 3;
}

.item-2 {
  grid-column: span 5;
  grid-row: span 2;
}

.item-3 {
  grid-column: span 5;
  grid-row: span 3;
}

.item-4 {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-compact {
  width: 100%;
}

.packages-section,
.process-section {
  background: var(--charcoal);
}

.package-card,
.process-card {
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 240, .045);
}

.package-card h3,
.process-card h3 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-weight: 900;
}

.package-card p,
.process-card p {
  color: var(--muted);
}

.price,
.process-card span {
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pricing-callout {
  margin: 10px 0 16px;
}

.price-highlight {
  display: inline-block;
  padding: 12px 16px;
  border: 1px solid rgba(255, 193, 7, .78);
  background: rgba(255, 193, 7, .12);
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: .9;
  text-transform: uppercase;
}

.business-proof-section {
  width: min(100%, var(--max));
  margin: 0 auto clamp(42px, 7vw, 90px);
}

.business-case {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-bottom: 22px;
}

.business-case-copy p {
  color: var(--muted);
}

.worked-logo {
  width: min(100%, 270px);
  min-height: 170px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  padding: 28px;
  border: 1px solid rgba(255, 193, 7, .48);
  background: linear-gradient(135deg, rgba(255, 193, 7, .16), rgba(255, 255, 240, .04));
  box-shadow: 0 22px 70px rgba(0, 0, 0, .36);
  transform:
    perspective(900px)
    translate3d(var(--tilt-x, 0), var(--tilt-y, 0), 0)
    rotateX(var(--rotate-x, 0deg))
    rotateY(var(--rotate-y, 0deg));
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}

.worked-logo:hover {
  border-color: var(--accent);
  box-shadow: 0 30px 90px rgba(255, 193, 7, .16), 0 24px 80px rgba(0, 0, 0, .5);
}

.worked-logo img {
  width: min(100%, 190px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .38));
}

.case-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line);
  background: #080808;
}

.case-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #080808;
}

.video-fill-frame {
  min-height: 0;
}

.business-metrics {
  width: 100%;
}

.business-showcase-block {
  margin-top: clamp(54px, 8vw, 96px);
}

.business-showcase-block .section-intro {
  margin-bottom: clamp(24px, 4vw, 42px);
}

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

.proof-card,
.graphic-post-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 240, .045);
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}

.proof-card:hover,
.graphic-post-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 193, 7, .58);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .38);
}

.proof-card img {
  width: 100%;
  height: clamp(420px, 58vw, 720px);
  object-fit: contain;
  background: #080808;
}

.proof-card figcaption {
  padding: 22px;
  border-top: 1px solid var(--line);
}

.proof-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.graphic-post-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.graphic-post-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #080808;
}

.faq {
  width: min(100%, 920px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  padding: 24px 0;
  color: var(--cream);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
}

.faq-item p {
  max-width: 720px;
  color: var(--muted);
}

.cta-section {
  min-height: 62svh;
  padding: clamp(80px, 11vw, 150px) clamp(18px, 4vw, 54px);
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 193, 7, .16), transparent 32%),
    linear-gradient(90deg, rgba(8, 8, 8, .98), rgba(51, 51, 51, .82));
}

.cta-section h2,
.cta-section p,
.cta-section .accent-line {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
}

.cta-section .button {
  width: max-content;
  margin-left: calc((100% - min(100%, var(--max))) / 2);
}

.contact-hero {
  min-height: 100svh;
  padding: 108px clamp(18px, 4vw, 54px) 46px;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, .7fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 193, 7, .12), transparent 34%),
    linear-gradient(90deg, rgba(8, 8, 8, .98), rgba(51, 51, 51, .78));
}

.contact-copy h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: .9;
}

.contact-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.1rem;
}

.local-line {
  color: var(--accent) !important;
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid var(--line);
  background: rgba(8, 8, 8, .72);
  backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 240, .82);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 240, .2);
  border-radius: 0;
  background: rgba(255, 255, 240, .08);
  color: var(--cream);
  padding: 12px 13px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.form-wide,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--accent);
  font-size: .9rem;
}

.footer {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 28px;
  align-items: center;
  padding: 42px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  background: #080808;
  color: var(--muted);
}

.footer img {
  width: clamp(110px, 12vw, 170px);
  margin-bottom: 12px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-toggle {
    position: relative;
    z-index: 22;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 240, .24);
    background: rgba(0, 0, 0, .3);
    color: var(--cream);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: grid;
    place-content: center;
    gap: 24px;
    background: rgba(8, 8, 8, .96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .work-grid,
  .package-grid,
  .process-grid,
  .proof-grid,
  .business-case,
  .split-section,
  .rim-preview,
  .contact-hero,
  .footer {
    grid-template-columns: 1fr;
  }

  .rim-copy {
    justify-self: start;
  }

  .gallery-grid {
    columns: 1 100%;
  }

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

  .item-1,
  .item-2,
  .item-3,
  .item-4 {
    grid-column: span 6;
    grid-row: span 3;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .cta-section .button {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand span {
    max-width: 150px;
  }

  .hero-content {
    padding-bottom: 78px;
  }

  h1 {
    font-size: clamp(3rem, 13.5vw, 3.7rem);
    line-height: .86;
  }

  h2 {
    font-size: clamp(2.6rem, 14vw, 4.3rem);
  }

  .button {
    width: 100%;
  }

  .actions {
    width: 100%;
  }

  .service-card span {
    font-size: 1.8rem;
  }

  .graphic-post-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
