:root {
  --ink: #1e211d;
  --black: #151713;
  --olive: #8f8c6b;
  --olive-dark: #747256;
  --sage: #b8b59a;
  --paper: #f2eee4;
  --white: #fcfaf5;
  --line: rgba(30, 33, 29, 0.18);
  --serif: "Prata", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --script: "Great Vibes", cursive;
  --page: min(1280px, calc(100vw - 72px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-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;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--black);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.arrow-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 12px 34px;
  border-bottom: 1px solid rgba(116, 114, 86, 0.34);
  background: rgba(242, 238, 228, 0.94);
  box-shadow: 0 4px 22px rgba(30, 33, 29, 0.045);
  backdrop-filter: blur(18px);
  transition: min-height 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(242, 238, 228, 0.97);
  border-color: rgba(116, 114, 86, 0.48);
  box-shadow: 0 10px 34px rgba(30, 33, 29, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  line-height: 1;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  margin-right: 11px;
  place-items: center;
  border-radius: 50% 50% 45% 55%;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
}

.brand__text {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.03em;
}

.brand__text small {
  display: inline-block;
  margin-top: 5px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-nav a,
.text-link {
  position: relative;
}

.site-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

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

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

.header-actions {
  justify-self: end;
  gap: 10px;
}

.header-contacts {
  gap: 6px;
}

.header-social,
.header-phone {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 99px;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.header-social:hover,
.header-social:focus-visible,
.header-phone:hover,
.header-phone:focus-visible {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.header-social svg,
.header-phone svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.header-max {
  width: 38px;
  padding: 0;
}

.header-max img {
  width: 21px;
  height: 21px;
}

.header-phone {
  gap: 8px;
  padding: 0 13px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
}

.header-cta {
  justify-self: end;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: color 0.25s ease, background 0.25s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.76fr);
  gap: clamp(48px, 7vw, 120px);
  min-height: 100svh;
  padding: 150px max(5vw, calc((100vw - 1280px) / 2)) 80px;
  overflow: hidden;
  background: var(--paper);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(30, 33, 29, 0.09) 0.65px, transparent 0.65px);
  background-size: 6px 6px;
  opacity: 0.32;
  content: "";
}

.hero__pattern {
  position: absolute;
  z-index: -1;
  width: 210px;
  background-image: url("assets/floral-reference.webp");
  background-repeat: no-repeat;
  background-size: 690px auto;
  mix-blend-mode: multiply;
  opacity: 0.24;
  filter: grayscale(1) contrast(0.78);
  pointer-events: none;
}

.hero__pattern--left {
  bottom: -100px;
  left: -36px;
  height: 590px;
  background-position: left bottom;
}

.hero__pattern--right {
  top: -55px;
  right: -50px;
  height: 530px;
  background-position: right top;
}

.hero__content {
  align-self: center;
  max-width: 770px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 48px;
  height: 1px;
  background: currentColor;
}

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

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

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(48px, 6vw, 94px);
}

.split-heading__line {
  display: block;
  overflow: hidden;
  padding: 0.06em 0.04em 0.09em 0;
  margin: -0.06em 0 -0.09em;
}

.split-heading__line > span {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 115%, 0) rotate(2deg);
  transform-origin: left bottom;
  animation: split-reveal 1.05s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
}

.split-heading__line:nth-child(1) > span { animation-delay: 0.12s; }
.split-heading__line:nth-child(2) > span { animation-delay: 0.23s; }
.split-heading__line:nth-child(3) > span { animation-delay: 0.34s; }

@keyframes split-reveal {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

h2 {
  font-size: clamp(42px, 5vw, 72px);
}

h1 em,
h2 em {
  color: var(--olive-dark);
  font-family: var(--script);
  font-size: 1.08em;
  font-weight: 400;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 600px;
  margin: 35px 0 0;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 17px 22px 17px 25px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, background 0.25s ease;
}

.button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.button--dark {
  color: var(--paper);
  background: var(--black);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: var(--olive-dark);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.hero__visual {
  position: relative;
  align-self: center;
  max-width: 520px;
  justify-self: end;
  perspective: 1100px;
}

.hero__photo-wrap {
  position: relative;
  width: min(37vw, 480px);
  min-width: 350px;
  aspect-ratio: 0.79;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero__photo-wrap::before {
  position: absolute;
  z-index: -1;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(30, 33, 29, 0.35);
  border-radius: 48% 48% 24px 24px;
  content: "";
}

.hero__photo-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 48% 48% 24px 24px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(0.94);
}

.hero__photo-wrap::after {
  position: absolute;
  inset: 0;
  border-radius: 48% 48% 24px 24px;
  background: linear-gradient(180deg, rgba(143, 140, 107, 0.03), rgba(30, 33, 29, 0.1));
  content: "";
  pointer-events: none;
}

.hero__scribble {
  position: absolute;
  z-index: 2;
  top: 16%;
  left: -90px;
  color: var(--white);
  font-family: var(--script);
  font-size: 24px;
  line-height: 0.9;
  text-align: center;
  transform: rotate(-11deg);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero__scribble::after {
  display: block;
  width: 58px;
  height: 24px;
  margin: 2px 0 0 auto;
  border-bottom: 1px solid var(--white);
  border-radius: 50%;
  content: "";
  transform: rotate(15deg);
}

.hero__note {
  position: absolute;
  right: auto;
  bottom: -42px;
  left: -40px;
  max-width: 270px;
  padding: 15px 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--paper);
  background: var(--olive-dark);
  box-shadow: 0 15px 35px rgba(30, 33, 29, 0.15);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.35;
}

.hero__note span {
  display: block;
  margin-bottom: 4px;
  font-family: var(--script);
  font-size: 17px;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(30, 33, 29, 0.65);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

.chapter-divider {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(50px, 1fr) auto minmax(50px, 1fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: center;
  min-height: 82px;
  padding: 16px max(5vw, calc((100vw - 1280px) / 2));
  overflow: hidden;
  color: var(--paper);
  background: var(--olive-dark);
}

.chapter-divider::after {
  position: absolute;
  top: 50%;
  right: -44px;
  width: 230px;
  height: 300px;
  background: url("assets/floral-reference.webp") right center / 560px auto no-repeat;
  content: "";
  filter: grayscale(1);
  opacity: 0.09;
  transform: translateY(-50%);
  pointer-events: none;
}

.chapter-divider span {
  height: 1px;
  background: rgba(242, 238, 228, 0.36);
}

.chapter-divider p {
  margin: 0;
  font-family: var(--script);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1;
  text-align: center;
}

.section {
  padding: 130px max(5vw, calc((100vw - 1280px) / 2));
}

.section-head {
  max-width: 800px;
}

.about {
  position: relative;
  padding-top: 105px;
  overflow: hidden;
}

.about::after {
  position: absolute;
  z-index: -1;
  top: 110px;
  right: -100px;
  width: 340px;
  height: 520px;
  background: url("assets/floral-reference.webp") right top / 730px auto no-repeat;
  filter: grayscale(1);
  opacity: 0.12;
  content: "";
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.95fr) minmax(420px, 0.9fr);
  gap: clamp(70px, 9vw, 150px);
  margin-top: 80px;
}

.about__photos {
  position: relative;
  min-height: 650px;
}

.about__photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--sage);
}

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

.about__photo--main {
  top: 0;
  left: 0;
  width: 70%;
  aspect-ratio: 0.9;
}

.about__photo--small {
  right: 0;
  bottom: 0;
  width: 50%;
  aspect-ratio: 0.76;
  border: 13px solid var(--paper);
}

.about__caption {
  position: absolute;
  z-index: 2;
  top: 55%;
  left: 2%;
  color: var(--olive-dark);
  font-family: var(--script);
  font-size: 35px;
  line-height: 0.8;
  text-align: center;
  transform: rotate(-8deg);
}

.about__story {
  align-self: center;
}

.about__intro {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.45;
}

.about__copy {
  color: rgba(30, 33, 29, 0.75);
}

.about__copy p {
  margin: 0 0 18px;
}

.about__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.about__facts div {
  display: flex;
  flex-direction: column;
}

.about__facts strong {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.about__facts span {
  margin-top: 9px;
  font-size: 11px;
  line-height: 1.4;
}

.services {
  display: grid;
  grid-template-columns: minmax(330px, 0.76fr) minmax(520px, 1.24fr);
  gap: clamp(60px, 8vw, 130px);
  color: var(--paper);
  background: var(--black);
}

.services__intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.services__intro h2 em {
  color: var(--sage);
}

.services__intro > p:last-child {
  max-width: 440px;
  margin: 34px 0 0;
  color: rgba(242, 238, 228, 0.65);
}

.services__list {
  display: grid;
  gap: 18px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  min-height: 330px;
  padding: 35px;
  overflow: hidden;
  color: var(--paper);
  background: var(--olive-dark);
}

.service-card::before,
.price-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(
    360px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    var(--spotlight-color, rgba(255, 255, 255, 0.2)),
    transparent 58%
  );
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.service-card:hover::before,
.price-card:hover::before,
.service-card:focus-within::before,
.price-card:focus-within::before {
  opacity: 1;
}

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

.service-card__number {
  font-family: var(--serif);
  font-size: 12px;
}

.service-card__icon {
  position: absolute;
  z-index: 1;
  top: 26px;
  right: 32px;
  width: 76px;
  opacity: 0.45;
}

.service-card__icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1;
}

.service-card > div:nth-child(3) {
  align-self: end;
}

.service-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.08;
}

.service-card p {
  max-width: 410px;
  margin: 20px 0 0;
  color: rgba(242, 238, 228, 0.74);
  font-size: 14px;
}

.service-card > a {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.service-card > a .arrow-icon {
  width: 21px;
  height: 21px;
}

.service-card > a:hover,
.service-card > a:focus-visible {
  color: var(--ink);
  background: var(--paper);
  transform: rotate(45deg);
}

.service-card--cream {
  --spotlight-color: rgba(143, 140, 107, 0.22);
  color: var(--ink);
  background: var(--paper);
}

.service-card--cream p {
  color: rgba(30, 33, 29, 0.7);
}

.service-card--cream > a:hover,
.service-card--cream > a:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.service-card--paper {
  color: var(--ink);
  background-color: var(--paper);
  background-image: linear-gradient(rgba(242, 238, 228, 0.8), rgba(242, 238, 228, 0.8)), url("assets/floral-reference.webp");
  background-position: center;
  background-size: cover;
}

.service-card--paper p {
  color: rgba(30, 33, 29, 0.7);
}

.service-card--paper > a:hover,
.service-card--paper > a:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.works {
  padding-bottom: 70px;
}

.works__head {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: end;
}

.works__head > p {
  max-width: 410px;
  margin: 0 0 6px;
  color: rgba(30, 33, 29, 0.7);
}

.works__gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 340px 285px;
  gap: 12px;
  margin-top: 70px;
}

.work {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--sage);
}

