:root {
  --ink: #0f110c;
  --ink-soft: #12140e;
  --surface: #171911;
  --surface-raised: #1e2117;
  --surface-warm: #29271e;
  --cream: #f1eadc;
  --text: #ded7c9;
  --muted: #989184;
  --faint: #706b61;
  --line: rgba(231, 221, 201, 0.14);
  --line-strong: rgba(231, 221, 201, 0.24);
  --ochre: #c79a4b;
  --ochre-bright: #d5aa61;
  --moss: #77815c;
  --display: "Syne", sans-serif;
  --sans: "DM Sans", sans-serif;
  --page: 1180px;
  --radius: 5px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--ink);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(119, 129, 92, 0.09), transparent 26rem),
    var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

a {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

::selection {
  background: var(--ochre);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--ochre-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 70px;
  padding: 15px 48px;
  border-bottom: 1px solid var(--line);
  background: rgba(15, 17, 12, 0.86);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  background: rgba(15, 17, 12, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  grid-column: 1;
  gap: 12px;
  width: fit-content;
  color: var(--cream);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface-raised);
  color: var(--cream);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
}

.brand-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 58%;
  transform: scale(2.5);
  filter: saturate(0.75) contrast(1.05);
}

.brand-name {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  align-items: center;
  grid-column: 2;
  gap: 32px;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--ochre);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cream);
}

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

