:root {
  --ink: #0b0b0b;
  --ink-soft: #171717;
  --orange: #f57a00;
  --orange-dark: #d95c00;
  --cream: #f5f1ea;
  --paper: #fffdf9;
  --muted: #706e69;
  --line: #ded9d0;
  --white: #ffffff;
  --green: #20b85a;
  --radius: 4px;
  --shadow: 0 24px 70px rgba(11, 11, 11, 0.12);
  --container: min(1180px, calc(100% - 40px));
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -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 {
  font: inherit;
}

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

h1,
h2,
h3,
h4 {
  line-height: 1.04;
  letter-spacing: -0.04em;
}

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

.section {
  padding: 112px 0;
}

.section--soft {
  background: var(--cream);
}

.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: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--ink);
  background: var(--orange);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  width: 36px;
  height: 3px;
  background: currentColor;
}

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

.section-heading h2,
.about h2,
.service-area h2,
.faq h2,
.final-cta h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  font-weight: 850;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.section-heading--split > p {
  max-width: 480px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading--center {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}

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

.section-heading--center > p:last-child {
  max-width: 670px;
  margin: 24px auto 0;
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 23px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

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

.button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.button--primary {
  color: var(--ink);
  background: var(--orange);
}

.button--primary:hover {
  background: #ff8a19;
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
}

.button--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  background: #292929;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.025em;
  line-height: 1.25;
  text-transform: uppercase;
}

.text-link span {
  color: var(--orange-dark);
  font-size: 1.1em;
}

.topbar {
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.topbar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.73rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.topbar p {
  display: flex;
  gap: 20px;
  margin: 0;
}

.topbar p span {
  color: #b9b9b9;
}

.topbar a {
  color: var(--orange);
  font-weight: 800;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgba(11, 11, 11, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.header__inner {
  display: grid;
  min-height: 78px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand__mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  overflow: hidden;
  background: var(--white);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__text strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand__text small {
  margin-top: 4px;
  color: var(--orange);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  color: #d6d6d6;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transition: width 0.2s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  width: 100%;
}

.button--header {
  min-height: 43px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--orange);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__grid-pattern,
.final-cta__pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__grid-pattern::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 42%, rgba(245, 122, 0, 0.18), transparent 36%);
  content: "";
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 0.93fr) minmax(440px, 0.82fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: clamp(3.4rem, 6.5vw, 6.4rem);
  font-weight: 900;
}

.hero h1 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}

.hero__lead {
  max-width: 630px;
  margin-bottom: 34px;
  color: #cbcbcb;
  font-size: clamp(1.04rem, 1.6vw, 1.24rem);
  line-height: 1.7;
}

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

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 48px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.hero__proof li {
  display: grid;
  min-height: 48px;
  align-content: center;
  gap: 2px;
  padding-right: 16px;
  color: #cacaca;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero__proof li + li {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__proof span {
  color: var(--orange);
  font-size: 0.64rem;
}

.hero__visual {
  position: relative;
  min-height: 0;
  padding: 32px 0 64px;
}

.hero__visual figure {
  position: relative;
  z-index: 2;
  top: auto;
  right: auto;
  width: min(100%, 560px);
  margin: 0 0 0 auto;
  background: #1d1d1d;
  box-shadow: var(--shadow);
}

.hero__visual figure::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  content: "";
  pointer-events: none;
}

.hero__visual figure img {
  display: block;
  width: 100%;
  height: auto !important;
  aspect-ratio: 3 / 2 !important;
  object-fit: contain !important;
  object-position: center !important;
}

.hero__visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__visual figcaption span {
  color: var(--orange);
}

.hero__accent {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: -20px;
  width: 82%;
  height: calc(100% - 64px);
  border: 2px solid var(--orange);
  transform: translate(12px, 16px);
}

.hero__badge {
  position: absolute;
  z-index: 3;
  right: auto;
  bottom: 18px;
  left: -30px;
  display: grid;
  width: 142px;
  height: 142px;
  place-content: center;
  padding: 12px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.hero__badge strong {
  display: block;
  font-size: 2.6rem;
  line-height: 1;
}

.hero__badge span {
  max-width: 90px;
  margin: 4px auto 0;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-strip {
  overflow: hidden;
  color: var(--ink);
  background: var(--orange);
}

.service-strip__track {
  display: flex;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 100%;
  min-height: 58px;
  padding: 0 25px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-strip i {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--ink);
  border-radius: 50%;
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: clamp(50px, 9vw, 130px);
}

.intro .section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 5.15rem);
}

.intro__copy {
  align-self: end;
}

.intro__copy > p {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.82;
}

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

.service-card {
  display: grid;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(11, 11, 11, 0.04);
}

.service-card--feature {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.17fr) minmax(330px, 0.83fr);
}

