@font-face {
  font-family: "FuturaCyrillicBold";
  src: url("../fonts/futuracyrillicbold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AvenirBlack";
  src: url("../fonts/Avenir Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --forest: #adc178;
  --forest-deep: #6c584c;
  --cream: #f0ead2;
  --sage-light: #dde5b6;
  --earth: #a98467;
  --header-gap: 16px;
  --line: rgba(240, 234, 210, 0.22);
  --text: #6c584c;
  --shadow: 0 18px 36px rgba(108, 88, 76, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  overflow: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  height: 100%;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--cream), var(--sage-light) 50%, var(--forest));
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(240, 234, 210, 0.1), rgba(108, 88, 76, 0.3)),
    url("../other-photos/housebackdrop.jpg") center center / cover no-repeat;
  opacity: 0.74;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(132, 128, 124, 0.34), transparent 34%),
    linear-gradient(180deg, rgba(116, 112, 108, 0.3), rgba(82, 78, 74, 0.48));
  z-index: -1;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  padding-top: 14px;
  border: 1px solid rgba(240, 234, 210, 0.18);
  background: rgba(56, 56, 56, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.site-header {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px 40px;
  position: relative;
}

.site-badge {
  position: absolute;
  top: 34px;
  right: 40px;
  z-index: 3;
  font-family: "FuturaCyrillicBold", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: clamp(420px, 66vw, 840px);
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  transform: translateX(-50%);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-self: start;
}

.brand-mark {
  display: block;
  width: clamp(180px, 22vw, 260px);
  height: 56px;
  object-fit: cover;
  object-position: center 72%;
  mix-blend-mode: screen;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-self: center;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  text-decoration: none;
  color: #ffffff;
  background: rgba(240, 234, 210, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--forest);
  background: rgba(240, 234, 210, 0.16);
  transform: translateY(-2px);
}

.site-nav a.active {
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.9);
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
}

.hero {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px 32px;
  text-align: center;
}

.hero-logo {
  width: min(200px, 34vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(108, 88, 76, 0.22));
}

.logo-transition-pending [data-logo-transition-target] {
  visibility: hidden;
}

.logo-transition-ghost {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(108, 88, 76, 0.22));
  will-change: left, top, width, height, opacity;
}

.home-hero-logo {
  animation: none;
}

h1 {
  margin: 0;
  max-width: none;
  font-family: "AvenirBlack", "Manrope", sans-serif;
  font-size: clamp(0.78rem, 3vw, 3.8rem);
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  color: #ffffff;
  text-shadow: 0 12px 28px rgba(108, 88, 76, 0.34);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-family: inherit;
  font-weight: 700;
  color: var(--forest-deep);
  background: linear-gradient(145deg, var(--forest), var(--sage-light));
  box-shadow: 0 16px 28px rgba(108, 88, 76, 0.18);
  border: 1px solid rgba(240, 234, 210, 0.4);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.services-page .hero,
.projects-page .hero {
  flex: 1 1 auto;
  min-height: 0;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  transform: none;
  overflow: hidden;
}

.services-scroll,
.projects-scroll {
  flex: 1 1 auto;
  min-height: 0;
  width: calc(100% - 14px);
  margin-right: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  padding: 0 12px 34px 40px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  overflow-y: scroll;
  scrollbar-color: rgba(255, 255, 255, 0.88) transparent;
}

.services-scroll::-webkit-scrollbar,
.projects-scroll::-webkit-scrollbar {
  width: 18px;
}

.services-scroll::-webkit-scrollbar-track,
.projects-scroll::-webkit-scrollbar-track {
  margin: 18px 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
}

.services-scroll::-webkit-scrollbar-thumb,
.projects-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 5px solid transparent;
  background-clip: padding-box;
}

.services-scroll::-webkit-scrollbar-thumb:hover,
.projects-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.98);
  border: 5px solid transparent;
  background-clip: padding-box;
}

