:root {
  --ink: #11100e;
  --ink-soft: #1a1815;
  --paper: #f1ece3;
  --paper-deep: #e6ded1;
  --rose: #d8bfb8;
  --wine: #6d2e2b;
  --gold: #c49a63;
  --gold-light: #e3c597;
  --line-dark: rgba(17, 16, 14, 0.18);
  --line-light: rgba(241, 236, 227, 0.2);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Avenir Next", sans-serif;
  --gutter: clamp(1.25rem, 5vw, 5.5rem);
  --section-space: clamp(5.5rem, 12vw, 10rem);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.16vw, 1.1rem);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

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

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

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 5000;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-120%);
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4000;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  min-height: 88px;
  padding: 1.1rem var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4.5rem);
  border-bottom: 1px solid transparent;
  transition: min-height 0.45s var(--ease), background 0.45s, border-color 0.45s;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(17, 16, 14, 0.9);
  border-color: rgba(241, 236, 227, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
}

.brand__mark {
  width: 34px;
  height: 34px;
  fill: var(--gold);
}

.brand__copy {
  display: grid;
  line-height: 1;
}

.brand__copy strong {
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.36em;
}

.brand__copy small {
  margin-top: 0.34rem;
  color: rgba(241, 236, 227, 0.62);
  font-family: var(--display);
  font-size: 0.76rem;
  font-style: italic;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.3rem, 2.8vw, 2.8rem);
}

.site-nav a,
.header-cta {
  color: rgba(241, 236, 227, 0.72);
  font-size: 0.69rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  color: var(--gold-light);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--gold);
  color: var(--paper);
}

.nav-toggle {
  display: none;
  padding: 0.6rem 0;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 1px;
  margin-block: 7px;
  background: var(--paper);
  transition: transform 0.35s;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-content: center;
  padding: 7rem var(--gutter) 3rem;
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.35s, visibility 0.35s, transform 0.35s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  padding: 0.25rem 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 12vw, 4.6rem);
  line-height: 1;
}

.mobile-menu p {
  margin-top: 3rem;
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: var(--section-space) var(--gutter);
}

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

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

.section--rose {
  background: var(--rose);
  color: var(--ink);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  color: rgba(17, 16, 14, 0.58);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-label::after {
  content: "";
  width: min(140px, 12vw);
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}

.section-label span {
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  letter-spacing: 0;
}

.section-label--light {
  color: rgba(241, 236, 227, 0.55);
}

.display-title {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(3.1rem, 7.2vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.88;
}

.display-title em {
  color: var(--wine);
  font-weight: 400;
}

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

.display-title--light em {
  color: var(--gold-light);
}

.kicker {
  color: var(--gold-light);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.kicker--dark {
  color: var(--wine);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.7rem;
  border: 1px solid transparent;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.4s, color 0.4s, border-color 0.4s, transform 0.4s var(--ease);
}

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

.button--filled {
  background: var(--gold);
  color: var(--ink);
}

.button--filled:hover {
  background: var(--gold-light);
}

.button--line {
  border-color: rgba(241, 236, 227, 0.42);
}

.button--line:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero__photo,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__photo img {
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  animation: hero-breathe 12s var(--ease) both;
}

@keyframes hero-breathe {
  from { transform: scale(1.06); filter: saturate(0.72); }
  to { transform: scale(1); filter: saturate(0.9); }
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.98) 0%, rgba(8, 9, 9, 0.82) 37%, rgba(8, 9, 9, 0.22) 67%, rgba(8, 9, 9, 0.42) 100%),
    linear-gradient(0deg, rgba(8, 9, 9, 0.9), transparent 38%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(940px, 82vw);
  padding: clamp(8rem, 15vh, 11rem) var(--gutter) 7rem;
}

.hero__title {
  max-width: 12ch;
  margin: 1.6rem 0 2rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(3.4rem, 7.4vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.88;
}

.hero__title em {
  color: var(--gold-light);
  font-weight: 400;
}

.hero__lead {
  max-width: 52ch;
  color: rgba(241, 236, 227, 0.78);
  font-size: clamp(1rem, 1vw + 0.75rem, 1.28rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.4rem;
}

.hero__vertical {
  position: absolute;
  top: 50%;
  right: 0.7rem;
  z-index: 3;
  color: rgba(241, 236, 227, 0.5);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.personal-note {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  padding: 2rem var(--gutter);
  background: var(--gold);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  line-height: 1.15;
}

.personal-note p {
  font-style: italic;
}

.personal-note strong {
  font-weight: 500;
}

.about__grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.about__copy .display-title {
  max-width: 9ch;
}

.lead-copy {
  max-width: 45ch;
  margin-top: 3rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1.35;
}

.about__text {
  max-width: 66ch;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  color: rgba(17, 16, 14, 0.72);
}

.about__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3.5rem;
  background: var(--line-dark);
  border-block: 1px solid var(--line-dark);
}

.about__facts div {
  padding: 1.5rem 1rem 1.5rem 0;
  background: var(--paper);
}

.about__facts strong {
  display: block;
  color: var(--wine);
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
}

.about__facts span {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about__portrait {
  position: sticky;
  top: 110px;
}

.about__portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper-deep);
}

.about__portrait-frame::before {
  position: absolute;
  inset: 1rem;
  z-index: 1;
  border: 1px solid rgba(241, 236, 227, 0.55);
  content: "";
  pointer-events: none;
}

.about__portrait img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.75) contrast(1.02);
  transition: transform 1s var(--ease), filter 0.8s;
}

.about__portrait:hover img {
  transform: scale(1.035);
  filter: saturate(0.95);
}

.about__portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.background-note {
  max-width: 1500px;
  margin: clamp(5rem, 10vw, 9rem) auto 0;
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  background: var(--ink);
  color: var(--paper);
}

.background-note img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.65);
}