.work--wide {
  grid-row: span 2;
}

.work--tall {
  grid-row: span 2;
}

.work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.work--wide img {
  object-position: 46% center;
}

.work:hover img {
  transform: scale(1.035);
}

.work::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 16, 13, 0.66));
  content: "";
}

.work figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.work figcaption span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.work figcaption strong {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.works__quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  color: var(--paper);
  background: var(--olive-dark);
}

.works__quote > span {
  font-family: var(--serif);
  font-size: 60px;
  line-height: 0.7;
}

.works__quote p {
  margin: 8px 0;
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.35;
}

.works__quote small {
  font-family: var(--script);
  font-size: 20px;
}

.portfolio {
  margin-top: 90px;
  padding-top: 52px;
  border-top: 1px solid var(--line);
}

.portfolio__head {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 40px 90px;
  align-items: end;
}

.portfolio__head > div > span {
  display: block;
  margin-bottom: 12px;
  color: var(--olive-dark);
  font-family: var(--script);
  font-size: 28px;
}

.portfolio__head h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 400;
  line-height: 1.05;
}

.portfolio__head p {
  max-width: 410px;
  margin: 0 0 5px;
  color: rgba(30, 33, 29, 0.65);
  font-size: 13px;
}

.portfolio__toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
}

.portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.portfolio__filters button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  touch-action: manipulation;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.portfolio__filters button span {
  margin-left: 7px;
  opacity: 0.58;
}

