:root {
  --ink: #171813;
  --ink-soft: #4c4c42;
  --paper: #fffaf2;
  --cream: #f7f1e7;
  --sand: #e8dccb;
  --olive: #566033;
  --olive-dark: #30371e;
  --olive-deep: #202616;
  --coral: #c7643c;
  --coral-dark: #a94d2b;
  --line: rgba(23, 24, 19, 0.17);
  --line-light: rgba(255, 250, 242, 0.2);
  --shell: min(1240px, calc(100vw - 64px));
  --header-height: 108px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid #f4b14f;
  outline-offset: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid var(--olive);
  border-radius: 999px;
  color: #fff;
  background: var(--olive);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s var(--ease);
}

.button > span {
  position: relative;
  z-index: 1;
}

.button:hover,
.button:focus-visible {
  border-color: var(--coral);
  color: #fff;
  background: var(--coral);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 0.64rem;
}

.button--large {
  min-height: 60px;
  padding-inline: 33px;
}

.button--paper {
  border-color: var(--olive);
  color: #fff;
  background: var(--olive);
}

.button--paper:hover,
.button--paper:focus-visible {
  border-color: var(--coral);
  color: #fff;
  background: var(--coral);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  transition: gap 0.22s ease, color 0.22s ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 16px;
  color: var(--coral-dark);
}

.eyebrow {
  color: var(--olive);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section {
  padding: clamp(88px, 9vw, 132px) 0;
}

.section-title {
  margin-bottom: clamp(46px, 6vw, 76px);
}

.section-title .eyebrow {
  margin-bottom: 18px;
}

.section-title h2 {
  max-width: 970px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.4vw, 6.9rem);
  font-weight: 400;
  letter-spacing: -0.062em;
  line-height: 0.9;
}

.section-title h2 em,
.hero h1 em {
  color: var(--olive);
  font-weight: 400;
}

.section-title--light .eyebrow {
  color: #d6dcaa;
}

.section-title--light h2 {
  color: var(--paper);
}

.section-title--light h2 em {
  color: #d6dcaa;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 38px rgba(30, 31, 23, 0.12);
}

.utility-bar {
  min-height: 32px;
  color: rgba(255, 255, 255, 0.86);
  background: var(--olive-dark);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.utility-bar__inner,
.utility-bar__inner > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 32px;
}

.utility-bar a {
  transition: color 0.2s ease;
}

.utility-bar a:hover,
.utility-bar a:focus-visible {
  color: #fff;
}

.nav-bar {
  border-bottom: 1px solid rgba(23, 24, 19, 0.09);
  background: rgba(255, 250, 242, 0.96);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  min-height: 76px;
  gap: 28px;
}

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

.brand img {
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
  text-transform: uppercase;
}

.brand small {
  margin-top: 7px;
  color: var(--olive);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 36px);
}

.site-nav > a:not(.button) {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--olive);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.nav-mobile-cta,
.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  padding-top: clamp(168px, 14vw, 198px);
  background:
    radial-gradient(circle at 1px 1px, rgba(86, 96, 51, 0.09) 1px, transparent 1.2px) 0 0 / 22px 22px,
    linear-gradient(180deg, var(--paper), var(--cream));
}

.hero::before,
.hero::after {
  position: absolute;
  width: clamp(90px, 11vw, 170px);
  height: 46px;
  border-top: 1px solid rgba(23, 24, 19, 0.55);
  content: "";
  pointer-events: none;
}

.hero::before {
  top: clamp(235px, 22vw, 300px);
  left: 4vw;
  transform: rotate(-8deg);
}

.hero::after {
  top: clamp(270px, 24vw, 330px);
  right: 4vw;
  transform: rotate(8deg);
}

.hero__copy {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__copy .eyebrow {
  margin-bottom: 17px;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8.2vw, 8.6rem);
  font-weight: 400;
  letter-spacing: -0.078em;
  line-height: 0.8;
}

.hero__lede {
  max-width: 600px;
  margin: 25px auto 0;
  color: var(--ink-soft);
  font-size: clamp(0.96rem, 1.3vw, 1.12rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 30px;
}

.hero-media {
  width: 100%;
  margin-top: clamp(44px, 6vw, 70px);
  padding: 12px 0 40px;
  overflow: hidden;
}

.hero-media__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(205px, 16.7vw, 270px);
  gap: clamp(13px, 1.4vw, 22px);
  justify-content: center;
  width: max-content;
  min-width: 100%;
  padding-inline: 24px;
}

.media-card {
  position: relative;
  aspect-ratio: 0.76;
  overflow: hidden;
  border-radius: 23px;
  color: #fff;
  background: var(--olive-dark);
  box-shadow: 0 17px 42px rgba(43, 38, 29, 0.13);
  isolation: isolate;
  scroll-snap-align: center;
}

.media-card:nth-child(even) {
  transform: translateY(20px);
}

.media-card > img,
.motion-frame,
.motion-frame > img {
  width: 100%;
  height: 100%;
}

.media-card > img,
.motion-frame > img {
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.media-card:hover > img {
  transform: scale(1.045);
}

.media-card::after {
  position: absolute;
  z-index: 1;
  inset: 38% 0 0;
  background: linear-gradient(180deg, transparent, rgba(13, 16, 9, 0.82));
  content: "";
  pointer-events: none;
}

.media-card__actions {
  position: absolute;
  z-index: 3;
  top: 13px;
  right: 13px;
  display: flex;
  gap: 7px;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.9);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s var(--ease);
}

.icon-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.icon-button:hover,
.icon-button:focus-visible {
  color: #fff;
  background: var(--coral);
  transform: translateY(-2px);
}

.media-card__caption {
  position: absolute;
  z-index: 2;
  right: 19px;
  bottom: 18px;
  left: 19px;
}

.media-card__caption > span,
.portfolio-card__film {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.media-card__caption i,
.portfolio-card__film i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f37a4a;
  box-shadow: 0 0 0 4px rgba(243, 122, 74, 0.17);
}

.media-card__caption h2 {
  margin-top: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.motion-frame {
  overflow: hidden;
}

.motion-frame > img {
  transform: scale(1.03);
  transform-origin: 30% 50%;
}

.media-card--motion.is-in-view:not(.is-paused) .motion-frame > img,
.portfolio-card.is-in-view:not(.is-paused) .motion-frame > img {
  animation: visual-push 9s ease-in-out infinite alternate;
}

.media-card--motion.is-in-view:not(.is-paused) .motion-frame--reverse > img,
.portfolio-card.is-in-view:not(.is-paused) .motion-frame--reverse > img {
  animation-direction: alternate-reverse;
  transform-origin: 75% 50%;
}

@keyframes visual-push {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.16) translate3d(-2.6%, -1.4%, 0);
  }
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 25px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero__trust p {
  display: flex;
  min-height: 102px;
  padding: 24px;
  border-right: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
}

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

.hero__trust span {
  color: var(--olive);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__trust strong {
  margin-top: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
}

/* Service cabinet */
.services {
  background:
    linear-gradient(rgba(255, 250, 242, 0.84), rgba(255, 250, 242, 0.84)),
    radial-gradient(circle at 1px 1px, rgba(86, 96, 51, 0.14) 1px, transparent 1.1px) 0 0 / 18px 18px;
}

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

.service-drawer {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 570px;
  padding: 25px 22px 22px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.66);
  flex-direction: column;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s var(--ease);
}

.service-drawer:first-child {
  border-left: 1px solid var(--line);
}

.service-drawer:hover {
  z-index: 2;
  color: #fff;
  background: var(--olive-dark);
  transform: translateY(-7px);
}

.service-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.service-drawer__number {
  color: var(--coral-dark);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-drawer__type {
  color: var(--olive);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: right;
  text-transform: uppercase;
}

.service-drawer:hover .service-drawer__number,
.service-drawer:hover .service-drawer__type {
  color: #d6dcaa;
}

.service-drawer h3 {
  min-height: 108px;
  margin-top: 39px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.4vw, 2.45rem);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.service-drawer > p {
  min-height: 106px;
  margin-top: 17px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.65;
}

.service-drawer:hover > p {
  color: rgba(255, 255, 255, 0.72);
}

.service-drawer figure {
  position: relative;
  margin-top: auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 7px;
}

.service-drawer figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.service-drawer:hover figure img {
  transform: scale(1.06);
}

.service-drawer__handle {
  width: 52px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 99px;
  background: rgba(23, 24, 19, 0.27);
}

.service-drawer:hover .service-drawer__handle {
  background: rgba(255, 255, 255, 0.42);
}

.services__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 31px;
}

.services__foot > p {
  max-width: 550px;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

/* About */
.about {
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 23%, rgba(214, 220, 170, 0.07) 0 2px, transparent 2.4px) 0 0 / 26px 26px,
    var(--olive-dark);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
}

.about__visual {
  position: relative;
  min-height: 640px;
}

.about__image-main {
  position: absolute;
  inset: 0 15% 10% 0;
  overflow: hidden;
  border-radius: 4px;
}

.about__image-main img,
.about__image-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image-inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 41%;
  aspect-ratio: 0.82;
  padding: 10px;
  background: var(--paper);
  transform: rotate(3deg);
  box-shadow: 0 22px 55px rgba(11, 14, 7, 0.28);
}

.about__stamp {
  position: absolute;
  top: 25px;
  right: 1%;
  display: grid;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  color: var(--olive-dark);
  background: #d6dcaa;
  place-items: center;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.7;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.about__copy {
  max-width: 530px;
}

.about__lead {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.about__copy > p:not(.about__lead) {
  margin-top: 27px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.94rem;
}

.about__audiences {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 39px 0 34px;
  border-top: 1px solid var(--line-light);
}

.about__audiences article {
  padding: 22px 22px 0 0;
}

.about__audiences article + article {
  padding-left: 22px;
  border-left: 1px solid var(--line-light);
}

.about__audiences span {
  color: #d6dcaa;
  font-size: 0.6rem;
  font-weight: 800;
}

.about__audiences h3 {
  margin-top: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.08;
}

.about__audiences p {
  margin-top: 9px;
  color: rgba(255, 250, 242, 0.65);
  font-size: 0.75rem;
  line-height: 1.65;
}

/* Portfolio */
.portfolio {
  background: var(--cream);
}

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

.portfolio-card {
  min-width: 0;
  scroll-margin-top: calc(var(--header-height) + 24px);
  background: var(--paper);
  box-shadow: 0 15px 35px rgba(40, 37, 28, 0.055);
}

.portfolio-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--olive-dark);
}

.portfolio-card__media.motion-frame {
  height: auto;
}

.portfolio-card__media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 17, 11, 0.1), transparent 43%);
  content: "";
  pointer-events: none;
}

.portfolio-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.portfolio-card:hover .portfolio-card__media > img {
  transform: scale(1.045);
}

.portfolio-card__media .media-card__actions {
  z-index: 2;
}

.portfolio-card__copy {
  min-height: 178px;
  padding: 24px 25px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.portfolio-card__copy > span {
  color: var(--olive);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.portfolio-card__copy h3 {
  margin-top: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.portfolio-card__copy p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.portfolio-card__film {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 15px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 17, 11, 0.65);
  backdrop-filter: blur(8px);
}

.portfolio__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  margin-top: 42px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}

.portfolio__foot p {
  max-width: 670px;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 20%, rgba(214, 220, 170, 0.13), transparent 30%),
    var(--olive-deep);
}

.contact::after {
  position: absolute;
  right: -0.04em;
  bottom: -0.36em;
  color: rgba(255, 255, 255, 0.025);
  content: "CQ";
  font-family: Georgia, "Times New Roman", serif;
  font-size: min(37vw, 540px);
  letter-spacing: -0.12em;
  line-height: 0.8;
  pointer-events: none;
}

.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  align-items: end;
  gap: clamp(60px, 9vw, 140px);
}

.contact .section-title {
  margin: 0;
}

.contact .section-title h2 {
  font-size: clamp(3.5rem, 7vw, 7.2rem);
}

.contact__action {
  padding-bottom: 10px;
}

.contact__action > p {
  max-width: 420px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.94rem;
}

.contact__action .button {
  margin-top: 29px;
}

.contact__email {
  display: block;
  width: fit-content;
  margin-top: 27px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact__email:hover,
.contact__email:focus-visible {
  color: #d6dcaa;
}

/* Share status */
.share-status {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100vw - 44px));
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

/* Footer */
.site-footer {
  color: rgba(255, 250, 242, 0.78);
  background: #12140f;
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  padding: 2px;
  background: #12140f;
}

.footer-gallery figure {
  aspect-ratio: 1.5;
  overflow: hidden;
}

.footer-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition: filter 0.3s ease, transform 0.5s var(--ease);
}

.footer-gallery figure:hover img {
  filter: saturate(1);
  transform: scale(1.06);
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(290px, 1.8fr) repeat(3, minmax(140px, 1fr));
  gap: clamp(34px, 5vw, 76px);
  padding-top: clamp(68px, 8vw, 104px);
  padding-bottom: clamp(62px, 7vw, 90px);
}

.brand--footer {
  color: var(--paper);
}

.brand--footer img {
  width: 54px;
  height: 54px;
  filter: brightness(0) invert(1);
}

.brand--footer small {
  color: #d6dcaa;
}

.site-footer__brand > p {
  max-width: 360px;
  margin-top: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  line-height: 1.35;
}

.footer-socials {
  display: flex;
  gap: 9px;
  margin-top: 30px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--paper);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.social-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.social-link svg path {
  fill: currentColor;
  stroke: none;
}

.social-link svg .is-solid {
  fill: currentColor;
  stroke: none;
}

.social-link svg .is-cutout {
  fill: #12140f;
}

a.social-link:hover,
a.social-link:focus-visible {
  border-color: var(--coral);
  color: #fff;
  background: var(--coral);
}

.social-link.is-disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  font-size: 0.74rem;
}

.footer-column h2 {
  margin-bottom: 12px;
  color: #d6dcaa;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column a:not(.button) {
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:not(.button):hover,
.footer-column a:not(.button):focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.footer-column--contact p {
  margin-bottom: 5px;
}

.footer-column--contact .button {
  margin-top: 14px;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  gap: 28px;
  font-size: 0.59rem;
}

.site-footer__bottom a:first-of-type {
  text-align: center;
}

.site-footer__bottom a:last-child {
  justify-self: end;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: #fff;
}

/* Project dialog */
.project-dialog {
  width: min(940px, calc(100vw - 48px));
  max-height: min(760px, calc(100vh - 48px));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.36);
}