.background-note div {
  padding: clamp(2.2rem, 5vw, 5.5rem);
  align-self: center;
}

.background-note h3 {
  max-width: 14ch;
  margin: 1.4rem 0 1.8rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.background-note div > p:last-child {
  max-width: 56ch;
  color: rgba(241, 236, 227, 0.66);
}

.clients {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.clients__intro {
  max-width: 40ch;
}

.clients__intro h2 {
  margin: 1.3rem 0 1.7rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.clients__intro > p:last-child {
  color: rgba(241, 236, 227, 0.58);
}

.client-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-content: start;
}

.client-mark {
  min-height: 170px;
  padding: 1.3rem 1.4rem 1rem;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(241, 236, 227, 0.12);
  transition: transform 0.4s var(--ease), background 0.4s;
}

.client-mark:hover {
  background: #fffdf8;
  transform: translateY(-4px);
}

.client-mark__logo {
  min-height: 94px;
  display: grid;
  place-items: center;
}

.client-mark__logo img {
  width: auto;
  max-width: min(180px, 82%);
  max-height: 68px;
  object-fit: contain;
}

.client-mark:nth-child(2) .client-mark__logo img {
  max-height: 82px;
}

.client-mark:nth-child(4) {
  background: var(--wine);
  color: var(--paper);
}

.client-mark:nth-child(4):hover {
  background: #7a3531;
}

.client-mark:nth-child(4) p {
  border-top-color: rgba(241, 236, 227, 0.25);
}

.client-mark__name {
  display: grid;
  place-items: center;
  color: var(--wine);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-style: italic;
  line-height: 0.95;
  text-align: center;
}

.client-mark p {
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(17, 16, 14, 0.16);
  font-size: 0.59rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-align: center;
  text-transform: uppercase;
}

.services__head {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 3rem;
  align-items: end;
  max-width: 1500px;
  margin: 0 auto clamp(4rem, 8vw, 7rem);
}

.services__head .display-title {
  max-width: 13ch;
}

.services__head > p {
  max-width: 46ch;
  color: rgba(17, 16, 14, 0.68);
}

.service-list {
  max-width: 1500px;
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
}

.service {
  position: relative;
  display: grid;
  grid-template-columns: 0.18fr 0.9fr 0.85fr 1.1fr;
  gap: clamp(1.2rem, 3vw, 4rem);
  align-items: start;
  padding: clamp(2.2rem, 4.5vw, 4.2rem) 0;
  border-bottom: 1px solid var(--line-dark);
}

.service::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: var(--paper-deep);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.55s var(--ease);
}

.service:hover::before {
  transform: scaleY(1);
}

.service > * {
  position: relative;
  z-index: 1;
}

.service__number {
  color: var(--wine);
  font-family: var(--display);
  font-size: 1.25rem;
  font-style: italic;
}

.service h3 {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 400;
  line-height: 0.95;
}

.service > p {
  color: rgba(17, 16, 14, 0.72);
}

.service ul {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  color: rgba(17, 16, 14, 0.72);
  font-size: 0.86rem;
}

.service li {
  position: relative;
  padding-left: 1.2rem;
}

.service li::before {
  position: absolute;
  left: 0;
  color: var(--wine);
  content: "—";
}

.results__head {
  max-width: 1500px;
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 3rem;
  align-items: end;
}

.results__head .display-title {
  max-width: 11ch;
  margin-top: 1.2rem;
}

.results__head > p {
  max-width: 42ch;
  color: rgba(17, 16, 14, 0.68);
}

.case-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.case {
  min-height: 235px;
  padding: clamp(1.5rem, 2.2vw, 2.2rem);
  display: flex;
  flex-direction: column;
  background: rgba(241, 236, 227, 0.36);
  border: 1px solid rgba(17, 16, 14, 0.2);
  transition: background 0.4s, transform 0.4s var(--ease);
}

.case:hover {
  background: rgba(241, 236, 227, 0.72);
  transform: translateY(-4px);
}

.case > p {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.case strong {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: auto 0 0.8rem;
  color: var(--wine);
  font-family: var(--display);
  font-size: clamp(2.6rem, 3.4vw, 4.3rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.8;
  transition: color 0.45s;
}

.case strong i {
  font-size: 0.45em;
  font-weight: 400;
}

.case h3 {
  font-family: var(--display);
  font-size: clamp(1.3rem, 1.65vw, 1.9rem);
  font-weight: 500;
  line-height: 1;
}

.case small {
  max-width: 58ch;
  margin-top: 1rem;
  font-size: 0.76rem;
}

.insights {
  max-width: 1500px;
  margin: clamp(5rem, 10vw, 9rem) auto 0;
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.insights__copy h3 {
  max-width: 12ch;
  margin: 1.2rem 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.insights__copy > p:last-child {
  max-width: 46ch;
  color: rgba(17, 16, 14, 0.68);
}

.insights__collage {
  position: relative;
  min-height: 620px;
}

.insights__collage::before {
  position: absolute;
  inset: 8% 5% 0;
  content: "";
  border: 1px solid rgba(17, 16, 14, 0.26);
  border-radius: 50%;
}

.insights__collage img {
  position: absolute;
  width: clamp(150px, 25vw, 265px);
  border: 9px solid var(--paper);
  box-shadow: 0 25px 70px rgba(70, 35, 30, 0.2);
}

.insights__collage img:nth-child(1) { top: 4%; left: 5%; transform: rotate(-7deg); }
.insights__collage img:nth-child(2) { top: 20%; left: 36%; transform: rotate(3deg); }
.insights__collage img:nth-child(3) { top: 2%; right: 1%; transform: rotate(8deg); }
.insights__collage img:nth-child(4) { right: 12%; bottom: 2%; transform: rotate(-4deg); }

.insights__collage span {
  position: absolute;
  padding: 0.35rem 0.8rem;
  background: var(--wine);
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-style: italic;
  transform: rotate(-4deg);
}

.insights__collage span:nth-of-type(1) { left: 0; bottom: 17%; }
.insights__collage span:nth-of-type(2) { right: 0; top: 38%; transform: rotate(5deg); }
.insights__collage span:nth-of-type(3) { left: 37%; bottom: 1%; transform: rotate(2deg); }

.portfolio__head {
  max-width: 1500px;
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: end;
}

.portfolio__head .display-title {
  max-width: 8ch;
}

.portfolio__head > p {
  max-width: 46ch;
  color: rgba(241, 236, 227, 0.62);
}

.reel-carousel {
  max-width: 1500px;
  margin: 0 auto;
}

.reel-carousel__controls {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.reel-carousel__controls > span {
  color: rgba(241, 236, 227, 0.55);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reel-carousel__controls > div {
  display: flex;
  gap: 0.6rem;
}

.reel-arrow {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 236, 227, 0.35);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 1.2rem;
  transition: color 0.3s, background 0.3s, border-color 0.3s, opacity 0.3s;
}

.reel-arrow:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.reel-arrow:hover:not(:disabled) {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.reel-arrow:disabled {
  cursor: default;
  opacity: 0.28;
}

.reel-grid {
  display: flex;
  gap: clamp(1rem, 1.5vw, 1.5rem);
  padding: 0.5rem 0.1rem 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reel-grid::-webkit-scrollbar {
  display: none;
}

.reel-card {
  position: relative;
  flex: 0 0 calc((100% - 4.5rem) / 4);
  min-height: 420px;
  aspect-ratio: 0.72;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--ink);
  scroll-snap-align: start;
  isolation: isolate;
  transition: color 0.45s;
}

.reel-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(17, 16, 14, 0.2) 0%, transparent 28%, rgba(17, 16, 14, 0.1) 48%, rgba(17, 16, 14, 0.96) 100%),
    linear-gradient(90deg, rgba(17, 16, 14, 0.2), transparent 35%);
  transition: background 0.55s;
}

.reel-card::after {
  position: absolute;
  inset: 0.7rem;
  z-index: 2;
  content: "";
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.45s;
}

.reel-card:hover::after {
  border-color: rgba(227, 197, 151, 0.72);
}

.reel-card__media {
  position: absolute !important;
  inset: 0;
  z-index: 0 !important;
}

.reel-card__media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.03);
  transition: transform 0.85s var(--ease), filter 0.6s;
}

.reel-card:hover .reel-card__media img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1);
}

.reel-card > * {
  position: relative;
  z-index: 3;
}

.reel-card__index {
  margin-bottom: auto;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 16, 14, 0.7);
  color: var(--gold-light);
  font-family: var(--display);
  font-style: italic;
  backdrop-filter: blur(7px);
}