.portfolio__filters button:hover,
.portfolio__filters button:focus-visible,
.portfolio__filters button.is-active {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.portfolio__carousel-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.portfolio__carousel-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
  transition: color 0.25s ease, background 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.portfolio__carousel-controls button:hover,
.portfolio__carousel-controls button:focus-visible {
  color: var(--paper);
  background: var(--ink);
  transform: scale(1.05);
}

.portfolio__carousel-controls button:disabled {
  opacity: 0.28;
  cursor: default;
  transform: none;
}

.portfolio__carousel-controls svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio__grid {
  display: grid;
  grid-auto-columns: calc((100% - 36px) / 4);
  grid-auto-flow: column;
  gap: 12px;
  margin-top: 24px;
  padding-bottom: 2px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

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

.portfolio__item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--sage);
  cursor: zoom-in;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  text-align: left;
}

.portfolio__item[hidden] {
  display: none;
}

.portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease;
}

.portfolio__item > span {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  min-height: 40%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px 16px 15px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(15, 16, 13, 0.76));
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.portfolio__item small {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio__item strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.25;
}

.portfolio__item:hover img,
.portfolio__item:focus-visible img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.portfolio__item:hover > span,
.portfolio__item:focus-visible > span {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--paper);
  background: rgba(15, 16, 13, 0.97);
}