.project-dialog[open] {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.project-dialog::backdrop {
  background: rgba(14, 16, 10, 0.76);
  backdrop-filter: blur(8px);
}

.project-dialog__media {
  min-height: 0;
  overflow: hidden;
  background: var(--olive-deep);
}

.project-dialog__media > img,
.project-dialog__media > video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.project-dialog__media > [hidden] {
  display: none !important;
}

.project-dialog__copy {
  display: flex;
  padding: clamp(34px, 5vw, 62px);
  flex-direction: column;
  justify-content: center;
}

.project-dialog__copy h2 {
  margin-top: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.project-dialog__copy > p:not(.eyebrow) {
  margin-top: 25px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.project-dialog__copy .button {
  width: fit-content;
  margin-top: 31px;
}

.project-dialog__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.92);
  place-items: center;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.project-dialog__close:hover,
.project-dialog__close:focus-visible {
  color: #fff;
  background: var(--coral);
}

/* 404 */
.not-found {
  display: grid;
  min-height: 100svh;
  padding: clamp(28px, 5vw, 72px);
  background:
    radial-gradient(circle at 1px 1px, rgba(86, 96, 51, 0.1) 1px, transparent 1.2px) 0 0 / 22px 22px,
    var(--paper);
  place-items: center;
  text-align: center;
}

.not-found__inner {
  display: flex;
  align-items: center;
  max-width: 800px;
  flex-direction: column;
}

.not-found .brand {
  margin-bottom: clamp(60px, 9vw, 110px);
}

.not-found .eyebrow {
  margin-bottom: 18px;
}

.not-found h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.not-found h1 em {
  color: var(--olive);
}

.not-found__inner > p:not(.eyebrow) {
  margin-top: 28px;
  color: var(--ink-soft);
}

.not-found .button {
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 48px, 1120px);
  }

  .site-header__inner {
    grid-template-columns: 230px 1fr auto;
    gap: 18px;
  }

  .site-nav {
    gap: 22px;
  }

  .brand strong {
    font-size: 0.66rem;
  }

  .service-drawer {
    min-height: 540px;
    padding-inline: 18px;
  }

  .service-drawer h3 {
    min-height: 100px;
  }

  .about__grid {
    gap: 70px;
  }
}

@media (max-width: 1000px) {
  :root {
    --header-height: 102px;
  }

  .utility-bar {
    min-height: 30px;
  }

  .utility-bar__inner,
  .utility-bar__inner > div {
    min-height: 30px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: block;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle > span {
    position: absolute;
    left: 13px;
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.25s ease, top 0.25s ease;
  }

  .menu-toggle > span:first-child {
    top: 18px;
  }

  .menu-toggle > span:last-child {
    top: 26px;
  }

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

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

  .site-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    padding: 18px 24px 26px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 45px rgba(23, 24, 19, 0.13);
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .site-nav > a:not(.button) {
    min-height: 52px;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 400;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .nav-mobile-cta {
    display: inline-flex;
    width: fit-content;
    margin-top: 20px;
  }

  .hero-media {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--olive) transparent;
    -webkit-overflow-scrolling: touch;
  }

  .hero-media__rail {
    grid-auto-columns: clamp(225px, 31vw, 285px);
    justify-content: start;
    width: max-content;
    min-width: 0;
    padding-inline: 24px;
  }

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

  .hero__trust p:nth-child(2) {
    border-right: 0;
  }

  .hero__trust p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .service-drawer,
  .service-drawer:first-child {
    min-height: 560px;
    border: 0;
    background: var(--paper);
  }

  .service-drawer > p {
    min-height: 82px;
  }

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

  .about__visual {
    min-height: min(700px, 78vw);
  }

  .about__copy {
    max-width: 700px;
  }

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

  .contact__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact__action {
    max-width: 570px;
  }

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

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

  .footer-column--contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100vw - 34px);
    --header-height: 100px;
  }

  .utility-bar,
  .utility-bar__inner,
  .utility-bar__inner > div {
    min-height: 28px;
  }

  .utility-bar__inner > span,
  .utility-bar__inner > div > span {
    display: none;
  }

  .utility-bar__inner > div {
    width: 100%;
    justify-content: center;
  }

  .utility-bar {
    font-size: 0.55rem;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand img {
    width: 39px;
    height: 39px;
  }

  .brand strong {
    font-size: 0.59rem;
    letter-spacing: 0.1em;
  }

  .brand small {
    font-size: 0.47rem;
  }

  .section {
    padding: 78px 0;
  }

  .section-title {
    margin-bottom: 42px;
  }

  .section-title h2 {
    font-size: clamp(2.8rem, 13.5vw, 5.2rem);
    line-height: 0.92;
  }

  .hero {
    padding-top: 145px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 6.5rem);
    line-height: 0.84;
  }

  .hero__lede {
    max-width: 460px;
    margin-top: 22px;
    font-size: 0.9rem;
  }

  .hero__actions {
    gap: 12px 22px;
    flex-wrap: wrap;
  }

  .hero-media {
    margin-top: 39px;
    padding-bottom: 25px;
  }

  .hero-media__rail {
    grid-auto-columns: min(78vw, 285px);
    gap: 13px;
    padding-inline: 17px;
  }

  .media-card:nth-child(even) {
    transform: none;
  }

  .hero__trust {
    margin-top: 20px;
  }

  .hero__trust p {
    min-height: 86px;
    padding: 18px 12px;
  }

  .hero__trust strong {
    font-size: 0.92rem;
  }

  .service-cabinet {
    grid-template-columns: 1fr;
  }

  .service-drawer,
  .service-drawer:first-child {
    min-height: 0;
    padding: 23px 20px 20px;
  }

  .service-drawer h3 {
    min-height: 0;
    margin-top: 30px;
    font-size: 2.2rem;
  }

  .service-drawer > p {
    min-height: 0;
    margin-bottom: 28px;
  }

  .service-drawer figure {
    margin-top: 0;
  }

  .services__foot,
  .portfolio__foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .about__visual {
    min-height: 115vw;
  }

  .about__image-main {
    inset: 0 8% 13% 0;
  }

  .about__image-inset {
    width: 44%;
  }

  .about__stamp {
    top: 18px;
    width: 105px;
    height: 105px;
    font-size: 0.5rem;
  }

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

  .about__audiences article + article {
    margin-top: 22px;
    padding: 22px 0 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

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

  .portfolio-card__copy {
    min-height: 0;
  }

  .contact .section-title h2 {
    font-size: clamp(3rem, 14vw, 5.3rem);
  }

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

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

  .site-footer__brand {
    grid-column: 1 / -1;
    margin-bottom: 18px;
  }

  .footer-column--contact {
    grid-column: 1 / -1;
    margin-top: 20px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    min-height: 0;
    padding: 27px 0;
    gap: 13px;
  }

  .site-footer__bottom a:first-of-type {
    text-align: left;
  }

  .site-footer__bottom a:last-child {
    justify-self: start;
  }

  .project-dialog {
    width: calc(100vw - 26px);
    height: auto;
    max-height: calc(100svh - 26px);
    overflow-y: auto;
  }

  .project-dialog[open] {
    display: block;
  }

  .project-dialog__media {
    height: 42vh;
    min-height: 280px;
  }

  .project-dialog__media > img,
  .project-dialog__media > video {
    height: 42vh;
    min-height: 280px;
  }

  .project-dialog__copy {
    padding: 30px 23px 34px;
  }
}