.reel-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  padding-left: 0.2rem;
  border: 1px solid rgba(241, 236, 227, 0.72);
  border-radius: 50%;
  background: rgba(17, 16, 14, 0.24);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.75rem;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(5px);
  transition: background 0.4s, border-color 0.4s, transform 0.45s var(--ease);
}

.reel-card:hover .reel-card__play {
  border-color: var(--gold-light);
  background: var(--wine);
  transform: translate(-50%, -50%) scale(1.1);
}

.reel-card p {
  color: rgba(241, 236, 227, 0.72);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.reel-card strong {
  margin-top: 0.4rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.4vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
}

.reel-card i {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  color: var(--gold);
  font-style: normal;
  transition: transform 0.35s;
}

.reel-card:hover i {
  transform: translate(4px, -4px);
}

.design-work {
  max-width: 1500px;
  margin: clamp(5rem, 10vw, 9rem) auto 0;
  display: grid;
  grid-template-columns: 0.9fr repeat(3, 1fr);
  gap: 1rem;
  align-items: end;
}

.design-work__copy {
  padding: 0 2rem 1rem 0;
}

.design-work__copy h3 {
  max-width: 10ch;
  margin: 1.1rem 0 2rem;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  font-weight: 400;
  line-height: 0.92;
}

.design-work__copy a {
  display: inline-flex;
  gap: 0.7rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--gold);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.design-tile {
  overflow: hidden;
  aspect-ratio: 0.72;
  background: var(--ink-soft);
}

.design-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.design-tile:hover img {
  transform: scale(1.04);
}

.contact {
  min-height: 90svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--wine);
  color: var(--paper);
}