.portfolio-lightbox[open] {
  display: grid;
  place-items: center;
}

.portfolio-lightbox::backdrop {
  background: rgba(15, 16, 13, 0.84);
  backdrop-filter: blur(12px);
}

.portfolio-lightbox figure {
  display: flex;
  max-width: calc(100vw - 190px);
  max-height: calc(100dvh - 90px);
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.portfolio-lightbox figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100dvh - 145px);
  object-fit: contain;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.32);
}

.portfolio-lightbox figcaption {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
  padding-top: 13px;
  color: rgba(242, 238, 228, 0.84);
  font-family: var(--serif);
  font-size: 14px;
}

.portfolio-lightbox figcaption small {
  color: rgba(242, 238, 228, 0.5);
  font-family: var(--sans);
  font-size: 10px;
}

.portfolio-lightbox__close,
.portfolio-lightbox__nav {
  position: fixed;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(242, 238, 228, 0.34);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(21, 23, 19, 0.66);
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.portfolio-lightbox__close:hover,
.portfolio-lightbox__close:focus-visible,
.portfolio-lightbox__nav:hover,
.portfolio-lightbox__nav:focus-visible {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
}

.portfolio-lightbox__close svg,
.portfolio-lightbox__nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.portfolio-lightbox__close {
  top: 24px;
  right: 24px;
}

.portfolio-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.portfolio-lightbox__nav--prev {
  left: 24px;
}

.portfolio-lightbox__nav--next {
  right: 24px;
}

body.lightbox-open {
  overflow: hidden;
}

.films {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 9% 18%, rgba(143, 140, 107, 0.16), transparent 24%),
    var(--paper);
}

.films::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 330px;
  aspect-ratio: 1;
  border: 1px solid rgba(116, 114, 86, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.films__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(560px, 1.28fr);
  gap: 70px;
  align-items: center;
}

.films__head h2 {
  font-size: clamp(40px, 4.5vw, 68px);
}

.films__head h2 em {
  color: var(--olive-dark);
}

.films__head > p:last-child {
  max-width: 430px;
  margin: 30px 0 0;
  color: rgba(30, 33, 29, 0.64);
  font-size: 13px;
}

.films__videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 300px));
  gap: 18px;
  justify-content: end;
}

.video-card {
  min-width: 0;
}

.video-card--offset {
  margin-top: 72px;
}

.video-card__media {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(30, 33, 29, 0.18);
  background: var(--black);
  box-shadow: 0 24px 60px rgba(30, 33, 29, 0.15);
}

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

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 72px;
  height: 72px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(252, 250, 245, 0.75);
  border-radius: 50%;
  color: var(--white);
  background: rgba(21, 23, 19, 0.48);
  box-shadow: 0 14px 36px rgba(21, 23, 19, 0.22);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.video-card__play:hover,
.video-card__play:focus-visible {
  color: var(--ink);
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.07);
}

.video-card__play[hidden] {
  display: none;
}

.video-card__play svg {
  width: 27px;
  height: 27px;
  margin-left: 3px;
  fill: currentColor;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1;
}

