:root {
  --black: #080808;
  --ink: #141411;
  --steel: #4e514c;
  --muted: #77766f;
  --paper: #f3f0e8;
  --bone: #fffaf0;
  --line: rgba(20, 20, 17, 0.13);
  --accent: #18a9d5;
  --accent-soft: #8bdff2;
  --silver: #d9d7cf;
  --smoke: #191b19;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
}

body.is-loading-brand {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 92px;
}

body.nav-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 52px);
  color: var(--bone);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(243, 240, 232, 0.93);
  box-shadow: 0 10px 30px rgba(8, 8, 8, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-logo {
  width: clamp(148px, 15vw, 214px);
  height: 58px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.36));
  transition: filter 180ms ease;
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo {
  filter: brightness(0) drop-shadow(0 1px 8px rgba(255, 255, 255, 0.18));
}

.brand-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 800;
}

.main-nav a {
  padding: 10px 13px;
  border-radius: 8px;
}

.main-nav a:hover {
  background: rgba(255, 250, 240, 0.14);
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-open .main-nav a:hover {
  background: rgba(20, 20, 17, 0.07);
}

.nav-cta {
  border: 1px solid currentColor;
}

.nav-toggle {
  display: none;
}

.brand-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  background: linear-gradient(135deg, #030303 0%, #101010 52%, #050505 100%);
  transition:
    opacity 520ms ease,
    visibility 520ms ease;
}

.brand-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.brand-loader-mark {
  position: relative;
  width: min(190px, 50vw);
  isolation: isolate;
}

.brand-loader-mark::before {
  content: none;
}

.brand-loader-mark img {
  width: 100%;
  animation: loaderMark 780ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes loaderMark {
  0% {
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes loaderGlow {
  from {
    opacity: 0.62;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--bone);
  background: var(--black);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.62) 42%, rgba(8, 8, 8, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.84) 0%, rgba(8, 8, 8, 0.18) 48%, rgba(8, 8, 8, 0.58) 100%);
}

.hero-script-logo {
  position: absolute;
  top: clamp(90px, 13vh, 142px);
  right: clamp(18px, 5vw, 72px);
  width: min(34vw, 430px);
  opacity: 0.18;
  filter: drop-shadow(0 20px 56px rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: min(920px, 100%);
  padding: 152px clamp(18px, 5vw, 72px) clamp(72px, 10vh, 116px);
}

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

.hero .eyebrow,
.quote-section .eyebrow {
  color: var(--accent-soft);
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.2rem, 8.4vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 25px 0 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.65;
}

.hero-credibility {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--accent-soft);
  font-size: 0.92rem;
  font-weight: 900;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.button.primary {
  color: var(--black);
  background: var(--accent-soft);
  box-shadow: 0 10px 30px rgba(24, 169, 213, 0.28);
}

.button.ghost {
  color: var(--bone);
  border-color: rgba(255, 250, 240, 0.42);
  background: rgba(255, 250, 240, 0.08);
}

.button.full {
  width: 100%;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--bone);
}

.intro-band p {
  min-height: 96px;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.intro-band p:last-child {
  border-right: 0;
}

.reach-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.reach-copy {
  align-self: start;
}

.reach-copy h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.35rem, 5.4vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.reach-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.service-grid article {
  min-height: 230px;
  padding: 24px;
  background: var(--bone);
}

.service-grid span {
  display: block;
  margin-bottom: 48px;
  color: var(--accent);
  font-weight: 950;
}

.service-grid h3 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2.6vw, 2.25rem);
  line-height: 1;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.12fr);
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.split-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.split-copy h2,
.proof-heading h2,
.testimonial-heading h2,
.method-heading h2,
.quote-section h2 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.split-copy p:not(.eyebrow),
.proof-heading p,
.testimonial-heading p,
.quote-section p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.signature-grid {
  display: grid;
  gap: 16px;
}

.signature-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(220px, 0.7fr);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bone);
}

.signature-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.signature-panel div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.signature-panel span {
  color: var(--accent);
  font-weight: 950;
}

.signature-panel h3 {
  margin: 56px 0 10px;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  line-height: 0.95;
}

.signature-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.signature-panel.black {
  background: var(--smoke);
  color: var(--bone);
}

.signature-panel.black p {
  color: rgba(255, 250, 240, 0.72);
}

.proof-wall {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
  color: var(--bone);
  background: var(--black);
}

.proof-heading {
  max-width: 900px;
  margin-bottom: 36px;
}

.proof-heading p {
  color: rgba(255, 250, 240, 0.68);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 320px;
  grid-auto-flow: dense;
  gap: 12px;
}

.lookbook-grid figure {
  position: relative;
  height: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #202020;
}