.service-card__media {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  background: #d9d4cc;
}

.service-card--feature .service-card__media {
  min-height: 450px;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__media img,
.mini-service:hover img {
  transform: scale(1.035);
}

.service-card__number {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 4vw, 52px);
}

.service-card__category {
  margin-bottom: 13px;
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 17px;
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.service-card:not(.service-card--feature) h3 {
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.service-card__body > p:not(.service-card__category) {
  max-width: 490px;
  margin-bottom: 27px;
  color: var(--muted);
}

.services-note {
  display: flex;
  max-width: 850px;
  align-items: center;
  gap: 18px;
  margin: 34px auto 0;
  padding: 18px 24px;
  color: #4e4c48;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
}

.services-note > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  border-radius: 50%;
  font-weight: 900;
}

.services-note p {
  margin: 0;
  font-size: 0.92rem;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -20px auto 75px;
}

.category-nav a {
  padding: 9px 15px;
  color: #595651;
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.category-nav a:hover {
  color: var(--ink);
  border-color: var(--orange-dark);
}

.service-group {
  scroll-margin-top: 110px;
}

.service-group + .service-group {
  margin-top: 90px;
}

.service-group__heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.service-group__heading span {
  color: var(--orange-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-group__heading h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

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

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

.mini-service {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  color: var(--white);
  background: var(--ink);
}

.mini-service::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.36) 52%, rgba(0, 0, 0, 0.04) 100%);
  content: "";
  pointer-events: none;
}

.mini-service > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mini-service > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 25px;
}

.mini-service h4 {
  margin-bottom: 10px;
  font-size: 1.48rem;
}

.mini-service p {
  max-width: 360px;
  margin-bottom: 14px;
  color: #d5d5d5;
  font-size: 0.88rem;
  line-height: 1.55;
}

.mini-service a {
  color: var(--orange);
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(60px, 10vw, 140px);
}

.about__media {
  position: relative;
  width: 100%;
  max-width: 360px;
  justify-self: center;
}

.about__media::before {
  position: absolute;
  z-index: 0;
  top: -28px;
  right: -28px;
  width: 55%;
  height: 55%;
  border: 2px solid var(--orange);
  content: "";
}

.about__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(0.85) contrast(1.05);
}

.about__stamp {
  position: absolute;
  z-index: 2;
  right: -42px;
  bottom: 42px;
  display: grid;
  width: 158px;
  height: 158px;
  place-content: center;
  color: var(--ink);
  background: var(--orange);
  border-radius: 50%;
  text-align: center;
  transform: rotate(-7deg);
}

.about__stamp strong {
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.about__stamp span {
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about__content > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 30px;
  color: #c8c8c8;
  font-size: 1.06rem;
}

.about__items {
  display: grid;
  margin: 36px 0;
  border-top: 1px solid #343434;
}

.about__items > div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #343434;
}

.about__items strong {
  color: var(--orange);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about__items span {
  color: #aaa;
  font-size: 0.91rem;
}

.work {
  color: var(--white);
  background: #151515;
}

.section-heading--light > p {
  color: #acacac;
}

.work-gallery {
  display: grid;
  grid-auto-rows: 285px;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.work-shot {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  margin: 0;
  background: #252525;
}

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

.work-shot--wide {
  grid-column: span 5;
}

.work-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.9);
  transition: filter 0.35s ease, transform 0.45s ease;
}

.work-shot:hover img {
  filter: saturate(1.05);
  transform: scale(1.025);
}

