:root {
  --purple: #3d0f63;
  --purple-dark: #211129;
  --orange: #ef5423;
  --orange-dark: #cf3e14;
  --ink: #151419;
  --muted: #68656d;
  --line: #dfdce2;
  --paper: #f5f4f6;
  --photo: #101014;
  --white: #ffffff;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 126px;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

section {
  scroll-margin-top: 126px;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(239, 84, 35, 0.42);
  outline-offset: 3px;
}

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

.service-bar {
  color: #fff;
  background: var(--purple-dark);
  font-size: 0.76rem;
  font-weight: 600;
}

.service-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-bar a {
  color: #fff;
  text-decoration: none;
}

.service-bar__contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.contact-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: block;
  overflow: visible;
  fill: currentColor;
}

.contact-icon--whatsapp {
  width: 22px;
  height: 22px;
}

.contact-icon--whatsapp .icon-bg {
  fill: #25d366;
}

.contact-icon--whatsapp .icon-mark,
.contact-icon--whatsapp .icon-wa {
  fill: #fff;
}

.contact-icon--whatsapp .icon-wa {
  font-family: "Inter", Arial, sans-serif;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0;
}

.contact-icon--email {
  color: var(--orange);
}

.contact-icon--phone {
  color: currentColor;
}

.service-bar__button {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.service-bar__button span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}


.service-bar__button .contact-icon {
  width: 16px;
  height: 16px;
}

.service-bar__whatsapp .contact-icon {
  width: 20px;
  height: 20px;
}

.service-bar__email:hover,
.service-bar__email:focus-visible {
  border-color: var(--orange);
  background: rgba(239, 84, 35, 0.15);
}

.service-bar__whatsapp:hover,
.service-bar__whatsapp:focus-visible {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.12);
}

.service-bar__call:hover,
.service-bar__call:focus-visible {
  border-color: var(--orange);
  background: rgba(239, 84, 35, 0.15);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 70px;
  height: 70px;
  margin-block: -4px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand__name {
  width: 133px;
  min-width: 0;
  display: grid;
  gap: 4px;
}

.brand__name strong {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.brand__name small {
  display: block;
  margin-top: 0;
  color: var(--purple);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 21px;
}

.nav-links > a:not(.button) {
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links > a:not(.button):hover {
  color: var(--purple);
}

.menu-button {
  width: 42px;
  height: 42px;
  padding: 10px;
  display: none;
  border: 0;
  background: transparent;
}

.menu-button span {
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--ink);
}

.button {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange);
  border-radius: 3px;
  color: #fff;
  background: var(--orange);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
  box-shadow: 0 5px 16px rgba(207, 62, 20, 0.18);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  box-shadow: none;
}

.button--small {
  min-height: 40px;
  padding-inline: 18px;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(16, 16, 20, 0.3);
}

.button--ghost:hover {
  border-color: #fff;
  background: rgba(16, 16, 20, 0.62);
}

.hero {
  min-height: min(650px, calc(100svh - 112px));
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--photo);
}

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

.hero__image {
  z-index: 0;
  background:
    var(--purple-dark)
    url("assets/projects/hero-custom-composite.webp") center / cover no-repeat;
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(33, 17, 41, 0.35), transparent 70%),
    linear-gradient(0deg, rgba(21, 20, 25, 0.38), transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 72px 104px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--orange);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--purple);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.7rem, 7vw, 6.4rem);
}

h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

h3 {
  font-size: 2rem;
}

.hero__lead {
  max-width: 610px;
  margin: 24px 0 31px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.hero h1::after {
  width: 68px;
  height: 5px;
  margin-top: 20px;
  display: block;
  content: "";
  background: var(--orange);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero__proof {
  position: absolute;
  bottom: 31px;
  left: 20px;
  z-index: 2;
  display: flex;
  gap: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 600;
}

.hero__proof span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__proof span::before {
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--orange);
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-strip__grid > div {
  min-width: 0;
  padding: 21px 30px;
  border-right: 1px solid var(--line);
}

.trust-strip__grid > div:first-child {
  padding-left: 0;
}

.trust-strip__grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--purple-dark);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}

.trust-strip span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.74rem;
}

.service-intro {
  position: relative;
  overflow: hidden;
  padding: 72px 0 78px;
  background: var(--paper);
}

.service-intro .section-heading,
.service-intro .service-grid {
  position: relative;
  z-index: 1;
}

.section-heading {
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.65fr);
  gap: 75px;
  align-items: end;
}