.video-card__caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.video-card__caption span {
  color: rgba(30, 33, 29, 0.56);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-card__caption strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.process {
  color: var(--paper);
  background: var(--olive-dark);
}

.process h2 em {
  color: var(--white);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 80px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(242, 238, 228, 0.3);
}

.process__steps li {
  position: relative;
  min-height: 280px;
  padding: 30px 28px 20px 0;
  border-right: 1px solid rgba(242, 238, 228, 0.3);
}

.process__steps li + li {
  padding-left: 28px;
}

.process__steps li:last-child {
  border-right: 0;
}

.process__steps span {
  color: rgba(242, 238, 228, 0.55);
  font-size: 10px;
}

.process__steps h3 {
  margin: 90px 0 12px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.process__steps p {
  margin: 0;
  color: rgba(242, 238, 228, 0.68);
  font-size: 13px;
}

.price {
  position: relative;
  overflow: hidden;
}

.price__decor {
  position: absolute;
  top: 0;
  right: 0;
  width: min(25vw, 340px);
  height: 100%;
  background: url("assets/floral-reference.webp") right center / 730px auto no-repeat;
  filter: grayscale(1);
  opacity: 0.12;
  pointer-events: none;
}

.price__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 80px;
  align-items: end;
}

.price__head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.price__head > p:last-child {
  max-width: 480px;
  margin: 0 0 7px;
  color: rgba(30, 33, 29, 0.7);
}

.price__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 70px;
}

.price-card {
  --spotlight-color: rgba(143, 140, 107, 0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(242, 238, 228, 0.74);
  grid-column: span 2;
}

.price-card:nth-child(n + 4) {
  grid-column: span 3;
}

.price-card > span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 50px 0 12px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}

.price-card p {
  max-width: 310px;
  margin: 0;
  color: rgba(30, 33, 29, 0.65);
  font-size: 13px;
}

.price-card strong {
  margin-top: auto;
  padding-top: 35px;
  border-top: 1px solid var(--line);
  font-family: var(--script);
  font-size: 30px;
  font-weight: 400;
}

.price-card--accent {
  --spotlight-color: rgba(184, 181, 154, 0.24);
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 18%, rgba(184, 181, 154, 0.11), transparent 36%),
    var(--black);
  box-shadow:
    0 0 0 1px rgba(184, 181, 154, 0.58),
    0 0 38px rgba(184, 181, 154, 0.28),
    0 28px 78px rgba(21, 23, 19, 0.24);
}

.price-card--accent::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  border: 1px solid rgba(252, 250, 245, 0.48);
  background: linear-gradient(
    112deg,
    transparent 20%,
    rgba(252, 250, 245, 0.03) 37%,
    rgba(252, 250, 245, 0.3) 48%,
    rgba(184, 181, 154, 0.16) 55%,
    transparent 72%
  );
  background-position: 130% 0;
  background-size: 260% 100%;
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.price-card--accent.is-visible::after {
  animation: featured-sheen 1.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s 2 both;
}

.price-card--accent.is-visible:hover {
  box-shadow:
    0 0 0 1px rgba(252, 250, 245, 0.7),
    0 0 58px rgba(184, 181, 154, 0.48),
    0 34px 90px rgba(21, 23, 19, 0.32);
  transform: translateY(-6px);
}

@keyframes featured-sheen {
  0% {
    background-position: 130% 0;
    opacity: 0.35;
  }
  42% {
    opacity: 0.92;
  }
  100% {
    background-position: -130% 0;
    opacity: 0.55;
  }
}

.price-card--accent p {
  color: rgba(242, 238, 228, 0.66);
}

.price-card--accent strong {
  border-color: rgba(242, 238, 228, 0.25);
  color: #d8d3ab;
  font-size: 34px;
  text-shadow: 0 0 18px rgba(216, 211, 171, 0.38);
}

.price__note {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  background: rgba(242, 238, 228, 0.74);
  font-size: 13px;
  text-align: center;
}

.price__note strong {
  font-weight: 600;
}

.price__note span {
  color: rgba(30, 33, 29, 0.65);
}

.contacts {
  padding-block: 105px;
  color: var(--paper);
  background: var(--black);
}

.contacts__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px 120px;
  align-items: center;
}

.contacts h2 em {
  color: var(--sage);
}

.contacts__copy > p:last-child {
  max-width: 510px;
  margin: 32px 0 0;
  color: rgba(242, 238, 228, 0.66);
}

.contacts__links {
  border-top: 1px solid rgba(242, 238, 228, 0.22);
}

.contacts__links > a {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 19px 6px;
  border-bottom: 1px solid rgba(242, 238, 228, 0.22);
  transition: color 0.25s ease, padding 0.25s ease;
}