.work-shot::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, rgba(0, 0, 0, 0.86));
  content: "";
  pointer-events: none;
}

.work-shot figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px;
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.work-shot figcaption span {
  margin-right: 10px;
  color: var(--orange);
}

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

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 28px;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.process__steps li {
  min-height: 250px;
  padding: 34px 34px 38px;
}

.process__steps li + li {
  border-left: 1px solid var(--line);
}

.process__steps > li > span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.process__steps h3 {
  margin-bottom: 13px;
  font-size: 1.55rem;
}

.process__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.process__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 27px 31px;
  color: var(--ink);
  background: var(--orange);
}

.process__cta p {
  margin: 0;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process__cta strong {
  display: block;
  font-size: 1.65rem;
  line-height: 1.1;
}

.service-area {
  background: var(--cream);
}

.service-area__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1fr);
  align-items: center;
  gap: clamp(55px, 9vw, 120px);
}

.service-area__content > p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--muted);
}

.service-area__content ul {
  display: grid;
  gap: 11px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.service-area__content li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  font-weight: 700;
}

.service-area__content li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--orange);
  content: "";
}

.service-area__map {
  position: relative;
  min-height: 480px;
  padding: 13px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-area__map iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
  filter: grayscale(0.75) contrast(1.05);
}

.service-area__map > a {
  position: absolute;
  right: 25px;
  bottom: 25px;
  padding: 11px 15px;
  color: var(--ink);
  background: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(60px, 10vw, 140px);
}

.faq__intro {
  position: sticky;
  top: 125px;
}

.faq__intro > p:not(.eyebrow) {
  max-width: 390px;
  margin: 28px 0;
  color: var(--muted);
}

.faq__list {
  border-top: 1px solid var(--line);
}

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