.section-heading > div {
  position: relative;
  padding-left: 18px;
}

.section-heading > div::before {
  width: 4px;
  position: absolute;
  inset: 3px auto 3px 0;
  content: "";
  background: var(--orange);
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
}

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

.service-item {
  min-width: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-item:hover,
.service-item:focus-within {
  border-color: rgba(61, 15, 99, 0.35);
  box-shadow: 0 16px 35px rgba(33, 17, 41, 0.12);
}

.service-item__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: center;
  background: var(--photo);
}

.service-item__body {
  min-height: 280px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--orange);
  transition: background 180ms ease;
}

.service-item:hover .service-item__body,
.service-item:focus-within .service-item__body {
  background: #fbf8fc;
}

.service-number {
  margin-bottom: 10px;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 0.8;
}

.service-item h3 {
  color: var(--purple-dark);
  font-size: 2.15rem;
  transition: color 180ms ease;
}

.service-item:hover h3,
.service-item:focus-within h3 {
  color: var(--purple);
}

.service-item p {
  margin: 14px 0 15px;
  color: var(--muted);
  font-size: 0.88rem;
}

.service-item ul {
  margin: 0 0 19px;
  padding: 0;
  list-style: none;
}

.service-item li {
  padding: 5px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
}

.service-item__body > a {
  margin-top: auto;
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease;
}

.service-item:hover .service-item__body > a,
.service-item:focus-within .service-item__body > a {
  color: var(--orange-dark);
}

.service-item__body > a span {
  margin-left: 5px;
  color: var(--orange);
}

.projects {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  color: #fff;
  background: var(--ink);
}

.projects > .shell {
  position: relative;
  z-index: 1;
}

.projects__heading {
  margin-bottom: 7px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.projects__heading > div {
  padding-left: 17px;
  border-left: 4px solid var(--orange);
}

.projects .eyebrow {
  color: var(--orange);
}

.projects__heading h2 {
  max-width: 760px;
}

.projects__heading > a {
  margin-bottom: 5px;
  flex: 0 0 auto;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: none;
}

.projects__heading > a span {
  margin-left: 6px;
  color: var(--orange);
}

.project-list {
  display: grid;
}

.project {
  padding: 48px 0;
  display: grid;
  grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
  gap: 44px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.project:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.project--reverse {
  grid-template-columns: minmax(0, 1.42fr) minmax(250px, 0.58fr);
}

.project--reverse .project__copy {
  order: 2;
}

.project--reverse .project__images {
  order: 1;
}

.project__type {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project__copy h3 {
  max-width: 440px;
  margin-top: 14px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.project__copy p {
  max-width: 420px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.88rem;
}

.project__images {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
  gap: 10px;
}

.project__images figure {
  min-width: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--photo);
}

.project__images img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.project__images figcaption {
  position: absolute;
  bottom: 11px;
  left: 11px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(21, 20, 25, 0.86);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-preview {
  position: relative;
  overflow: hidden;
  padding: 72px 0 78px;
  color: #fff;
  background: var(--purple-dark);
}

.gallery-preview__heading,
.gallery-preview__grid {
  position: relative;
  z-index: 1;
}

.gallery-preview__heading {
  margin-bottom: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
}

.gallery-preview__heading h2 {
  max-width: 690px;
}

.gallery-preview__heading > a {
  margin-bottom: 5px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}

.gallery-preview__heading > a span {
  margin-left: 7px;
  color: var(--orange);
}

.gallery-preview__grid {
  height: 400px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(190px, 0.72fr) minmax(145px, 0.48fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gallery-preview__item {
  min-width: 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--photo);
  outline: 2px solid transparent;
  outline-offset: -2px;
  text-decoration: none;
  transition: outline-color 140ms ease;
}

.gallery-preview__item--wide,
.gallery-preview__item--tall {
  grid-row: 1 / 3;
}

.gallery-preview__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-preview__item--tall img {
  object-position: center;
}

.gallery-preview__item:last-child img {
  object-position: center top;
}

.gallery-preview__item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(16, 8, 20, 0.78), transparent 48%);
}

.gallery-preview__item:hover,
.gallery-preview__item:focus-visible {
  outline-color: var(--orange);
}

.gallery-preview__item > span {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 12px;
  left: 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.gallery-page {
  background: var(--photo);
}

.gallery-page__intro {
  position: relative;
  overflow: hidden;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  background: var(--purple-dark);
}

.gallery-page__intro > .shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 150px minmax(250px, 0.7fr) minmax(260px, 1fr);
  gap: 24px;
  align-items: center;
}

.gallery-page__title {
  position: relative;
  padding-left: 17px;
}

.gallery-page__title::before {
  width: 3px;
  position: absolute;
  inset: -4px auto -4px 0;
  content: "";
  background: var(--orange);
}

.gallery-page__intro h1 {
  font-size: 2.35rem;
  line-height: 1;
  white-space: nowrap;
}

.gallery-page__meta {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  justify-self: end;
  white-space: nowrap;
}

.back-link {
  margin: 0;
  display: inline-block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.back-link span {
  margin-right: 7px;
  color: var(--orange);
}

.masonry-gallery {
  padding: 10px 0 60px;
  background: var(--photo);
}

.masonry-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 126px;
  gap: 10px;
}

.masonry-card {
  min-width: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #1b1a20;
  outline: 2px solid transparent;
  outline-offset: -2px;
  transition: outline-color 140ms ease;
}

.masonry-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.masonry-card::after {
  position: absolute;
  z-index: 1;
  inset: 38% 0 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(0deg, rgba(15, 8, 18, 0.9), transparent);
}

.masonry-card figcaption {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 14px;
  left: 16px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  color: #fff;
}

.masonry-card strong,
.masonry-card span {
  display: block;
}

.masonry-card strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
}

.masonry-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.65rem;
  text-align: right;
}

.masonry-card--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.masonry-card--tall {
  grid-row: span 3;
}

.masonry-card--large {
  grid-column: span 2;
  grid-row: span 3;
}

.masonry-card:hover {
  outline-color: var(--orange);
}

.masonry-card:hover strong {
  color: var(--orange);
}

.gallery-cta {
  padding: 76px 0;
  color: #fff;
  background: var(--purple);
}

.gallery-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.gallery-cta h2 {
  max-width: 700px;
}

.process {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.process__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 95px;
}

.process__intro p:not(.eyebrow) {
  max-width: 450px;
  color: var(--muted);
}

.text-cta {
  margin-top: 22px;
  display: inline-block;
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.text-cta span {
  margin-left: 6px;
  color: var(--orange);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 27px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 19px;
  border-top: 1px solid #cecad1;
}

.steps li:last-child {
  border-bottom: 1px solid #cecad1;
}

.steps > li > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--purple);
  font-size: 0.8rem;
  font-weight: 750;
}

