:root {
  color-scheme: dark;
  --ink: #090b0b;
  --ink-soft: #101313;
  --panel: #171a1a;
  --panel-light: #202424;
  --paper: #f3eee7;
  --paper-deep: #e5dbcf;
  --sand: #d9c3ad;
  --sand-light: #f0dfcf;
  --ginger: #d06a46;
  --ginger-dark: #8f3f29;
  --white: #ffffff;
  --text: #f7f2ec;
  --text-muted: #c3c5c4;
  --text-dark: #222525;
  --text-dark-muted: #5b605f;
  --line: rgba(217, 195, 173, 0.24);
  --line-light: rgba(39, 43, 42, 0.18);
  --shell: 1280px;
  --reading: 720px;
  --header-height: 88px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

a {
  color: inherit;
}

button {
  color: inherit;
}

button:not(:disabled),
a[href] {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

:focus-visible {
  outline: 3px solid var(--ginger);
  outline-offset: 4px;
}

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

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

h1,
h2,
h3 {
  color: inherit;
  font-family: var(--serif);
  font-weight: 600;
  hyphens: auto;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1,
h2 {
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 960px;
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 7vw, 8rem);
  text-transform: uppercase;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 5.4vw, 6.4rem);
}

h3 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
  line-height: 1.12;
}

h1 em,
h2 em {
  color: var(--sand);
  font-weight: 500;
}