.contacts__links > a:hover,
.contacts__links > a:focus-visible {
  padding-inline: 14px;
  color: var(--sage);
}

.social-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

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

.social-icon--max {
  overflow: hidden;
  border-color: transparent;
}

.social-icon--max img {
  width: 36px;
  height: 36px;
}

.contacts__links a > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.contacts__links small {
  margin-bottom: 2px;
  color: rgba(242, 238, 228, 0.5);
  font-family: var(--sans);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contacts__links > a > .arrow-icon {
  width: 22px;
  height: 22px;
}

.contacts__promise {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 15px;
  padding-top: 45px;
  border-top: 1px solid rgba(242, 238, 228, 0.13);
  text-align: center;
}

.contacts__promise span {
  color: var(--sage);
}

.contacts__promise p {
  margin: 0;
  font-family: var(--script);
  font-size: 24px;
  line-height: 1.2;
}

.footer {
  padding: 45px max(5vw, calc((100vw - 1280px) / 2));
  border-top: 1px solid rgba(242, 238, 228, 0.15);
  color: rgba(242, 238, 228, 0.55);
  background: var(--black);
  font-size: 10px;
}

.footer__main,
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer__main {
  padding-bottom: 32px;
}

.footer__bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(242, 238, 228, 0.13);
}

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

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

.footer p {
  margin: 0;
}

.footer__main > p {
  max-width: 330px;
  text-align: right;
}

.hated-watermark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(242, 238, 228, 0.13);
  border-radius: 999px;
  color: rgba(242, 238, 228, 0.55);
  background: rgba(242, 238, 228, 0.025);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hated-watermark:hover,
.hated-watermark:focus-visible {
  color: var(--paper);
  border-color: rgba(184, 181, 154, 0.42);
  background: rgba(184, 181, 154, 0.09);
  transform: translateY(-1px);
}

.hated-watermark b {
  color: transparent;
  background: linear-gradient(90deg, var(--sage), var(--paper));
  background-clip: text;
  -webkit-background-clip: text;
  font-weight: 700;
}

.hated-watermark__logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(74.5%) sepia(65.9%) saturate(166%) hue-rotate(15.9deg) brightness(177%) contrast(20.4%) drop-shadow(0 0 8px rgba(184, 181, 157, 0.34));
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1.4);
}

.hated-watermark:hover .hated-watermark__logo,
.hated-watermark:focus-visible .hated-watermark__logo {
  transform: rotate(-12deg) scale(1.12);
}

