@font-face {
  font-family: "Manrope";
  src:
    url("assets/fonts/Manrope-Variable.woff2") format("woff2"),
    url("assets/fonts/Manrope-Variable.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #171a22;
  --muted: #686a70;
  --paper: #fffdf9;
  --warm: #f6f2ea;
  --line: #dedbd3;
  --orange: #ff5c2a;
  --orange-soft: #ffe5d8;
  --blue: #73d2ec;
  --blue-soft: #dff6fc;
  --pink: #f276a7;
  --pink-soft: #ffe2ed;
  --green: #b8da69;
  --navy: #17283e;
  --white: #fff;
  --radius-sm: 1rem;
  --radius: 1.5rem;
  --radius-lg: 2.25rem;
  --shadow: 0 22px 70px rgb(24 27 34 / 10%);
  --container: 68.75rem;
  --header-height: 4.75rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

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

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgb(23 26 34 / 8%);
  background: rgb(255 253 249 / 92%);
  backdrop-filter: blur(16px);
}

body.menu-open .site-header {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  border-bottom: 0;
  background: var(--paper);
  backdrop-filter: none;
}

body.menu-open .site-header__inner {
  height: var(--header-height);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand__logo {
  width: auto;
  height: 3.75rem;
}

.brand__name {
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.08em;
}

.phone-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  place-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 50%;
  background: var(--warm);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

.site-nav {
  position: fixed;
  z-index: 101;
  inset: 0;
  display: flex;
  visibility: hidden;
  padding: 7rem 1.5rem max(1.5rem, env(safe-area-inset-bottom));
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

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

.site-nav a {
  width: 100%;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.6rem, 8vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

@media (max-width: 47.999rem) {
  .site-nav.is-open a:last-child {
    margin-top: auto;
    padding: 1rem;
    border: 0;
    border-radius: var(--radius-sm);
    color: var(--ink);
    background: var(--orange);
    text-align: center;
  }
}

.header-contacts {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 0;
  background:
    radial-gradient(circle at 8% 24%, rgb(115 210 236 / 18%) 0 7rem, transparent 7.1rem),
    var(--paper);
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__shape--blue {
  top: 3rem;
  right: -5rem;
  width: 10rem;
  height: 10rem;
  background: var(--blue);
  opacity: 0.18;
}

.hero__shape--pink {
  bottom: 8rem;
  left: -3.5rem;
  width: 6rem;
  height: 6rem;
  background: var(--pink);
  opacity: 0.2;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.75rem;
}

.hero__content {
  padding-top: 1.25rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.eyebrow span {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0.35rem var(--orange-soft);
}

.hero h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.1rem, 15vw, 5.4rem);
  font-weight: 750;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.hero__lead {
  max-width: 35rem;
  margin: 1.5rem 0 0;
  color: #4d4f55;
  font-size: clamp(1.05rem, 4vw, 1.3rem);
}

.hero__actions {
  display: flex;
  margin-top: 1.75rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.82rem 1.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid transparent;
  border-radius: 0.95rem;
  font-size: 0.9rem;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button--primary {
  background: var(--orange);
  box-shadow: 0 12px 28px rgb(255 92 42 / 24%);
}

.button--ghost {
  border-color: var(--ink);
  background: transparent;
}

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

.hero__phone {
  display: inline-flex;
  margin-top: 1.6rem;
  flex-direction: column;
  gap: 0.05rem;
}

.hero__phone span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero__phone strong {
  font-size: 1.1rem;
  font-weight: 700;
}

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 29rem;
  min-width: 0;
  margin-inline: auto;
  padding: 0 0.75rem 1rem;
  order: -1;
}

.hero__secondary-photo {
  position: absolute;
  z-index: -1;
  top: 6%;
  left: -0.45rem;
  width: 30%;
  overflow: hidden;
  border: 0.45rem solid var(--paper);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 12px 34px rgb(23 26 34 / 16%);
  transform: rotate(-8deg);
}

.hero__secondary-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 40%;
}

.hero__photo-shell {
  position: relative;
  padding: 0.7rem;
  border-radius: 12rem 12rem 2rem 2rem;
  background: var(--orange);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero__photo-shell::before {
  position: absolute;
  z-index: -1;
  top: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.hero__photo-shell img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 11.4rem 11.4rem 1.4rem 1.4rem;
  object-fit: cover;
  object-position: 50% 48%;
  transform: rotate(-2deg);
}

.hero-note {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  border: 1px solid rgb(23 26 34 / 8%);
  background: var(--white);
  box-shadow: 0 12px 38px rgb(23 26 34 / 14%);
  font-size: 0.72rem;
  line-height: 1.35;
}

.hero-note--photo {
  bottom: 0;
  left: -0.15rem;
  padding: 0.75rem 0.9rem;
  gap: 0.65rem;
  border-radius: 1rem 1rem 1rem 0.25rem;
}

.hero-note--photo svg {
  color: var(--orange);
}

.hero-note--city {
  top: 19%;
  right: -0.15rem;
  padding: 0.65rem 0.8rem;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 700;
}

.hero-note__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green);
}

.hero__ticker {
  display: flex;
  margin-top: 3rem;
  overflow: hidden;
  padding: 1.1rem 0;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  white-space: nowrap;
}

.hero__ticker span {
  font-size: clamp(0.73rem, 2.8vw, 0.95rem);
  font-weight: 750;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero__ticker svg {
  width: 0.8rem;
  min-width: 0.8rem;
  fill: var(--orange);
}

@media (max-width: 47.999rem) {
  .hero__ticker-extra {
    display: none;
  }
}

.section {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
}

.section-heading {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading h2,
.pricing-info h2,
.consultation h2,
.footer h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.15rem, 7.5vw, 3.25rem);
  font-weight: 720;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.section-heading > p,
.section-heading--split > p {
  max-width: 35rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
}

.about {
  background: var(--warm);
}

.about-cards {
  display: grid;
  gap: 0.85rem;
}

.about-card {
  min-height: 14rem;
  padding: 1.35rem;
  border-radius: var(--radius);
}

.about-card--orange {
  background: var(--orange);
}

.about-card--blue {
  background: var(--blue);
}

.about-card--light {
  border: 1px solid var(--line);
  background: var(--paper);
}

.about-card__number,
.service-card__number {
  display: inline-grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border: 1px solid rgb(23 26 34 / 22%);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

.about-card h3 {
  max-width: 13ch;
  margin: 3rem 0 0.6rem;
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-card p {
  max-width: 24rem;
  margin: 0;
  font-size: 0.9rem;
}

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

.section-heading--portfolio p:last-child {
  max-width: 28rem;
}

.filter-list {
  display: flex;
  margin: -1rem -1rem 1.75rem;
  overflow-x: auto;
  padding: 1rem;
  gap: 0.5rem;
  scrollbar-width: none;
}

.filter-list::-webkit-scrollbar {
  display: none;
}

.filter-button {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
}

.filter-button.is-active {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.portfolio-grid {
  columns: 2;
  column-gap: 0.65rem;
}

.work-card {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 0.65rem;
  overflow: hidden;
  padding: 0;
  break-inside: avoid;
  border: 0;
  border-radius: 1rem;
  background: var(--warm);
  cursor: zoom-in;
  text-align: left;
}

.work-card--feature {
  column-span: all;
}

.work-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 350ms ease;
}

.work-card--feature img {
  max-height: 31rem;
  object-position: 50% 44%;
}

.work-card::after {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgb(12 15 20 / 78%));
  content: "";
  pointer-events: none;
}

.work-card__meta {
  position: absolute;
  z-index: 1;
  right: 0.65rem;
  bottom: 0.65rem;
  left: 0.65rem;
  display: flex;
  color: var(--white);
  flex-direction: column;
  line-height: 1.2;
  pointer-events: none;
}

.work-card__meta span {
  margin-bottom: 0.15rem;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.8;
  text-transform: uppercase;
}

.work-card__meta strong {
  font-size: clamp(0.72rem, 2.9vw, 1rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.before-after {
  display: grid;
  margin-top: clamp(4.5rem, 10vw, 8rem);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
}

.before-after__copy {
  padding: clamp(1.5rem, 5vw, 3.5rem);
}

.tag {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: var(--ink);
  background: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.before-after h3 {
  margin: 1.25rem 0 0.8rem;
  font-size: clamp(2rem, 8vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.before-after__copy p {
  max-width: 34rem;
  color: rgb(255 255 255 / 72%);
}

.before-after__copy a {
  display: inline-flex;
  margin-top: 0.5rem;
  gap: 0.6rem;
  border-bottom: 1px solid rgb(255 255 255 / 45%);
  font-size: 0.86rem;
  font-weight: 700;
}

.before-after figure {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
}

.before-after__image {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
}

.before-after__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 43%;
}

.before-after__image span {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--ink);
  background: rgb(255 255 255 / 88%);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.services {
  background: var(--warm);
}

.service-grid {
  display: grid;
  gap: 0.85rem;
}

.service-card {
  display: flex;
  min-height: 20rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  flex-direction: column;
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.price {
  display: inline-flex;
  min-height: 2.3rem;
  padding: 0.45rem 0.75rem;
  align-items: center;
  border-radius: 999px;
  background: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.price--light {
  color: var(--ink);
  background: var(--white);
}

.service-card h3 {
  max-width: 16ch;
  margin: auto 0 0.7rem;
  font-size: clamp(1.5rem, 5vw, 2rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card__note {
  display: flex;
  margin-top: 1rem !important;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink) !important;
  font-weight: 700;
}

.service-card__note svg {
  width: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.service-card.service-card--featured {
  min-height: 24rem;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  box-shadow: inset 0 0.3rem 0 var(--orange);
}

.service-card--featured p,
.service-card--pink p,
.service-card--green p {
  color: var(--ink);
}

.service-card--featured .price {
  background: var(--orange-soft);
  white-space: normal;
  text-align: center;
}

.service-card--featured h3 {
  margin: 2rem 0 0;
}

.service-card--featured .service-tags {
  margin-top: 1.5rem;
}

.service-tags {
  display: flex;
  margin-top: 1.2rem;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.service-tags span {
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--warm);
  font-size: 0.68rem;
  font-weight: 700;
}

.service-card__estimate {
  margin-top: 1.75rem;
  padding: 1.1rem;
  border-radius: 1.15rem;
  background: rgb(255 255 255 / 90%);
}

.service-card__estimate strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  line-height: 1.3;
}

.service-card__estimate small {
  display: block;
  margin-top: 0.65rem;
  font-weight: 750;
}

.service-card--dark {
  border: 0;
  color: var(--white);
  background: var(--navy);
}

.service-card--dark p {
  color: rgb(255 255 255 / 68%);
}

.service-card--pink {
  border: 0;
  background: var(--pink-soft);
}

.service-card--green {
  border: 0;
  background: #e7f3c9;
}

.service-card__fine {
  margin-top: 1rem !important;
  font-size: 0.78rem !important;
}

.service-card__alert {
  margin-top: 1rem !important;
  padding: 0.75rem;
  border-radius: 0.9rem;
  color: var(--ink) !important;
  background: rgb(255 255 255 / 67%);
  font-size: 0.78rem !important;
  font-weight: 650;
}

.service-card--featured .service-card__alert {
  margin-top: auto !important;
  padding: 1rem;
  background: var(--orange-soft);
  line-height: 1.5;
}

.pricing-info {
  color: var(--ink);
  background: var(--blue);
}

.pricing-info__grid {
  display: grid;
  gap: 2rem;
}

.section-kicker--light {
  color: rgb(255 255 255 / 64%);
}

.pricing-info .section-kicker--light {
  color: var(--ink);
}

.pricing-info__title > p:last-child {
  max-width: 34rem;
  margin: 1.25rem 0 0;
}

.factor-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0.55rem;
}

.factor-list li {
  display: flex;
  min-height: 3.8rem;
  padding: 0.65rem 0.85rem;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgb(23 26 34 / 15%);
  border-radius: 1rem;
  background: rgb(255 255 255 / 20%);
  font-size: 0.9rem;
  font-weight: 700;
}

.factor-list span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  font-size: 0.65rem;
}

.photo-tip {
  display: flex;
  padding: 1.25rem;
  align-items: flex-start;
  gap: 1rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgb(90 37 18 / 14%);
}

.photo-tip__icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
}

.photo-tip__icon svg {
  width: 1.65rem;
}

.photo-tip strong {
  font-size: 1rem;
}

.photo-tip p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.consultation {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.consultation::before,
.consultation::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.consultation::before {
  top: -8rem;
  right: -6rem;
  width: 18rem;
  height: 18rem;
  background: var(--blue);
  opacity: 0.16;
}

.consultation::after {
  bottom: -5rem;
  left: -3rem;
  width: 10rem;
  height: 10rem;
  background: var(--pink);
  opacity: 0.18;
}

.consultation__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
}

.consultation__lead {
  max-width: 38rem;
  margin: 1.5rem 0 0.8rem;
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  font-weight: 650;
  line-height: 1.4;
}

.consultation__copy > p:not(.section-kicker, .consultation__lead, .consultation__timing) {
  max-width: 36rem;
  color: rgb(255 255 255 / 68%);
}

.consultation__actions {
  display: flex;
  margin-top: 1.75rem;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.consultation__call {
  border-color: rgb(255 255 255 / 55%);
  color: var(--white);
  background: transparent;
}

.consultation__timing {
  max-width: 34rem;
  margin-top: 1.3rem;
  padding-left: 1rem;
  border-left: 3px solid var(--green);
  color: rgb(255 255 255 / 72%);
  font-size: 0.82rem;
}

.consultation-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0.65rem;
}

.consultation-steps li {
  display: grid;
  min-height: 5.3rem;
  padding: 0.85rem;
  align-items: center;
  grid-template-columns: 2.6rem 1fr;
  gap: 0.85rem;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 1.15rem;
  background: rgb(255 255 255 / 6%);
}

.consultation-steps li > span {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
}

.consultation-steps p {
  margin: 0;
  color: rgb(255 255 255 / 64%);
  font-size: 0.8rem;
}

.consultation-steps strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--white);
  font-size: 0.95rem;
}

.footer {
  padding: 4rem 0 7rem;
  background: var(--paper);
}

.footer__top {
  display: grid;
  gap: 2rem;
}

.footer h2 {
  font-size: clamp(2.3rem, 11vw, 5rem);
}

.footer__role {
  color: var(--muted);
}

.footer__location {
  display: grid;
  width: min(100%, 31rem);
  margin-top: 1.5rem;
  padding: 1rem;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--white);
  box-shadow: 0 12px 36px rgb(23 26 34 / 7%);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.footer__location-pin {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--blue-soft);
}

.footer__location-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.footer__location-copy > span:first-child {
  margin-bottom: 0.12rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__location-copy strong {
  font-size: 1.05rem;
  line-height: 1.25;
}

.footer__location-copy small {
  margin-top: 0.08rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer__location-action {
  display: flex;
  grid-column: 2;
  align-items: center;
  gap: 0.35rem;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 750;
}

.footer__contacts {
  display: none;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
}

.footer__phone {
  display: flex;
  flex-direction: column;
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  font-weight: 750;
  letter-spacing: -0.05em;
}

.footer__phone span {
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__bottom {
  display: flex;
  margin-top: 3rem;
  padding-top: 1.25rem;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a {
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 750;
}

.mobile-cta {
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom));
  left: 1rem;
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 2rem));
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mobile-cta__link {
  display: flex;
  min-width: 0;
  min-height: 3.5rem;
  padding: 0.65rem 0.8rem;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid rgb(23 26 34 / 10%);
  border-radius: 999px;
  background: var(--warm);
  box-shadow: 0 14px 36px rgb(23 26 34 / 20%);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.mobile-cta__link--call {
  background: var(--orange);
}

.mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.lightbox {
  width: min(94vw, 58rem);
  max-width: none;
  max-height: 92vh;
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 1.25rem;
  background: transparent;
}

.lightbox::backdrop {
  background: rgb(10 13 18 / 88%);
  backdrop-filter: blur(8px);
}

.lightbox__inner {
  position: relative;
  display: grid;
  place-items: center;
}

.lightbox img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 82vh;
  border-radius: 1.1rem;
  box-shadow: 0 30px 90px rgb(0 0 0 / 50%);
}

.lightbox__close {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 92%);
  cursor: pointer;
}

.lightbox p {
  max-width: min(90vw, 42rem);
  margin: 0.8rem 0 0;
  color: var(--white);
  font-size: 0.85rem;
  text-align: center;
}

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

  .button--primary:hover {
    box-shadow: 0 16px 34px rgb(255 92 42 / 32%);
  }

  .work-card:hover img {
    transform: scale(1.025);
  }

  .site-nav a:hover,
  .header-phone:hover,
  .header-max:hover,
  .hero__phone:hover,
  .footer__phone:hover {
    color: var(--orange);
  }

  .footer__location:hover {
    border-color: rgb(255 92 42 / 38%);
    box-shadow: 0 18px 44px rgb(23 26 34 / 11%);
    transform: translateY(-2px);
  }

  .site-nav.is-open a:last-child:hover {
    color: var(--ink);
  }
}

@media (min-width: 42.5rem) {
  .container {
    width: min(100% - 3rem, var(--container));
  }

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

  .portfolio-grid {
    columns: 3;
    column-gap: 0.9rem;
  }

  .work-card {
    margin-bottom: 0.9rem;
    border-radius: 1.25rem;
  }

  .work-card--feature {
    column-span: none;
  }

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

  .service-card__estimate {
    margin-top: 2.5rem;
  }

  .pricing-info__grid {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
  }

  .photo-tip {
    grid-column: 1 / -1;
  }

  .footer__top {
    align-items: end;
    grid-template-columns: 1fr auto;
  }

  .footer__contacts {
    display: flex;
    align-items: flex-end;
  }

  .mobile-cta {
    display: none;
  }

  .footer {
    padding-bottom: 3rem;
  }
}

@media (min-width: 48rem) {
  :root {
    --header-height: 5.25rem;
  }

  .site-header__inner {
    gap: 2rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    visibility: visible;
    width: auto;
    padding: 0;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 2.5vw, 2rem);
    background: transparent;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    width: auto;
    padding: 0.4rem 0;
    border: 0;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0;
  }

  .header-contacts {
    display: flex;
    align-items: center;
    gap: 0.45rem;
  }

  .header-phone,
  .header-max {
    display: inline-flex;
    min-height: 2.75rem;
    padding: 0.6rem 0.8rem;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 750;
  }

  .header-max {
    background: var(--warm);
  }

  .hero {
    padding-top: clamp(3rem, 6vw, 6rem);
  }

  .hero__grid {
    min-height: min(44rem, calc(100svh - 10rem));
    align-items: center;
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.8fr);
    gap: 4rem;
  }

  .hero__content {
    padding: 0 0 4rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 5.5vw, 5.2rem);
  }

  .hero__lead {
    max-width: 30rem;
  }

  .hero__visual {
    order: 0;
    width: min(100%, 34rem);
  }

  .section-heading--split,
  .section-heading--portfolio {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.6fr);
    gap: 3rem;
  }

  .section-heading--split > p,
  .section-heading--portfolio > p {
    margin: 0 0 0.3rem;
  }

  .before-after {
    grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
  }

  .before-after figure {
    min-height: 30rem;
  }

  .consultation__grid {
    align-items: center;
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.7fr);
    gap: clamp(3rem, 7vw, 7rem);
  }
}

@media (min-width: 68.75rem) {
  .site-nav a {
    font-size: 0.82rem;
  }

  .header-phone,
  .header-max {
    padding-inline: 1rem;
    font-size: 0.78rem;
  }

  .portfolio-grid {
    columns: 4;
    column-gap: 1rem;
  }

  .work-card {
    margin-bottom: 1rem;
    border-radius: 1.4rem;
  }

  .service-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .service-card {
    grid-column: span 6;
  }

  .service-card {
    min-height: 22rem;
    padding: 1.6rem;
  }

  .pricing-info__grid {
    align-items: stretch;
    grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.75fr);
    grid-template-rows: auto 1fr;
    column-gap: 5rem;
    row-gap: 2rem;
  }

  .pricing-info__title {
    grid-column: 1;
    grid-row: 1;
  }

  .factor-list {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .photo-tip {
    max-width: 40rem;
    grid-column: 1;
    grid-row: 2;
    align-self: end;
  }
}

@media (min-width: 90rem) {
  :root {
    --container: 76rem;
  }
}

@media (max-width: 23.5rem) {
  .container {
    width: min(100% - 2rem, var(--container));
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .button {
    width: 100%;
  }

}

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

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