.section--paper h1 em,
.section--paper h2 em,
.section--soft h1 em,
.section--soft h2 em {
  color: var(--ginger-dark);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

.shell {
  width: min(calc(100% - 56px), var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(92px, 11vw, 164px);
}

.section--paper {
  background: var(--paper);
  color: var(--text-dark);
}

.section--soft {
  background:
    radial-gradient(circle at 82% 10%, rgba(208, 106, 70, 0.13), transparent 30%),
    var(--paper);
  color: var(--text-dark);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--ginger-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.eyebrow--light {
  color: var(--sand);
}

.lead {
  max-width: var(--reading);
  margin-bottom: 30px;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.7;
}

.section--paper .lead,
.section--soft .lead {
  color: var(--text-dark-muted);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 25px;
  border: 1px solid var(--sand);
  background: transparent;
  color: var(--sand-light);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.button svg,
.text-link svg,
.hero-playback svg,
.scroll-cue svg,
.lightbox svg,
.social-links svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button:hover,
.button:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button--solid {
  border-color: var(--sand);
  background: var(--sand);
  color: var(--ink);
}

.button--solid:hover,
.button--solid:focus-visible {
  border-color: var(--white);
  background: var(--white);
}

.button--small {
  min-height: 44px;
  padding: 10px 17px;
}

.text-link,
.card-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sand-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after,
.card-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0.26);
  transform-origin: left;
  background: currentColor;
  content: "";
  transition: transform 260ms var(--ease-out);
}

.text-link:hover::after,
.text-link:focus-visible::after,
.card-link:hover::after,
.card-link:focus-visible::after {
  transform: scaleX(1);
}

.text-link--dark {
  color: var(--ginger-dark);
}

.section-heading {
  margin-bottom: clamp(54px, 8vw, 94px);
}

.section-heading--split {
  display: grid;
  align-items: end;
  gap: clamp(36px, 8vw, 130px);
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
}

.section-heading--split h2 {
  max-width: 860px;
  margin-bottom: 0;
}

.section-heading--split .lead {
  margin-bottom: 4px;
}

.section-heading--center {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(54px, 8vw, 92px);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(to bottom, rgba(9, 11, 11, 0.82), rgba(9, 11, 11, 0));
  transition: background-color 240ms ease, backdrop-filter 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header:has(.mobile-menu:not([hidden])) {
  background: rgba(9, 11, 11, 0.94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.65vw, 28px);
}

.desktop-nav a,
.language-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--sand);
  content: "";
  transition: transform 220ms var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a[aria-current="page"] {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions,
.language-nav {
  display: flex;
  align-items: center;
}

.header-actions {
  flex: 0 0 auto;
  gap: 24px;
}

.language-nav {
  gap: 9px;
}

.language-nav a:not(:last-child)::after {
  padding-left: 9px;
  color: rgba(255, 255, 255, 0.3);
  content: "/";
}

.language-nav a:hover,
.language-nav a:focus-visible,
.language-nav a[aria-current="page"] {
  color: var(--sand-light);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 13px;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin-block: 5px;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 99;
  overflow-y: auto;
  padding: clamp(42px, 8vw, 82px) max(28px, calc((100vw - var(--shell)) / 2));
  background:
    radial-gradient(circle at 85% 15%, rgba(208, 106, 70, 0.13), transparent 32%),
    var(--ink);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu nav {
  display: grid;
  max-width: 780px;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 4.4rem);
  line-height: 1.1;
  text-decoration: none;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible {
  color: var(--sand-light);
}

.mobile-menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  margin-top: 46px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  overflow: hidden;
  background: var(--ink);
}

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

.hero-slide {
  margin: 0;
  opacity: 0;
  transition: opacity 1200ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero-slide img {
  object-fit: cover;
  object-position: center 36%;
  transform: scale(1.025);
  filter: saturate(0.82) contrast(1.04);
}

.hero-slide.is-active img {
  animation: hero-zoom 9s linear both;
}

.hero-slide:nth-child(3) img,
.hero-slide:nth-child(7) img,
.hero-slide:nth-child(8) img {
  object-position: center;
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.84) 0%, rgba(5, 6, 6, 0.62) 38%, rgba(5, 6, 6, 0.1) 74%),
    linear-gradient(0deg, rgba(5, 6, 6, 0.72) 0%, transparent 34%),
    linear-gradient(180deg, rgba(5, 6, 6, 0.38), transparent 25%);
}

@keyframes hero-zoom {
  from { transform: scale(1.025); }
  to { transform: scale(1.105); }
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-block: calc(var(--header-height) + 70px) clamp(112px, 13vh, 160px);
}

.hero-content h1 em {
  display: block;
  text-transform: none;
}

.hero-content .eyebrow {
  margin-bottom: clamp(26px, 4vh, 46px);
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.1vw, 1.85rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.hero-playback {
  position: absolute;
  right: max(28px, calc((100vw - var(--shell)) / 2));
  bottom: 30px;
  z-index: 4;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(9, 11, 11, 0.5);
  color: var(--white);
  place-items: center;
  backdrop-filter: blur(12px);
  transition: background-color 180ms ease, color 180ms ease;
}

.hero-playback:hover,
.hero-playback:focus-visible {
  background: var(--sand);
  color: var(--ink);
}

.icon-play {
  display: none;
}

[data-carousel-pause][aria-pressed="true"] .icon-pause {
  display: none;
}

[data-carousel-pause][aria-pressed="true"] .icon-play {
  display: block;
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: max(28px, calc((100vw - var(--shell)) / 2));
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue svg {
  transition: transform 180ms ease;
}

.scroll-cue:hover svg,
.scroll-cue:focus-visible svg {
  transform: translateY(4px);
}

/* Problem */
.problem {
  background:
    linear-gradient(120deg, rgba(208, 106, 70, 0.06), transparent 36%),
    var(--ink);
}

.problem-grid {
  display: grid;
  align-items: center;
  gap: clamp(52px, 9vw, 130px);
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 0.74fr);
}

.problem-copy h2 {
  max-width: 760px;
}

.problem-list {
  display: grid;
  margin: 42px 0 48px;
  padding: 0;
  list-style: none;
}

.problem-list li {
  position: relative;
  padding-left: 28px;
  padding-block: 23px;
  border-top: 1px solid var(--line);
}

.problem-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.problem-list li::before {
  position: absolute;
  top: 32px;
  left: 2px;
  width: 7px;
  height: 7px;
  background: var(--sand);
  content: "";
  transform: rotate(45deg);
}

.problem-list p {
  margin: 0;
  color: var(--text-muted);
}

.problem-list strong {
  color: var(--white);
}

.problem-resolution {
  display: grid;
  align-items: start;
  gap: clamp(54px, 8vw, 128px);
  margin-top: clamp(96px, 11vw, 160px);
  padding-top: clamp(58px, 7vw, 96px);
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
}

.problem-resolution .eyebrow {
  margin-bottom: 30px;
}

.problem-resolution-copy {
  max-width: 360px;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.problem-resolution-title {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3.2rem, 5.8vw, 6.85rem);
}

.photographer-portrait {
  position: relative;
  margin: 0;
}

.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 -100px 90px rgba(0, 0, 0, 0.22);
  content: "";
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.84) contrast(1.03);
}

.photographer-portrait figcaption {
  position: absolute;
  right: -28px;
  bottom: 36px;
  z-index: 2;
  max-width: 250px;
  padding: 19px 23px;
  background: var(--sand);
  color: var(--ink);
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.photographer-portrait figcaption span {
  display: block;
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

/* Method */
.method-grid {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.method-card {
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 3.5vw, 46px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.22);
  transition: background-color 220ms ease;
}

.method-card::before {
  position: absolute;
  top: clamp(28px, 3.5vw, 46px);
  left: clamp(28px, 3.5vw, 46px);
  width: 42px;
  height: 2px;
  background: var(--ginger);
  content: "";
}

.method-card:hover {
  background: rgba(255, 255, 255, 0.62);
}

.method-card h3 {
  color: var(--text-dark);
  font-size: 1.55rem;
}

.method-card p {
  margin: 0;
  color: var(--text-dark-muted);
  font-size: 0.9rem;
}

/* Services */
.services {
  background:
    radial-gradient(circle at 10% 48%, rgba(208, 106, 70, 0.07), transparent 25%),
    var(--ink);
}

.service-grid {
  display: grid;
  gap: 22px;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  display: flex;
  height: 100%;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: border-color 220ms ease, background-color 220ms ease;
}

.service-card:hover {
  border-color: rgba(217, 195, 173, 0.58);
  background: var(--panel-light);
}

.service-media {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0e1010;
}

.service-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 11, 11, 0.45), transparent 50%);
  content: "";
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
  transition: transform 600ms var(--ease-out), filter 400ms ease;
}