@media (max-width: 430px) {
  :root {
    --shell: calc(100vw - 26px);
  }

  .brand strong {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

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

  .hero__trust p,
  .hero__trust p:nth-child(2),
  .hero__trust p:nth-child(-n + 2) {
    min-height: 74px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .media-card__actions {
    top: 10px;
    right: 10px;
  }

  .icon-button {
    width: 42px;
    height: 42px;
  }

  .about__stamp {
    width: 90px;
    height: 90px;
  }

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

  .site-footer__brand,
  .footer-column--contact {
    grid-column: auto;
  }

  .footer-column {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (hover: none) {
  .service-drawer:hover {
    color: inherit;
    background: var(--paper);
    transform: none;
  }

  .service-drawer:hover .service-drawer__number {
    color: var(--coral-dark);
  }

  .service-drawer:hover .service-drawer__type {
    color: var(--olive);
  }

  .service-drawer:hover > p {
    color: var(--ink-soft);
  }

  .service-drawer:hover figure img {
    transform: none;
  }
}

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

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

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

/* ============================================================
   Reference-led visual system
   One cream hero canvas, bold sans typography and a curved wall.
   ============================================================ */
:root {
  --ink: #17140e;
  --ink-soft: #4f493f;
  --paper: #fffdf7;
  --cream: #f5f0e6;
  --sand: #e8dccb;
  --olive: #566033;
  --olive-dark: #343c21;
  --olive-deep: #202616;
  --coral: #f2836a;
  --coral-dark: #d8674d;
  --line: rgba(23, 20, 14, 0.14);
  --frame-x: clamp(16px, 2.4vw, 34px);
  --frame-y: clamp(16px, 3vh, 32px);
  --shell: min(1180px, calc(100% - 64px));
  --header-height: 68px;
}

body {
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(90% 80% at 82% 28%, rgba(252, 235, 164, 0.65), rgba(252, 235, 164, 0) 55%),
    linear-gradient(168deg, #f3a76e 0%, #f5c385 30%, #f0dd9c 50%, #c3e78e 74%, #7ede82 100%);
  background-repeat: no-repeat;
  background-size: 100% max(850px, calc(100svh + 80px));
}

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

.button {
  min-height: 45px;
  padding-inline: 21px;
  border-color: var(--olive);
  color: #fff;
  background: var(--olive);
  font-size: 0.68rem;
  box-shadow: none;
}

.button:hover,
.button:focus-visible {
  border-color: var(--coral);
  color: #fff;
  background: var(--coral);
}

.text-link {
  min-height: 40px;
  font-size: 0.68rem;
}

.eyebrow {
  color: var(--olive);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}

.section {
  padding: clamp(84px, 8vw, 116px) 0;
}

.section-title {
  margin-bottom: clamp(42px, 5vw, 64px);
}

.section-title h2,
.section-title h2 em {
  max-width: 900px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(2.9rem, 5.5vw, 5.7rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.section-title h2 em {
  color: var(--olive);
}

/* Header embedded in the single hero frame */
.site-header,
.site-header.is-scrolled {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-header.is-scrolled {
  position: fixed;
  top: 10px;
  right: max(var(--frame-x), calc((100vw - 1180px) / 2));
  left: max(var(--frame-x), calc((100vw - 1180px) / 2));
  border: 1px solid rgba(23, 20, 14, 0.1);
  border-radius: 18px;
  background: rgba(245, 240, 230, 0.94);
  box-shadow: 0 16px 42px rgba(70, 45, 15, 0.14);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled .site-header__inner {
  min-height: 60px;
  padding-block: 7px;
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  width: min(100%, 1320px);
  min-height: 68px;
  margin-inline: auto;
  padding: 12px clamp(20px, 2.6vw, 36px);
  gap: 26px;
}

.brand {
  gap: 9px;
}

.brand img {
  width: 35px;
  height: 35px;
}

.brand strong {
  font-size: 0.69rem;
  letter-spacing: 0.1em;
}

.brand small {
  margin-top: 5px;
  font-size: 0.46rem;
}

.site-nav {
  gap: clamp(17px, 2vw, 30px);
}

.site-nav > a:not(.button) {
  min-height: 40px;
  font-size: 0.67rem;
  font-weight: 600;
}

.site-nav > a:not(.button)::after {
  bottom: 5px;
  height: 1.5px;
  background: var(--ink);
}

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

/* Hero frame */
.hero {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding: 88px 0 18px;
  overflow: clip;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: var(--cream);
  box-shadow: none;
  flex-direction: column;
}

.hero::before,
.hero::after {
  display: none;
}

.hero__copy {
  z-index: 3;
  width: min(100% - 40px, 850px);
  margin-inline: auto;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 7px 15px;
  border-radius: 999px;
  color: #2b1a06;
  background: #f5bd7c;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero__headline-wrap {
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

.hero h1 {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(3rem, 5.35vw, 4.35rem);
  font-weight: 700;
  letter-spacing: -0.058em;
  line-height: 1.03;
}

.hero h1 span {
  color: var(--olive);
}

.hero__lede {
  max-width: 470px;
  margin: clamp(12px, 1.8vh, 20px) auto 0;
  color: #3f3a31;
  font-size: 0.88rem;
  line-height: 1.62;
}

.hero-doodle {
  position: absolute;
  z-index: 5;
  color: var(--ink);
  pointer-events: none;
}

.hero-doodle svg,
.hero__cta-note svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.hero-doodle--left {
  left: -96px;
  bottom: -3px;
  width: 44px;
}

.hero-doodle--right {
  top: 29%;
  right: -178px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.hero-doodle--right span,
.hero__cta-note span {
  font-family: "Segoe Print", "Bradley Hand", "Comic Sans MS", cursive;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.1;
  transform: rotate(-7deg);
}

.hero-doodle--right svg {
  width: 68px;
  height: 70px;
  margin-top: 3px;
  margin-left: 8px;
}

/* Curved project wall */
.hero-wall {
  position: relative;
  width: 100%;
  margin-top: clamp(11px, 1.8vh, 19px);
}

.hero-wall__stage {
  position: relative;
  width: 100%;
  height: 252px;
  cursor: grab;
  outline: none;
  perspective: 1050px;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.hero-wall__stage:active {
  cursor: grabbing;
}

.hero-wall__stage:focus-visible {
  outline: none;
}

.hero-wall__stage:focus-visible .wall-card.is-center {
  outline: 2px solid rgba(23, 20, 14, 0.5);
  outline-offset: 4px;
}

.hero-wall__ring {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  pointer-events: none;
}

.wall-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(158px, 14.5vw, 184px);
  height: auto;
  aspect-ratio: 1 / 1.32;
  overflow: hidden;
  border-radius: 17px;
  color: #fff;
  background: #ddd2bf;
  box-shadow: 0 15px 34px rgba(70, 45, 15, 0.16);
  cursor: grab;
  isolation: isolate;
  pointer-events: auto;
  will-change: transform;
  transition: box-shadow 0.25s ease;
}

.wall-card:hover,
.wall-card:focus-within,
.wall-card.is-hot {
  z-index: 130 !important;
  box-shadow: 0 25px 55px rgba(70, 45, 15, 0.28);
}

.wall-card__media,
.wall-card__media > img,
.wall-card__media > video {
  width: 100%;
  height: 100%;
}

.wall-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wall-card__media > img,
.wall-card__media > video {
  display: block;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}

.wall-card::after {
  position: absolute;
  z-index: 1;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(12, 14, 8, 0.68));
  content: "";
  pointer-events: none;
}

.wall-card .media-card__actions {
  top: 8px;
  right: 8px;
  gap: 5px;
}

.wall-card .icon-button {
  width: 34px;
  height: 34px;
  border: 0;
  background: rgba(255, 253, 247, 0.92);
}

.wall-card .icon-button svg {
  width: 15px;
  height: 15px;
}

.wall-card__caption {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 10px;
  left: 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.wall-card__caption > span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.43rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wall-card__caption i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}

.wall-card__caption h2 {
  margin-top: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.portfolio-card__media > video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-wall__hint {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  width: fit-content;
  min-height: 31px;
  margin: -8px auto 0;
  padding: 5px 12px;
  border: 1px solid rgba(23, 20, 14, 0.08);
  border-radius: 999px;
  color: #6b6353;
  background: rgba(245, 240, 230, 0.93);
  box-shadow: 0 5px 18px rgba(70, 45, 15, 0.06);
  gap: 7px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.hero-wall__hint svg {
  width: 25px;
  height: 10px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.hero__cta {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(12px, 1.8vh, 20px);
  padding-bottom: 4px;
  gap: 24px;
}

.hero__cta-note {
  position: absolute;
  top: 48%;
  right: calc(50% + 142px);
  display: flex;
  align-items: flex-end;
  color: var(--ink);
  flex-direction: column;
  transform: translateY(-54%);
  pointer-events: none;
}

.hero__cta-note svg {
  width: 50px;
  height: 39px;
  margin-right: 36px;
}

.hero__cta-note span {
  font-size: 0.77rem;
  transform: rotate(-10deg);
}

/* Softer reference-language sections */
.services {
  background: var(--cream);
}

.service-cabinet {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(23, 20, 14, 0.1);
  gap: 1px;
}

.service-drawer,
.service-drawer:first-child {
  min-height: 475px;
  padding: 23px 20px 19px;
  border: 0;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.91);
}

.service-drawer:hover {
  color: var(--ink);
  background: #fffdf7;
  transform: translateY(-2px);
}

.service-drawer__number {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding-inline: 9px;
  border-radius: 999px;
  color: #6e321d;
  background: rgba(242, 131, 106, 0.28);
}

.service-drawer__type,
.service-drawer:hover .service-drawer__type {
  color: var(--olive);
}

.service-drawer:hover .service-drawer__number {
  color: #6e321d;
}

.service-drawer h3 {
  min-height: 84px;
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.service-drawer > p,
.service-drawer:hover > p {
  min-height: 94px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.service-drawer figure {
  border-radius: 17px;
}

.service-drawer__handle {
  width: 45px;
  background: rgba(23, 20, 14, 0.2);
}

.about {
  padding-inline: var(--frame-x);
  color: var(--paper);
  background: var(--cream);
}

.about > .shell {
  width: min(1240px, 100%);
  padding: clamp(54px, 6vw, 82px);
  border-radius: 28px;
  background: linear-gradient(145deg, #3f4928, #2d351e);
}

.about .section-title h2,
.about .section-title h2 em {
  color: var(--paper);
}

.about .section-title h2 em {
  color: #dbe2af;
}

.about__grid {
  gap: clamp(52px, 7vw, 90px);
}

.about__visual {
  min-height: 540px;
}

.about__image-main {
  inset: 0 14% 7% 0;
  border-radius: 22px;
}

.about__image-inset {
  width: 39%;
  padding: 7px;
  border-radius: 18px;
  transform: rotate(2deg);
}

.about__image-inset img {
  border-radius: 12px;
}

.about__stamp {
  top: 24px;
  right: 0;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  color: #dbe2af;
  background: transparent;
  font-family: "Segoe Print", "Bradley Hand", "Comic Sans MS", cursive;
  font-size: 0.66rem;
  transform: rotate(7deg);
}

.about__lead,
.about__audiences h3 {
  font-family: var(--font-body);
  font-weight: 700;
}

.about__lead {
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
}

.portfolio {
  background: var(--cream);
}

.portfolio-grid {
  gap: 20px;
}

.portfolio-card {
  overflow: hidden;
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(70, 45, 15, 0.08);
}

.portfolio-card__media {
  border-radius: 20px 20px 0 0;
}

.portfolio-card__copy {
  min-height: 160px;
  padding: 22px 23px 24px;
  border: 0;
}

.portfolio-card__copy h3 {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.portfolio__foot {
  border-color: var(--line);
}

.contact {
  margin: 0 var(--frame-x) var(--frame-y);
  padding: clamp(78px, 9vw, 118px) 0;
  overflow: hidden;
  border-radius: 28px;
  color: var(--ink);
  background:
    radial-gradient(75% 100% at 80% 30%, rgba(218, 235, 151, 0.62), transparent 62%),
    linear-gradient(145deg, #f3c180, #f1e1ad 48%, #b9df8a);
}

.contact::after {
  display: none;
}

.contact__grid {
  display: block;
  max-width: 920px;
  text-align: center;
}

.contact .section-title {
  margin-bottom: 28px;
}

.contact .section-title .eyebrow {
  color: var(--olive);
}

.contact .section-title h2,
.contact .section-title h2 em {
  max-width: none;
  color: var(--ink);
  font-family: var(--font-body);
}

.contact .section-title h2 em {
  color: var(--olive);
}

.contact__action {
  max-width: 520px;
  margin-inline: auto;
  padding: 0;
}

.contact__action > p {
  color: var(--ink-soft);
}

.contact__action .button {
  margin-top: 31px;
}

.contact__email {
  margin-inline: auto;
  color: var(--ink);
  border-color: rgba(23, 20, 14, 0.4);
}

.site-footer {
  border-radius: 28px 28px 0 0;
}

.footer-gallery {
  grid-template-columns: repeat(6, 1fr);
  gap: 11px;
  padding: 28px 28px 0;
  background: #12140f;
}

.footer-gallery figure,
.footer-gallery img {
  border-radius: 15px;
}

.site-footer__brand > p,
.footer-column h2 {
  font-family: var(--font-body);
}

.site-footer__brand > p {
  font-size: 1.16rem;
  font-weight: 600;
}

.project-dialog {
  width: min(1100px, calc(100vw - 48px));
  height: min(720px, calc(100svh - 48px));
  border-radius: 21px;
}

.footer-back-to-top {
  justify-self: end;
  font-size: 0;
}

.footer-back-to-top svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.project-dialog__copy h2 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 0.98;
}

@media (max-width: 1080px) {
  .hero-doodle {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: minmax(210px, 1fr) auto minmax(150px, 1fr);
  }
}

@media (max-width: 1000px) {
  :root {
    --shell: min(100% - 48px, 1120px);
    --header-height: 68px;
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 68px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    right: 18px;
    left: 18px;
    padding: 15px 20px 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 253, 247, 0.98);
    box-shadow: 0 20px 45px rgba(70, 45, 15, 0.16);
  }

  .site-nav > a:not(.button) {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
  }

  .about > .shell {
    padding: 54px 42px;
  }
}

@media (max-width: 860px) {
  :root {
    --frame-x: 18px;
    --frame-y: 18px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 94px;
    border-radius: 0;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 8vw, 3.5rem);
  }

  .hero-wall {
    margin-top: 29px;
  }

  .hero-wall__stage {
    height: clamp(310px, 88vw, 390px);
    padding: 0;
    overflow: hidden;
    perspective: 900px;
    touch-action: pan-y;
  }

  .hero-wall__ring {
    position: absolute;
    inset: 0;
    display: block;
    width: auto;
    padding: 0;
    transform-style: preserve-3d;
  }

  .wall-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(148px, 46vw, 210px);
    height: auto;
    aspect-ratio: 0.76;
    visibility: visible;
  }

  .wall-card .icon-button {
    width: 42px;
    height: 42px;
  }

  .wall-card .icon-button svg {
    width: 18px;
    height: 18px;
  }

  .wall-card__caption h2 {
    font-size: 1rem;
  }

  .hero-wall__hint {
    margin-top: -13px;
  }

  .hero__cta {
    padding: 5px 20px 10px;
  }

  .about > .shell {
    padding: 48px 34px;
  }

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

@media (max-width: 720px) {
  :root {
    --frame-x: 14px;
    --frame-y: 14px;
    --shell: calc(100% - 34px);
  }

  body {
    background-size: 100% max(820px, calc(100svh + 80px));
  }

  .site-header {
    top: 0;
    right: 0;
    left: 0;
  }

  .site-header__inner {
    padding-inline: 17px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 93px;
    border-radius: 0;
  }

  .hero__copy {
    width: min(100% - 28px, 560px);
  }

  .hero__badge {
    min-height: 29px;
    padding-inline: 12px;
    font-size: 0.59rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.1rem);
    letter-spacing: -0.055em;
  }

  .hero__lede {
    max-width: 35ch;
    font-size: 0.83rem;
    line-height: 1.56;
  }

  .hero-wall__ring {
    padding: 0;
  }

  .hero__cta {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero__cta-note {
    display: none;
  }

  .section-title h2,
  .section-title h2 em {
    font-size: clamp(2.55rem, 12vw, 4.5rem);
  }

  .service-cabinet {
    border-radius: 20px;
  }

  .service-drawer,
  .service-drawer:first-child {
    min-height: 0;
  }

  .about {
    padding-inline: var(--frame-x);
  }

  .about > .shell {
    padding: 44px 22px;
    border-radius: 22px;
  }

  .about__visual {
    min-height: 102vw;
  }

  .about__stamp {
    top: 10px;
    right: 0;
  }

  .portfolio-card {
    border-radius: 18px;
  }

  .project-dialog {
    height: auto;
  }

  .contact {
    border-radius: 22px;
  }

  .contact .section-title h2,
  .contact .section-title h2 em {
    font-size: clamp(2.5rem, 12.5vw, 4.5rem);
  }

  .footer-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 18px 18px 0;
  }
}

@media (max-width: 430px) {
  :root {
    --frame-x: 10px;
    --frame-y: 10px;
    --shell: calc(100% - 26px);
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    max-width: none;
    font-size: 0.56rem;
  }

  .brand small {
    display: none;
  }

  .site-header__inner {
    min-height: 64px;
    padding-inline: 13px;
    gap: 10px;
  }

  .site-nav {
    top: 60px;
    right: 10px;
    left: 10px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 84px;
    border-radius: 0;
  }

  .hero__badge {
    letter-spacing: 0.04em;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 11.4vw, 2.7rem);
  }

  .hero__lede {
    max-width: 31ch;
  }

  .hero-wall {
    margin-top: 24px;
  }

  .hero-wall__ring {
    padding: 0;
  }

  .hero-wall__hint {
    font-size: 0.53rem;
  }

  .hero__cta {
    align-items: center;
    padding-inline: 12px;
    flex-direction: column;
  }

  .hero__cta > .button {
    max-width: calc(100vw - 74px);
  }

  .about > .shell {
    padding-inline: 18px;
  }
}

@media (hover: none) {
  .wall-card .media-card__actions {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wall-card,
  .wall-card__media > img {
    animation: none !important;
    transition: none !important;
  }
}

/* Global media experience */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  margin: -1px !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.header-actions .header-cta {
  justify-self: auto;
}

.language-picker {
  position: relative;
}

.language-picker__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  min-height: 42px;
  padding: 0 11px;
  border: 1px solid rgba(23, 24, 19, 0.16);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.74);
  gap: 7px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.language-picker__trigger > svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.language-picker__chevron {
  margin-top: -3px;
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.language-picker.is-open .language-picker__chevron {
  transform: rotate(180deg);
}

.language-picker__trigger:hover,
.language-picker__trigger:focus-visible,
.language-picker.is-open .language-picker__trigger {
  border-color: var(--olive);
  color: #fff;
  background: var(--olive);
}

.language-picker__panel {
  position: absolute;
  z-index: 150;
  top: calc(100% + 12px);
  right: 0;
  width: min(336px, calc(100vw - 28px));
  padding: 18px;
  border: 1px solid rgba(23, 24, 19, 0.13);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.98);
  box-shadow: 0 24px 70px rgba(40, 34, 22, 0.22);
  backdrop-filter: blur(18px);
}

.language-picker__panel[hidden] {
  display: none;
}

.language-picker__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 2px 13px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}

.language-picker__heading strong {
  font-size: 0.86rem;
}

.language-picker__heading small,
.language-picker__panel > p {
  color: var(--ink-soft);
  font-size: 0.58rem;
}

.language-picker__list {
  display: grid;
  padding-block: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
}

.language-picker__list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--ink);
  background: transparent;
  gap: 12px;
  font-size: 0.7rem;
  text-align: left;
  cursor: pointer;
}

.language-picker__list button small {
  color: var(--ink-soft);
  font-size: 0.52rem;
  font-weight: 800;
}

.language-picker__list button:hover,
.language-picker__list button:focus-visible {
  border-color: rgba(86, 96, 51, 0.25);
  background: rgba(86, 96, 51, 0.08);
}

.language-picker__list button.is-current {
  border-color: var(--olive);
  color: #fff;
  background: var(--olive);
}

.site-nav > a:not(.button)::after {
  opacity: 0;
  transform: none;
  transition: opacity 0.18s ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a.is-current::after {
  opacity: 1;
  transform: none;
}

.js .service-drawer[data-reveal] {
  transition-duration: 0.45s;
}

.language-picker__list button.is-current small {
  color: rgba(255, 255, 255, 0.72);
}

.language-picker__panel > p {
  padding: 11px 2px 0;
  border-top: 1px solid var(--line);
  line-height: 1.5;
}

.hero {
  isolation: isolate;
}

.hero__copy,
.hero-wall,
.hero__cta {
  position: relative;
  z-index: 2;
}

.wall-card.is-center {
  box-shadow: 0 25px 62px rgba(48, 37, 20, 0.28);
}

.service-drawer,
.service-drawer:first-child {
  min-height: 535px;
}

.service-drawer h3 {
  min-height: 114px;
}

.service-drawer > p,
.service-drawer:hover > p {
  min-height: 132px;
}

/* Full portfolio player */
.showcase-dialog {
  width: min(1440px, calc(100vw - 32px));
  max-width: none;
  height: min(900px, calc(100svh - 32px));
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  color: #fffaf2;
  background: #10120e;
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.62);
}

.showcase-dialog[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.showcase-dialog::backdrop {
  background: rgba(9, 10, 7, 0.84);
  backdrop-filter: blur(12px);
}

.showcase-dialog__topbar {
  display: grid;
  position: relative;
  z-index: 4;
  min-height: 70px;
  padding: 13px 72px 13px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.showcase-dialog__topbar > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.showcase-dialog__topbar p {
  color: #dbe2af;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.showcase-dialog__topbar strong {
  font-size: 0.82rem;
}

.showcase-dialog__topbar > span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.showcase-dialog__close {
  position: absolute;
  top: 13px;
  right: 14px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  place-items: center;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.showcase-dialog__close:hover,
.showcase-dialog__close:focus-visible {
  border-color: var(--coral);
  background: var(--coral);
}

.showcase-dialog__body {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 370px);
}

.showcase-player {
  display: grid;
  min-width: 0;
  min-height: 0;
  background: #090a08;
  grid-template-rows: minmax(0, 1fr) auto;
}

.showcase-player__media {
  position: relative;
  display: grid;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(86, 96, 51, 0.18), transparent 58%),
    #050604;
  place-items: center;
}

.showcase-player__media > img,
.showcase-player__media > video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.showcase-player__media > [hidden] {
  display: none !important;
}

.showcase-player__kind {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(14, 16, 11, 0.68);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.showcase-player__controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
}

.showcase-player__controls button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  background: rgba(14, 16, 11, 0.72);
  place-items: center;
  font-size: 1.05rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.showcase-player__controls button:hover,
.showcase-player__controls button:focus-visible {
  border-color: var(--coral);
  background: var(--coral);
}

.showcase-player__copy {
  padding: clamp(22px, 3vw, 35px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.showcase-player__copy > p:first-child {
  color: #dbe2af;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.showcase-player__copy h2 {
  margin-top: 9px;
  font-size: clamp(1.8rem, 3.3vw, 3.6rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.showcase-player__copy > p:last-child {
  max-width: 62ch;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.78rem;
}

.showcase-playlist {
  display: grid;
  min-height: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: #151712;
  grid-template-rows: auto minmax(0, 1fr);
}

.showcase-playlist > header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  min-height: 58px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 18px;
}

.showcase-playlist > header strong {
  font-size: 0.8rem;
}

.showcase-playlist > header span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.57rem;
  text-transform: uppercase;
}

.showcase-playlist ol {
  margin: 0;
  padding: 10px;
  overflow-y: auto;
  list-style: none;
  scrollbar-color: var(--olive) transparent;
}

.showcase-playlist li + li {
  margin-top: 5px;
}

.showcase-playlist button {
  display: grid;
  width: 100%;
  min-height: 86px;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: #fff;
  background: transparent;
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.showcase-playlist button:hover,
.showcase-playlist button:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.showcase-playlist button.is-current {
  border-color: rgba(219, 226, 175, 0.56);
  background: rgba(86, 96, 51, 0.46);
}

.showcase-playlist button > img {
  width: 108px;
  height: 66px;
  border-radius: 8px;
  object-fit: cover;
}

.showcase-playlist button > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.showcase-playlist button strong {
  overflow: hidden;
  font-size: 0.72rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.showcase-playlist button small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.55rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1000px) {
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-actions {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  .hero__copy {
    z-index: 4;
  }

  .hero-wall__stage {
    height: clamp(310px, 88vw, 390px);
  }

  .wall-card {
    width: clamp(148px, 46vw, 210px);
  }

  .wall-card.is-center {
    box-shadow: 0 24px 58px rgba(40, 31, 17, 0.34);
  }

  .wall-card .media-card__actions {
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .wall-card:not(.is-center) .media-card__actions {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.84);
  }
}

@media (max-width: 760px) {
  .showcase-dialog {
    width: 100vw;
    height: 100svh;
    max-height: none;
    margin: 0;
    border-radius: 0;
  }

  .showcase-dialog__topbar {
    position: sticky;
    top: 0;
    min-height: 64px;
    padding: 10px 64px 10px 14px;
    background: rgba(16, 18, 14, 0.96);
    backdrop-filter: blur(14px);
  }

  .showcase-dialog__topbar > div {
    display: block;
  }

  .showcase-dialog__topbar p {
    display: none;
  }

  .showcase-dialog__body {
    display: block;
    overflow-y: auto;
  }

  .showcase-player {
    display: block;
  }

  .showcase-player__media {
    width: 100%;
    height: auto;
    max-height: 48svh;
    aspect-ratio: 16 / 10;
  }

  .showcase-player__copy {
    padding: 20px 17px 24px;
  }

  .showcase-player__copy h2 {
    font-size: clamp(1.75rem, 8.5vw, 2.7rem);
  }

  .showcase-playlist {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .showcase-playlist ol {
    overflow: visible;
    padding-bottom: 24px;
  }
}

@media (max-width: 720px) {
  .service-drawer,
  .service-drawer:first-child,
  .service-drawer h3,
  .service-drawer > p,
  .service-drawer:hover > p {
    min-height: 0;
  }

  .service-drawer > p {
    margin-bottom: 28px;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: block;
    margin-top: 4px;
    font-size: 0.4rem;
  }

  .language-picker__trigger {
    min-width: 54px;
    padding-inline: 9px;
  }

  .language-picker__chevron {
    display: none;
  }

  .language-picker__panel {
    position: fixed;
    top: 72px;
    right: 10px;
    left: 10px;
    width: auto;
  }

  .showcase-playlist button {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .showcase-playlist button > img {
    width: 92px;
    height: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .language-picker__chevron {
    transition: none !important;
  }
}

/* September refinement: compact glass controls, film-first hero and contact layer */
html {
  scrollbar-color: rgba(86, 96, 51, 0.82) rgba(232, 220, 203, 0.42);
  scrollbar-gutter: stable;
  scrollbar-width: thin;
}

html::-webkit-scrollbar,
.project-dialog::-webkit-scrollbar,
.showcase-playlist ol::-webkit-scrollbar,
.showcase-dialog__body::-webkit-scrollbar,
.contact-dialog::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

html::-webkit-scrollbar-track,
.project-dialog::-webkit-scrollbar-track,
.contact-dialog::-webkit-scrollbar-track {
  background: rgba(232, 220, 203, 0.42);
}

html::-webkit-scrollbar-thumb,
.project-dialog::-webkit-scrollbar-thumb,
.contact-dialog::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background: rgba(86, 96, 51, 0.82);
  background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:hover,
.project-dialog::-webkit-scrollbar-thumb:hover,
.contact-dialog::-webkit-scrollbar-thumb:hover {
  background: var(--coral);
  background-clip: padding-box;
}

.showcase-playlist ol,
.showcase-dialog__body {
  scrollbar-color: rgba(219, 226, 175, 0.68) rgba(255, 255, 255, 0.04);
  scrollbar-width: thin;
}

.showcase-playlist ol::-webkit-scrollbar-track,
.showcase-dialog__body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

.showcase-playlist ol::-webkit-scrollbar-thumb,
.showcase-dialog__body::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background: rgba(219, 226, 175, 0.68);
  background-clip: padding-box;
}

.language-picker__trigger {
  min-width: 58px;
  min-height: 40px;
  padding: 4px 9px 4px 5px;
  border-color: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 8px 22px rgba(48, 37, 20, 0.1);
  gap: 6px;
  backdrop-filter: blur(22px) saturate(175%);
  -webkit-backdrop-filter: blur(22px) saturate(175%);
}

.language-picker__trigger:hover,
.language-picker__trigger:focus-visible,
.language-picker.is-open .language-picker__trigger {
  border-color: rgba(86, 96, 51, 0.46);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.38);
}

.language-picker__flag,
.language-option__flag {
  display: grid;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  place-items: center;
  line-height: 1;
}

.language-picker__flag {
  width: 25px;
  height: 25px;
  font-size: 1.02rem;
}

.language-picker__panel {
  top: calc(100% + 9px);
  width: min(264px, calc(100vw - 24px));
  padding: 11px;
  border-color: rgba(23, 20, 14, 0.1);
  border-radius: 20px;
  background: rgba(252, 249, 242, 0.97);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 24px 64px rgba(40, 34, 22, 0.2);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
}

.language-picker__heading {
  padding: 3px 4px 9px;
}

.language-picker__heading strong {
  font-size: 0.69rem;
  letter-spacing: 0.02em;
}

.language-picker__list {
  padding: 8px 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}

.language-picker__list button {
  justify-content: flex-start;
  min-height: 40px;
  padding: 4px 7px;
  border-radius: 12px;
  gap: 7px;
  font-size: 0.66rem;
}

.language-option__flag {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  font-size: 0.88rem;
}

.language-picker__list button.is-current {
  border-color: rgba(86, 96, 51, 0.3);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero {
  padding-top: clamp(72px, 10svh, 88px);
  padding-bottom: 10px;
}

.hero__copy {
  width: min(calc(100% - 30px), 980px);
}

.hero h1 {
  font-size: clamp(1.9rem, 3.35vw, 3.4rem);
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.hero h1 span {
  color: var(--olive);
}

.hero-wall {
  margin-top: clamp(2px, 0.8svh, 8px);
}

.hero-wall__stage {
  height: clamp(310px, 53svh, 420px);
}

.wall-card {
  width: clamp(190px, 16vw, 232px);
  aspect-ratio: 0.66;
  border: 0;
  border-radius: 23px;
  background: var(--khaki);
  box-shadow: 0 20px 48px rgba(35, 28, 16, 0.2);
}

.wall-card::after {
  display: none;
}

.wall-card .media-card__actions {
  top: 11px;
  right: 11px;
}

.wall-card .icon-button,
.portfolio-card .icon-button {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 9px 24px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
}

.wall-card .icon-button:hover,
.wall-card .icon-button:focus-visible,
.portfolio-card .icon-button:hover,
.portfolio-card .icon-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(242, 131, 106, 0.72);
}

.hero__cta {
  margin-top: 3px;
  padding-bottom: 7px;
}

.hero__portfolio-button {
  gap: 9px;
}

.hero__portfolio-button > svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}

.contact {
  position: relative;
  min-height: min(760px, calc(100svh - 32px));
  padding: clamp(92px, 11vw, 150px) 0;
  color: var(--paper);
  background: #15180f;
  isolation: isolate;
}

.contact::before,
.contact::after {
  display: none;
}

.contact__grid {
  position: relative;
  z-index: 4;
  max-width: 790px;
}

.contact .section-title .eyebrow,
.contact .section-title h2,
.contact .section-title h2 em {
  color: var(--paper);
}

.contact .section-title h2 em {
  color: #dbe2af;
}

.contact__action > p {
  color: rgba(255, 250, 242, 0.7);
}

.contact__email {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.42);
}

.contact-photo-field,
.contact-photo-trail {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.contact-photo-trail {
  z-index: 3;
}

.contact-photo-field figure {
  position: absolute;
  width: clamp(102px, 12vw, 174px);
  aspect-ratio: 1.34;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 14px;
  background: #30371e;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
  opacity: 0;
  animation: contact-photo-drift 13s var(--ease) infinite;
  animation-play-state: paused;
  will-change: opacity, transform;
}

.contact-photo-field.is-running figure {
  animation-play-state: running;
}

.contact-photo-field img,
.contact-photo-trail__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-photo-field figure:nth-child(1) { top: 8%; left: 3%; --photo-rotation: -8deg; animation-delay: -2s; }
.contact-photo-field figure:nth-child(2) { top: 7%; right: 4%; --photo-rotation: 7deg; animation-delay: -8s; }
.contact-photo-field figure:nth-child(3) { bottom: 8%; left: 7%; --photo-rotation: 5deg; animation-delay: -5s; }
.contact-photo-field figure:nth-child(4) { right: 8%; bottom: 7%; --photo-rotation: -6deg; animation-delay: -11s; }
.contact-photo-field figure:nth-child(5) { top: 29%; left: 17%; --photo-rotation: 8deg; animation-delay: -10s; }
.contact-photo-field figure:nth-child(6) { top: 27%; right: 17%; --photo-rotation: -9deg; animation-delay: -3s; }
.contact-photo-field figure:nth-child(7) { bottom: 3%; left: 27%; --photo-rotation: -4deg; animation-delay: -7s; }
.contact-photo-field figure:nth-child(8) { right: 27%; bottom: 2%; --photo-rotation: 6deg; animation-delay: -1s; }

@keyframes contact-photo-drift {
  0%, 8%, 100% { opacity: 0; transform: translate3d(0, 18px, 0) scale(0.86) rotate(var(--photo-rotation)); }
  18%, 76% { opacity: 0.68; transform: translate3d(0, 0, 0) scale(1) rotate(var(--photo-rotation)); }
  88% { opacity: 0; transform: translate3d(0, -18px, 0) scale(0.92) rotate(var(--photo-rotation)); }
}

.contact-photo-trail__card {
  position: absolute;
  display: block;
  width: clamp(86px, 9vw, 128px);
  aspect-ratio: 1.38;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 12px;
  background: #30371e;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.38);
  opacity: 0;
  will-change: opacity, transform;
}

.project-dialog__media {
  position: relative;
}

.dialog-share {
  position: absolute;
  z-index: 3;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  color: #fff;
  background: rgba(18, 20, 15, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
}

.dialog-share svg,
.showcase-player__controls svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.dialog-share:hover,
.dialog-share:focus-visible {
  background: rgba(242, 131, 106, 0.76);
}

.contact-fab {
  position: fixed;
  z-index: 150;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  display: grid;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: #fff;
  background: rgba(48, 55, 30, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 16px 40px rgba(27, 28, 18, 0.28);
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  transition: opacity 0.2s ease, transform 0.24s var(--ease), background-color 0.2s ease;
}

.contact-fab svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-fab:hover,
.contact-fab:focus-visible {
  background: rgba(242, 131, 106, 0.94);
  transform: translateY(-4px) scale(1.03);
}

body.dialog-open .contact-fab {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.84);
}

.contact-dialog {
  width: min(530px, calc(100vw - 30px));
  max-height: min(760px, calc(100svh - 30px));
  margin: auto;
  padding: clamp(26px, 5vw, 42px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  color: var(--ink);
  background: rgba(247, 241, 231, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 36px 120px rgba(8, 9, 6, 0.46);
  backdrop-filter: blur(34px) saturate(170%);
  -webkit-backdrop-filter: blur(34px) saturate(170%);
}

.contact-dialog[open] {
  display: block;
}

.contact-dialog::backdrop {
  background: rgba(12, 14, 9, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.contact-dialog__close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.28);
  place-items: center;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(15px);
}

.contact-dialog__close:hover,
.contact-dialog__close:focus-visible {
  color: #fff;
  background: var(--coral);
}

.contact-dialog > header {
  padding-right: 44px;
}

.contact-dialog h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 6vw, 3.35rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.contact-dialog h2 em {
  color: var(--olive);
  font-style: normal;
}

.contact-dialog > header > p:last-child {
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.contact-methods {
  display: grid;
  margin-top: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.contact-methods > a.contact-method {
  min-height: 70px;
  grid-column: 1 / -1;
}

.contact-method {
  display: grid;
  min-width: 0;
  min-height: 92px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  transition: background-color 0.2s ease, transform 0.2s var(--ease);
}

a.contact-method:hover,
a.contact-method:focus-visible {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

.contact-method__icon {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--olive);
  place-items: center;
}

.contact-method svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.contact-method__icon svg .is-solid {
  fill: currentColor;
  stroke: none;
}

.contact-method > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.contact-method strong {
  font-size: 0.73rem;
}

.contact-method small {
  overflow-wrap: anywhere;
  color: var(--ink-soft);
  font-size: 0.53rem;
}

.contact-method__arrow {
  width: 15px !important;
  height: 15px !important;
}

.contact-method.is-disabled {
  opacity: 0.47;
}

.contact-method.is-disabled .contact-method__icon {
  color: var(--ink-soft);
  background: rgba(23, 20, 14, 0.1);
}

.contact-dialog__note {
  margin-top: 15px;
  color: var(--ink-soft);
  font-size: 0.58rem;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .hero {
    padding-top: 82px;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 6.4vw, 2.65rem);
  }

  .hero-wall {
    margin-top: 2px;
  }

  .hero-wall__stage {
    height: clamp(320px, 88vw, 390px);
  }

  .wall-card {
    width: clamp(176px, 56vw, 225px);
    aspect-ratio: 0.66;
  }

  .hero__cta {
    padding-top: 0;
  }
}

@media (max-width: 1000px) {
  .site-nav {
    visibility: hidden;
  }

  .site-nav.is-open {
    visibility: visible;
  }
}

@media (max-width: 760px) {
  .contact {
    min-height: 650px;
    padding: 92px 0;
  }

  .contact-photo-field figure {
    width: clamp(76px, 24vw, 108px);
  }

  .contact-photo-field figure:nth-child(n + 5) {
    display: none;
  }

  .contact-photo-field figure:nth-child(1) { top: 4%; left: 1%; }
  .contact-photo-field figure:nth-child(2) { top: 6%; right: 1%; }
  .contact-photo-field figure:nth-child(3) { bottom: 4%; left: 2%; }
  .contact-photo-field figure:nth-child(4) { right: 2%; bottom: 5%; }

  .contact-photo-trail__card {
    width: 82px;
  }
}

@media (max-width: 520px) {
  .language-picker__panel {
    position: fixed;
    top: 70px;
    right: 10px;
    left: auto;
    width: min(264px, calc(100vw - 20px));
  }

  .hero {
    padding-top: 78px;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 7.2vw, 2.05rem);
    line-height: 1.07;
  }

  .hero-wall__stage {
    height: clamp(300px, 93vw, 368px);
  }

  .wall-card {
    width: clamp(166px, 55vw, 205px);
  }

  .hero__portfolio-button {
    min-height: 43px;
    padding-inline: 18px;
  }

  .contact-fab {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }

  .contact-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
    padding: 25px 17px 20px;
    border-radius: 25px;
  }

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

  .contact-method {
    min-height: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-photo-field figure {
    opacity: 0.5;
    animation: none !important;
  }

  .contact-photo-field figure:nth-child(n + 5) {
    display: none;
  }
}

/* ============================================================
   UI refresh
   Manrope throughout, a flat khaki page, a hero that never collides, flat
   glass controls, sharp contact photography and a real player.
   ============================================================ */
:root {
  --font-body: "Manrope", Arial, sans-serif;
  /* Dry-grass khaki, flat across the whole page. */
  --khaki: #e7dec8;
  --cream: var(--khaki);
  --gold: #f2a341;
  --ink-dark: #0f110c;
  --ink-panel: #171a13;
  --ink-line: rgba(255, 255, 255, 0.1);
}

body {
  font-family: var(--font-body);
}

.hero h1,
.section-title h2,
.section-title h2 em,
.contact-dialog h2,
.contact-dialog h2 em,
.player__meta h2 {
  font-family: var(--font-body);
  font-style: normal;
}

.eyebrow {
  font-weight: 600;
}

body {
  background-color: var(--khaki);
  background-image: none;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--khaki);
}

.hero {
  display: grid;
  padding-top: clamp(74px, 10svh, 106px);
  padding-bottom: clamp(14px, 2.6svh, 28px);
  grid-template-rows: auto auto auto;
  align-content: center;
  gap: clamp(18px, 3.4svh, 44px);
}

.hero__copy {
  align-self: center;
  width: min(calc(100% - 32px), 940px);
}

.hero h1 {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vh, 12px);
  font-size: inherit;
  letter-spacing: normal;
  line-height: inherit;
}

.hero__lead {
  color: var(--olive);
  font-size: clamp(1.72rem, 4.15vw, 3.05rem);
  font-weight: 700;
  letter-spacing: -0.052em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero h1 .hero__sub {
  max-width: 30ch;
  margin-inline: auto;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.95vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.22;
  text-wrap: balance;
}

/* The stage is sized from the card, not from the viewport, so a short window
   grows the hero instead of pushing cards through the headline and the CTA. */
.hero-wall {
  --card-width: clamp(150px, min(13.6vw, 22.4svh), 252px);
  --card-height: calc(var(--card-width) / 0.66);
  align-self: center;
  margin-top: 0;
}

.hero-wall__stage {
  height: calc(var(--card-height) * 1.12);
}

.wall-card {
  width: var(--card-width);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(35, 28, 16, 0.18);
}

.wall-card--photo .wall-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__cta {
  display: flex;
  margin-top: 0;
  padding-bottom: 0;
  flex-direction: column;
  align-items: center;
  gap: clamp(11px, 1.8svh, 18px);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero__open,
.hero__social {
  display: grid;
  padding: 0;
  border-radius: 50%;
  box-shadow: none;
  place-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.24s var(--ease);
}

.hero__open {
  width: 58px;
  height: 58px;
  border: 1px solid var(--olive);
  color: #fff;
  background: var(--olive);
}

.hero__open svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
  fill: currentColor;
  stroke: none;
}

.hero__open:hover,
.hero__open:focus-visible {
  border-color: var(--coral);
  background: var(--coral);
  transform: scale(1.06);
}

.hero__social {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(22px) saturate(175%);
  -webkit-backdrop-filter: blur(22px) saturate(175%);
}

.hero__social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero__social:hover,
.hero__social:focus-visible {
  border-color: var(--olive);
  color: #fff;
  background: var(--olive);
  transform: translateY(-2px);
}

/* ---------- Google review badge ---------- */
.review-badge {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 6px 15px 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.34);
  box-shadow: none;
  gap: 11px;
  backdrop-filter: blur(22px) saturate(175%);
  -webkit-backdrop-filter: blur(22px) saturate(175%);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.24s var(--ease);
}

.review-badge:hover,
.review-badge:focus-visible {
  border-color: rgba(86, 96, 51, 0.42);
  background: rgba(255, 255, 255, 0.58);
  transform: translateY(-2px);
}

.review-badge__mark {
  display: grid;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  place-items: center;
}

.review-badge__mark svg {
  width: 18px;
  height: 18px;
}

.review-badge__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

.review-badge__top {
  display: flex;
  align-items: center;
  gap: 7px;
}

.review-badge__top strong {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.review-badge__stars {
  position: relative;
  display: inline-block;
  height: 13px;
}

.review-badge__stars-track,
.review-badge__stars-fill {
  display: flex;
  gap: 1px;
}

.review-badge__stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: calc(var(--rating, 5) / 5 * 100%);
  color: var(--gold);
}

.review-badge__stars svg {
  display: block;
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  fill: currentColor;
  stroke: none;
}

.review-badge__stars-track {
  color: rgba(23, 20, 14, 0.2);
}

.review-badge__text small {
  display: flex;
  align-items: center;
  color: var(--ink-soft);
  gap: 6px;
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.review-badge__text small i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

.review-badge__arrow {
  width: 14px;
  height: 14px;
  margin-left: 2px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  opacity: 0.5;
}

/* ---------- Flat glass: no white rim, no drop shadow ---------- */
.language-picker__trigger,
.language-picker__trigger:hover,
.language-picker__trigger:focus-visible,
.language-picker.is-open .language-picker__trigger,
.language-picker__panel,
.language-picker__list button,
.language-picker__list button.is-current,
.wall-card .icon-button,
.portfolio-card .icon-button,
.dialog-share,
.contact-fab,
.contact-method,
.contact-dialog,
.contact-dialog__close,
.button,
.button--small,
.button--large,
.text-link,
.menu-toggle,
.social-link,
.skip-link {
  box-shadow: none;
}

/* ---------- Contact photography: bigger, sharp-cornered ---------- */
.contact-photo-field figure {
  width: clamp(138px, 16.5vw, 262px);
  border: 0;
  border-radius: 0;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
}

.contact-photo-trail__card {
  width: clamp(152px, 15.5vw, 252px);
  aspect-ratio: 1.42;
  border: 0;
  border-radius: 0;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42);
}


/* ---------- Portfolio player ---------- */
/* Full bleed on purpose: the portfolio takes the whole screen rather than
   floating as a rounded card over the page. */
.player {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100svh;
  max-height: 100svh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  color: #fffaf2;
  background: var(--ink-dark);
}

.player[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.player::backdrop {
  background: var(--ink-dark);
}

.player__bar {
  display: grid;
  align-items: center;
  min-height: 68px;
  padding: 12px clamp(14px, 2.4vw, 34px);
  border-bottom: 1px solid var(--ink-line);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(12px, 2vw, 26px);
}

.player__brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  white-space: nowrap;
}

.player__brand p {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.player__brand span {
  color: rgba(255, 250, 242, 0.44);
  font-size: 0.6rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.player__filters {
  display: flex;
  justify-content: center;
  padding: 2px;
  overflow-x: auto;
  gap: 6px;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.player__filters::-webkit-scrollbar {
  display: none;
}

.player__filters button {
  padding: 9px 16px;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  color: rgba(255, 250, 242, 0.66);
  background: transparent;
  font-size: 0.62rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.player__filters button:hover,
.player__filters button:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.player__filters button[aria-pressed="true"] {
  border-color: transparent;
  color: var(--ink-dark);
  background: #f3efe4;
}

.player__close {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--ink-line);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  place-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.player__close svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.9;
}

.player__close:hover,
.player__close:focus-visible {
  border-color: var(--coral);
  background: var(--coral);
}

.player__body {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) clamp(296px, 25vw, 392px);
}

.player__stage {
  display: grid;
  min-width: 0;
  min-height: 0;
  padding: clamp(16px, 2vw, 30px);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(16px, 2.2vh, 28px);
}

/* ---------- Screen ---------- */
.player__screen {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #050604;
}

.player__screen::before {
  position: absolute;
  z-index: 0;
  inset: -40px;
  background-image: var(--frame-image, none);
  background-position: center;
  background-size: cover;
  content: "";
  filter: blur(38px) saturate(0.85) brightness(0.4);
  transform: scale(1.06);
}

.player__screen > img,
.player__screen > video {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.player__screen > [hidden] {
  display: none !important;
}

.player__kind {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  padding: 7px 13px 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 12, 8, 0.58);
  gap: 7px;
  font-size: 0.53rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  pointer-events: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.player__kind svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.player__kind svg:has(use[href="#icon-play"]) {
  fill: currentColor;
  stroke: none;
}

/* The whole frame toggles playback, so the badge on it only has to say which
   way the toggle will go. */
.player__hit {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  padding: 0;
  border: 0;
  background: transparent;
  place-items: center;
  cursor: pointer;
}

.player__hit[hidden] {
  display: none;
}

.player__hit-icon {
  display: grid;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #fff;
  background: rgba(12, 14, 9, 0.42);
  place-items: center;
  opacity: 1;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  transition: background-color 0.2s ease, opacity 0.25s ease, transform 0.25s var(--ease);
}

.player__hit.is-playing .player__hit-icon {
  opacity: 0;
  transform: scale(0.82);
}

.player__hit.is-playing:hover .player__hit-icon,
.player__hit.is-playing:focus-visible .player__hit-icon {
  opacity: 1;
  transform: scale(1);
}

.player__hit:hover .player__hit-icon,
.player__hit:focus-visible .player__hit-icon {
  background: rgba(242, 131, 106, 0.82);
}

.player__hit-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
  stroke: none;
}

.player__hit-icon svg:has(use[href="#icon-play"]) {
  margin-left: 3px;
}

/* ---------- Prev / next, right on the frame ---------- */
.player__nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  background: rgba(10, 12, 8, 0.55);
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(-50%);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.player__nav--prev {
  left: 14px;
}

.player__nav--next {
  right: 14px;
}

.player__nav svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.player__nav:hover,
.player__nav:focus-visible {
  border-color: var(--coral);
  background: var(--coral);
}

/* ---------- Control bar ---------- */
.player__controls {
  position: absolute;
  z-index: 6;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(8, 10, 6, 0.66);
  grid-template-columns: auto auto minmax(60px, 1fr) auto auto auto;
  gap: 12px;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  transition: opacity 0.25s ease, transform 0.25s var(--ease);
}

.player__controls[hidden] {
  display: none;
}

.player__screen.is-idle .player__controls,
.player__screen.is-idle .player__nav {
  opacity: 0;
  pointer-events: none;
}

.player__screen.is-idle .player__controls {
  transform: translateY(10px);
}

.player__control {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: transparent;
  place-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.player__control:hover,
.player__control:focus-visible {
  background: rgba(255, 255, 255, 0.15);
}

.player__control svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

/* A rule aimed inside a <use> never reaches the shadow tree it builds, so the
   solid glyphs take their fill on the <svg> itself. */
.player__control svg:has(use[href="#icon-play"]),
.player__control svg:has(use[href="#icon-pause"]) {
  fill: currentColor;
  stroke: none;
}

.player__time {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.62rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  white-space: nowrap;
}

.player__time--total {
  color: rgba(255, 255, 255, 0.5);
}

/* The track is the input itself, so the handle always rides the centre of the
   line instead of floating above it. */
.player__range {
  width: 100%;
  height: 24px;
  margin: 0;
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.player__range::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    var(--range-color, var(--coral)) var(--range-fill, 0%),
    rgba(255, 255, 255, 0.24) var(--range-fill, 0%)
  );
}

.player__range::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    var(--range-color, var(--coral)) var(--range-fill, 0%),
    rgba(255, 255, 255, 0.24) var(--range-fill, 0%)
  );
}

.player__range::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  margin-top: -4px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
}

.player__range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: #fff;
}

.player__range:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.player__volume {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* The supplied films carry no audio stream, so the control retires rather than
   sitting there doing nothing when pressed. */
.player__volume.is-silent {
  opacity: 0.38;
}

.player__volume.is-silent .player__control {
  cursor: default;
}

.player__volume.is-silent .player__control:hover,
.player__volume.is-silent .player__control:focus-visible {
  background: transparent;
}

.player__volume.is-silent:hover .player__range--volume,
.player__volume.is-silent:focus-within .player__range--volume {
  width: 0;
  opacity: 0;
}

.player__range--volume {
  --range-color: #fff;
  width: 0;
  opacity: 0;
  transition: width 0.24s var(--ease), opacity 0.2s ease;
}

.player__volume:hover .player__range--volume,
.player__volume:focus-within .player__range--volume {
  width: 72px;
  opacity: 1;
}

/* ---------- Project copy: category, title, description ---------- */
.player__meta {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.player__category {
  color: #dbe2af;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.player__meta h2 {
  font-size: clamp(1.7rem, 2.9vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
}

.player__note {
  max-width: 62ch;
  color: rgba(255, 250, 242, 0.62);
  font-size: 0.78rem;
}

.player__meta-actions {
  display: flex;
  margin-top: 4px;
  gap: 8px;
  flex-wrap: wrap;
}

.player__ghost {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  background: transparent;
  gap: 9px;
  font-size: 0.63rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.player__ghost svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.player__ghost:hover,
.player__ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.player__ghost--solid {
  border-color: var(--olive);
  background: var(--olive);
}

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

/* ---------- Playlist ---------- */
.player__list {
  display: grid;
  min-height: 0;
  border-left: 1px solid var(--ink-line);
  background: var(--ink-panel);
  grid-template-rows: auto minmax(0, 1fr);
}

.player__list > header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  min-height: 58px;
  padding: 18px;
  border-bottom: 1px solid var(--ink-line);
  gap: 16px;
}

.player__list > header strong {
  font-size: 0.8rem;
}

.player__list > header span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.6rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.player__list ol {
  margin: 0;
  padding: 10px;
  overflow-y: auto;
  list-style: none;
  scrollbar-color: rgba(219, 226, 175, 0.6) transparent;
  scrollbar-width: thin;
}

.player__list ol::-webkit-scrollbar {
  width: 10px;
}

.player__list ol::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background: rgba(219, 226, 175, 0.6);
  background-clip: padding-box;
}

.player__list li + li {
  margin-top: 4px;
}

.player__row {
  display: grid;
  width: 100%;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #fff;
  background: transparent;
  grid-template-columns: auto 104px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.player__row:hover,
.player__row:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.player__row.is-current {
  border-color: rgba(219, 226, 175, 0.5);
  background: rgba(86, 96, 51, 0.44);
}

.player__row-index {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.58rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.player__row.is-current .player__row-index {
  color: #dbe2af;
}

.player__row-thumb {
  width: 104px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  background: #0a0c08;
}

.player__row-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player__row-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.player__row-copy strong {
  overflow: hidden;
  font-size: 0.71rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player__row-copy small {
  display: flex;
  overflow: hidden;
  align-items: center;
  color: rgba(255, 255, 255, 0.46);
  gap: 6px;
  font-size: 0.55rem;
  white-space: nowrap;
}

.player__row-copy small i {
  width: 3px;
  height: 3px;
  flex: 0 0 3px;
  border-radius: 50%;
  background: currentColor;
}

.player__empty {
  padding: 26px 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  text-align: center;
}

.player__screen:fullscreen {
  border-radius: 0;
}

/* ---------- Player responsive ---------- */
@media (max-width: 1000px) {
  /* One column, one scroller. Normal flow rather than grid tracks: an auto grid
     row measures a ratio box as zero, which let the frame overflow its row. */
  .player__body {
    display: block;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .player__stage {
    display: block;
  }

  .player__screen {
    width: 100%;
    max-height: 62svh;
    margin-bottom: clamp(16px, 2.2vh, 28px);
    aspect-ratio: 16 / 9;
  }

  .player__list {
    display: block;
    border-left: 0;
    border-top: 1px solid var(--ink-line);
    background: transparent;
  }

  .player__list ol {
    overflow: visible;
  }
}

@media (max-width: 760px) {
  .player__bar {
    min-height: 0;
    padding: 10px 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .player__filters {
    justify-content: flex-start;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .player__brand {
    min-width: 0;
  }

  .player__brand p {
    font-size: 0.8rem;
  }

  .player__close {
    width: 40px;
    height: 40px;
  }

  .player__stage {
    padding: 12px;
    gap: 14px;
  }

  .player__screen {
    border-radius: 13px;
  }

  .player__nav {
    width: 38px;
    height: 38px;
  }

  .player__nav--prev {
    left: 8px;
  }

  .player__nav--next {
    right: 8px;
  }

  .player__nav svg {
    width: 16px;
    height: 16px;
  }

  .player__controls {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 6px 10px;
    border-radius: 13px;
    grid-template-columns: auto auto minmax(40px, 1fr) auto auto;
    gap: 8px;
  }

  .player__range--volume {
    display: none;
  }

  .player__time {
    font-size: 0.55rem;
  }

  .player__hit-icon {
    width: 60px;
    height: 60px;
  }

  .player__hit-icon svg {
    width: 22px;
    height: 22px;
  }

  .player__note {
    font-size: 0.74rem;
  }

  .player__ghost {
    min-height: 42px;
    padding: 0 15px;
  }

  .player__list > header {
    min-height: 0;
    padding: 14px;
  }

  .player__row {
    grid-template-columns: auto 86px minmax(0, 1fr);
    gap: 10px;
  }

  .player__row-thumb {
    width: 86px;
  }
}

@media (max-width: 860px) {
  .hero-wall {
    --card-width: clamp(176px, 56vw, 225px);
  }
}

@media (max-width: 520px) {
  .hero-wall {
    --card-width: clamp(166px, 55vw, 205px);
  }

  .hero h1 .hero__sub {
    max-width: 27ch;
  }

  .hero__open {
    width: 54px;
    height: 54px;
  }

  .hero__social {
    width: 46px;
    height: 46px;
  }

  .review-badge {
    padding: 6px 13px 6px 8px;
    gap: 9px;
  }

  .contact-photo-trail__card {
    width: 132px;
  }

  .contact-photo-field figure {
    width: clamp(104px, 32vw, 148px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .player__controls,
  .player__hit-icon,
  .player__range--volume,
  .review-badge,
  .hero__social,
  .hero__open {
    transition: none;
  }

  .player__screen.is-idle .player__controls,
  .player__screen.is-idle .player__nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .player__screen.is-idle .player__controls {
    transform: none;
  }

  .player__hit.is-playing .player__hit-icon {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Language panel: legible, not see-through ---------- */
.language-picker__panel {
  border: 1px solid rgba(23, 20, 14, 0.1);
  background: rgba(252, 249, 242, 0.97);
  box-shadow: 0 26px 60px rgba(38, 32, 18, 0.22);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.language-picker__list button {
  color: var(--ink);
}

.language-picker__list button:hover,
.language-picker__list button:focus-visible {
  background: rgba(86, 96, 51, 0.12);
}

.language-picker__list button.is-current {
  border-color: rgba(86, 96, 51, 0.34);
  background: rgba(86, 96, 51, 0.16);
}

/* ---------- Hero action row ---------- */
.hero__open {
  width: 62px;
  height: 62px;
}

.hero__open svg {
  width: 27px;
  height: 27px;
  margin-left: 4px;
}

/* ---------- Portfolio ---------- */
.work-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(26px, 3.4vw, 44px);
  gap: 24px;
  flex-wrap: wrap;
}

.work-head h2 {
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-transform: uppercase;
}

.work-head > div:first-child > p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.work-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.work-filters button {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(23, 20, 14, 0.16);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.work-filters button:hover,
.work-filters button:focus-visible {
  background: rgba(23, 20, 14, 0.06);
}

.work-filters button[aria-pressed="true"] {
  border-color: var(--olive-dark);
  color: var(--paper);
  background: var(--olive-dark);
}

/* One feature tile every nine visible cards keeps the mosaic tiling exactly:
   a 2x2 feature plus eight singles fills three rows of four. */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 16px);
}

.work-card {
  min-width: 0;
  aspect-ratio: 1;
}

.work-card[hidden] {
  display: none;
}

.work-card.is-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.work-card__open {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #0f110c;
  cursor: pointer;
  isolation: isolate;
}

.work-card__open > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.work-card__open::after {
  position: absolute;
  z-index: 1;
  inset: 38% 0 0;
  background: linear-gradient(180deg, transparent, rgba(8, 10, 6, 0.86));
  content: "";
}

.work-card__open:hover > img,
.work-card__open:focus-visible > img {
  transform: scale(1.045);
}

.work-card__cue {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #fff;
  background: rgba(12, 14, 9, 0.24);
  place-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  transition: background-color 0.25s ease, transform 0.3s var(--ease);
}

.work-card.is-feature .work-card__cue {
  width: 74px;
  height: 74px;
}

.work-card__cue svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.work-card__cue svg:has(use[href="#icon-expand"]) {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.work-card.is-feature .work-card__cue svg {
  width: 25px;
  height: 25px;
}

.work-card__open:hover .work-card__cue,
.work-card__open:focus-visible .work-card__cue {
  background: rgba(242, 131, 106, 0.9);
  transform: translate(-50%, -50%) scale(1.08);
}

.work-card__copy {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 13px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.work-card__tag {
  color: var(--coral);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-card__copy strong {
  overflow: hidden;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-card.is-feature .work-card__copy strong {
  font-size: clamp(1.05rem, 1.7vw, 1.6rem);
  white-space: normal;
}

.work-card__copy small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.56rem;
  font-weight: 500;
}

.work-card__time {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.58rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.work-card.is-feature .work-card__time {
  bottom: 15px;
}

.work-card__copy:has(+ .work-card__time) {
  padding-right: 52px;
}

.work-empty {
  padding: 44px 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-align: center;
}

/* ---------- Clients ---------- */
.clients {
  padding: clamp(54px, 5.5vw, 82px) 0;
  overflow: hidden;
}

.clients .section-title {
  margin-bottom: clamp(24px, 2.6vw, 36px);
}

.clients .section-title h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.client-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-marquee__track {
  display: flex;
  width: max-content;
  animation: client-drift 46s linear infinite;
}

.client-marquee:hover .client-marquee__track,
.client-marquee:focus-within .client-marquee__track {
  animation-play-state: paused;
}

.client-marquee__row {
  display: flex;
  margin: 0;
  padding: 0 clamp(10px, 1vw, 16px);
  gap: clamp(10px, 1.4vw, 22px);
  list-style: none;
}

.client-marquee__item {
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 0 clamp(18px, 2vw, 30px);
  border: 1px solid rgba(23, 20, 14, 0.12);
  border-radius: 18px;
  background: var(--paper);
  gap: 14px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.client-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  color: var(--paper);
  background: var(--olive);
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

@keyframes client-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.clients__foot {
  margin-top: clamp(20px, 2.4vw, 32px);
}

.clients__foot p {
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

/* ---------- Footer gallery: a sliding, square-cornered strip ---------- */
.footer-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.footer-gallery__track {
  display: flex;
  width: max-content;
  animation: footer-drift 58s linear infinite;
}

.footer-gallery:hover .footer-gallery__track,
.footer-gallery:focus-within .footer-gallery__track {
  animation-play-state: paused;
}

.footer-gallery__item {
  display: block;
  width: clamp(150px, 15vw, 240px);
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #0f110c;
  cursor: pointer;
}

.footer-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity 0.3s ease, transform 0.6s var(--ease);
}

.footer-gallery__item:hover img,
.footer-gallery__item:focus-visible img {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes footer-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* ---------- Portfolio responsive ---------- */
@media (max-width: 1000px) {
  .work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-card.is-feature {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 720px) {
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .work-card.is-feature {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16 / 11;
  }

  .work-card__cue,
  .work-card.is-feature .work-card__cue {
    width: 46px;
    height: 46px;
  }

  .work-card__cue svg,
  .work-card.is-feature .work-card__cue svg {
    width: 17px;
    height: 17px;
  }

  .work-card__copy strong {
    font-size: 0.72rem;
  }

  .work-head h2 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .client-marquee__item {
    min-height: 76px;
    font-size: 0.7rem;
  }

  .client-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-marquee__track,
  .footer-gallery__track {
    animation: none;
  }

  .work-card__open > img,
  .work-card__cue,
  .footer-gallery__item img {
    transition: none;
  }
}

/* ============================================================
   Real icon set
   Lucide (ISC) for the interface, Simple Icons (CC0) for brands.
   A rule aimed inside a <use> never reaches the shadow tree it
   builds, so fill and stroke are set on the <svg> that uses it.
   ============================================================ */
svg:has(use[href^="#icon-"]) {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

svg:has(use[href="#icon-play"]),
svg:has(use[href="#icon-pause"]),
svg:has(use[href="#icon-star"]),
svg:has(use[href="#icon-instagram"]),
svg:has(use[href="#icon-youtube"]),
svg:has(use[href="#icon-facebook"]),
svg:has(use[href="#icon-tiktok"]),
svg:has(use[href="#icon-whatsapp"]) {
  fill: currentColor;
  stroke: none;
}

/* Lucide's play glyph is already optically centred. */
.hero__open svg:has(use[href="#icon-play"]),
.player__hit-icon svg:has(use[href="#icon-play"]) {
  margin-left: 0;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

/* ---------- Mobile navigation sheet ---------- */
@media (max-width: 1000px) {
  .site-nav {
    position: fixed;
    z-index: 200;
    inset: 0;
    display: grid;
    width: 100%;
    max-width: none;
    height: 100svh;
    padding: max(18px, env(safe-area-inset-top)) 20px max(22px, env(safe-area-inset-bottom));
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    background: var(--khaki);
    box-shadow: none;
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    justify-items: stretch;
    justify-content: stretch;
    gap: 22px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.3s var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    transform: none;
  }

  .site-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(23, 20, 14, 0.12);
    gap: 16px;
  }

  .brand--nav {
    display: flex;
    align-items: center;
    gap: 11px;
  }

  .brand--nav img {
    width: 44px;
    height: 44px;
  }

  .brand--nav span {
    display: flex;
    flex-direction: column;
  }

  .brand--nav strong {
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .brand--nav small {
    color: var(--olive);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .site-nav__close {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    padding: 0;
    border: 1px solid rgba(23, 20, 14, 0.18);
    border-radius: 50%;
    color: var(--ink);
    background: transparent;
    place-items: center;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  }

  .site-nav__close svg {
    width: 19px;
    height: 19px;
  }

  .site-nav__close:hover,
  .site-nav__close:focus-visible {
    border-color: var(--olive);
    color: var(--paper);
    background: var(--olive);
  }

  .site-nav__links {
    display: flex;
    align-content: start;
    flex-direction: column;
    gap: 2px;
  }

  .site-nav__links a {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(23, 20, 14, 0.08);
    color: var(--ink);
    font-size: clamp(1.5rem, 7vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    text-decoration: none;
  }

  .site-nav__links a::after {
    display: none;
  }

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

  .site-nav__socials {
    display: flex;
    gap: 10px;
  }

  .site-nav__socials a {
    display: grid;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(23, 20, 14, 0.16);
    border-radius: 50%;
    color: var(--ink);
    place-items: center;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  }

  .site-nav__socials svg {
    width: 20px;
    height: 20px;
  }

  .site-nav__socials a:hover,
  .site-nav__socials a:focus-visible {
    border-color: var(--olive);
    color: var(--paper);
    background: var(--olive);
  }

  .site-nav__actions {
    display: grid;
    gap: 10px;
  }

  .site-nav__actions .button {
    width: 100%;
    min-height: 54px;
    justify-content: center;
  }

  .button--ghost {
    border-color: rgba(23, 20, 14, 0.22);
    color: var(--ink);
    background: transparent;
  }

  .button--ghost:hover,
  .button--ghost:focus-visible {
    border-color: var(--olive);
    color: var(--paper);
    background: var(--olive);
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .contact-fab {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.84);
  }
}

@media (min-width: 1001px) {
  .site-nav__head,
  .site-nav__socials,
  .site-nav__actions {
    display: none;
  }

  .site-nav__links {
    display: contents;
  }
}

/* ---------- Hero deck on small screens ---------- */
/* A steep scale curve made the neighbours read as cut-off fragments beside the
   centre card. Flatter scaling and a real gap make it read as one row. */
@media (max-width: 860px) {
  .hero-wall {
    --card-width: clamp(150px, 43vw, 196px);
  }

  .hero-wall__stage {
    height: calc(var(--card-height) * 1.1);
  }
}

@media (max-width: 520px) {
  .hero-wall {
    --card-width: clamp(142px, 42vw, 176px);
  }
}

/* ============================================================
   AUTHORITATIVE OVERRIDE — client communities + contact footer
   This final block supersedes the retired client marquee and dark
   gallery footer above. Keep it last so these layouts stay canonical.
   ============================================================ */

/* A calm wordmark wall: truthful client communities, never placeholder brands. */
.clients {
  padding: clamp(72px, 8vw, 124px) 0;
  overflow: clip;
  background: #f5f0e6;
}

.clients .shell {
  display: grid;
  gap: clamp(30px, 4vw, 56px);
}

.clients .section-title.clients__heading {
  display: grid;
  max-width: none;
  margin: 0;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.55fr);
  align-items: end;
  column-gap: clamp(36px, 8vw, 128px);
}

.clients__heading .eyebrow,
.clients__heading h2 {
  grid-column: 1;
}

.clients__heading h2 {
  max-width: 720px;
  font-size: clamp(2.8rem, 6vw, 6.4rem);
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.clients__heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 42ch;
  margin: 0 0 0.4em;
  color: var(--ink-soft);
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  line-height: 1.65;
}

.client-wall {
  padding: clamp(12px, 1.6vw, 20px);
  border: 1px solid rgba(86, 105, 51, 0.13);
  border-radius: clamp(22px, 2.4vw, 34px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 75px rgba(44, 45, 33, 0.07);
}

.client-wall__grid {
  display: grid;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: clamp(15px, 1.8vw, 24px);
  background: rgba(255, 255, 255, 0.56);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.client-wall__grid li {
  position: relative;
  display: flex;
  min-height: clamp(142px, 14vw, 194px);
  align-items: center;
  justify-content: center;
  padding: clamp(22px, 3vw, 42px);
  border-right: 1px solid rgba(23, 20, 14, 0.08);
  border-bottom: 1px solid rgba(23, 20, 14, 0.08);
  gap: clamp(13px, 1.5vw, 21px);
  color: #ad8d58;
  text-align: left;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.client-wall__grid li:nth-child(3n) {
  border-right: 0;
}

.client-wall__grid li:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.client-wall__grid li:hover {
  color: var(--olive);
  background: rgba(239, 234, 220, 0.62);
}

.client-wall__mark {
  display: grid;
  width: clamp(46px, 4.5vw, 62px);
  height: clamp(46px, 4.5vw, 62px);
  flex: 0 0 auto;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.82rem, 1.1vw, 1rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.client-wall__grid li:nth-child(2n) .client-wall__mark {
  border-radius: 15px 5px 15px 5px;
  font-family: inherit;
  font-weight: 800;
}

.client-wall__grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.65vw, 1.48rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.client-wall__grid li:nth-child(2n) strong {
  font-family: inherit;
  font-size: clamp(0.88rem, 1.25vw, 1.12rem);
  font-weight: 750;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

/* Light, planning-led footer inspired by the supplied contact-directory rhythm. */
.site-footer {
  padding-top: clamp(24px, 4vw, 56px);
  color: var(--ink);
  background: #fbfaf7;
}

.footer-contact-panel {
  display: grid;
  min-height: 290px;
  align-items: center;
  padding: clamp(32px, 4.6vw, 70px);
  border: 1px solid rgba(23, 20, 14, 0.08);
  border-radius: clamp(24px, 3vw, 42px);
  background: #f4efe4;
  box-shadow: 0 22px 70px rgba(44, 45, 33, 0.06);
  grid-template-columns: minmax(130px, 0.48fr) minmax(250px, 0.86fr) minmax(480px, 1.7fr);
  gap: clamp(28px, 4.5vw, 76px);
}

.footer-contact-panel__visual {
  position: relative;
  width: clamp(124px, 12vw, 172px);
  aspect-ratio: 1;
  isolation: isolate;
  justify-self: center;
}

.footer-contact-panel__visual::before {
  position: absolute;
  z-index: -1;
  inset: -13%;
  border-radius: 46% 54% 55% 45%;
  background: #e8cd8c;
  content: "";
  transform: rotate(-9deg);
}

.footer-contact-panel__visual img {
  width: 100%;
  height: 100%;
  border-radius: 48% 52% 44% 56% / 52% 45% 55% 48%;
  object-fit: cover;
  object-position: 52% 50%;
  filter: saturate(0.8) contrast(0.96);
}

.footer-contact-panel__orbit {
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(86, 105, 51, 0.38);
  border-radius: 50%;
}

.footer-contact-panel__orbit--one {
  top: -14px;
  right: 1px;
}

.footer-contact-panel__orbit--two {
  right: -19px;
  bottom: 22px;
  width: 10px;
  height: 10px;
  background: var(--olive);
}

.footer-contact-panel__copy .eyebrow {
  margin-bottom: 13px;
  color: var(--olive);
}

.footer-contact-panel__copy h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.footer-contact-panel__copy > p:last-child {
  max-width: 49ch;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

.footer-contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
}

.footer-contact-card {
  display: flex;
  min-width: 0;
  min-height: 150px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px 14px;
  border: 1px solid rgba(23, 20, 14, 0.09);
  border-radius: 19px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 22px rgba(44, 45, 33, 0.05);
  gap: 13px;
  text-align: center;
  transition: color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.footer-contact-card:hover,
.footer-contact-card:focus-visible {
  border-color: rgba(86, 105, 51, 0.34);
  color: var(--olive);
  box-shadow: 0 15px 34px rgba(44, 45, 33, 0.1);
  transform: translateY(-4px);
}

.footer-contact-card__icon {
  display: grid;
  width: 45px;
  height: 45px;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
}

.footer-contact-card__icon svg {
  width: 19px;
  height: 19px;
}

.footer-contact-card > span:last-child {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.footer-contact-card strong {
  font-size: 0.72rem;
  line-height: 1.2;
}

.footer-contact-card small {
  color: var(--ink-soft);
  font-size: 0.62rem;
}

.site-footer__main.footer-directory {
  display: grid;
  padding-top: clamp(62px, 8vw, 104px);
  padding-bottom: clamp(54px, 7vw, 88px);
  border: 0;
  grid-template-columns: minmax(260px, 1.55fr) minmax(130px, 0.72fr) minmax(150px, 0.82fr) minmax(225px, 1fr);
  gap: clamp(36px, 6vw, 92px);
}

.footer-directory .brand--footer {
  color: var(--ink);
}

.footer-directory .brand--footer img {
  width: 54px;
  height: 54px;
  filter: none;
}

.footer-directory .brand--footer small,
.footer-directory .footer-column h2 {
  color: var(--olive);
}

.footer-directory__brand > p {
  max-width: 38ch;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 0.83rem;
  line-height: 1.6;
}

.footer-directory .footer-socials {
  gap: 9px;
  margin-top: 25px;
}

.footer-directory .social-link,
.site-footer__bottom .social-link {
  border-color: rgba(23, 20, 14, 0.16);
  color: var(--ink);
  background: transparent;
}

.footer-directory .social-link:hover,
.footer-directory .social-link:focus-visible,
.site-footer__bottom .social-link:hover,
.site-footer__bottom .social-link:focus-visible {
  border-color: var(--olive);
  color: #fff;
  background: var(--olive);
}

.footer-directory .footer-column {
  gap: 11px;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.footer-directory .footer-column h2 {
  margin-bottom: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
}

.footer-directory .footer-column a:not(.button) {
  max-width: 100%;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.footer-directory .footer-column a:not(.button):hover,
.footer-directory .footer-column a:not(.button):focus-visible {
  color: var(--olive);
}

.footer-directory address.footer-column {
  font-style: normal;
}

.site-footer__bottom {
  display: grid;
  min-height: 82px;
  border-top-color: rgba(23, 20, 14, 0.11);
  color: var(--ink-soft);
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  font-size: 0.62rem;
}

.site-footer__bottom > span:nth-child(2) {
  text-align: center;
}

.site-footer__bottom .footer-back-to-top {
  justify-self: end;
}

@media (max-width: 1100px) {
  .footer-contact-panel {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .footer-contact-actions {
    grid-column: 1 / -1;
  }

  .footer-contact-card {
    min-height: 124px;
  }

  .site-footer__main.footer-directory {
    grid-template-columns: minmax(250px, 1.35fr) repeat(3, minmax(130px, 1fr));
    gap: 34px;
  }
}

@media (max-width: 820px) {
  .clients .section-title.clients__heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .clients__heading .eyebrow,
  .clients__heading h2,
  .clients__heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

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

  .client-wall__grid li,
  .client-wall__grid li:nth-child(3n) {
    border-right: 1px solid rgba(23, 20, 14, 0.08);
    border-bottom: 1px solid rgba(23, 20, 14, 0.08);
  }

  .client-wall__grid li:nth-child(2n) {
    border-right: 0;
  }

  .client-wall__grid li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .site-footer__main.footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-directory__brand,
  .footer-directory .footer-column--contact {
    grid-column: 1 / -1;
  }

  .footer-directory .footer-column--contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-directory .footer-column--contact h2,
  .footer-directory .footer-column--contact p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .clients {
    padding: 66px 0;
  }

  .clients .shell {
    gap: 28px;
  }

  .clients__heading h2 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .client-wall {
    padding: 8px;
    border-radius: 21px;
  }

  .client-wall__grid {
    border-radius: 14px;
  }

  .client-wall__grid li {
    min-height: 128px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 19px 14px;
    gap: 12px;
  }

  .client-wall__mark {
    width: 40px;
    height: 40px;
    font-size: 0.73rem;
  }

  .client-wall__grid strong,
  .client-wall__grid li:nth-child(2n) strong {
    font-size: clamp(0.76rem, 3.7vw, 0.93rem);
  }

  .site-footer {
    padding-top: 14px;
  }

  .footer-contact-panel {
    min-height: 0;
    padding: 31px 22px 24px;
    border-radius: 24px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-contact-panel__visual {
    width: 116px;
    justify-self: start;
    margin-left: 12px;
  }

  .footer-contact-panel__copy h2 {
    max-width: 12ch;
    font-size: clamp(2.25rem, 11.5vw, 3.4rem);
  }

  .footer-contact-actions {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .footer-contact-card {
    min-height: 78px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    padding: 14px 17px;
    border-radius: 16px;
    gap: 13px;
    text-align: left;
  }

  .footer-contact-card__icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
  }

  .site-footer__main.footer-directory {
    padding-top: 60px;
    padding-bottom: 50px;
    grid-template-columns: 1fr;
    gap: 39px;
  }

  .footer-directory__brand,
  .footer-directory .footer-column--contact {
    grid-column: auto;
  }

  .footer-directory .footer-column--contact {
    display: flex;
  }

  .footer-directory .footer-column--contact h2,
  .footer-directory .footer-column--contact p {
    grid-column: auto;
  }

  .site-footer__bottom {
    min-height: 0;
    padding-top: 25px;
    padding-bottom: max(25px, env(safe-area-inset-bottom));
    grid-template-columns: 1fr auto;
    gap: 12px 18px;
  }

  .site-footer__bottom > span:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
  }

  .site-footer__bottom .footer-back-to-top {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-contact-card {
    transition: none;
  }
}

/* ============================================================
   September mobile navigation, player and interface polish
   Full-screen menu, true SVG cues and single-row film controls.
   ============================================================ */
.text-link__icon {
  position: relative;
  display: inline-grid;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-left: 2px;
  place-items: center;
}

.text-link__icon svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

/* Kept in the markup as a last-resort text fallback for non-SVG clients. */
.text-link__fallback {
  display: none;
}

@media (max-width: 1000px) {
  .site-header,
  .site-header.is-scrolled {
    z-index: 240;
  }

  .menu-toggle,
  .site-header.is-scrolled .menu-toggle {
    position: relative;
    z-index: 230;
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    padding: 0;
    border: 1px solid rgba(23, 20, 14, 0.18);
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.12);
    place-items: center;
    backdrop-filter: blur(18px) saturate(155%);
    -webkit-backdrop-filter: blur(18px) saturate(155%);
    transition: color 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
  }

  .menu-toggle > span,
  .menu-toggle > span:first-child,
  .menu-toggle > span:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1px;
    border-radius: 0;
    background: currentColor;
    transform-origin: center;
    transition: transform 0.38s var(--ease), width 0.25s ease;
  }

  .menu-toggle > span:first-child {
    transform: translate(-50%, calc(-50% - 3.5px));
  }

  .menu-toggle > span:last-child {
    transform: translate(-50%, calc(-50% + 3.5px));
  }

  .menu-toggle[aria-expanded="true"] {
    position: fixed;
    top: max(18px, env(safe-area-inset-top));
    right: 20px;
    border-color: rgba(248, 242, 231, 0.28);
    color: var(--paper);
    background: rgba(248, 242, 231, 0.08);
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 200;
    inset: 0;
    display: grid;
    width: 100%;
    max-width: none;
    height: 100svh;
    padding:
      max(18px, env(safe-area-inset-top))
      clamp(22px, 7vw, 72px)
      max(24px, env(safe-area-inset-bottom));
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    color: var(--paper);
    background:
      radial-gradient(circle at 86% 8%, rgba(219, 226, 175, 0.11), transparent 31%),
      #14180f;
    box-shadow: none;
    clip-path: inset(0 0 100% 0);
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: clamp(16px, 4vh, 32px);
    opacity: 0;
    pointer-events: none;
    transform: none;
    visibility: hidden;
    transition:
      clip-path 0.52s var(--ease),
      opacity 0.26s ease,
      visibility 0s linear 0.52s;
  }

  .site-nav.is-open {
    clip-path: inset(0);
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav__head {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 0 62px 14px 0;
    border-bottom: 1px solid rgba(248, 242, 231, 0.12);
  }

  .brand--nav {
    display: inline-flex;
    align-items: center;
    color: var(--paper);
    gap: 10px;
  }

  .brand--nav img {
    width: 38px;
    height: 38px;
    padding: 3px;
    border-radius: 50%;
    background: var(--paper);
  }

  .brand--nav strong {
    color: var(--paper);
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .brand--nav small {
    margin-top: 5px;
    color: #dbe2af;
    font-family: var(--font-body);
    font-size: 0.46rem;
    letter-spacing: 0.15em;
  }

  .site-nav__close {
    display: none;
  }

  .site-nav__links {
    display: flex;
    min-height: 0;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    counter-reset: mobile-nav;
    gap: clamp(2px, 0.7vh, 8px);
  }

  .site-nav__links a {
    position: relative;
    display: flex;
    min-height: 0;
    align-items: baseline;
    padding: clamp(5px, 1vh, 10px) 0;
    border: 0;
    color: rgba(248, 242, 231, 0.96);
    font-family: var(--font-body);
    font-size: clamp(1.85rem, min(8.8vw, 7vh), 3.9rem);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.98;
    text-decoration: none;
    counter-increment: mobile-nav;
    opacity: 0;
    transform: translateY(18px);
    transition: color 0.2s ease, opacity 0.35s ease, transform 0.45s var(--ease);
  }

  .site-nav__links a::before {
    width: 26px;
    flex: 0 0 26px;
    color: #aeb67e;
    content: "0" counter(mobile-nav);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .site-nav__links a::after {
    display: none;
  }

  .site-nav.is-open .site-nav__links a {
    opacity: 1;
    transform: none;
  }

  .site-nav.is-open .site-nav__links a:nth-child(1) { transition-delay: 0.12s; }
  .site-nav.is-open .site-nav__links a:nth-child(2) { transition-delay: 0.16s; }
  .site-nav.is-open .site-nav__links a:nth-child(3) { transition-delay: 0.2s; }
  .site-nav.is-open .site-nav__links a:nth-child(4) { transition-delay: 0.24s; }
  .site-nav.is-open .site-nav__links a:nth-child(5) { transition-delay: 0.28s; }
  .site-nav.is-open .site-nav__links a:nth-child(6) { transition-delay: 0.32s; }

  .site-nav__links a:hover,
  .site-nav__links a:focus-visible,
  .site-nav__links a.is-current {
    color: #dbe2af;
  }

  .site-nav__socials {
    display: flex;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid rgba(248, 242, 231, 0.12);
    gap: 8px;
  }

  .site-nav__socials a {
    display: grid;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(248, 242, 231, 0.18);
    border-radius: 50%;
    color: var(--paper);
    background: rgba(255, 255, 255, 0.03);
    place-items: center;
  }

  .site-nav__socials svg {
    width: 17px;
    height: 17px;
  }

  .site-nav__socials a:hover,
  .site-nav__socials a:focus-visible {
    border-color: #dbe2af;
    color: #14180f;
    background: #dbe2af;
  }

  .site-nav__actions {
    display: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  .language-picker__trigger {
    min-width: 70px;
    padding: 4px 11px 4px 8px;
    gap: 8px;
  }
}

@media (max-width: 620px) {
  .site-header__inner > .brand > span {
    display: none;
  }

  .site-header__inner > .brand img {
    width: 38px;
    height: 38px;
  }

  .site-header__inner {
    padding-inline: 14px;
  }
}

@media (max-width: 480px) {
  .player__controls {
    right: 7px;
    bottom: 7px;
    left: 7px;
    min-width: 0;
    padding: 5px 6px;
    border-radius: 12px;
    grid-template-columns: 30px auto minmax(24px, 1fr) auto 30px 30px;
    gap: 3px;
  }

  .player__control {
    width: 30px;
    height: 30px;
  }

  .player__control svg {
    width: 16px;
    height: 16px;
  }

  .player__time {
    font-size: 0.5rem;
  }

  .player__range {
    width: 100%;
    min-width: 0;
    height: 20px;
  }

  .player__volume {
    width: 30px;
    min-width: 30px;
  }

  .player__range--volume {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav,
  .site-nav__links a,
  .menu-toggle > span {
    transition: none !important;
  }
}

/* ============================================================
   AUTHORITATIVE END MARKER — CLIENT WALL + LIGHT CONTACT FOOTER
   The canonical component rules live in the labelled override block
   above; later navigation/player refinements do not supersede them.
   ============================================================ */

/* ============================================================
   FINAL HERO SEAM + CURATED PORTFOLIO PASS
   Keep the moving deck optically part of the same canvas and make the
   six-item homepage edit lead into the complete player library.
   ============================================================ */
.hero,
.hero-wall,
.hero-wall__stage,
.hero-wall__ring {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero {
  background: var(--khaki);
}

.wall-card,
.wall-card:hover,
.wall-card:focus-within,
.wall-card.is-hot,
.wall-card.is-center {
  background: transparent;
  box-shadow: none;
}

.portfolio__library-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.portfolio__library-button svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}

@media (max-width: 700px) {
  .portfolio__foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .portfolio__library-button {
    width: 100%;
    justify-content: center;
  }
}

/* The navigation bar is always the viewport-wide bar. Scrolling must never
   turn it into a detached card, and the menu sheet stays viewport-sized. */
.site-header,
.site-header.is-scrolled {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(23, 20, 14, 0.08);
  border-radius: 0;
  background: rgba(231, 222, 200, 0.84);
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.site-header.is-scrolled .site-header__inner {
  min-height: 68px;
  padding-block: 0;
}

@media (max-width: 1000px) {
  .site-nav,
  .site-nav.is-open {
    position: fixed;
    inset: 0;
    width: 100vw;
    max-width: none;
    height: 100svh;
    max-height: 100svh;
    border-radius: 0;
  }
}


/* ---------- Client and partner logos ---------- */
.client-wall__grid li {
  padding: 0;
}

.client-wall__logo {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: clamp(150px, 15vw, 205px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(22px, 3vw, 40px);
  gap: 14px;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.3s var(--ease);
}

.client-wall__logo img {
  width: auto;
  max-width: min(210px, 100%);
  height: auto;
  max-height: clamp(56px, 6vw, 84px);
  object-fit: contain;
  filter: saturate(0.15) opacity(0.72);
  transition: filter 0.3s ease, transform 0.3s var(--ease);
}

.client-wall__logo span {
  color: var(--ink-soft);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.client-wall__logo:hover,
.client-wall__logo:focus-visible {
  background: rgba(239, 234, 220, 0.72);
}

.client-wall__logo:hover img,
.client-wall__logo:focus-visible img {
  filter: none;
  transform: scale(1.04);
}

.client-wall__logo:hover span,
.client-wall__logo:focus-visible span {
  color: var(--olive);
}

@media (max-width: 720px) {
  .client-wall__grid {
    grid-template-columns: 1fr;
  }

  .client-wall__grid li {
    border-right: 0;
  }

  .client-wall__grid li:last-child {
    border-bottom: 0;
  }

  .client-wall__logo {
    min-height: 132px;
  }
}

/* ============================================================
   Sub-pages
   ============================================================ */
.is-subpage .site-header {
  position: sticky;
  top: 0;
}

.page-hero {
  padding: clamp(112px, 15svh, 168px) 0 clamp(34px, 4vw, 56px);
}

.crumb {
  display: flex;
  align-items: center;
  margin-bottom: clamp(20px, 2.4vw, 30px);
  gap: 9px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crumb a {
  color: var(--ink-soft);
  text-decoration: none;
}

.crumb a:hover,
.crumb a:focus-visible {
  color: var(--olive);
  text-decoration: underline;
}

.crumb [aria-current="page"] {
  color: var(--ink);
}

.page-hero h1 {
  max-width: 18ch;
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(2.5rem, 6.4vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.page-hero h1 em {
  color: var(--olive);
  font-style: normal;
}

.page-hero__lede {
  max-width: 62ch;
  margin-top: clamp(18px, 2vw, 26px);
  color: var(--ink-soft);
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
  line-height: 1.62;
}

.page-section {
  padding: clamp(30px, 4vw, 58px) 0;
}

.prose {
  max-width: 74ch;
}

.prose h2 {
  margin-top: clamp(30px, 3.4vw, 46px);
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

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

.prose p,
.prose ul {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.72;
}

.prose ul {
  padding-left: 20px;
}

.prose li + li {
  margin-top: 7px;
}

.prose a {
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-notice {
  margin-bottom: clamp(26px, 3vw, 40px);
  padding: 18px 20px;
  border: 1px solid rgba(178, 122, 60, 0.34);
  border-radius: 16px;
  background: rgba(240, 214, 173, 0.3);
}

.page-notice strong {
  display: block;
  color: #8a5a1e;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-notice p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* ---------- Card grids ---------- */
.page-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.page-cards[data-columns="5"] {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.page-card {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.4vw, 32px);
  border: 1px solid rgba(23, 20, 14, 0.1);
  border-radius: 20px;
  background: var(--paper);
  gap: 10px;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.3s var(--ease);
}

a.page-card:hover,
a.page-card:focus-visible {
  border-color: var(--olive);
  transform: translateY(-3px);
}

.page-card__index {
  color: var(--olive);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-card h3 {
  color: var(--ink);
  font-size: clamp(1.02rem, 1.5vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.2;
}

.page-card p {
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.6;
}

.page-card__more {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  color: var(--olive);
  gap: 7px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.page-card__more svg {
  width: 14px;
  height: 14px;
}

/* ---------- Split list ---------- */
.page-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 72px);
}

.page-split__head h2 {
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.page-split__head p {
  max-width: 40ch;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.62;
}

.page-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-list li {
  display: flex;
  padding: 15px 0;
  border-top: 1px solid rgba(23, 20, 14, 0.1);
  flex-direction: column;
  gap: 5px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.page-list li:last-child {
  border-bottom: 1px solid rgba(23, 20, 14, 0.1);
}

.page-list strong {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-list--plain li {
  border: 0;
  padding: 7px 0;
}

.page-list--plain li:last-child {
  border-bottom: 0;
}

.page-note {
  max-width: 62ch;
  margin-top: clamp(20px, 2.4vw, 30px);
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* ---------- Page CTA ---------- */
.page-cta {
  margin-top: clamp(30px, 4vw, 56px);
  padding: clamp(48px, 6vw, 88px) 0;
  color: var(--paper);
  background: var(--olive-deep);
}

.page-cta h2 {
  max-width: 20ch;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.page-cta p {
  max-width: 54ch;
  margin-top: 14px;
  color: rgba(255, 250, 242, 0.7);
  font-size: 0.92rem;
  line-height: 1.62;
}

.page-cta__actions {
  display: flex;
  margin-top: clamp(22px, 2.6vw, 34px);
  gap: 10px;
  flex-wrap: wrap;
}

.page-cta .button--ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--paper);
  background: transparent;
}

.page-cta .button--ghost:hover,
.page-cta .button--ghost:focus-visible {
  border-color: var(--coral);
  color: #fff;
  background: var(--coral);
}

/* ---------- Contact page ---------- */
.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 64px);
}

.contact-page__methods {
  display: grid;
  gap: 10px;
  align-content: start;
}

.contact-page__method {
  display: grid;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(23, 20, 14, 0.12);
  border-radius: 18px;
  background: var(--paper);
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.3s var(--ease);
}

.contact-page__method:hover,
.contact-page__method:focus-visible {
  border-color: var(--olive);
  transform: translateY(-2px);
}

.contact-page__icon {
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--olive);
  place-items: center;
}

.contact-page__icon svg {
  width: 19px;
  height: 19px;
}

.contact-page__method > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.contact-page__method strong {
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-page__method small {
  overflow-wrap: anywhere;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.contact-page__arrow {
  width: 16px;
  height: 16px;
  color: var(--ink-soft);
}

.contact-page__aside h2 {
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.contact-page__aside .page-list {
  margin-top: 12px;
}

/* ---------- Portfolio page ---------- */
.work-filters--page {
  margin-bottom: clamp(18px, 2vw, 28px);
}

/* ---------- Footer legal row ---------- */
.site-footer__legal {
  display: flex;
  padding-top: clamp(22px, 2.4vw, 32px);
  gap: 10px 26px;
  flex-wrap: wrap;
}

.site-footer__legal a {
  color: rgba(255, 250, 242, 0.6);
  font-size: 0.72rem;
  text-decoration: none;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: var(--paper);
  text-decoration: underline;
}

@media (max-width: 860px) {
  .page-split,
  .contact-page {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-hero {
    padding-top: clamp(96px, 13svh, 130px);
  }

  .page-hero h1 {
    max-width: none;
  }
}


/* ---------- Partner logos with light artwork ---------- */
.client-wall__logo[data-logo-tone="light"] img {
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--olive-deep);
  filter: none;
  opacity: 0.82;
}

.client-wall__logo[data-logo-tone="light"]:hover img,
.client-wall__logo[data-logo-tone="light"]:focus-visible img {
  opacity: 1;
}


/* ============================================================
   Buttons chosen in the design lab
   Orbit Arrow (header), Film Slate (production CTAs) and
   Lens Core (hero play), lifted from source/designlab.html.
   ============================================================ */
.cta-orbit {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 5px 6px 5px 22px;
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  background: var(--olive);
  box-shadow: none;
  gap: 15px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.35s ease, transform 0.35s var(--ease);
}

.cta-orbit__icon {
  position: relative;
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--olive-dark);
  background: var(--paper);
  place-items: center;
}

.cta-orbit__icon svg {
  width: 17px;
  height: 17px;
}

.cta-orbit__icon::after {
  position: absolute;
  inset: -5px;
  border: 1px dashed rgba(255, 250, 242, 0.6);
  border-radius: inherit;
  content: "";
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cta-orbit:hover,
.cta-orbit:focus-visible {
  background: var(--coral);
  transform: translateY(-3px);
}

.cta-orbit:hover .cta-orbit__icon::after,
.cta-orbit:focus-visible .cta-orbit__icon::after {
  opacity: 1;
  animation: orbit-spin 6s linear infinite;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.cta-slate {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  margin-top: 8px;
  padding: 10px 16px 8px 22px;
  border: 0;
  border-radius: 4px 4px 13px 13px;
  color: var(--paper);
  background: #1b1d17;
  box-shadow: none;
  gap: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s var(--ease);
}

.cta-slate::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 8px;
  border-radius: 4px 4px 0 0;
  background: repeating-linear-gradient(120deg, var(--paper) 0 18px, var(--olive) 18px 36px);
  content: "";
  transform-origin: left bottom;
  transition: transform 0.4s var(--ease);
}

.cta-slate:hover,
.cta-slate:focus-visible {
  transform: translateY(2px);
}

.cta-slate:hover::before,
.cta-slate:focus-visible::before {
  transform: rotate(-8deg);
}

.cta-slate svg {
  width: 17px;
  height: 17px;
}

/* Lens Core: aperture ring with a cinematic dark centre. */
.hero__open.play-lens {
  position: relative;
  border: 0;
  background: conic-gradient(from 0deg, #8d9958, var(--olive-dark), #8d9958, var(--olive-dark), #8d9958);
  box-shadow:
    0 0 0 8px rgba(255, 250, 242, 0.14),
    0 18px 38px rgba(48, 40, 20, 0.22);
  transition: transform 0.4s var(--ease), box-shadow 0.35s ease;
}

.hero__open.play-lens::before {
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: var(--olive-deep);
  content: "";
}

.hero__open.play-lens > * {
  position: relative;
  z-index: 1;
}

.hero__open.play-lens svg {
  transition: transform 0.4s var(--ease);
}

.hero__open.play-lens:hover,
.hero__open.play-lens:focus-visible {
  background: conic-gradient(from 0deg, #8d9958, var(--olive-dark), #8d9958, var(--olive-dark), #8d9958);
  transform: rotate(45deg) scale(1.06);
}

.hero__open.play-lens:hover svg,
.hero__open.play-lens:focus-visible svg {
  transform: rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .cta-orbit,
  .cta-slate,
  .cta-slate::before,
  .hero__open.play-lens,
  .hero__open.play-lens svg {
    transition: none;
  }

  .cta-orbit:hover .cta-orbit__icon::after,
  .cta-orbit:focus-visible .cta-orbit__icon::after {
    animation: none;
  }

  .hero__open.play-lens:hover,
  .hero__open.play-lens:focus-visible {
    transform: none;
  }
}


/* The slate body is near-black, so on the dark sections it needs to lift. */
.contact .cta-slate,
.page-cta .cta-slate {
  background: #272a20;
}

/* The design-lab block above re-declares display on .cta-orbit, which sits
   later in the cascade than the rules that hide the header CTA on small
   screens. Restore that: below 1000px the action lives in the nav sheet. */
@media (max-width: 1000px) {
  .header-cta,
  .cta-orbit.header-cta {
    display: none;
  }
}

/* A partner tile with no website yet is a span, not a link. */
span.client-wall__logo {
  cursor: default;
}

span.client-wall__logo:hover {
  background: transparent;
}

span.client-wall__logo:hover img {
  filter: saturate(0.15) opacity(0.72);
  transform: none;
}