.faq summary {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

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

.faq summary span {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details > p {
  max-width: 650px;
  margin: -5px 0 28px;
  padding-right: 55px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  color: var(--white);
  background: var(--ink);
}

.final-cta::after {
  position: absolute;
  top: -38%;
  right: -10%;
  width: 600px;
  height: 600px;
  border: 100px solid rgba(245, 122, 0, 0.07);
  border-radius: 50%;
  content: "";
}

.final-cta__inner {
  position: relative;
  z-index: 2;
}

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

.final-cta__inner > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 34px;
  color: #bfbfbf;
  font-size: 1.08rem;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  color: #bcbcbc;
  background: #050505;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) 0.45fr 0.55fr;
  gap: 70px;
  padding-top: 70px;
  padding-bottom: 55px;
}

.footer__brand img {
  width: 178px;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 20px;
  padding: 10px;
  background: var(--white);
}

.footer__brand p {
  max-width: 330px;
  margin: 0;
  font-size: 0.9rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer__links h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__links a,
.footer__links span {
  font-size: 0.87rem;
}

.footer__links a:hover {
  color: var(--orange);
}

.footer__bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #252525;
  font-size: 0.75rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a {
  color: var(--orange);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  color: var(--white);
  background: #168f45;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.24);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.whatsapp-float:hover {
  background: #0eaa4b;
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

@media (max-width: 1080px) {
  .main-nav {
    gap: 15px;
  }

  .main-nav a {
    font-size: 0.68rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.72fr);
    gap: 50px;
  }

  .hero__badge {
    right: auto;
    bottom: 4%;
    left: -30px;
  }

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

  .work-shot,
  .work-shot--wide {
    grid-column: span 7;
  }

  .work-shot--tall {
    grid-column: span 5;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 32px, 760px);
  }

  .section {
    padding: 86px 0;
  }

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

  .button--header {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 99;
    top: 116px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 26px 24px 100px;
    color: var(--white);
    background: rgba(11, 11, 11, 0.99);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .main-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid #2d2d2d;
    font-size: 1rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 68px;
    padding-bottom: 90px;
  }

  .hero__visual {
    width: min(100%, 600px);
    min-height: 0;
    margin-inline: auto;
    padding: 10px 0 54px;
  }

  .hero__visual figure {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
  }

  .hero__visual figure img {
    aspect-ratio: 3 / 2;
    object-position: center;
  }

  .hero__accent {
    top: -10px;
    right: -8px;
    width: 82%;
    height: calc(100% - 54px);
    transform: translate(12px, 16px);
  }

  .hero__badge {
    bottom: 0;
    left: -10px;
  }

  .section-heading--split,
  .intro__grid,
  .about__grid,
  .service-area__grid,
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .section-heading--split {
    align-items: start;
  }

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

  .service-card--feature .service-card__media {
    min-height: 390px;
  }

  .about__media {
    width: min(78%, 360px);
    margin-inline: auto;
  }

  .faq__intro {
    position: static;
  }

  .service-area__map {
    min-height: auto;
  }

  .process__steps li {
    padding-inline: 22px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 82px;
  }

  body {
    padding-bottom: 66px;
  }

  .section {
    padding: 70px 0;
  }

  .topbar__inner {
    min-height: 32px;
    font-size: 0.65rem;
  }

  .topbar p span,
  .topbar a {
    display: none;
  }

  .header__inner {
    min-height: 68px;
    gap: 12px;
  }

  .brand__mark {
    width: 48px;
    height: 48px;
  }

  .brand__mark img {
    width: 100%;
    height: 100%;
  }

  .main-nav {
    top: 100px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    gap: 55px;
    min-height: 0;
    padding-top: 55px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13.8vw, 4.15rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero__proof li,
  .hero__proof li + li {
    min-height: 0;
    padding: 0 0 0 14px;
    border: 0;
    border-left: 2px solid var(--orange);
  }

  .hero__visual {
    min-height: 0;
    padding: 8px 0 46px;
  }

  .hero__visual figure {
    top: auto;
    right: auto;
    width: 100%;
  }

  .hero__accent {
    top: -7px;
    right: -3px;
    height: calc(100% - 46px);
    transform: translate(8px, 12px);
  }

  .hero__badge {
    bottom: 0;
    left: -4px;
    width: 106px;
    height: 106px;
  }

  .hero__badge strong {
    font-size: 2.1rem;
  }

  .service-strip__track {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .section-heading--split {
    gap: 25px;
    margin-bottom: 40px;
  }

  .section-heading h2,
  .about h2,
  .service-area h2,
  .faq h2,
  .final-cta h2 {
    font-size: clamp(2.15rem, 11vw, 3.3rem);
  }

  .featured-grid,
  .services-grid,
  .services-grid--two {
    grid-template-columns: 1fr;
  }

  .service-card__media,
  .service-card--feature .service-card__media {
    min-height: 300px;
  }

  .service-card__body {
    padding: 26px 22px 30px;
  }

  .category-nav {
    justify-content: flex-start;
    margin-bottom: 55px;
  }

  .service-group + .service-group {
    margin-top: 68px;
  }

  .mini-service,
  .mini-service > img {
    min-height: 390px;
  }

  .about__grid {
    gap: 68px;
  }

  .about__media {
    width: min(calc(100% - 40px), 310px);
  }

  .about__stamp {
    right: -20px;
    bottom: -40px;
    width: 130px;
    height: 130px;
  }

  .about__items > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .work-gallery {
    display: grid;
    grid-auto-rows: 390px;
    grid-template-columns: 1fr;
  }

  .work-shot,
  .work-shot--tall,
  .work-shot--wide {
    grid-row: auto;
    grid-column: auto;
  }

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

  .process__steps li {
    min-height: auto;
    padding: 28px 8px 30px;
  }

  .process__steps li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process__steps > li > span {
    margin-bottom: 28px;
  }

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

  .service-area__map {
    padding: 8px;
  }

  .service-area__map iframe {
    height: 380px;
  }

  .faq summary {
    font-size: 1rem;
  }

  .faq details > p {
    padding-right: 0;
  }

  .final-cta__actions .button {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    z-index: 110;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 8px 12px;
    background: rgba(5, 5, 5, 0.97);
    border-top: 1px solid #292929;
    backdrop-filter: blur(10px);
  }

  .mobile-cta a {
    display: flex;
    min-height: 49px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: #168f45;
    border-radius: 3px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-transform: uppercase;
  }
}

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

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

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