.steps h3 {
  color: var(--purple-dark);
  font-size: 1.55rem;
}

.steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.service-area {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.service-area__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 85px;
  align-items: center;
}

.service-area__layout h2 {
  max-width: 560px;
  font-size: clamp(2.7rem, 4vw, 4rem);
}

.service-area__places {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.service-area__places span {
  padding: 12px 5px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.service-area__places span:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.service-area__places span:nth-child(even) {
  padding-left: 18px;
}

.service-area__places span:last-child {
  grid-column: 1 / -1;
  padding-left: 5px;
  border-right: 0;
  color: var(--purple);
  font-weight: 800;
}

.film {
  position: relative;
  overflow: hidden;
  padding: 66px 0;
  color: #fff;
  background: var(--purple);
}

.film__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 90px;
  align-items: center;
}

.film__status {
  display: inline-block;
  margin-bottom: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.film .eyebrow {
  color: var(--orange);
}

.film h2 {
  max-width: 600px;
}

.film__lead {
  max-width: 560px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.71);
  font-size: 1rem;
}

.film-services {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.film-services > span {
  padding: 15px 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.86rem;
  font-weight: 600;
}

.faq {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background: var(--paper);
}

.faq__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
}

.faq__heading {
  position: sticky;
  top: 30px;
  align-self: start;
}

.faq__heading p:last-child {
  max-width: 390px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid #cecbd1;
}

.faq-item {
  border-bottom: 1px solid #cecbd1;
}

.faq-item button {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid #99959e;
  border-radius: 50%;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
}

.faq-item button[aria-expanded="true"] span {
  color: #fff;
  border-color: var(--purple);
  background: var(--purple);
  transform: rotate(45deg);
}

.faq-answer p {
  max-width: 640px;
  margin: -6px 50px 23px 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.quote {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  color: #fff;
  background: var(--ink);
}

.quote__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 85px;
}

.quote__intro > p:not(.eyebrow) {
  margin: 23px 0 29px;
  color: rgba(255, 255, 255, 0.65);
}

.quote__contacts {
  width: min(360px, 100%);
  display: grid;
  gap: 10px;
}

.quote__contacts a {
  min-height: 44px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.quote__contacts a:hover,
.quote__contacts a:focus-visible {
  border-color: rgba(239, 84, 35, 0.75);
  background: rgba(255, 255, 255, 0.06);
}

.quote__contacts .contact-icon {
  width: 20px;
  height: 20px;
}

.quote__contacts .contact-icon--whatsapp {
  width: 23px;
  height: 23px;
}

.quote__contacts span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.quote-form {
  padding: 34px 38px 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 6px solid var(--orange);
  border-radius: 4px;
  color: var(--ink);
  background: #f8f7f9;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.quote-form__heading {
  margin: 0 0 25px;
  padding: 0 0 17px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid #d7d3da;
}

.quote-form__heading span {
  color: var(--purple-dark);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.quote-form__heading p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: right;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.quote-form label,
.quote-form legend {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  margin: 8px 0 17px;
  padding: 12px 13px;
  border: 1px solid #cbc7cf;
  border-radius: 3px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(239, 84, 35, 0.11);
}

.quote-form fieldset {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

.service-choice {
  margin-top: 9px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.service-choice label {
  position: relative;
  display: block;
  cursor: pointer;
}

.service-choice input {
  width: 1px;
  height: 1px;
  position: absolute;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.service-choice span {
  min-height: 43px;
  padding: 0 12px 0 36px;
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #c7c4ca;
  border-radius: 3px;
  color: var(--ink);
  background: #fff;
  font-size: 0.72rem;
  line-height: 1.18;
}

.service-choice span::before {
  width: 13px;
  height: 13px;
  position: absolute;
  top: 50%;
  left: 13px;
  content: "";
  border: 1px solid #8d8991;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}

.service-choice label:hover span {
  border-color: var(--orange);
}

.service-choice input:checked + span {
  color: #fff;
  border-color: var(--purple);
  background: var(--purple);
}

.service-choice input:checked + span::before {
  border-color: #fff;
  background: var(--orange);
  box-shadow: inset 0 0 0 3px var(--purple);
}

.service-choice input:focus-visible + span {
  outline: 2px solid rgba(239, 84, 35, 0.38);
  outline-offset: 2px;
}

.upload-group {
  margin: 2px 0 22px;
}

.upload-group__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  font-weight: 700;
}

.upload-field {
  min-height: 92px;
  padding: 17px;
  display: flex !important;
  align-items: center;
  gap: 15px;
  border: 1px dashed #aaa4ae;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.upload-field:hover,
.upload-field.is-dragging {
  border-color: var(--orange);
  background: #fff8f5;
}

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

.upload-field__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
  font-size: 1.4rem;
  line-height: 1;
}

.upload-field strong,
.upload-field small {
  display: block;
}

.upload-field strong {
  font-size: 0.82rem;
}

.upload-field small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
}

.file-list:not(:empty) {
  margin-top: 9px;
}

.file-item {
  padding: 9px 11px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
}

.file-item span:first-child {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-error {
  padding: 10px 11px;
  color: #9d2b0b;
  background: #fff0ea;
  font-size: 0.7rem;
  font-weight: 700;
}

.button--submit {
  width: 100%;
  border: 0;
  box-shadow: 0 7px 18px rgba(207, 62, 20, 0.2);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

footer {
  padding: 31px 0;
  border-top: 1px solid #2b2930;
  color: rgba(255, 255, 255, 0.57);
  background: var(--ink);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 38px;
  align-items: center;
  font-size: 0.74rem;
}

.footer__inner p {
  margin: 0;
}

.brand--footer {
  color: #fff;
}

.brand--footer img {
  width: 62px;
  height: 62px;
}

.brand--footer .brand__name small {
  color: var(--orange);
}

.mobile-actions {
  display: none;
}

.error-page {
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: #fff;
  background: var(--ink);
}

.error-page__inner {
  padding-block: 64px;
}

.error-page .brand {
  margin-bottom: 46px;
  color: #fff;
}

.error-page h1 {
  max-width: 620px;
}

.error-page p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
}


.masonry-card:not(.masonry-card--wide):not(.masonry-card--tall):not(.masonry-card--large):not(.is-wide):not(.is-tall) {
  grid-row: span 2;
}

.masonry-card.is-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.masonry-card.is-tall {
  grid-row: span 3;
}

.masonry-card[role="button"] {
  cursor: zoom-in;
}

.masonry-card[role="button"]:focus-visible {
  outline-color: var(--orange);
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  padding: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(8, 7, 10, 0.88);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 150ms ease,
    visibility 150ms linear;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox__panel {
  width: min(1120px, 100%);
  max-height: 92svh;
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
}

.gallery-lightbox__image {
  max-width: 100%;
  max-height: calc(92svh - 70px);
  margin: auto;
  display: block;
  object-fit: contain;
  background: #101014;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

.gallery-lightbox__caption {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(21, 20, 25, 0.74);
  cursor: pointer;
}

.gallery-lightbox__close {
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  font-size: 1.5rem;
  line-height: 1;
}

.gallery-lightbox__nav {
  top: 50%;
  width: 44px;
  height: 58px;
  transform: translateY(-50%);
  font-size: 1.7rem;
}

.gallery-lightbox__nav--prev {
  left: -18px;
}

.gallery-lightbox__nav--next {
  right: -18px;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
  border-color: var(--orange);
  background: var(--orange);
}

@media (max-width: 620px) {
  .gallery-lightbox {
    padding: 16px;
  }

  .gallery-lightbox__close {
    top: 0;
    right: 0;
  }

  .gallery-lightbox__nav {
    width: 38px;
    height: 52px;
  }

  .gallery-lightbox__nav--prev {
    left: 0;
  }

  .gallery-lightbox__nav--next {
    right: 0;
  }
}
@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;
  }
}

@media (hover: none) {
  .button:hover {
    border-color: var(--orange);
    background: var(--orange);
    box-shadow: none;
  }

  .button--ghost:hover {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(16, 16, 20, 0.3);
  }

  .service-item:hover:not(:focus-within) {
    border-color: var(--line);
    box-shadow: none;
  }

  .service-item:hover .service-item__body {
    background: #fff;
  }

  .service-item:hover h3 {
    color: var(--purple-dark);
  }

  .service-item:hover .service-item__body > a {
    color: var(--purple);
  }

  .gallery-preview__item:hover:not(:focus-visible),
  .masonry-card:hover {
    outline-color: transparent;
  }

  .masonry-card:hover strong {
    color: #fff;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 112px 0 0;
    padding: 38px 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 140ms ease,
      visibility 140ms linear;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links > a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links .button {
    margin-top: 20px;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 650px;
  }

  .hero__image {
    background-image: url("assets/projects/hero-custom-mobile.webp");
    background-position: center;
    background-size: cover;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(21, 13, 28, 0.24), transparent),
      linear-gradient(0deg, rgba(21, 13, 28, 0.42), transparent 58%);
  }

  .section-heading,
  .process__layout,
  .service-area__layout,
  .film__layout,
  .faq__layout,
  .quote__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .service-item {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .service-item__photo {
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .service-item__body {
    min-height: 300px;
    border-top: 0;
    border-left: 4px solid var(--orange);
  }

  .project,
  .project--reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project--reverse .project__copy,
  .project--reverse .project__images {
    order: initial;
  }

  .gallery-preview__grid {
    height: 460px;
    grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.65fr);
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .gallery-preview__item--wide {
    grid-row: 1 / 3;
  }

  .gallery-preview__item--tall {
    grid-row: 1 / 4;
  }

  .masonry-gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 105px;
  }

  .faq__heading {
    position: static;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  .service-bar__tagline {
    display: none;
  }

  .service-bar__inner {
    justify-content: center;
  }

  .service-bar__contact {
    width: 100%;
    justify-content: center;
  }

  .nav {
    height: 70px;
  }

  .brand img {
    width: 58px;
    height: 58px;
    margin-block: -3px;
  }

  .brand__name {
    width: 108px;
    gap: 3px;
  }

  .brand__name strong {
    font-size: 1.04rem;
  }

  .brand__name small {
    font-size: 0.42rem;
    letter-spacing: 0.08em;
  }

  .nav-links {
    inset-block-start: 104px;
  }

  .hero {
    min-height: min(680px, calc(100svh - 104px));
    align-items: flex-end;
  }

  .hero__content {
    padding-block: 90px 116px;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.6rem, 13vw, 3.7rem);
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    right: 14px;
    bottom: 23px;
    left: 14px;
    gap: 11px;
    justify-content: space-between;
    font-size: 0.61rem;
  }

  .hero__proof span {
    gap: 5px;
  }

  .service-intro,
  .projects,
  .gallery-preview,
  .process,
  .service-area,
  .film,
  .faq,
  .quote {
    padding-block: 58px;
  }

  .section-heading {
    margin-bottom: 33px;
  }

  .service-item {
    display: block;
  }

  .service-item__photo {
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .service-item__body {
    min-height: 0;
    padding: 25px;
    border-top: 4px solid var(--orange);
    border-left: 0;
  }

  .projects__heading {
    margin-bottom: 15px;
    display: block;
  }

  .projects__heading > a {
    margin-top: 18px;
    display: inline-block;
  }

  .project {
    padding-block: 40px;
  }

  .project__images {
    grid-template-columns: minmax(105px, 0.7fr) minmax(0, 1.3fr);
    gap: 7px;
  }

  .project__images img {
    height: 260px;
  }

  .gallery-preview__heading {
    display: block;
  }

  .gallery-preview__heading > a {
    margin-top: 21px;
    display: inline-block;
  }

  .gallery-preview__grid {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 170px 170px;
  }

  .gallery-preview__item--wide {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .gallery-preview__item--tall {
    grid-row: 2 / 4;
  }

  .masonry-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 100px;
  }

  .masonry-card--large,
  .masonry-card--wide {
    grid-column: span 2;
  }

  .gallery-page__intro {
    padding-block: 13px;
  }

  .gallery-page__intro > .shell {
    grid-template-columns: 1fr auto;
    gap: 6px 13px;
  }

  .gallery-page__title {
    grid-column: 1;
    grid-row: 1;
    order: -1;
  }

  .gallery-page__intro h1 {
    font-size: 1.85rem;
  }

  .gallery-page__meta {
    display: none;
  }

  .back-link {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 0.7rem;
  }

  .gallery-cta__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .gallery-cta__inner .button {
    width: 100%;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid > div,
  .trust-strip__grid > div:first-child,
  .trust-strip__grid > div:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip__grid > div:last-child {
    border-bottom: 0;
  }

  .process__layout {
    gap: 28px;
  }

  .steps li {
    grid-template-columns: 44px 1fr;
  }

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

  .service-area__places span:nth-child(odd) {
    border-right: 0;
  }

  .service-area__places span:nth-child(even) {
    padding-left: 5px;
  }

  .service-area__places span:last-child {
    grid-column: auto;
  }

  .film__status {
    margin-bottom: 27px;
  }

  .form-row,
  .service-choice {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 25px 20px;
  }

  .quote-form__heading {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .quote-form__heading p {
    max-width: none;
    text-align: left;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 67px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    height: 62px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--ink);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-actions a:first-child {
    background: #25d366;
  }

  .mobile-actions a:last-child {
    background: var(--orange);
  }
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--orange);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 140ms ease;
}

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

.nav-links > a:not(.button),
.service-item__body > a,
.projects__heading > a,
.gallery-preview__heading > a,
.text-cta {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 620px) {
  .service-intro,
  .projects,
  .gallery-preview,
  .process,
  .service-area,
  .film,
  .faq,
  .quote {
    padding-block: 48px;
  }

  .section-heading {
    margin-bottom: 24px;
    gap: 18px;
  }

  .service-grid {
    gap: 14px;
  }

  .service-item__body {
    padding: 21px;
  }

  .service-item h3 {
    font-size: 1.9rem;
  }

  .service-item p {
    margin: 10px 0 12px;
  }

  .service-item ul {
    margin-bottom: 14px;
  }

  .service-item__body > a {
    min-height: 34px;
  }

  .quote-form {
    padding: 22px 18px;
  }

  .quote-form__heading {
    margin-bottom: 18px;
    padding-bottom: 14px;
    align-items: start;
    gap: 10px;
  }

  .quote-form input,
  .quote-form textarea {
    margin: 7px 0 12px;
    padding: 11px 12px;
  }

  .quote-form textarea {
    min-height: 112px;
  }

  .quote-form fieldset {
    margin-bottom: 15px;
  }

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

  .service-choice span {
    min-height: 42px;
    padding: 0 8px 0 30px;
    font-size: 0.68rem;
    line-height: 1.1;
  }

  .service-choice span::before {
    left: 11px;
  }

  .upload-field {
    min-height: 78px;
    padding: 14px;
  }
}

.service-bar__tagline {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  text-decoration: none;
}

.service-bar__tagline::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--orange);
}

.service-bar__tagline:hover,
.service-bar__tagline:focus-visible {
  color: #fff;
}

@media (min-width: 901px) {
  .section-heading,
  .process__layout,
  .service-area__layout,
  .film__layout,
  .faq__layout,
  .quote__layout {
    grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(48px, 5vw, 74px);
  }

  .project,
  .project--reverse {
    grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(42px, 5vw, 66px);
  }

  .project--reverse .project__copy,
  .project--reverse .project__images {
    order: initial;
  }

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

  .project__images img {
    height: 330px;
  }

  .gallery-preview__grid {
    height: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 12px;
  }

  .gallery-preview__item,
  .gallery-preview__item--wide,
  .gallery-preview__item--tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 900px) {
  .gallery-preview__grid {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 10px;
  }

  .gallery-preview__item,
  .gallery-preview__item--wide,
  .gallery-preview__item--tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 620px) {
  .gallery-preview__grid {
    gap: 8px;
  }

  .gallery-preview__item,
  .gallery-preview__item--wide,
  .gallery-preview__item--tall {
    aspect-ratio: 1 / 1;
  }
}
@media (max-width: 620px) {
  .service-bar__tagline {
    display: none;
  }
}

/* Final visual rhythm: structured sections, editorial project/gallery moments. */
@media (min-width: 901px) {
  .project-list {
    gap: 18px;
  }

  .project {
    padding: 42px 0;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(42px, 5vw, 68px);
  }

  .project--reverse {
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  }

  .project--reverse .project__copy {
    order: 2;
  }

  .project--reverse .project__images {
    order: 1;
  }

  .project__copy {
    align-self: center;
  }

  .project__copy h3 {
    max-width: 480px;
  }

  .project__images {
    grid-template-columns: minmax(150px, 0.74fr) minmax(0, 1.26fr);
    gap: 10px;
  }

  .project--reverse .project__images {
    grid-template-columns: minmax(0, 1.26fr) minmax(150px, 0.74fr);
  }

  .project__images img {
    height: 340px;
  }

  .project__images figure:nth-child(2) {
    margin-top: 28px;
  }

  .project--reverse .project__images figure:nth-child(1) {
    margin-top: 28px;
  }

  .project--reverse .project__images figure:nth-child(2) {
    margin-top: 0;
  }

  .gallery-preview__grid {
    height: 380px;
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.8fr) minmax(180px, 0.62fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gallery-preview__item,
  .gallery-preview__item--wide,
  .gallery-preview__item--tall {
    aspect-ratio: auto;
  }

  .gallery-preview__item--wide {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .gallery-preview__item--tall {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .gallery-preview__item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  .gallery-preview__item:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
  }
}

@media (max-width: 900px) {
  .project__images figure:nth-child(2),
  .project--reverse .project__images figure:nth-child(1),
  .project--reverse .project__images figure:nth-child(2) {
    margin-top: 0;
  }
}

/* Restore before/after photo logic: vertical before + horizontal after. */
.service-choice span {
  min-width: 0;
  overflow-wrap: normal;
}

@media (min-width: 901px) {
  .project {
    padding: 48px 0;
    grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
    gap: 44px;
  }

  .project--reverse {
    grid-template-columns: minmax(0, 1.42fr) minmax(250px, 0.58fr);
  }

  .project--reverse .project__copy {
    order: 2;
  }

  .project--reverse .project__images {
    order: 1;
  }

  .project__images,
  .project--reverse .project__images {
    grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
    gap: 10px;
  }

  .project__images img {
    height: 360px;
  }

  .project__images figure,
  .project__images figure:nth-child(2),
  .project--reverse .project__images figure:nth-child(1),
  .project--reverse .project__images figure:nth-child(2) {
    margin-top: 0;
  }
}


/* Final wording/FAQ polish. */
.faq-item button {
  cursor: pointer;
  transition: color 160ms ease;
}

.faq-item button:hover,
.faq-item button:focus-visible {
  color: var(--purple);
}

.faq-icon {
  border-radius: 50%;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.faq-icon svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}

.faq-item button[aria-expanded="true"] .faq-icon {
  color: #fff;
  border-color: var(--purple);
  background: var(--purple);
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 220ms ease,
    opacity 180ms ease;
}

.faq-item button[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer__inner {
  min-height: 0;
  overflow: hidden;
}

.faq-answer p {
  max-width: 640px;
  margin: 0 50px 23px 0;
  color: var(--muted);
  font-size: 0.86rem;
}
/* Keep quote service choices clean in half-width browser views. */
@media (max-width: 1040px) {
  .service-choice {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-choice label,
  .service-choice span {
    min-width: 0;
  }

  .service-choice span {
    width: 100%;
    padding-right: 10px;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.15;
  }
}
/* Service copy rhythm and continued orange line accents. */
@media (min-width: 901px) {
  .service-item p {
    min-height: 74px;
  }

  .service-item ul {
    min-height: 104px;
  }

  .service-item__body > a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }
}

.gallery-preview__heading > div,
.process__intro,
.service-area__layout > div:first-child,
.film__layout > div:first-child,
.faq__heading,
.quote__intro,
.gallery-cta__inner > div {
  position: relative;
  padding-left: 18px;
}

.gallery-preview__heading > div::before,
.process__intro::before,
.service-area__layout > div:first-child::before,
.film__layout > div:first-child::before,
.faq__heading::before,
.quote__intro::before,
.gallery-cta__inner > div::before {
  width: 4px;
  position: absolute;
  inset: 3px auto 3px 0;
  content: "";
  background: var(--orange);
}

.film-services > span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.film-services > span::before {
  width: 24px;
  height: 2px;
  flex: 0 0 auto;
  content: "";
  background: var(--orange);
}

.project,
.project:last-child {
  border-top: 0;
  border-bottom: 0;
}

.project + .project {
  border-top: 1px solid rgba(239, 84, 35, 0.28);
}

@media (max-width: 620px) {
  .gallery-preview__heading > div,
  .process__intro,
  .service-area__layout > div:first-child,
  .film__layout > div:first-child,
  .faq__heading,
  .quote__intro,
  .gallery-cta__inner > div {
    padding-left: 14px;
  }

  .gallery-preview__heading > div::before,
  .process__intro::before,
  .service-area__layout > div:first-child::before,
  .film__layout > div:first-child::before,
  .faq__heading::before,
  .quote__intro::before,
  .gallery-cta__inner > div::before {
    width: 3px;
  }
}
/* Quote-area polish, rounded form stripe, and tablet service-link alignment. */
.quote-form {
  position: relative;
  overflow: hidden;
  border: 0;
  background: linear-gradient(90deg, var(--orange) 0 6px, #f8f7f9 6px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 24px 58px rgba(0, 0, 0, 0.24);
}

.quote-form > * {
  position: relative;
}

.quote-brand {
  width: min(360px, 100%);
  min-height: 190px;
  margin-top: clamp(34px, 5vw, 72px);
  padding: 22px 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
}

.quote-brand img {
  width: clamp(132px, 12vw, 176px);
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.32));
}

@media (min-width: 901px) and (max-width: 1120px) {
  .service-item__body {
    min-height: 338px;
  }

  .service-item p {
    min-height: 108px;
  }

  .service-item ul {
    min-height: 110px;
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  .service-item__body {
    min-height: 320px;
  }

  .service-item p {
    min-height: 66px;
  }

  .service-item ul {
    min-height: 96px;
  }

  .service-item__body > a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .quote-brand {
    display: none;
  }
}
/* Make the quote logo feel stamped, not boxed. */
.quote-brand {
  width: min(390px, 100%);
  min-height: 245px;
  margin-top: clamp(30px, 5vw, 70px);
  padding: 0;
  justify-items: start;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.quote-brand img {
  width: clamp(210px, 18vw, 285px);
  max-width: 100%;
  opacity: 0.94;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34));
}
/* Center the stamped quote logo in its empty space. */
.quote-brand {
  justify-items: center;
  align-items: center;
  margin-inline: auto;
}
/* Tablet quote logo keeps the same stamped feel as desktop. */
@media (min-width: 621px) and (max-width: 900px) {
  .quote-brand {
    width: 100%;
    min-height: 170px;
    margin: 8px auto 0;
    display: grid;
    place-items: center;
  }

  .quote-brand img {
    width: clamp(180px, 28vw, 240px);
  }
}

@media (max-width: 620px) {
  .quote-brand {
    display: none;
  }
}
/* Balance the quote logo within the available desktop/tablet space. */
.quote__intro {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.quote-brand {
  flex: 1 1 auto;
  min-height: 220px;
  margin: 22px auto 0;
}

@media (min-width: 901px) {
  .quote-brand {
    min-height: 0;
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  .quote__intro {
    min-height: 0;
  }

  .quote-brand {
    min-height: 190px;
    margin-top: 18px;
  }
}

@media (max-width: 620px) {
  .quote__intro {
    min-height: 0;
    display: block;
  }
}