.service-card:hover .service-media img {
  transform: scale(1.045);
  filter: saturate(0.95);
}

.service-copy {
  display: flex;
  min-height: 360px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 3.2vw, 44px);
}

.service-kicker {
  margin-bottom: 18px;
  color: var(--sand);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-copy h3 {
  margin-bottom: 20px;
}

.service-copy h3 a {
  text-decoration: none;
}

.service-copy h3 a:hover,
.service-copy h3 a:focus-visible {
  color: var(--sand-light);
}

.service-copy > p:not(.service-kicker) {
  margin-bottom: 35px;
  color: var(--text-muted);
}

.service-copy .card-link {
  margin-top: auto;
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 22px;
  padding: 30px clamp(30px, 4vw, 52px);
  border: 1px solid var(--line);
}

.services-cta p {
  margin: 0;
  color: var(--text-muted);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

/* Reusable inner-page sections */
.page-hero {
  position: relative;
  display: flex;
  min-height: min(86vh, 920px);
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.page-hero--compact {
  min-height: min(68vh, 720px);
}

.page-hero--services,
.page-hero--product {
  --hero-position: 64% center;
}

.page-hero--headshot,
.page-hero--leadership {
  --hero-position: 58% center;
}

.page-hero--team {
  --hero-position: 52% center;
}

.page-hero--portfolio {
  --hero-position: 62% center;
}

.page-hero--about {
  --hero-position: 72% 32%;
}

.page-hero--enkepezes {
  --hero-position: 56% center;
}

.page-hero--contact {
  --hero-position: 72% center;
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center);
  filter: saturate(0.78) contrast(1.03);
}

.page-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.9) 0%, rgba(5, 6, 6, 0.56) 48%, rgba(5, 6, 6, 0.14) 78%),
    linear-gradient(0deg, rgba(5, 6, 6, 0.74), transparent 46%),
    linear-gradient(180deg, rgba(5, 6, 6, 0.48), transparent 30%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-block: calc(var(--header-height) + 80px) clamp(82px, 11vh, 130px);
}