.lookbook-grid figure.span-2 {
  grid-column: span 2;
}

.lookbook-grid figure.tall {
  grid-row: span 2;
}

.lookbook-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  transition: transform 260ms ease, filter 260ms ease;
}

.lookbook-grid .floor-focus img {
  object-position: center 72%;
}

.lookbook-grid figure:hover img {
  transform: scale(1.035);
  filter: contrast(1.03);
}

.lookbook-grid figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 8px;
  color: var(--bone);
  background: rgba(8, 8, 8, 0.56);
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
  font-weight: 850;
}

.testimonial-section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.testimonial-heading {
  max-width: 900px;
  margin-bottom: 36px;
}

.testimonial-heading p {
  color: var(--muted);
}

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

.testimonial-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bone);
  box-shadow: 0 18px 52px rgba(8, 8, 8, 0.09);
}

.testimonial-card div {
  padding: 22px;
}

.testimonial-card .testimonial-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 12;
  padding: 0;
  overflow: hidden;
  background: var(--black);
}

.testimonial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-media::after {
  content: "Customer proof";
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 8px;
  color: var(--bone);
  background: rgba(8, 8, 8, 0.62);
  backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 900;
}

.testimonial-card span {
  display: block;
  margin-bottom: 36px;
  color: var(--accent);
  font-weight: 950;
}

.testimonial-card h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.05;
}

.testimonial-card p {
  color: var(--muted);
  line-height: 1.65;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.method-heading {
  align-self: start;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.method-list li {
  min-height: 260px;
  padding: 26px;
  background: var(--bone);
}

.method-list span {
  display: block;
  margin-bottom: 56px;
  color: var(--accent);
  font-weight: 950;
}

.method-list strong {
  font-size: 1.35rem;
}

.method-list p {
  color: var(--muted);
  line-height: 1.65;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 8vw, 96px);
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
  color: var(--bone);
  background:
    linear-gradient(rgba(8, 8, 8, 0.88), rgba(8, 8, 8, 0.94)),
    url("assets/work/05-westside-outdoor-black.webp") center / cover;
}

.quote-section p {
  color: rgba(255, 250, 240, 0.72);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.social-row a {
  padding: 10px 12px;
  border: 1px solid rgba(255, 250, 240, 0.26);
  border-radius: 8px;
  font-weight: 850;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.48);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 240, 0.88);
  font-size: 0.9rem;
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--bone);
  background: rgba(255, 250, 240, 0.1);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 250, 240, 0.48);
}

.quote-form select option {
  color: var(--ink);
}

.quote-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 22px;
  margin: -2px 0 0;
  color: rgba(255, 250, 240, 0.7);
  font-size: 0.86rem;
  line-height: 1.45;
}

.form-status.is-pending {
  color: var(--accent-soft);
}

.form-status.is-success {
  color: #91f4bd;
}

.form-status.is-error {
  color: #ffd1d1;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--bone);
}

.footer-logo {
  width: 142px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0);
}

.site-footer span {
  color: var(--muted);
}

.site-footer a {
  font-weight: 850;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.lookbook-grid [data-reveal],
.testimonial-grid [data-reveal],
.service-grid [data-reveal],
.method-list [data-reveal] {
  transform: translate3d(0, 28px, 0) scale(0.98);
}

.lookbook-grid [data-reveal].is-visible,
.testimonial-grid [data-reveal].is-visible,
.service-grid [data-reveal].is-visible,
.method-list [data-reveal].is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 1080px) {
  .split-section,
  .reach-section,
  .method-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .split-copy {
    position: static;
  }

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

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .intro-band,
  .signature-panel,
  .service-grid,
  .method-list,
  .lookbook-grid {
    grid-template-columns: 1fr;
  }

  .intro-band p {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-band p:last-child {
    border-bottom: 0;
  }

  .lookbook-grid figure.span-2,
  .lookbook-grid figure.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .lookbook-grid {
    grid-auto-rows: 420px;
  }
}

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

  .nav-toggle {
    display: inline-grid;
    justify-self: end;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 8px;
    color: inherit;
    background: transparent;
  }

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

  .main-nav {
    position: fixed;
    inset: 68px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 15px 13px;
  }

  .hero-media {
    object-position: 59% center;
  }

  .hero-script-logo {
    top: 82px;
    right: 16px;
    width: 138px;
    opacity: 0.2;
  }

  .hero-content {
    padding: 124px 18px 86px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .signature-panel img {
    min-height: 370px;
  }

  .method-list li {
    min-height: auto;
  }

  .method-list span {
    margin-bottom: 34px;
  }

  .service-grid article {
    min-height: auto;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .brand-loader {
    display: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