.services-page .page-shell,
.projects-page .page-shell {
  height: calc(100vh - (var(--header-gap) * 2));
}

.services-hero-logo,
.projects-hero-logo {
  width: min(152px, 18vw);
  margin-top: 0;
  animation: none;
  align-self: center;
}

.services-report,
.projects-report {
  width: min(100%, 1040px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: services-report-in 0.8s ease-out 0.45s forwards;
}

.services-kicker,
.projects-kicker {
  margin: 0;
  font-family: "AvenirBlack", "Manrope", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.services-title,
.projects-title {
  max-width: 16ch;
  font-size: clamp(1.9rem, 3.8vw, 4rem);
  white-space: normal;
}

.services-summary,
.projects-summary {
  max-width: 72ch;
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.services-grid,
.projects-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.service-card {
  padding: 22px 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  text-align: left;
  opacity: 0;
  animation: service-card-in 0.7s ease-out forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.7s;
}

.service-card:nth-child(2) {
  animation-delay: 0.82s;
}

.service-card:nth-child(3) {
  animation-delay: 0.94s;
}

.service-card:nth-child(4) {
  animation-delay: 1.06s;
}

.service-card h2 {
  margin: 0 0 10px;
  font-family: "AvenirBlack", "Manrope", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
}

.service-card p {
  margin: 0;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.services-cta,
.projects-cta {
  margin-top: 8px;
}

.contact-form {
  width: min(100%, 1040px);
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form-intro {
  margin: 0;
  font-family: "AvenirBlack", "Manrope", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
}

.contact-form span {
  font-family: "AvenirBlack", "Manrope", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.contact-form label {
  color: rgba(255, 255, 255, 0.84);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.projects-gallery-shell {
  width: min(100%, 1120px);
  margin-top: 18px;
  padding: 18px;
  border-radius: 34px;
  background: rgba(56, 56, 56, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.14);
}

.projects-showcase {
  width: 100%;
  min-height: clamp(620px, 68vh, 780px);
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 20px;
  align-items: stretch;
}

.projects-list-panel,
.projects-detail-panel {
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.projects-list-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.projects-list {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
  height: 100%;
  padding-right: 6px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.projects-list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.projects-list::-webkit-scrollbar-thumb,
.projects-list::-webkit-scrollbar-track {
  background: transparent;
}

.project-entry {
  appearance: none;
  border: 2px solid rgba(20, 20, 20, 0.86);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  padding: 18px 18px 16px;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.project-entry-preview {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 14px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.project-entry-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}

.project-entry:hover,
.project-entry:focus-visible,
.project-entry.is-active {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(20, 20, 20, 0.95);
}

.project-entry-kicker {
  display: block;
  margin-bottom: 8px;
  font-family: "AvenirBlack", "Manrope", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.project-entry-title {
  display: block;
  font-family: "AvenirBlack", "Manrope", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-entry-summary {
  display: block;
  margin-top: 8px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.76);
}

.projects-detail {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  min-height: 0;
  height: 100%;
}

.projects-detail-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.projects-detail-kicker {
  margin: 0 0 6px;
  font-family: "AvenirBlack", "Manrope", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.projects-detail-title {
  margin: 0;
  font-family: "AvenirBlack", "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  text-transform: uppercase;
  color: #ffffff;
}

.projects-detail-copy {
  max-width: 32ch;
  margin: 0;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.projects-photo-strip {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 12px;
  align-items: center;
  flex: 1 1 auto;
}

.strip-nav {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.strip-nav:hover,
.strip-nav:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.34);
}

.projects-photo-viewer {
  min-height: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.projects-photo-viewer img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}

.projects-simple-gallery {
  width: min(100%, 1280px);
  margin-top: 36px;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: stretch;
}

.projects-simple-left,
.projects-simple-right {
  min-height: 0;
  height: 580px;
  border-radius: 32px;
  border: 2px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.04);
}

.projects-simple-left {
  padding: 18px;
  overflow: hidden;
}

.projects-simple-list {
  height: 100%;
  overflow-y: auto;
  padding-right: 6px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.projects-simple-list::-webkit-scrollbar {
  width: 0;
}

.projects-simple-entry {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 15px;
  border: 2px solid rgba(255, 255, 255, 0.26);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  text-align: left;
  cursor: pointer;
}

.projects-simple-entry img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
}

.projects-simple-entry span {
  font-family: "AvenirBlack", "Manrope", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.projects-simple-entry.is-active,
.projects-simple-entry:hover,
.projects-simple-entry:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
}

.projects-simple-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.projects-simple-detail {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.projects-simple-carousel {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
}

.projects-simple-carousel-stage {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.03);
}

.projects-simple-carousel-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-carousel-nav {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  cursor: pointer;
}

.projects-simple-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.projects-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.projects-dot.is-active {
  background: rgba(255, 255, 255, 0.9);
}

.projects-simple-detail-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.projects-simple-right h2 {
  margin: 0;
  font-family: "AvenirBlack", "Manrope", sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}

.projects-simple-right p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 720px) {
  .projects-simple-gallery {
    grid-template-columns: 1fr;
  }

  .projects-simple-left,
  .projects-simple-right {
    height: 420px;
    min-height: 0;
  }

  .projects-simple-right {
    height: 290px;
  }

  .projects-simple-carousel {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .projects-carousel-nav {
    width: 36px;
    height: 36px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

.projects-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.88) transparent;
}

.projects-thumbs::-webkit-scrollbar {
  height: 10px;
}

.projects-thumbs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
}

.project-thumb {
  flex: 0 0 auto;
  width: 92px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.project-thumb:hover,
.project-thumb:focus-visible,
.project-thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.86);
}

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

@keyframes services-report-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes service-card-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  :root {
    --header-gap: 10px;
  }

  .page-shell {
    min-height: 100vh;
    padding-top: 10px;
  }

  .site-header {
    padding: 18px 18px 20px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
  }

  .site-badge {
    top: 28px;
    right: 18px;
    font-size: 0.72rem;
  }

  .brand {
    justify-self: center;
  }

  .brand-mark {
    width: clamp(170px, 56vw, 240px);
    height: 52px;
  }

  .site-nav {
    justify-content: center;
    width: 100%;
  }

  .site-nav a {
    flex: 0 0 auto;
    text-align: center;
  }

  .hero {
    width: 100%;
    padding: 0 18px 24px;
  }

  .services-page .hero,
  .projects-page .hero {
    min-height: 0;
    padding: 0;
    transform: none;
  }

  .services-scroll,
  .projects-scroll {
    min-height: 0;
    width: calc(100% - 8px);
    margin-right: 8px;
    padding: 0 8px 28px 18px;
  }

  .services-hero-logo,
  .projects-hero-logo {
    width: min(132px, 34vw);
  }

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

  .contact-panel {
    grid-template-columns: 1fr;
    height: 320px;
  }

  .projects-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .projects-gallery-shell {
    padding: 14px;
    border-radius: 28px;
  }

  .projects-list {
    max-height: 260px;
  }

  .projects-photo-strip {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
  }

  .strip-nav {
    width: 40px;
    height: 40px;
  }

  .services-title,
  .projects-title {
    max-width: 14ch;
    font-size: clamp(1.7rem, 7vw, 2.5rem);
  }
}

/* ========================= */
/* HOMEPAGE HERO ANIMATIONS  */
/* ========================= */

.home-hero-logo {
  animation: services-logo-rise 1s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.home-hero-text {
  opacity: 0;
  animation: services-report-in 0.8s ease-out 0.35s forwards;
}

.home-hero-btn {
  opacity: 0;
  animation: services-report-in 0.8s ease-out 0.55s forwards;
}