.page-hero-content h1 {
  max-width: 1080px;
  font-size: clamp(3.4rem, 5.6vw, 6.5rem);
}

.page-hero-lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.5;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.editorial-split {
  display: grid;
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.8fr);
}

.editorial-split--media-left {
  grid-template-columns: minmax(380px, 0.8fr) minmax(0, 0.9fr);
}

.editorial-split--media-left .editorial-media {
  order: -1;
}

.editorial-copy h2 {
  max-width: 850px;
}

.editorial-copy > p:not(.eyebrow),
.editorial-copy .lead {
  max-width: 690px;
}

.editorial-media {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 480px;
  margin: 0;
  overflow: hidden;
}

.editorial-media--portrait {
  aspect-ratio: 4 / 5;
}

.editorial-media--landscape {
  aspect-ratio: 4 / 3;
}

.editorial-media--leader {
  --media-position: 58% center;
}

.editorial-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 -90px 100px rgba(0, 0, 0, 0.18);
  content: "";
  pointer-events: none;
}

.section--paper .editorial-media::after,
.section--soft .editorial-media::after {
  border-color: var(--line-light);
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--media-position, center);
  filter: saturate(0.82);
}

.feature-rows {
  margin: 36px 0 42px;
  padding: 0;
  border-top: 1px solid currentColor;
  border-color: var(--line);
  list-style: none;
}

.section--paper .feature-rows,
.section--soft .feature-rows {
  border-color: var(--line-light);
}

.feature-rows li {
  position: relative;
  padding: 20px 4px 20px 28px;
  border-bottom: 1px solid var(--line);
}

.section--paper .feature-rows li,
.section--soft .feature-rows li {
  border-color: var(--line-light);
}

.feature-rows li::before {
  position: absolute;
  top: 29px;
  left: 3px;
  width: 7px;
  height: 7px;
  background: var(--sand);
  content: "";
  transform: rotate(45deg);
}

.section--paper .feature-rows li::before,
.section--soft .feature-rows li::before {
  background: var(--ginger-dark);
}

.feature-rows strong {
  color: inherit;
}

.offer-grid {
  display: grid;
  gap: 22px;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-card {
  display: flex;
  height: 100%;
  min-width: 0;
  flex-direction: column;
  padding: clamp(30px, 3.4vw, 48px);
  border: 1px solid var(--line);
  background: var(--panel);
}

.section--paper .offer-card,
.section--soft .offer-card {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.28);
}

.offer-card--featured {
  border-color: var(--sand);
  background:
    linear-gradient(145deg, rgba(208, 106, 70, 0.12), transparent 52%),
    var(--panel-light);
}

.offer-card-kicker {
  margin-bottom: 22px;
  color: var(--sand);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section--paper .offer-card-kicker,
.section--soft .offer-card-kicker {
  color: var(--ginger-dark);
}

.offer-card h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
}

.offer-card > p:not(.offer-card-kicker):not(.offer-price) {
  color: var(--text-muted);
}

.section--paper .offer-card > p:not(.offer-card-kicker):not(.offer-price),
.section--soft .offer-card > p:not(.offer-card-kicker):not(.offer-price) {
  color: var(--text-dark-muted);
}

.offer-card .feature-rows {
  flex: 1;
  margin-block: 26px 34px;
}

.offer-price {
  margin: 0 0 30px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}

.section--paper .offer-price,
.section--soft .offer-price {
  color: var(--text-dark);
}

.offer-card .card-link {
  margin-top: auto;
}