.reveal {
  transform: translateY(24px);
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.reveal--delay {
  transition-delay: 0.12s;
}

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

[data-magnet] {
  cursor: pointer;
  will-change: transform;
}

@media (max-width: 1100px) {
  :root { --page: calc(100vw - 48px); }

  .site-header { padding-inline: 24px; }
  .site-nav { gap: 20px; }
  .header-cta { display: none; }
  .hero { padding-inline: 6vw; gap: 60px; }
  .hero__photo-wrap { width: 40vw; min-width: 330px; }
  .about__grid { gap: 60px; }
  .services { gap: 65px; }
  .works__gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 500px 340px; }
  .work--wide { grid-row: auto; }
  .work--tall { grid-row: auto; }
  .works__quote { min-height: 340px; }
  .portfolio__grid { grid-auto-columns: calc((100% - 24px) / 3); }
  .films__inner { grid-template-columns: minmax(250px, 0.7fr) minmax(520px, 1.3fr); gap: 40px; }
  .films__videos { grid-template-columns: repeat(2, minmax(0, 270px)); }
  .contacts__inner { gap: 60px; }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    background: rgba(242, 238, 228, 0.92);
    backdrop-filter: blur(18px);
  }

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

  .header-contacts {
    gap: 4px;
  }

  .header-social {
    display: inline-flex;
    width: 46px;
    height: 46px;
  }

  .header-phone {
    width: 46px;
    height: 46px;
    padding: 0;
  }

  .header-phone span {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 3;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 14px 10px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span:not(.sr-only) {
    position: absolute;
    top: 20px;
    left: 12px;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease;
  }

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

  .site-nav {
    position: fixed;
    z-index: 2;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    width: 100vw;
    height: 100dvh;
    min-height: 100dvh;
    color: var(--paper);
    background: var(--black);
    font-family: var(--serif);
    font-size: 28px;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  }

  .site-nav.is-open { transform: translateY(0); }
  .menu-button[aria-expanded="true"] { color: var(--paper); border-color: rgba(242, 238, 228, 0.4); }
  body.menu-open .site-header { background: var(--black); }
  body.menu-open .brand { position: relative; z-index: 3; color: var(--paper); }
  body.menu-open .brand__mark { color: var(--ink); background: var(--paper); }

  body.menu-open .header-actions {
    position: fixed;
    z-index: 3;
    right: 24px;
    bottom: 28px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  body.menu-open .header-contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  body.menu-open .header-social,
  body.menu-open .header-phone {
    display: inline-flex;
    width: auto;
    height: 48px;
    color: var(--paper);
    border-color: rgba(242, 238, 228, 0.28);
  }

  body.menu-open .header-phone {
    grid-column: 1 / -1;
    gap: 9px;
  }

  body.menu-open .header-phone span {
    display: inline;
  }

  body.menu-open .header-cta {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    color: var(--paper);
    border-color: rgba(242, 238, 228, 0.55);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 70px;
    min-height: auto;
    padding-top: 145px;
    padding-bottom: 130px;
  }

  .hero__content { max-width: 720px; }
  .hero__visual { justify-self: center; }
  .hero__photo-wrap { width: min(72vw, 520px); min-width: 0; }
  .hero__scribble { left: -50px; }
  .hero__scroll { display: none; }

  .section { padding-block: 100px; padding-inline: 24px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__photos { width: min(100%, 650px); min-height: 720px; margin-inline: auto; }
  .about__story { max-width: 680px; }

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

  .works__head { grid-template-columns: 1fr; gap: 30px; }
  .works__gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 460px 330px; }
  .portfolio__head { grid-template-columns: 1fr; gap: 24px; }
  .portfolio__toolbar { align-items: flex-start; flex-direction: column; }
  .portfolio__carousel-controls { align-self: flex-end; }
  .portfolio__grid { grid-auto-columns: calc((100% - 12px) / 2); }

  .films__inner { grid-template-columns: 1fr; gap: 50px; }
  .films__head { max-width: 680px; }
  .films__videos { grid-template-columns: repeat(2, minmax(0, 300px)); justify-content: center; }

  .process__steps { grid-template-columns: 1fr 1fr; }
  .process__steps li:nth-child(2) { border-right: 0; }
  .process__steps li:nth-child(n+3) { border-top: 1px solid rgba(242, 238, 228, 0.3); }

  .price__head { grid-template-columns: 1fr; }
  .price__cards { grid-template-columns: 1fr; }
  .price-card,
  .price-card:nth-child(n + 4) { grid-column: 1 / -1; }
  .price-card { min-height: 280px; }
  .price-card h3 { margin-top: 35px; }

  .contacts__inner { grid-template-columns: 1fr; }
  .footer { text-align: center; }
  .footer__main,
  .footer__bottom { flex-direction: column; }
  .footer__main { gap: 22px; }
  .footer__bottom { gap: 16px; }
  .footer__main > p { text-align: center; }
  .brand--footer { margin-inline: auto; }
}

@media (max-width: 600px) {
  html { scroll-padding-top: 74px; }
  .site-header { min-height: 70px; padding: 10px 16px; }
  .brand__mark { width: 38px; height: 38px; margin-right: 0; }
  .brand__text { display: none; }
  .header-social,
  .header-phone,
  .menu-button { width: 40px; min-width: 40px; height: 40px; }
  .header-max { padding-inline: 0; }
  .menu-button span:not(.sr-only) { top: 18px; left: 10px; }

  .hero { gap: 55px; padding: 120px 20px 100px; }
  .hero__pattern { width: 145px; }
  .hero__pattern--right { opacity: 0.15; }
  .hero .eyebrow { max-width: 290px; }
  h1 { font-size: clamp(42px, 13vw, 63px); line-height: 1.08; }
  h2 { font-size: clamp(37px, 11vw, 52px); }
  .hero__lead { margin-top: 28px; font-size: 15px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero__photo-wrap { width: 88vw; }
  .hero__photo-wrap::before { inset: -10px 10px 10px -10px; }
  .hero__note { bottom: -48px; left: -5px; max-width: 240px; }
  .hero__scribble { top: 18%; left: 4px; font-size: 19px; }
  .chapter-divider {
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    min-height: 68px;
    padding-inline: 18px;
  }
  .chapter-divider p { max-width: 190px; font-size: 19px; }

  .section { padding: 84px 18px; }
  .about { padding-top: 72px; }
  .eyebrow { gap: 9px; margin-bottom: 22px; font-size: 9px; }
  .eyebrow span { width: 34px; }

  .about__grid { gap: 65px; margin-top: 55px; }
  .about__photos { min-height: 510px; }
  .about__photo--main { width: 78%; }
  .about__photo--small { width: 52%; border-width: 8px; }
  .about__caption { top: 61%; left: 0; font-size: 28px; }
  .about__intro { font-size: 21px; }
  .about__copy { font-size: 14px; }
  .about__facts { gap: 12px; }
  .about__facts strong { font-size: 29px; }
  .about__facts span { font-size: 9px; }

  .services { gap: 50px; }
  .service-card { grid-template-columns: 44px 1fr; min-height: 370px; padding: 25px 22px; }
  .service-card__icon { top: 22px; right: 22px; width: 58px; }
  .service-card h3 { font-size: 31px; }
  .service-card p { padding-right: 25px; }
  .service-card > a { right: 20px; bottom: 20px; width: 44px; height: 44px; }

  .works__head { gap: 24px; }
  .works__gallery { grid-template-columns: 1fr; grid-template-rows: none; margin-top: 50px; }
  .work, .work--wide, .work--tall { height: 460px; }
  .work:nth-child(3) { height: 270px; }
  .works__quote { min-height: 300px; }
  .portfolio { margin-top: 65px; padding-top: 38px; }
  .portfolio__toolbar { gap: 18px; margin-top: 32px; }
  .portfolio__filters { display: grid; grid-template-columns: 1fr 1fr; }
  .portfolio__filters button { width: 100%; padding-inline: 10px; }
  .portfolio__carousel-controls button { width: 46px; height: 46px; }
  .portfolio__grid { grid-auto-columns: min(78vw, 330px); margin-right: -18px; padding-right: 18px; }
  .portfolio__item > span { opacity: 1; transform: none; }
  .portfolio-lightbox figure { max-width: calc(100vw - 24px); max-height: calc(100dvh - 128px); }
  .portfolio-lightbox figure img { max-height: calc(100dvh - 185px); }
  .portfolio-lightbox__close { top: 12px; right: 12px; }
  .portfolio-lightbox__nav { top: auto; bottom: 12px; transform: none; }
  .portfolio-lightbox__nav--prev { left: 12px; }
  .portfolio-lightbox__nav--next { right: 12px; }

  .films__inner { gap: 38px; }
  .films__head > p:last-child { margin-top: 24px; }
  .films__videos {
    grid-template-columns: none;
    grid-auto-columns: min(76vw, 300px);
    grid-auto-flow: column;
    justify-content: start;
    gap: 12px;
    margin-right: -18px;
    padding-right: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }
  .films__videos::-webkit-scrollbar { display: none; }
  .video-card { scroll-snap-align: start; }
  .video-card--offset { margin-top: 0; }
  .video-card__play { width: 64px; height: 64px; }

  .process__steps { grid-template-columns: 1fr; margin-top: 55px; }
  .process__steps li,
  .process__steps li + li { min-height: 230px; padding: 26px 0; border-right: 0; border-bottom: 1px solid rgba(242, 238, 228, 0.3); }
  .process__steps li:nth-child(n+3) { border-top: 0; }
  .process__steps h3 { margin-top: 65px; }

  .price__cards { margin-top: 50px; }
  .price-card { min-height: 300px; padding: 28px; }
  .price__note { align-items: center; flex-direction: column; font-size: 12px; }

  .contacts { padding-block: 80px; }
  .contacts__links > a { grid-template-columns: 46px 1fr auto; gap: 12px; }
  .contacts__links a > span:nth-child(2) { font-size: 18px; }
  .contacts__promise { padding-top: 36px; }

  .footer { padding: 40px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { transform: none; opacity: 1; filter: none; }
  .split-heading__line > span { opacity: 1; transform: none; animation: none; }
  [data-tilt-card], [data-magnet] { transform: none !important; }
  .price-card--accent.is-visible::after { animation: none; background-position: center; opacity: 0.55; }
}