.contact::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.96) 0%, rgba(17, 16, 14, 0.86) 50%, rgba(17, 16, 14, 0.26) 100%),
    linear-gradient(0deg, rgba(17, 16, 14, 0.68), transparent 45%);
}

.contact__photo {
  position: absolute;
  inset: 0 0 0 42%;
}

.contact__photo img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72);
}

.contact__content {
  position: relative;
  z-index: 1;
  max-width: 1050px;
}

.contact__content .display-title {
  margin: 1.5rem 0 2rem;
}

.contact__lead {
  max-width: 52ch;
  color: rgba(241, 236, 227, 0.72);
}

.contact__links {
  max-width: 700px;
  margin-top: 3rem;
  border-top: 1px solid var(--line-light);
}

.contact__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line-light);
  transition: color 0.3s, padding-left 0.4s var(--ease);
}

.contact__links a:hover {
  padding-left: 0.8rem;
  color: var(--gold-light);
}

.contact__links span {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact__links strong {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 400;
}

.contact__place {
  margin-top: 2.5rem;
  color: var(--gold-light);
  font-family: var(--display);
  font-style: italic;
}

.site-footer {
  min-height: 120px;
  padding: 2rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--line-light);
  background: var(--ink);
}

.site-footer > p {
  color: rgba(241, 236, 227, 0.45);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

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

@media (max-width: 1100px) {
  .site-nav {
    display: none;
  }

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

  .nav-toggle {
    display: block;
  }

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

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

  .about__grid,
  .clients,
  .services__head,
  .results__head,
  .portfolio__head {
    grid-template-columns: 1fr;
  }

  .about__portrait {
    position: static;
    max-width: 520px;
  }

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

  .service ul {
    grid-column: 2 / -1;
  }

  .reel-grid {
    gap: 1.5rem;
  }

  .reel-card {
    flex-basis: calc((100% - 1.5rem) / 2);
  }

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

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

  .design-work__copy {
    grid-column: 1 / -1;
    padding-bottom: 2rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    padding-block: 0.85rem;
  }

  .header-cta {
    display: none;
  }

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

  .hero {
    min-height: 880px;
    align-items: flex-end;
  }

  .hero__photo img {
    object-position: 59% center;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(8, 9, 9, 0.98) 0%, rgba(8, 9, 9, 0.88) 44%, rgba(8, 9, 9, 0.12) 82%),
      linear-gradient(90deg, rgba(8, 9, 9, 0.65), transparent);
  }

  .hero__content {
    width: 100%;
    padding-top: 22rem;
    padding-bottom: 6rem;
  }

  .hero__title {
    font-size: clamp(3.3rem, 15vw, 5.3rem);
  }

  .hero__vertical {
    display: none;
  }

  .personal-note {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

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

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

  .about__facts div {
    padding-block: 1.2rem;
  }

  .background-note {
    grid-template-columns: 1fr;
  }

  .background-note img {
    min-height: 340px;
  }

  .client-wall {
    grid-template-columns: 1fr;
  }

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

  .service > p,
  .service ul {
    grid-column: 2;
  }

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

  .case {
    min-height: 210px;
  }

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

  .insights__collage {
    min-height: 510px;
  }

  .insights__collage img {
    width: clamp(130px, 41vw, 210px);
    border-width: 6px;
  }

  .reel-grid {
    gap: 1rem;
  }

  .reel-card {
    flex-basis: 86%;
    min-height: 480px;
    aspect-ratio: 0.75;
  }

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

  .design-work__copy {
    grid-column: auto;
  }

  .design-tile {
    aspect-ratio: 0.82;
  }

  .contact {
    min-height: 900px;
    align-items: end;
  }

  .contact::after {
    background: linear-gradient(0deg, rgba(17, 16, 14, 0.99) 0%, rgba(17, 16, 14, 0.92) 54%, rgba(17, 16, 14, 0.12) 88%);
  }

  .contact__photo {
    inset: 0;
  }

  .contact__photo img {
    height: 56%;
    object-position: center 32%;
  }

  .contact__content {
    padding-top: 17rem;
  }

  .contact__links a {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .contact__links strong {
    overflow-wrap: anywhere;
  }

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

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

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

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