.fact-grid {
  display: grid;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fact-note {
  max-width: 820px;
  margin: clamp(34px, 5vw, 58px) 0 0;
  color: var(--text-dark-muted);
}

.fact-note a {
  color: var(--ginger-dark);
  text-underline-offset: 4px;
}

.fact-card {
  min-height: 210px;
  padding: clamp(28px, 3.4vw, 44px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.fact-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ginger-dark);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.fact-card p {
  margin: 0;
  color: var(--text-dark-muted);
}

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

.process-card {
  position: relative;
  min-height: 340px;
  padding: clamp(34px, 4vw, 54px);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.26);
}

.process-card::before {
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: clamp(64px, 8vw, 104px);
  background: var(--ginger-dark);
  content: "";
}

.process-card h3 {
  color: var(--text-dark);
}

.process-card h3 a {
  color: inherit;
  text-decoration-color: var(--ginger-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.process-card p {
  margin: 0;
  color: var(--text-dark-muted);
}

.gallery-heading {
  margin-bottom: clamp(50px, 8vw, 96px);
}

.gallery-mosaic {
  display: grid;
  gap: 12px;
  grid-auto-rows: 270px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gallery-tile {
  min-width: 0;
  margin: 0;
  grid-column: span 4;
}

.gallery-tile--wide {
  grid-column: span 8;
}

.gallery-tile--tall {
  grid-row: span 2;
}

.gallery-tile button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--panel);
  cursor: zoom-in;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 650ms var(--ease-out), filter 350ms ease;
}

.gallery-tile button:hover img,
.gallery-tile button:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1);
}

.gallery-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 46px 22px 20px;
  background: linear-gradient(transparent, rgba(5, 6, 6, 0.78));
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-tile button:hover .gallery-caption,
.gallery-tile button:focus-visible .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.quote-band {
  display: grid;
  align-items: start;
  gap: clamp(44px, 8vw, 120px);
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
}

.quote-band blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.1vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.quote-band blockquote em {
  color: var(--sand);
}

.section--paper .quote-band blockquote em,
.section--soft .quote-band blockquote em {
  color: var(--ginger-dark);
}

.quote-attribution {
  color: var(--text-muted);
}

.section--paper .quote-attribution,
.section--soft .quote-attribution {
  color: var(--text-dark-muted);
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
}

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

.faq-list summary {
  position: relative;
  padding: 26px 54px 26px 0;
  color: var(--text-dark);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  color: var(--ginger-dark);
  content: "+";
  font-family: var(--sans);
  font-size: 1.5rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 760px;
  padding: 0 0 28px;
  color: var(--text-dark-muted);
}

.editorial-cta {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  color: var(--white);
}

.editorial-cta-grid {
  display: grid;
  align-items: end;
  gap: clamp(42px, 8vw, 120px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
}

.editorial-cta h2 {
  max-width: 980px;
  margin-bottom: 0;
}

.editorial-cta-copy p {
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: clamp(52px, 8vw, 120px);
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.52fr);
}

.prototype-form {
  display: grid;
  gap: 26px 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  min-width: 0;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--line-light);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.42);
  color: var(--text-dark);
  font: inherit;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ginger-dark);
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px rgba(208, 106, 70, 0.16);
}

.prototype-form .button {
  justify-self: start;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--text-dark-muted);
  font-size: 0.82rem;
}

.form-status:not(:empty) {
  padding: 16px 18px;
  border-left: 3px solid var(--ginger-dark);
  background: rgba(208, 106, 70, 0.08);
}

.contact-direct {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.28);
}

.contact-direct h2 {
  font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.contact-direct address {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  font-style: normal;
}

.contact-direct address a {
  color: var(--text-dark);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.legal-content {
  display: grid;
  gap: 40px clamp(60px, 9vw, 150px);
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
}

.legal-content nav {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  display: grid;
  gap: 12px;
}

.legal-content nav a {
  color: var(--text-dark-muted);
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin-top: 54px;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  color: var(--text-dark-muted);
}

.legal-copy strong {
  color: var(--text-dark);
}

/* Portfolio */
.portfolio {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--ink-soft);
}

.portfolio-grid {
  display: grid;
  width: min(calc(100% - 56px), 1540px);
  margin-inline: auto;
  gap: 10px;
  grid-auto-flow: dense;
  grid-auto-rows: clamp(190px, 18vw, 300px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.portfolio-item {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.portfolio-item--wide {
  grid-column: span 2;
}

.portfolio-item--tall {
  grid-row: span 2;
}

.portfolio-item button {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--panel);
  text-align: left;
}

.portfolio-item button::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  content: "";
  transition: border-color 220ms ease;
}

.portfolio-item button:hover::after,
.portfolio-item button:focus-visible::after {
  border-color: var(--sand);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.86);
  transition: transform 700ms var(--ease-out), filter 400ms ease;
}

.portfolio-item button:hover img,
.portfolio-item button:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1) brightness(0.75);
}