.header-actions {
  display: flex;
  align-items: center;
  grid-column: 3;
  justify-self: end;
  gap: 14px;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-socials a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-socials a:hover,
.header-socials a:focus-visible {
  border-color: var(--ochre);
  background: var(--surface-raised);
  transform: translateY(-2px);
}

.header-socials img {
  display: block;
  width: 19px;
  height: 19px;
}

.header-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  padding: 12px 9px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: var(--cream);
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-small {
  min-height: 38px;
  padding: 10px 18px;
  background: var(--cream);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.button-primary,
.button-light {
  background: var(--cream);
  color: var(--ink);
}

.button-primary:hover,
.button-light:hover {
  background: var(--ochre-bright);
}

.button-dark {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ochre);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
  flex: 0 0 auto;
}

.creator-snapshot {
  display: grid;
  grid-template-areas:
    "copy visual"
    "facts facts";
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 56px 82px;
  align-items: center;
  width: min(100%, calc(var(--page) + 96px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 148px 48px 78px;
}

.snapshot-copy {
  grid-area: copy;
  min-width: 0;
  max-width: 570px;
}

.snapshot-copy .eyebrow {
  margin-bottom: 32px;
}

.snapshot-copy h1 {
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(58px, 6.4vw, 88px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.snapshot-greeting,
.snapshot-copy h1 em {
  display: block;
}

.snapshot-copy h1 em {
  color: #77766a;
  font-style: normal;
}

.snapshot-lead {
  max-width: 480px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.snapshot-list {
  display: none;
}

.snapshot-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.hero-email {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.hero-email span {
  color: var(--ochre);
  transition: transform 180ms ease;
}

.hero-email:hover {
  color: var(--cream);
}

.hero-email:hover span {
  transform: translate(2px, -2px);
}

.snapshot-collage {
  position: relative;
  grid-area: visual;
  align-self: stretch;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.snapshot-collage::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(27, 31, 20, 0.05), rgba(15, 17, 12, 0.3)),
    linear-gradient(115deg, rgba(199, 154, 75, 0.08), transparent 44%);
  content: "";
  pointer-events: none;
}

.snapshot-photo-main {
  position: absolute;
  inset: 0;
}

.snapshot-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: sepia(0.12) saturate(0.72) brightness(0.76) contrast(1.08);
}

.snapshot-photo-detail,
.snapshot-tape,
.snapshot-note {
  display: none;
}

.snapshot-facts {
  display: grid;
  grid-area: facts;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.snapshot-facts > div {
  min-width: 0;
  padding: 27px 30px;
  border-right: 1px solid var(--line);
}

.snapshot-facts > div:last-child {
  border-right: 0;
}

.snapshot-facts strong {
  display: block;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.snapshot-facts span {
  display: block;
  margin-top: 8px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.niche-ribbon {
  overflow: hidden;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-soft);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  color: var(--faint);
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: 34px;
  min-width: 100vw;
  padding-right: 34px;
}

.marquee-track span {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.marquee-track i {
  color: var(--ochre);
  font-size: 9px;
  font-style: normal;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  width: min(100%, calc(var(--page) + 96px));
  margin: 0 auto;
  padding: 108px 48px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 46px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.section-heading .eyebrow {
  margin-bottom: 20px;
}

.section-heading h2,
.approach-copy h2,
.process-header h2,
.contact-inner h2 {
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.section-heading h2 em,
.approach-copy h2 em,
.process-header h2 em,
.contact-inner h2 em {
  color: var(--ochre);
  font-style: normal;
}

.section-intro {
  max-width: 420px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.filter-bar {
  display: flex;
  gap: 3px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 42px;
  padding: 4px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-button {
  flex: 0 0 auto;
  padding: 9px 16px;
  border-radius: 2px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.filter-button:hover {
  color: var(--cream);
}

.filter-button.is-active {
  background: var(--cream);
  color: var(--ink);
}

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

.work-card {
  min-width: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.work-card.is-filtering {
  opacity: 0.25;
  transform: scale(0.98);
}

.work-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  cursor: pointer;
}

.work-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 17, 12, 0.05) 45%, rgba(15, 17, 12, 0.48));
  content: "";
  transition: opacity 180ms ease;
}

.work-media img,
.work-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) sepia(0.08) brightness(0.78);
  transition: filter 250ms ease, transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.work-media:hover img,
.work-media:hover video {
  filter: saturate(0.9) sepia(0.03) brightness(0.9);
  transform: scale(1.025);
}

.work-media:hover .project-cover {
  transform: none;
}

.media-label,
.duration {
  position: absolute;
  z-index: 2;
  color: var(--cream);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-label {
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 9px;
  border: 1px solid rgba(241, 234, 220, 0.18);
  border-radius: 2px;
  background: rgba(15, 17, 12, 0.7);
  backdrop-filter: blur(8px);
}

.duration {
  right: 12px;
  bottom: 12px;
}

.play-button,
.expand-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(241, 234, 220, 0.52);
  border-radius: 50%;
  background: rgba(15, 17, 12, 0.58);
  color: var(--cream);
  transform: translate(-50%, -50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.play-button svg {
  width: 17px;
  fill: currentColor;
}

.work-media:hover .play-button,
.work-media:hover .expand-button {
  border-color: var(--ochre-bright);
  background: var(--ochre);
  color: var(--ink);
  transform: translate(-50%, -50%) scale(1.08);
}

.work-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-top: 13px;
}

.work-meta p {
  color: var(--faint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.work-meta h3 {
  margin-top: 3px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
}

.work-meta > span {
  color: var(--ochre);
  font-size: 15px;
}

.replacement-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  color: var(--faint);
  font-size: 12px;
}

.replacement-note span {
  color: var(--ochre);
}

.approach-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 86px;
  padding: 108px max(48px, calc((100vw - var(--page)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.approach-copy .eyebrow {
  margin-bottom: 24px;
}

.approach-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 16px;
}

.approach-copy .button {
  margin-top: 32px;
}

.approach-list {
  border-top: 1px solid var(--line);
}

.approach-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.approach-item > span,
.service-number,
.step-number {
  color: var(--ochre);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.approach-item h3 {
  color: var(--cream);
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: -0.03em;
}

.approach-item p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.service-card,
.service-card-coral,
.service-card-lilac,
.service-card-lime {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: var(--surface);
  color: var(--text);
  transition: background 180ms ease;
}

.service-card:hover {
  background: var(--surface-raised);
}

.service-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ochre);
}

.service-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.service-card h3 {
  color: var(--cream);
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.service-card p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card li::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ochre);
  content: "";
}

.process-section {
  width: min(100%, calc(var(--page) + 96px));
  margin: 0 auto;
  padding: 108px 48px;
  border-top: 1px solid var(--line);
}

.process-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  margin-bottom: 50px;
}

.process-header .eyebrow {
  margin-bottom: 21px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  min-height: 255px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.step-line {
  width: 26px;
  height: 1px;
  margin: 44px 0 25px;
  background: var(--line-strong);
}

.process-step h3 {
  color: var(--cream);
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.process-step p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.testimonial-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 36px;
  align-items: end;
  padding: 108px max(48px, calc((100vw - var(--page)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.testimonial-card {
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
}

.placeholder-kicker {
  color: var(--ochre);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  max-width: 880px;
  margin-top: 26px;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(26px, 3.3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
}

.testimonial-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ochre);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person strong {
  color: var(--text);
  font-size: 13px;
}

.testimonial-person div span {
  color: var(--faint);
  font-size: 11px;
}

.testimonial-side-note {
  color: var(--muted);
  font-size: 15px;
}

.testimonial-side-note span {
  display: block;
  margin-top: 22px;
  color: var(--ochre);
}

.contact-section {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  padding: 120px 48px;
  text-align: center;
}

.contact-section::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 430px;
  background: radial-gradient(ellipse, rgba(199, 154, 75, 0.13), transparent 68%);
  content: "";
  transform: translate(-50%, -50%);
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.contact-inner .eyebrow {
  justify-content: center;
  margin-bottom: 26px;
}

.contact-inner > p:not(.eyebrow) {
  max-width: 520px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 16px;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 38px;
}

.copy-email {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  transition: border-color 180ms ease, color 180ms ease;
}

.copy-email:hover {
  border-color: var(--ochre);
  color: var(--cream);
}

.copy-label {
  margin-left: 10px;
  color: var(--ochre);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-orb,
.contact-star {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 50px;
  align-items: end;
  padding: 34px max(48px, calc((100vw - var(--page)) / 2));
  border-top: 1px solid var(--line);
  background: #0b0c08;
}

.footer-brand .brand-mark {
  border-radius: 50%;
}

.footer-profile {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.footer-intro > p {
  margin-top: 12px;
  color: var(--faint);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 10px;
}

.footer-links a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  transform: translateY(-2px);
  border-color: var(--ochre);
  background: var(--surface-raised);
}

.footer-links img,
.footer-links svg {
  display: block;
  width: 22px;
  height: 22px;
}

.footer-links svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-availability {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-availability span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 3px rgba(119, 129, 92, 0.16);
}

.footer-meta {
  color: var(--faint);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-dialog {
  width: min(920px, calc(100vw - 44px));
  max-height: min(820px, calc(100vh - 44px));
  margin: auto;
  overflow: visible;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.58);
}

.project-dialog::backdrop {
  background: rgba(5, 6, 4, 0.86);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 3;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1fr;
  min-height: 560px;
}

.dialog-media {
  position: relative;
  align-self: center;
  width: 100%;
  min-height: 0;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 7px 0 0 7px;
  background: var(--ink);
}

.dialog-media[data-aspect="horizontal"] {
  aspect-ratio: 16 / 9;
}

.dialog-media img,
.dialog-media iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.dialog-media img {
  object-fit: cover;
  filter: saturate(0.75) brightness(0.82);
}

.dialog-media iframe {
  position: absolute;
  inset: 0;
  border: 0;
}

.dialog-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(241, 234, 220, 0.5);
  border-radius: 50%;
  background: rgba(15, 17, 12, 0.62);
  color: var(--cream);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.dialog-play svg {
  width: 18px;
  fill: currentColor;
}

.dialog-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
}

.dialog-copy .eyebrow {
  margin-bottom: 22px;
}

.dialog-copy h2 {
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.dialog-copy > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
}

.dialog-placeholder-note {
  display: grid;
  gap: 2px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--line);
  color: var(--faint);
  font-size: 11px;
}

.dialog-placeholder-note strong {
  color: var(--text);
}

.dialog-copy .button {
  align-self: start;
  margin-top: 30px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: var(--cream);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.is-reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .header-actions {
    position: relative;
    z-index: 102;
    grid-column: 2;
    grid-row: 1;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    grid-column: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background:
      radial-gradient(circle at 70% 20%, rgba(119, 129, 92, 0.16), transparent 23rem),
      rgba(15, 17, 12, 0.985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a {
    color: var(--cream);
    font-family: var(--display);
    font-size: clamp(30px, 6vw, 54px);
    letter-spacing: -0.04em;
    text-transform: none;
  }

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

  .creator-snapshot {
    gap: 48px;
  }

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

@media (max-width: 900px) {
  .creator-snapshot {
    grid-template-areas:
      "copy"
      "visual"
      "facts";
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 136px;
  }

  .snapshot-copy {
    max-width: 660px;
  }

  .snapshot-collage {
    width: min(100%, 620px);
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .section-heading,
  .process-header {
    display: block;
  }

  .section-intro {
    margin-top: 24px;
  }

  .approach-section {
    grid-template-columns: 1fr;
    gap: 56px;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    min-height: 330px;
  }

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

  .testimonial-side-note {
    max-width: 420px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
    padding: 11px 18px;
  }

  .brand-name {
    font-size: 10px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-socials {
    gap: 6px;
  }

  .header-socials a {
    width: 32px;
    height: 32px;
  }

  .header-socials img {
    width: 17px;
    height: 17px;
  }

  .creator-snapshot {
    gap: 36px;
    padding: 112px 18px 58px;
  }

  .snapshot-copy .eyebrow {
    margin-bottom: 25px;
  }

  .snapshot-copy h1 {
    font-size: clamp(46px, 14vw, 54px);
  }

  .snapshot-lead {
    margin-top: 27px;
    font-size: 15px;
  }

  .snapshot-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    margin-top: 30px;
  }

  .snapshot-collage {
    width: 100%;
  }

  .snapshot-facts > div {
    padding: 18px 12px;
  }

  .snapshot-facts strong {
    font-size: 25px;
  }

  .snapshot-facts span {
    font-size: 8px;
    letter-spacing: 0.08em;
    line-height: 1.35;
  }

  .niche-ribbon {
    padding: 20px 0;
  }

  .section,
  .process-section {
    padding: 78px 18px;
  }

  .section-heading {
    gap: 0;
    margin-bottom: 32px;
    padding-bottom: 22px;
  }

  .section-heading h2,
  .approach-copy h2,
  .process-header h2,
  .contact-inner h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .filter-bar {
    width: calc(100vw - 36px);
    margin-bottom: 34px;
  }

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

  .media-label {
    top: 9px;
    left: 9px;
    max-width: calc(100% - 18px);
    padding: 6px 7px;
    font-size: 7px;
  }

  .play-button,
  .expand-button {
    width: 39px;
    height: 39px;
  }

  .work-meta h3 {
    font-size: 13px;
  }

  .work-meta > span {
    display: none;
  }

  .replacement-note {
    align-items: flex-start;
  }

  .approach-section,
  .testimonial-section {
    padding: 78px 18px;
  }

  .approach-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .service-card,
  .service-card:last-child {
    grid-column: auto;
    min-height: 340px;
    padding: 26px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 0;
    padding: 28px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .step-line {
    margin: 25px 0 20px;
  }

  .testimonial-card {
    padding: 28px;
  }

  .contact-section {
    min-height: 580px;
    padding: 94px 18px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .copy-email {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .site-footer {
    display: block;
    padding: 32px 18px;
  }

  .footer-links {
    flex-wrap: wrap;
    margin-top: 26px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 26px;
  }

  .project-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
  }

  .dialog-close {
    top: 9px;
    right: 9px;
  }

  .dialog-layout {
    display: block;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
  }

  .dialog-media {
    height: auto;
    border-radius: 7px 7px 0 0;
  }

  .dialog-copy {
    padding: 32px 24px;
  }

  .dialog-copy .button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .brand-name {
    max-width: 126px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .is-reveal-ready {
    opacity: 1;
    transform: none;
  }
}