.portfolio-overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  padding: 54px 26px 24px;
  transform: translateY(18px);
  opacity: 0;
  background: linear-gradient(to top, rgba(6, 7, 7, 0.93), transparent);
  transition: transform 300ms var(--ease-out), opacity 240ms ease;
}

.portfolio-item button:hover .portfolio-overlay,
.portfolio-item button:focus-visible .portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-overlay > span {
  color: var(--sand);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.portfolio-overlay strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial {
  min-height: 360px;
  margin: 0;
  padding: clamp(36px, 5.5vw, 72px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.testimonial blockquote {
  position: relative;
  margin-bottom: 36px;
  padding-top: 30px;
  color: var(--text-dark);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.55;
}

.testimonial blockquote::before {
  position: absolute;
  top: -0.18em;
  left: -0.12em;
  color: rgba(208, 106, 70, 0.28);
  content: "“";
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
}

.testimonial figcaption {
  color: var(--ginger-dark);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Final CTA */
.final-cta {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.final-cta > img,
.final-cta-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta > img {
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(0.68);
}

.final-cta-shade {
  background: linear-gradient(90deg, rgba(6, 7, 7, 0.92), rgba(6, 7, 7, 0.6) 50%, rgba(6, 7, 7, 0.2));
}

.final-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 760px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.final-cta h2 {
  max-width: 870px;
}

/* Footer */
.site-footer {
  padding-block: clamp(72px, 8vw, 112px) 28px;
  border-top: 1px solid var(--line);
  background: #070909;
}

.footer-grid {
  display: grid;
  gap: 48px;
  padding-bottom: 70px;
  grid-template-columns: 1.25fr 1fr 0.85fr 0.65fr;
}

.footer-brand img {
  width: 170px;
  height: auto;
  margin-bottom: 28px;
}

.footer-brand p {
  max-width: 340px;
  margin: 0;
  color: var(--text-muted);
}

.footer-column h2 {
  margin-bottom: 28px;
  color: var(--sand-light);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-column,
.footer-column address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column address {
  color: var(--text-muted);
  font-style: normal;
}

.footer-column a {
  color: var(--text-muted);
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
  text-decoration-color: currentColor;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--sand);
  background: var(--sand);
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: #929695;
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

/* Lightbox */
.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(5, 6, 6, 0.96);
  color: var(--white);
}

.lightbox::backdrop {
  background: rgba(5, 6, 6, 0.9);
  backdrop-filter: blur(12px);
}

.lightbox-inner {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 80px minmax(0, 1fr) 80px;
  place-items: center;
}

.lightbox figure {
  display: grid;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 60px 20px 36px;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
}

.lightbox figcaption {
  padding-top: 20px;
  color: var(--sand-light);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(9, 11, 11, 0.6);
  place-items: center;
  transition: background-color 180ms ease, color 180ms ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: var(--sand);
  color: var(--ink);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
}

/* Reveal motion */
.js .reveal {
  transform: translateY(26px);
  opacity: 0;
  transition: transform 700ms var(--ease-out), opacity 650ms ease;
}

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

/* Responsive */
@media (max-width: 1180px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

  .method-card {
    min-height: 340px;
  }

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

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

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

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

@media (max-width: 900px) {
  .section-heading--split,
  .problem-grid,
  .editorial-split,
  .editorial-split--media-left,
  .editorial-cta-grid,
  .contact-grid,
  .quote-band,
  .legal-content {
    grid-template-columns: 1fr;
  }

  .editorial-split--media-left .editorial-media {
    order: 0;
  }

  .editorial-media {
    width: min(100%, 720px);
  }

  .gallery-tile {
    grid-column: span 6;
  }

  .gallery-tile--wide {
    grid-column: span 12;
  }

  .legal-content nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-grid {
    gap: 72px;
  }

  .problem-resolution {
    gap: 52px;
    grid-template-columns: 1fr;
  }

  .problem-resolution-intro {
    display: grid;
    align-items: start;
    gap: 32px;
    grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
  }

  .problem-resolution .eyebrow {
    margin: 0;
  }

  .problem-resolution-copy {
    max-width: 560px;
  }

  .photographer-portrait {
    width: min(100%, 650px);
    margin-inline: auto;
  }

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

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

  .testimonial {
    min-height: 0;
  }

  .final-cta > img {
    object-position: 74% center;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 76px;
  }

  .shell,
  .portfolio-grid {
    width: min(calc(100% - 36px), var(--shell));
  }

  .section {
    padding-block: 86px;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 4.4rem);
  }

  .brand img {
    width: 108px;
  }

  .header-actions {
    gap: 14px;
  }

  .language-nav a:not(.language-current) {
    display: none;
  }

  .language-nav a:not(:last-child)::after {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-slide img {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 6, 6, 0.77), rgba(5, 6, 6, 0.2)),
      linear-gradient(0deg, rgba(5, 6, 6, 0.88), transparent 55%),
      linear-gradient(180deg, rgba(5, 6, 6, 0.5), transparent 30%);
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 132px;
  }

  .hero-lead {
    font-size: 1.1rem;
  }

  .hero-content h1 em {
    font-size: 0.82em;
    letter-spacing: -0.055em;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .page-hero {
    min-height: 720px;
  }

  .page-hero--compact {
    min-height: 620px;
  }

  .page-hero-content {
    padding-bottom: 82px;
  }

  .page-hero-content h1 {
    font-size: clamp(2.85rem, 12.5vw, 4.75rem);
  }

  .page-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .editorial-media {
    min-height: 360px;
  }

  .offer-grid,
  .process-grid,
  .fact-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 0;
  }

  .process-card::before {
    margin-bottom: 52px;
  }

  .gallery-mosaic {
    gap: 8px;
    grid-auto-rows: 270px;
    grid-template-columns: 1fr;
  }

  .gallery-tile,
  .gallery-tile--wide,
  .gallery-tile--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-caption {
    transform: none;
    opacity: 1;
  }

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

  .form-field--full {
    grid-column: auto;
  }

  .legal-content nav {
    grid-template-columns: 1fr;
  }

  .hero-playback {
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
  }

  .scroll-cue {
    display: none;
  }

  .problem-resolution {
    gap: 40px;
    margin-top: 76px;
    padding-top: 48px;
  }

  .problem-resolution-intro {
    display: block;
  }

  .problem-resolution .eyebrow {
    margin-bottom: 26px;
  }

  .problem-resolution-title {
    font-size: clamp(2.75rem, 12vw, 4.3rem);
  }

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

  .method-card {
    min-height: 0;
  }

  .service-grid {
    gap: 16px;
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
  }

  .service-media {
    aspect-ratio: 4 / 3;
  }

  .service-copy {
    min-height: 0;
    padding: 30px 24px 36px;
  }

  .services-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-grid {
    gap: 8px;
    grid-auto-rows: 230px;
    grid-template-columns: 1fr;
  }

  .portfolio-item,
  .portfolio-item--wide,
  .portfolio-item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .portfolio-overlay {
    transform: none;
    opacity: 1;
  }

  .testimonial {
    padding: 38px 28px;
  }

  .final-cta,
  .final-cta-content {
    min-height: 680px;
  }

  .final-cta > img {
    object-position: 74% center;
  }

  .final-cta-shade {
    background: linear-gradient(90deg, rgba(6, 7, 7, 0.92), rgba(6, 7, 7, 0.48));
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .photographer-portrait figcaption {
    right: 16px;
    bottom: 16px;
  }

  .lightbox-inner {
    grid-template-columns: 56px minmax(0, 1fr) 56px;
  }

  .lightbox figure {
    padding-inline: 6px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }
}

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

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

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

@media (forced-colors: active) {
  .button,
  .hero-playback,
  .service-card,
  .portfolio-item button,
  .lightbox-close,
  .lightbox-nav {
    border: 1px solid ButtonText;
  }

  .hero-shade,
  .final-cta-shade {
    background: Canvas;
    opacity: 0.75;
  }
}
