@charset "UTF-8";
/*! Personal theme styles. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: #f3f1ea;
  color: #11110f;
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.site-noise {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 0.045;
  pointer-events: none;
}

body.menu-is-open {
  overflow: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

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

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

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

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

::selection {
  background: #ff5a36;
  color: #fbfaf6;
}

:focus-visible {
  outline: 3px solid rgba(255, 90, 54, 0.35);
  outline-offset: 3px;
}

@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;
  }
}
h1,
h2,
h3,
h4 {
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.75rem);
}

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

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #6f6d66;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5a36;
  box-shadow: 0 0 0 5px rgba(255, 90, 54, 0.12);
  content: "";
}

.entry-content {
  color: #1e1e1b;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
}
.entry-content > * {
  max-width: 820px;
}
.entry-content > * + * {
  margin-top: 1.4em;
}
.entry-content h2,
.entry-content h3 {
  margin-top: 2.2em;
  color: #11110f;
}
.entry-content h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
}
.entry-content h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}
.entry-content a {
  color: #df3516;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.entry-content ul,
.entry-content ol {
  padding-left: 1.25em;
}
.entry-content li + li {
  margin-top: 0.6em;
}
.entry-content blockquote {
  margin: 2.4em 0;
  padding: 28px 32px;
  border-left: 4px solid #ff5a36;
  border-radius: 0 14px 14px 0;
  background: #e8e5dc;
}

.container {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}
@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1240px);
  }
}

.content-narrow {
  max-width: 920px;
}

.skip-link {
  position: fixed;
  z-index: 99999;
  top: calc(env(safe-area-inset-top, 0px) + 12px);
  left: 12px;
  width: 1px;
  height: 1px;
  padding: 0;
  border-radius: 8px;
  background: #11110f;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  color: #fbfaf6;
  overflow: hidden;
  white-space: nowrap;
}
.skip-link:focus {
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  clip-path: none;
  overflow: visible;
}

.section {
  padding-block: clamp(84px, 9vw, 144px);
}

.section--dark {
  background: #151513;
  color: #f7f4ec;
}

.section--flush-top {
  padding-top: 12px;
}

.section-action {
  margin-top: 42px;
  text-align: center;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(48px, 6vw, 82px);
}
.section-heading h2 {
  max-width: 900px;
  margin-bottom: 0;
}
.section-heading > p {
  max-width: 430px;
  align-self: end;
  justify-self: end;
  margin-bottom: 0;
  color: #6f6d66;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}
.section-heading--light > p {
  color: rgba(251, 250, 246, 0.65);
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  display: flex;
  min-height: 640px;
  align-items: center;
  padding-block: 150px 90px;
  background: radial-gradient(circle at 78% 22%, rgba(255, 90, 54, 0.14), transparent 25%), #f3f1ea;
  position: relative;
  overflow: hidden;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}
.page-hero__content {
  min-width: 0;
}
.page-hero h1 {
  max-width: 880px;
  margin-bottom: 30px;
}
.page-hero__lead {
  max-width: 780px;
  margin-bottom: 0;
  color: #6f6d66;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}
.page-hero__graphic {
  position: relative;
  display: grid;
  width: min(100%, 360px);
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid rgba(17, 17, 15, 0.13);
  border-radius: 50%;
  background: rgba(251, 250, 246, 0.34);
  box-shadow: 0 0 0 42px rgba(17, 17, 15, 0.025);
  place-items: center;
}
.page-hero__graphic::before {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: #ff5a36;
  content: "";
}
.page-hero__graphic span {
  position: relative;
  z-index: 1;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 1;
}
.page-hero__graphic small {
  position: absolute;
  right: 6%;
  bottom: 12%;
  z-index: 1;
  padding: 8px 11px;
  border-radius: 999px;
  background: #11110f;
  color: #fbfaf6;
  font-family: Consolas, ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.page-hero__graphic--contact::before {
  inset: 11%;
  background: #11110f;
}
.page-hero__graphic--contact span {
  color: #ff5a36;
  font-size: clamp(5rem, 10vw, 8.5rem);
}
.page-hero--compact {
  padding-block: 150px 80px;
}

.page-content {
  padding-block: clamp(72px, 8vw, 112px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 750ms ease, transform 750ms cubic-bezier(0.22, 0.8, 0.24, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 940px) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width: 820px) {
  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section-heading > p {
    justify-self: start;
  }
  .page-hero {
    min-height: auto;
    padding-block: 132px 76px;
  }
  .page-hero__inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .page-hero__graphic {
    width: 220px;
    justify-self: start;
  }
}
@media (max-width: 540px) {
  .page-hero {
    padding-top: 118px;
  }
  .page-hero__graphic {
    width: 170px;
  }
  .page-hero__graphic small {
    right: -18%;
    font-size: 0.55rem;
  }
  .section {
    padding-block: 78px;
  }
}
.site-header {
  position: fixed;
  z-index: 1000;
  top: 16px;
  right: 0;
  left: 0;
  padding-inline: 12px;
  pointer-events: none;
}
.site-header__inner {
  position: relative;
  display: flex;
  width: min(1180px, 100vw - 24px);
  min-height: 66px;
  align-items: center;
  gap: 18px;
  margin-inline: auto;
  padding: 8px 8px 8px 18px;
  border: 1px solid rgba(17, 17, 15, 0.11);
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.78);
  box-shadow: 0 10px 35px rgba(17, 17, 15, 0.08);
  backdrop-filter: blur(18px);
  transition: background-color 180ms ease, box-shadow 180ms ease;
  pointer-events: auto;
}
.site-header.is-scrolled .site-header__inner {
  background: rgba(251, 250, 246, 0.94);
  box-shadow: 0 14px 42px rgba(17, 17, 15, 0.13);
}
.site-header__cta {
  margin-left: 4px;
  border-color: #11110f;
  background: #11110f;
  color: #fbfaf6;
}
.site-header__cta::after {
  margin-left: 7px;
  content: "↗︎";
}
.site-header__cta:hover {
  border-color: #ff5a36;
  background: #ff5a36;
}

.admin-bar .site-header {
  top: 48px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
}
.site-brand__mark {
  position: relative;
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
}
.site-brand__logo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}
.site-brand__text {
  display: grid;
  line-height: 1.1;
}
.site-brand__text strong {
  font-size: 0.88rem;
  font-weight: 850;
}
.site-brand__text small {
  margin-top: 3px;
  color: #6f6d66;
  font-size: 0.62rem;
}

.site-nav {
  margin-left: auto;
}
.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 999px;
  color: #46443f;
  font-size: 0.82rem;
  font-weight: 750;
  transition: 180ms ease;
}
.site-nav__menu a:hover,
.site-nav__menu .current-menu-item a {
  background: rgba(17, 17, 15, 0.06);
  color: #11110f;
}
.site-nav__mobile-actions {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #11110f;
  color: #fbfaf6;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}
.menu-toggle[aria-expanded=true] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-toggle[aria-expanded=true] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

@media (max-width: 940px) {
  .site-header .site-header__cta {
    display: none;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .site-nav {
    position: absolute;
    top: 74px;
    right: 8px;
    left: 8px;
    display: grid;
    align-content: start;
    padding: 18px;
    border: 1px solid rgba(17, 17, 15, 0.11);
    border-radius: 24px;
    background: #fbfaf6;
    box-shadow: 0 18px 48px rgba(17, 17, 15, 0.14);
    z-index: 5;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: visibility 0s linear 220ms, opacity 220ms ease, transform 220ms ease;
  }
  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }
  .site-nav__menu {
    align-items: stretch;
    flex-direction: column;
    gap: 3px;
  }
  .site-nav__menu a {
    padding: 13px 14px;
    font-size: 1rem;
  }
  .site-nav__mobile-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #d7d3c9;
  }
  .site-nav__telegram {
    display: grid;
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #229ed9;
    color: #fbfaf6;
    place-items: center;
  }
  .site-nav__telegram svg {
    width: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }
}
@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 56px;
  }
}
@media (max-width: 520px) {
  .site-header {
    top: 10px;
    padding-inline: 8px;
  }
  .site-header__inner {
    width: 100%;
    min-height: 62px;
    padding-left: 14px;
  }
  .site-brand__text small {
    display: none;
  }
  .site-brand__mark {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }
}
.site-footer {
  padding-block: 72px 28px;
  background: #11110f;
  color: #f7f4ec;
}
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(140px, 0.65fr));
  gap: 48px;
  padding-bottom: 68px;
  border-bottom: 1px solid rgba(251, 250, 246, 0.14);
}
.site-footer__top > div:first-child p {
  max-width: 390px;
  color: rgba(251, 250, 246, 0.56);
}
.site-footer__brand {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}
.site-footer__column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}
.site-footer__column h2 {
  margin-bottom: 10px;
  color: rgba(251, 250, 246, 0.48);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-footer__column a {
  color: rgba(251, 250, 246, 0.82);
  font-size: 0.9rem;
  transition: color 180ms ease;
}
.site-footer__column a:hover {
  color: #fbfaf6;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
  color: rgba(251, 250, 246, 0.46);
  font-size: 0.76rem;
}

@media (max-width: 900px) {
  .site-footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}
.button > span {
  margin-left: 8px;
  transition: transform 180ms ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button:hover > span {
  transform: translate(3px, -2px);
}
.button:active {
  transform: translateY(0);
}
.button--small {
  min-height: 44px;
  padding: 10px 19px;
  font-size: 0.86rem;
}
.button--accent {
  border-color: #11110f;
  background: #11110f;
  color: #fbfaf6;
  box-shadow: 0 10px 26px rgba(17, 17, 15, 0.15);
}
.button--accent:hover {
  border-color: #ff5a36;
  background: #ff5a36;
  box-shadow: 0 14px 36px rgba(255, 90, 54, 0.22);
}
.button--ghost {
  border-color: #d7d3c9;
  background: rgba(251, 250, 246, 0.6);
}
.button--ghost:hover {
  border-color: #11110f;
}
.button--light {
  background: #fbfaf6;
  color: #11110f;
}
.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}
.button.is-loading::after {
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  content: "";
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
}
.text-link span,
.text-link i {
  transition: transform 180ms ease;
}
.text-link:hover span, .text-link:hover i {
  transform: translate(3px, -3px);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.contact-form {
  position: relative;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 25px;
  background: rgba(251, 250, 246, 0.83);
  color: #11110f;
  box-shadow: 0 24px 70px rgba(17, 17, 15, 0.12);
  backdrop-filter: blur(12px);
}
.contact-form__honeypot {
  position: absolute;
  left: -9999px;
}
.contact-form__footer {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 18px;
  margin-top: 22px;
}
.contact-form__footer .button {
  width: 100%;
}
.contact-form__status {
  margin: 0;
  font-size: 0.88rem;
}
.contact-form__status.is-success {
  color: #18794e;
}
.contact-form__status.is-error {
  color: #b42318;
}

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

.form-grid__item,
.form-row {
  min-width: 0;
}

.form-grid__item > p,
.form-row > p {
  margin: 0;
}

.form-field {
  display: block;
  margin-bottom: 18px;
}
.form-field > span:first-child {
  display: block;
  margin-bottom: 8px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #d7d3c9;
  border-radius: 13px;
  background: #fbfaf6;
  color: #11110f;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #11110f;
  outline: 0;
  background: #fbfaf6;
  box-shadow: 0 0 0 3px rgba(17, 17, 15, 0.06);
}
.form-field input,
.form-field select {
  height: 54px;
  padding-inline: 16px;
}
.form-field select {
  padding-right: 46px;
  appearance: none;
  cursor: pointer;
}
.form-field textarea {
  height: 112px;
  min-height: 112px;
  max-height: 180px;
  padding: 14px 16px;
  resize: vertical;
}
.form-field small,
.form-field .wpcf7-not-valid-tip {
  display: block;
  min-height: 20px;
  margin-top: 5px;
  color: #b42318;
  font-size: 0.76rem;
}

.form-field--select .wpcf7-form-control-wrap {
  position: relative;
}

.form-field--select .wpcf7-form-control-wrap::after {
  position: absolute;
  top: 20px;
  right: 19px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #11110f;
  border-bottom: 2px solid #11110f;
  content: "";
  pointer-events: none;
  transform: rotate(45deg);
}

.form-field--select .wpcf7-form-control-wrap.has-custom-select::after {
  display: none;
}

.custom-select {
  position: relative;
  z-index: 12;
}
.custom-select__native {
  position: absolute !important;
  bottom: 0;
  left: 0;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0;
  pointer-events: none;
}
.custom-select__trigger {
  position: relative;
  display: flex;
  width: 100%;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px 0 16px;
  border: 1px solid #d7d3c9;
  border-radius: 13px;
  background: linear-gradient(180deg, #fbfaf6, #f8f6f0);
  color: #11110f;
  cursor: pointer;
  font: inherit;
  font-weight: 650;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.custom-select__trigger::after {
  position: absolute;
  top: 20px;
  right: 19px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #11110f;
  border-bottom: 2px solid #11110f;
  content: "";
  transform: rotate(45deg);
  transition: transform 220ms ease, top 220ms ease;
}
.custom-select__value {
  color: #6f6d66;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-select.has-value .custom-select__value {
  color: #11110f;
}
.custom-select.is-open .custom-select__trigger {
  border-color: #11110f;
  background: #fbfaf6;
  box-shadow: 0 0 0 3px rgba(17, 17, 15, 0.06);
}
.custom-select.is-open .custom-select__trigger::after {
  top: 24px;
  transform: rotate(225deg);
}
.custom-select__menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: grid;
  gap: 3px;
  max-height: 270px;
  padding: 8px;
  border: 1px solid rgba(17, 17, 15, 0.13);
  border-radius: 15px;
  background: #fbfaf6;
  box-shadow: 0 22px 55px rgba(17, 17, 15, 0.17);
  opacity: 0;
  overflow-y: auto;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}
.custom-select.is-open .custom-select__menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}
.custom-select__option {
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #11110f;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  text-align: left;
  transition: background-color 160ms ease, color 160ms ease, padding 160ms ease;
}
.custom-select__option:hover, .custom-select__option:focus-visible {
  outline: 0;
  background: #f3f1ea;
  padding-left: 16px;
}
.custom-select__option.is-selected {
  background: #ff5a36;
  color: #11110f;
  font-weight: 750;
}

.custom-select__native.wpcf7-not-valid + .custom-select .custom-select__trigger {
  border-color: #b42318;
}

.form-file {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px dashed rgba(17, 17, 15, 0.22);
  background: rgba(251, 250, 246, 0.45);
  border-radius: 14px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 180ms ease, background-color 180ms ease;
}
.form-file > span:first-child {
  font-size: 0.9rem;
  font-weight: 700;
}
.form-file small {
  display: block;
  color: #6f6d66;
  font-weight: 450;
}
.form-file strong {
  width: 44%;
  max-width: 44%;
  margin-left: auto;
  color: #df3516;
  font-size: 0.76rem;
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-file > .wpcf7-form-control-wrap {
  position: absolute;
  inset: 0;
}
.form-file input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.form-file:hover {
  border-color: #11110f;
  background: #fbfaf6;
}
.form-file:focus-within {
  border-color: #11110f;
  box-shadow: 0 0 0 3px rgba(17, 17, 15, 0.06);
}

.form-consent {
  display: block;
  color: #6f6d66;
  font-size: 0.78rem;
  cursor: pointer;
}
.form-consent .wpcf7-list-item {
  margin: 0;
}
.form-consent .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.form-consent input {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 1px;
  border: 1px solid rgba(17, 17, 15, 0.3);
  border-radius: 6px;
  appearance: none;
  background: #fbfaf6;
  place-content: center;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.form-consent input::before {
  width: 10px;
  height: 6px;
  border-bottom: 2px solid #fbfaf6;
  border-left: 2px solid #fbfaf6;
  content: "";
  transform: rotate(-45deg) scale(0);
  transition: transform 160ms ease;
}
.form-consent input:checked {
  border-color: #11110f;
  background: #11110f;
}
.form-consent input:checked::before {
  transform: rotate(-45deg) scale(1);
}
.form-consent input:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(255, 90, 54, 0.24);
}
.form-consent a {
  color: #df3516;
  text-decoration: underline;
}

.contact-form .button.is-sending,
.contact-form .button.is-success,
.contact-form .button.is-error {
  opacity: 1;
}

.contact-form .button.is-success {
  border-color: #18794e;
  background: #18794e;
  color: #fbfaf6;
}

.contact-form .button.is-error {
  border-color: #b42318;
  background: #b42318;
  color: #fbfaf6;
}

.contact-form .wpcf7-spinner,
.contact-form .wpcf7-response-output {
  display: none !important;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
}

.modal-is-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
  place-items: center;
}
.contact-modal[hidden] {
  display: none;
}
.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 17, 15, 0.68);
  cursor: pointer;
  backdrop-filter: blur(9px);
}
.contact-modal__dialog {
  position: relative;
  display: grid;
  width: min(1180px, 100%);
  max-height: calc(100vh - 40px);
  grid-template-columns: minmax(330px, 0.88fr) minmax(480px, 1.12fr);
  border: 1px solid rgba(251, 250, 246, 0.18);
  border-radius: 32px;
  background: #fbfaf6;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.34);
  opacity: 0;
  overflow: hidden;
  transform: translateY(22px) scale(0.98);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 0.8, 0.24, 1);
}
.contact-modal.is-open .contact-modal__dialog {
  opacity: 1;
  transform: none;
}
.contact-modal__close {
  position: absolute;
  z-index: 30;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(17, 17, 15, 0.13);
  border-radius: 50%;
  background: rgba(251, 250, 246, 0.88);
  cursor: pointer;
}
.contact-modal__close span {
  position: absolute;
  top: 21px;
  left: 12px;
  width: 19px;
  height: 2px;
  background: #11110f;
  transform: rotate(45deg);
}
.contact-modal__close span:last-child {
  transform: rotate(-45deg);
}
.contact-modal__intro {
  position: relative;
  padding: clamp(34px, 5vw, 64px);
  background: #ff5a36;
  overflow: hidden;
}
.contact-modal__intro::after {
  position: absolute;
  right: -180px;
  bottom: -180px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(17, 17, 15, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 56px rgba(17, 17, 15, 0.045), 0 0 0 112px rgba(17, 17, 15, 0.025);
  content: "";
  pointer-events: none;
}
.contact-modal__intro > * {
  position: relative;
  z-index: 1;
}
.contact-modal__intro h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.92;
}
.contact-modal__intro > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(17, 17, 15, 0.72);
  font-size: 1.02rem;
}
.contact-modal__intro .button--accent:hover {
  border-color: #fbfaf6;
  background: #fbfaf6;
  color: #11110f;
}
.contact-modal__notes {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(17, 17, 15, 0.2);
  list-style: none;
}
.contact-modal__notes li {
  position: relative;
  padding-left: 20px;
  font-size: 0.82rem;
  font-weight: 650;
}
.contact-modal__notes li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #11110f;
  content: "";
}
.contact-modal__form {
  overflow: auto;
}
.contact-modal__form > .wpcf7 {
  min-height: 100%;
}
.contact-modal__form .contact-form {
  min-height: 100%;
  padding-top: 78px;
  border: 0;
  border-radius: 0;
  background: #fbfaf6;
  box-shadow: none;
  backdrop-filter: none;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-file {
    align-items: flex-start;
    flex-direction: column;
  }
  .form-file strong {
    width: 100%;
    max-width: 100%;
    align-self: flex-end;
  }
  .contact-modal {
    height: 100vh;
    height: 100dvh;
    align-items: start;
    justify-items: center;
    padding: 8px;
  }
  .contact-modal__dialog {
    max-height: 100%;
    grid-template-columns: 1fr;
    border-radius: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .contact-modal__intro {
    padding: 34px 22px;
  }
  .contact-modal__intro h2 {
    padding-right: 24px;
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }
  .contact-modal__intro .contact-actions .button {
    width: 100%;
  }
  .contact-modal__form {
    overflow: visible;
  }
  .contact-modal__form .contact-form {
    padding-top: 24px;
  }
  .contact-modal__close {
    position: fixed;
    top: 18px;
    right: 18px;
  }
  body.admin-bar .contact-modal__close {
    top: 58px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-modal,
  .contact-modal__dialog {
    transition: none;
  }
}
.project-card {
  min-width: 0;
  border: 1px solid #d7d3c9;
  border-radius: 26px;
  background: #fbfaf6;
  overflow: hidden;
  transition: opacity 750ms ease, transform 750ms cubic-bezier(0.22, 0.8, 0.24, 1), box-shadow 350ms ease;
}
.project-card:hover {
  box-shadow: 0 24px 80px rgba(23, 22, 18, 0.12);
  transform: translateY(-5px);
}
.project-card__media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.project-card__image,
.project-card .project-image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 0.8, 0.24, 1);
}
.project-card:hover .project-card__image, .project-card:hover .project-image-placeholder {
  transform: scale(1.025);
}
.project-card__body {
  padding: clamp(26px, 3vw, 40px);
}
.project-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  color: #6f6d66;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.project-card__title {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.project-card__title a {
  transition: color 180ms ease;
}
.project-card__title a:hover {
  color: #df3516;
}
.project-card__body > p {
  max-width: 620px;
  color: #6f6d66;
}
.project-card .text-link {
  margin-top: 22px;
  font-size: 0.86rem;
}

.project-image-placeholder {
  display: grid;
  place-items: center;
  padding: 30px;
  background: radial-gradient(circle at 20% 25%, rgba(251, 250, 246, 0.35), transparent 35%), linear-gradient(135deg, #ff5a36 0%, #29244f 100%);
  color: #fbfaf6;
  font-size: clamp(1.4rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  text-align: center;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.tag-list li {
  padding: 6px 10px;
  border: 1px solid #d7d3c9;
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.72);
  color: #6f6d66;
  font-size: 0.68rem;
}
.tag-list--light li {
  border-color: rgba(251, 250, 246, 0.2);
  background: rgba(251, 250, 246, 0.06);
  color: rgba(251, 250, 246, 0.74);
}

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

.projects-grid .project-card[hidden] {
  display: none;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 38px;
}
.project-filters button {
  padding: 10px 16px;
  border: 1px solid #d7d3c9;
  border-radius: 999px;
  background: #fbfaf6;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 650;
  transition: 180ms ease;
}
.project-filters button:hover,
.project-filters button.is-active {
  border-color: #11110f;
  background: #11110f;
  color: #fbfaf6;
}

@media (max-width: 720px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
.cookie-consent {
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 28px);
  z-index: 1000;
  width: min(420px, 100vw - 28px);
  padding: 24px;
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 14px;
  background: rgba(251, 250, 246, 0.97);
  box-shadow: 0 24px 80px rgba(23, 22, 18, 0.12);
  backdrop-filter: blur(14px);
}
.cookie-consent[hidden] {
  display: none;
}
.cookie-consent p {
  margin: 0;
  color: #6f6d66;
  font-size: 0.86rem;
  line-height: 1.55;
}
.cookie-consent a {
  color: #11110f;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-consent__title {
  margin-bottom: 8px !important;
  color: #11110f !important;
  font-size: 1rem !important;
  font-weight: 850;
}
.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.cookie-consent .button {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.8rem;
}

.site-footer__cookie-settings {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.site-footer__cookie-settings:hover, .site-footer__cookie-settings:focus-visible {
  color: #fbfaf6;
}

@media (max-width: 540px) {
  .cookie-consent {
    padding: 20px;
  }
  .cookie-consent__actions {
    display: grid;
  }
  .cookie-consent .button {
    width: 100%;
  }
}
.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  padding-block: 138px 54px;
  background: #f3f1ea;
  overflow: hidden;
}
.hero::before {
  position: absolute;
  top: 60px;
  right: -12vw;
  width: min(48vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 54, 0.12), rgba(255, 90, 54, 0) 65%);
  content: "";
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: 48px;
}
.hero__content {
  position: relative;
  z-index: 2;
  min-width: 0;
}
.hero__kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.hero h1 {
  max-width: 790px;
  margin: 0 0 28px;
  font-size: clamp(3.75rem, 7.7vw, 7.15rem);
  font-weight: 900;
  line-height: 0.87;
}
.hero__accent {
  display: inline-block;
  color: #ff5a36;
  transform: rotate(-1.5deg);
  transform-origin: left bottom;
}
.hero__lead {
  max-width: 670px;
  margin-bottom: 30px;
  color: #5d5b55;
  font-size: clamp(1.08rem, 1.55vw, 1.25rem);
  line-height: 1.52;
}
.hero__tech {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: 32px 0 0;
  padding: 0;
  color: #75736d;
  font-family: Consolas, ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  list-style: none;
  text-transform: uppercase;
}
.hero__tech::before {
  width: 42px;
  height: 1px;
  background: #d7d3c9;
  content: "";
}
.hero__tech li:not(:last-child)::after {
  margin-left: 16px;
  color: #d7d3c9;
  content: "•";
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid #d7d3c9;
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.55);
  font-size: 0.72rem;
  font-weight: 750;
}
.hero-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #44c56f;
  box-shadow: 0 0 0 4px rgba(68, 197, 111, 0.13);
}

.hero-showcase {
  position: relative;
  min-height: 610px;
  isolation: isolate;
}
.hero-showcase__glow {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 90, 54, 0.11);
  filter: blur(72px);
  transform: translate(-50%, -50%);
}
.hero-showcase__orbit {
  position: absolute;
  inset: 8% 5% 2%;
  border: 1px solid #d7d3c9;
  border-radius: 50%;
  animation: orbit-spin 24s linear infinite;
}
.hero-showcase__orbit::after {
  position: absolute;
  top: 11%;
  left: 9%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5a36;
  box-shadow: 0 0 0 7px rgba(255, 90, 54, 0.12);
  content: "";
}
.hero-showcase__tag {
  position: absolute;
  z-index: 8;
  padding: 10px 12px;
  border: 1px solid #d7d3c9;
  border-radius: 14px;
  background: #fbfaf6;
  box-shadow: 0 15px 40px rgba(17, 17, 15, 0.12);
  font-size: 0.68rem;
  font-weight: 850;
}
.hero-showcase__tag--one {
  bottom: 22px;
  left: 10%;
  transform: rotate(-4deg);
}
.hero-showcase__tag--one strong {
  color: #df3516;
}
.hero-showcase__tag--two {
  top: 45%;
  right: 2%;
  border-color: #ff5a36;
  background: #ff5a36;
  color: #fbfaf6;
  transform: rotate(5deg);
}

.hero-screen {
  position: absolute;
  display: block;
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 21px;
  background: #fbfaf6;
  box-shadow: 0 24px 80px rgba(17, 17, 15, 0.17);
  overflow: hidden;
  transition: transform 400ms cubic-bezier(0.22, 0.8, 0.24, 1);
  will-change: transform;
}
.hero-screen__bar {
  display: flex;
  height: 34px;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(17, 17, 15, 0.08);
  background: #f7f6f1;
}
.hero-screen__bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d6d3cb;
}
.hero-screen__bar small {
  width: 42%;
  margin-left: 9px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #ebe9e3;
  color: #96938b;
  font-size: 0.45rem;
  white-space: nowrap;
  overflow: hidden;
}
.hero-screen__image,
.hero-screen .project-image-placeholder {
  width: 100%;
  height: calc(100% - 34px);
  object-fit: cover;
}
.hero-screen > strong {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(17, 17, 15, 0.82);
  color: #fbfaf6;
  font-size: 0.68rem;
  backdrop-filter: blur(8px);
}
.hero-screen--1 {
  z-index: 3;
  top: 58px;
  left: 2%;
  width: 83%;
  height: 390px;
  transform: rotate(-2.5deg);
}
.hero-screen--1:hover {
  transform: translateY(-7px) rotate(0);
}
.hero-screen--2 {
  z-index: 4;
  right: 0;
  bottom: 68px;
  width: 57%;
  height: 280px;
  transform: rotate(4deg);
}
.hero-screen--2:hover {
  transform: translateY(-7px) rotate(0);
}
.hero-screen--3 {
  z-index: 5;
  top: 10px;
  right: 8%;
  width: 39%;
  height: auto;
  aspect-ratio: 11/16;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform: rotate(4deg);
}
.hero-screen--3 .hero-screen__bar {
  display: none;
}
.hero-screen--3 .hero-screen__image, .hero-screen--3 .project-image-placeholder {
  height: 100%;
  object-fit: contain;
}
.hero-screen--3 > strong {
  right: auto;
  bottom: -24px;
  left: 50%;
  width: max-content;
  max-width: 240px;
  border: 1px solid rgba(251, 250, 246, 0.16);
  box-shadow: 0 12px 32px rgba(17, 17, 15, 0.2);
  font-size: 0.62rem;
  white-space: nowrap;
  transform: translateX(-50%);
}
.hero-screen--3:hover {
  transform: translateY(-7px) rotate(1deg);
}

.marquee {
  border-top: 1px solid #d7d3c9;
  border-bottom: 1px solid #d7d3c9;
  background: #f3f1ea;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  padding-block: 17px;
  animation: marquee-move 26s linear infinite;
  will-change: transform;
}

.marquee__group {
  display: flex;
  flex: 0 0 auto;
}

.marquee__group span {
  color: #57554f;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee__group span::after {
  margin-inline: 22px;
  color: #ff5a36;
  content: "✦";
}

.projects-section {
  padding-top: 112px;
  overflow: hidden;
}

.featured-projects {
  width: 100%;
  overflow: visible;
}

.featured-projects .swiper-wrapper {
  align-items: stretch;
}

.featured-projects .project-card,
.featured-projects .project-card--wide {
  display: grid;
  width: min(1120px, 100% - 72px);
  min-height: 540px;
  height: auto;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
}

.featured-projects .project-card__body {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  order: 1;
}

.featured-projects .project-card__media {
  height: auto;
  min-height: 100%;
  aspect-ratio: auto;
  order: 2;
}

.featured-projects .project-card__body .text-link {
  margin-top: auto;
  padding-top: 30px;
}

.projects-slider__pagination {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.projects-slider__bullet {
  display: block;
  width: 28px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: #d4d0c6;
  cursor: pointer;
  opacity: 0.78;
  transition: width 300ms ease, background-color 300ms ease, opacity 300ms ease, transform 300ms ease;
}

.projects-slider__bullet:hover {
  background: #aaa69c;
  opacity: 1;
  transform: translateY(-1px);
}

.projects-slider__bullet--active {
  width: 52px;
  background: #ff5a36;
  opacity: 1;
}

.cycle-section {
  position: relative;
  background: #151513;
  overflow: hidden;
}

.cycle-section::before {
  position: absolute;
  top: -25%;
  right: -10%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(251, 250, 246, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(251, 250, 246, 0.025), 0 0 0 130px rgba(251, 250, 246, 0.018);
  content: "";
}

.cycle-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 48px;
  border-top: 1px solid rgba(251, 250, 246, 0.18);
}

.cycle-card {
  min-height: 330px;
  padding: 28px 24px 28px 0;
  border-right: 1px solid rgba(251, 250, 246, 0.18);
}

.cycle-card + .cycle-card {
  padding-left: 24px;
}

.cycle-card:last-child {
  border-right: 0;
}

.cycle-card__artifact {
  display: grid;
  min-height: 122px;
  margin-bottom: 38px;
  padding: 12px;
  border: 1px solid rgba(251, 250, 246, 0.16);
  border-radius: 12px;
  background: rgba(251, 250, 246, 0.045);
  color: rgba(251, 250, 246, 0.7);
  font-family: Consolas, ui-monospace, monospace;
  font-size: 0.64rem;
  line-height: 1.3;
}

.cycle-card__artifact small {
  grid-column: 1/-1;
  margin-bottom: 8px;
  color: #ff5a36;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cycle-card--1 .cycle-card__artifact {
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.cycle-card--1 .cycle-card__artifact b {
  grid-column: 1/-1;
  padding: 5px 7px;
  border-radius: 4px;
  background: rgba(255, 90, 54, 0.2);
  color: #fbfaf6;
}

.cycle-card--1 .cycle-card__artifact i {
  padding-left: 10px;
  border-left: 1px solid rgba(251, 250, 246, 0.2);
  font-style: normal;
}

.cycle-card--2 .cycle-card__artifact {
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.cycle-card--2 .cycle-card__artifact b {
  grid-column: 1/-1;
  height: 18px;
  border-radius: 4px;
  background: rgba(251, 250, 246, 0.72);
}

.cycle-card--2 .cycle-card__artifact i {
  height: 46px;
  border-radius: 4px;
  background: rgba(251, 250, 246, 0.2);
}

.cycle-card--2 .cycle-card__artifact em {
  width: 58%;
  height: 6px;
  border-radius: 99px;
  background: #ff5a36;
}

.cycle-card--3 code {
  color: rgba(251, 250, 246, 0.8);
  font: inherit;
}

.cycle-card--3 code b {
  color: #ff5a36;
  font-weight: inherit;
}

.cycle-card--4 .cycle-card__artifact {
  grid-template-columns: 1fr;
  gap: 6px;
}

.cycle-card--4 .cycle-card__artifact b,
.cycle-card--4 .cycle-card__artifact i {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 7px;
  border-radius: 4px;
  background: rgba(251, 250, 246, 0.08);
  color: rgba(251, 250, 246, 0.75);
  font-style: normal;
}

.cycle-card--4 .cycle-card__artifact b {
  background: rgba(255, 90, 54, 0.19);
  color: #fbfaf6;
}

.cycle-card--4 .cycle-card__artifact em {
  color: #ff5a36;
  font-style: normal;
}

.cycle-card h3 {
  margin-bottom: 18px;
}

.cycle-card p {
  margin: 0;
  color: rgba(251, 250, 246, 0.6);
  font-size: 0.9rem;
}

.services-section {
  position: relative;
  border-top: 1px solid rgba(251, 250, 246, 0.1);
  border-radius: 0 0 42px 42px;
  background: #1e1e1b;
  color: #f7f4ec;
  overflow: hidden;
}

.services-section .section-heading > p {
  color: #929187;
}

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

.service-card {
  position: relative;
  z-index: 1;
  display: flex;
  height: 520px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(251, 250, 246, 0.12);
  border-radius: 26px;
  background: #252521;
  color: #f7f4ec;
  overflow: hidden;
  transition: opacity 750ms ease, border-color 420ms ease, background-color 420ms ease, box-shadow 420ms ease, transform 420ms cubic-bezier(0.22, 0.8, 0.24, 1);
}

.service-card--featured {
  height: 490px;
  grid-column: 1/-1;
}

.service-card::after {
  position: absolute;
  right: -95px;
  bottom: -115px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(251, 250, 246, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(251, 250, 246, 0.023), 0 0 0 72px rgba(251, 250, 246, 0.014);
  content: "";
  transition: transform 560ms ease;
}

.service-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8f8e86;
  font-family: Consolas, ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 750;
}

.service-card__top small {
  padding: 7px 10px;
  border: 1px solid rgba(251, 250, 246, 0.13);
  border-radius: 999px;
  color: #b0aea4;
}

.service-card__visual {
  position: absolute;
  top: 78px;
  right: 30px;
  display: grid;
  width: 112px;
  aspect-ratio: 1;
  border: 1px solid rgba(251, 250, 246, 0.14);
  border-radius: 50%;
  background: rgba(17, 17, 15, 0.38);
  place-items: center;
  transition: transform 500ms cubic-bezier(0.22, 0.8, 0.24, 1);
}

.service-card__visual::before {
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: #ff5a36;
  content: "";
}

.service-card__visual span {
  position: relative;
  z-index: 1;
  color: #11110f;
  font-family: Consolas, ui-monospace, monospace;
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card__visual i {
  position: absolute;
  right: -8px;
  bottom: 9px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fbfaf6;
}

.service-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 118px;
}

.service-card--featured .service-card__content {
  max-width: 70%;
  padding-top: 48px;
}

.service-card h3 {
  max-width: 720px;
  margin: 0 0 14px;
  padding-right: 90px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.service-card--featured h3 {
  font-size: clamp(2.5rem, 4vw, 3.65rem);
}

.service-card__summary {
  max-width: 580px;
  margin: 0;
  color: #a5a39a;
  transition: color 300ms ease;
}

.service-card__details {
  max-width: 610px;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(12px);
  transition: max-height 460ms cubic-bezier(0.22, 0.8, 0.24, 1), margin 420ms ease, opacity 320ms ease, transform 420ms ease;
}

.service-card__details p {
  margin: 0;
  color: #d0cec5;
  font-size: 0.82rem;
  line-height: 1.55;
}

.service-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.service-card__features li {
  padding: 7px 10px;
  border: 1px solid rgba(251, 250, 246, 0.13);
  border-radius: 999px;
  color: #c2c0b7;
  font-size: 0.68rem;
}

.service-card__link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
  padding: 8px 8px 8px 14px;
  border: 1px solid rgba(251, 250, 246, 0.16);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 780;
  transition: border-color 320ms ease, background-color 320ms ease, color 320ms ease;
}

.service-card__link i {
  display: grid;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(251, 250, 246, 0.09);
  color: #ff5a36;
  font-style: normal;
  place-items: center;
  transition: background-color 320ms ease, color 320ms ease, transform 320ms ease;
}

.service-card:hover {
  z-index: 3;
  border-color: rgba(255, 90, 54, 0.58);
  background: #2b2b26;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
  transform: translateY(-7px) scale(1.012);
}

.service-card:hover::after {
  transform: translate(-16px, -12px);
}

.service-card:hover .service-card__visual {
  transform: rotate(-8deg) scale(1.08);
}

.service-card:hover .service-card__summary {
  color: #bbb9b0;
}

.service-card:hover .service-card__details {
  max-height: 170px;
  margin-top: 14px;
  opacity: 1;
  transform: none;
}

.service-card:hover .service-card__link {
  border-color: #fbfaf6;
  background: #fbfaf6;
  color: #11110f;
}

.service-card:hover .service-card__link i {
  background: #ff5a36;
  color: #11110f;
  transform: translate(2px, -2px) scale(1.08);
}

.why-section {
  background: #f3f1ea;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.why-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border: 1px solid #d7d3c9;
  border-radius: 26px;
  background: rgba(251, 250, 246, 0.62);
  transition: transform 280ms ease, background-color 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.why-card:hover {
  border-color: #ff5a36;
  background: #ff5a36;
  box-shadow: 0 18px 48px rgba(17, 17, 15, 0.1);
  transform: translateY(-4px);
}

.why-card h3 {
  margin-bottom: 16px;
  font-size: 1.45rem;
}

.why-card p {
  margin: 0;
  color: #6f6d66;
  font-size: 0.88rem;
}

.why-card:hover p {
  color: rgba(17, 17, 15, 0.68);
}

.why-card--accent {
  grid-column: span 2;
}

.about-section__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(48px, 6vw, 84px);
}

.about-visual {
  position: relative;
  display: grid;
  min-height: 600px;
  place-items: center;
  border-radius: 26px;
  background: radial-gradient(circle at 70% 15%, rgba(251, 250, 246, 0.42), transparent 30%), linear-gradient(145deg, #ff7b5d, #ff5a36 42%, #df3516);
  box-shadow: 0 24px 80px rgba(23, 22, 18, 0.12);
  overflow: hidden;
}

.about-visual::before {
  position: absolute;
  bottom: -48px;
  left: -18px;
  color: rgba(251, 250, 246, 0.17);
  font-size: 14rem;
  font-weight: 950;
  letter-spacing: -0.11em;
  line-height: 0.8;
  content: "NB";
}

.about-visual::after {
  position: absolute;
  top: 34px;
  right: 34px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(17, 17, 15, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(17, 17, 15, 0.04);
  content: "";
}

.about-visual__code {
  position: relative;
  z-index: 2;
  display: flex;
  width: 76%;
  min-height: 270px;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  border: 1px solid rgba(251, 250, 246, 0.14);
  border-radius: 22px;
  background: #11110f;
  color: #fbfaf6;
  box-shadow: 0 28px 70px rgba(17, 17, 15, 0.25);
  transform: rotate(-3deg);
  transition: transform 350ms ease;
}

.about-visual:hover .about-visual__code {
  transform: rotate(0) translateY(-6px);
}

.about-visual__code span {
  margin-bottom: 34px;
  color: #ff8063;
  font-family: Consolas, monospace;
}

.about-visual__code strong {
  font-family: Consolas, monospace;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.about-visual__code small {
  margin-top: 56px;
  color: rgba(251, 250, 246, 0.48);
}

.about-section__content h2 {
  margin-bottom: 28px;
}

.about-section__content > p:not(.eyebrow) {
  color: #6f6d66;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.about-section__content .text-link {
  margin-top: 18px;
}

.tech-strip {
  padding-block: 56px;
  border-top: 1px solid #d7d3c9;
  border-bottom: 1px solid #d7d3c9;
}

.tech-strip .container {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 30px;
}

.tech-strip .eyebrow {
  margin: 0;
}

.tech-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-strip li {
  padding: 9px 14px;
  border: 1px solid #d7d3c9;
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.44);
  font-size: 0.76rem;
  font-weight: 750;
}

.process-section {
  background: #e8e5dc;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(17, 17, 15, 0.14);
  list-style: none;
}

.process-list.reveal {
  opacity: 1;
  transform: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 80px minmax(220px, 0.7fr) minmax(300px, 1fr);
  align-items: start;
  gap: 38px;
  padding-block: 30px;
  border-bottom: 1px solid rgba(17, 17, 15, 0.14);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 850ms ease, padding 140ms ease, transform 850ms cubic-bezier(0.22, 0.8, 0.24, 1);
}

.process-list.is-visible li {
  opacity: 1;
  transform: none;
  transition-delay: calc(var(--reveal-index) * 110ms), 0ms, calc(var(--reveal-index) * 110ms);
}

.process-list li:hover {
  padding-left: 10px;
}

.process-list span {
  color: #6f6d66;
  font-family: Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.process-list h3 {
  margin: 0;
  font-size: 1.55rem;
}

.process-list p {
  max-width: 660px;
  margin: 0;
  color: #6f6d66;
}

.estimate-section {
  background: #f3f1ea;
}

.estimate-section__grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  align-items: start;
  gap: clamp(60px, 10vw, 140px);
}

.estimate-section__grid h2 {
  font-size: clamp(2.4rem, 4.3vw, 4.4rem);
}

.estimate-section__grid > div:first-child > p:last-child {
  max-width: 620px;
  color: #6f6d66;
}

.estimate-options {
  border-top: 1px solid #d7d3c9;
}

.estimate-item {
  border-bottom: 1px solid #d7d3c9;
}

.estimate-item__trigger {
  display: grid;
  width: 100%;
  grid-template-columns: 44px minmax(0, 1fr) auto 28px;
  align-items: center;
  gap: 18px;
  padding: 26px 0;
  border: 0;
  background: transparent;
  color: #11110f;
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, padding 180ms ease;
}

.estimate-item__trigger:hover {
  padding-left: 8px;
  color: #df3516;
}

.estimate-item__trigger span,
.estimate-item__trigger small {
  color: #6f6d66;
  font-size: 0.72rem;
}

.estimate-item__trigger strong {
  font-size: 1.12rem;
}

.estimate-item__trigger i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #d7d3c9;
  border-radius: 50%;
  font-size: 1rem;
  font-style: normal;
  transition: background-color 180ms ease, color 180ms ease, transform 300ms ease;
}

.estimate-item.is-open .estimate-item__trigger i {
  background: #11110f;
  color: #fbfaf6;
  transform: rotate(45deg);
}

.estimate-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms cubic-bezier(0.22, 0.8, 0.24, 1);
}

.estimate-item__panel > div {
  overflow: hidden;
}

.estimate-item__panel p {
  max-width: 620px;
  margin: 0 0 18px 62px;
  color: #6f6d66;
}

.estimate-item__panel .text-link {
  margin: 0 0 26px 62px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #df3516;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
}

.estimate-item.is-open .estimate-item__panel {
  grid-template-rows: 1fr;
}

.contact-section {
  padding-block: 24px 84px;
  background: #f3f1ea;
  color: #11110f;
}

.contact-section__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(450px, 0.92fr);
  align-items: start;
  gap: 50px;
  padding: clamp(32px, 5vw, 60px);
  border-radius: 38px;
  background: #ff5a36;
  overflow: hidden;
}

.contact-section__grid::after {
  position: absolute;
  top: -150px;
  right: -170px;
  width: 530px;
  height: 530px;
  border: 1px solid rgba(17, 17, 15, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(17, 17, 15, 0.05), 0 0 0 130px rgba(17, 17, 15, 0.03);
  content: "";
  pointer-events: none;
}

.contact-section__intro,
.contact-section__grid > div:last-child {
  position: relative;
  z-index: 1;
}

.contact-section__intro h2 {
  max-width: 700px;
  margin-bottom: 28px;
}

.contact-section__intro > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(17, 17, 15, 0.72);
  font-size: 1.06rem;
}

.contact-section .eyebrow {
  color: #3a211a;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.button--contact-secondary {
  border-color: rgba(17, 17, 15, 0.42);
  background: transparent;
  color: #11110f;
}

.button--contact-secondary:hover {
  border-color: #fbfaf6;
  background: #fbfaf6;
}

.contact-section .contact-actions .button--accent:hover {
  border-color: #fbfaf6;
  background: #fbfaf6;
  color: #11110f;
  box-shadow: 0 14px 36px rgba(17, 17, 15, 0.13);
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes marquee-move {
  to {
    transform: translate3d(-33.333333%, 0, 0);
  }
}
@media (max-width: 1080px) {
  .hero {
    min-height: auto;
    padding-top: 128px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hero-showcase {
    width: 100%;
    max-width: 790px;
    min-height: 570px;
    margin-inline: auto;
  }
  .featured-projects .project-card,
  .featured-projects .project-card--wide {
    width: calc(100% - 42px);
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .featured-projects .project-card__media {
    min-height: 460px;
    order: 1;
  }
  .featured-projects .project-card__body {
    min-height: 300px;
    order: 2;
  }
  .cycle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cycle-card:nth-child(2) {
    border-right: 0;
  }
  .cycle-card:nth-child(-n+2) {
    border-bottom: 1px solid rgba(251, 250, 246, 0.18);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-section__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 940px) {
  .process-list li {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width: 820px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    height: auto;
    min-height: 500px;
  }
  .service-card--featured {
    height: auto;
    grid-column: auto;
  }
  .service-card--featured .service-card__content {
    max-width: 100%;
  }
  .about-section__grid,
  .estimate-section__grid {
    grid-template-columns: 1fr;
  }
  .estimate-item__trigger:hover {
    padding-left: 0;
    color: #11110f;
  }
  .about-visual {
    min-height: 500px;
  }
  .process-list li {
    grid-template-columns: 50px 1fr;
  }
  .process-list p {
    grid-column: 2;
  }
  .tech-strip .container {
    grid-template-columns: 1fr;
  }
}
@media (hover: none) {
  .service-card__details {
    max-height: none;
    margin-top: 14px;
    opacity: 1;
    overflow: visible;
    transform: none;
  }
}
@media (max-width: 620px) {
  .hero {
    padding: 112px 0 42px;
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.5vw, 2.35rem);
    letter-spacing: -0.055em;
    overflow-wrap: anywhere;
  }
  .hero__lead {
    font-size: 1.04rem;
  }
  .hero .button-row .button {
    width: 100%;
  }
  .hero__tech::before,
  .hero__tech li::after {
    display: none;
  }
  .hero-showcase {
    min-height: 410px;
    margin-top: 20px;
  }
  .hero-showcase__orbit {
    display: none;
  }
  .hero-showcase__tag {
    display: none;
  }
  .hero-screen {
    border-radius: 16px;
  }
  .hero-screen--1 {
    top: 55px;
    left: 0;
    width: 95%;
    height: 275px;
  }
  .hero-screen--2 {
    right: 0;
    bottom: 36px;
    width: 59%;
    height: 190px;
  }
  .hero-screen--3 {
    top: 10px;
    right: 4%;
    width: 38%;
    height: auto;
    border-radius: 0;
  }
  .featured-projects .project-card,
  .featured-projects .project-card--wide {
    width: 100%;
  }
  .projects-slider__pagination {
    gap: 12px;
  }
  .projects-slider__bullet,
  .projects-slider__bullet--active {
    width: 28px;
    transition: background-color 220ms ease, opacity 220ms ease;
  }
  .projects-slider__bullet:focus-visible {
    outline-width: 2px;
    outline-offset: 2px;
  }
  .marquee__track {
    animation-duration: 18s;
  }
  .featured-projects .project-card__media {
    min-height: 280px;
  }
  .cycle-grid {
    grid-template-columns: 1fr;
  }
  .cycle-card {
    min-height: 270px;
    padding-inline: 0 !important;
    border-right: 0;
    border-bottom: 1px solid rgba(251, 250, 246, 0.18);
  }
  .cycle-card__artifact {
    min-height: 112px;
    margin-bottom: 28px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-card--accent {
    grid-column: auto;
  }
  .process-list li {
    grid-template-columns: 42px 1fr;
    gap: 18px;
  }
  .estimate-item__trigger {
    grid-template-columns: 36px 1fr 28px;
  }
  .estimate-item__trigger small {
    grid-column: 2;
    grid-row: 2;
  }
  .estimate-item__trigger i {
    grid-column: 3;
    grid-row: 1/span 2;
  }
  .estimate-item__panel p,
  .estimate-item__panel .text-link {
    margin-left: 54px;
  }
  .contact-section__grid {
    padding: 30px 20px;
    border-radius: 26px;
  }
  .contact-actions .button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-showcase__orbit,
  .marquee__track {
    animation: none;
  }
  .process-list li {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.service-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.service-hero__meta span {
  padding: 9px 12px;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.55);
  color: #6f6d66;
  font-size: 0.72rem;
  font-weight: 750;
}

.service-hero__meta span:first-child {
  border-color: #11110f;
  background: #11110f;
  color: #fbfaf6;
}

.service-hero__actions {
  margin-top: 28px;
}

.services-directory {
  padding-top: clamp(50px, 6vw, 82px);
  background: #f3f1ea;
}

.services-directory__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.55fr);
  align-items: end;
  gap: clamp(45px, 8vw, 110px);
  margin-bottom: clamp(52px, 7vw, 90px);
}

.services-directory__intro .entry-content > * {
  max-width: 720px;
}

.services-directory__intro .entry-content h2:first-child {
  margin-top: 0;
}

.services-directory__scheme {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 25px;
  border: 1px solid #d7d3c9;
  border-radius: 22px;
  background: rgba(251, 250, 246, 0.62);
}

.services-directory__scheme span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #11110f;
  color: #fbfaf6;
  font-family: Consolas, monospace;
  font-size: 0.62rem;
}

.services-directory__scheme strong {
  font-size: 0.88rem;
}

.services-directory__scheme i {
  color: #ff5a36;
  font-style: normal;
}

.services-directory .service-grid {
  margin-bottom: clamp(70px, 9vw, 120px);
}

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

.service-choice-grid article {
  min-height: 270px;
  padding: 28px;
  border: 1px solid #d7d3c9;
  border-radius: 24px;
  background: rgba(251, 250, 246, 0.54);
}

.service-choice-grid span {
  display: inline-flex;
  margin-bottom: 68px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #ff5a36;
  font-size: 0.68rem;
  font-weight: 800;
}

.service-choice-grid h3 {
  margin-bottom: 15px;
  font-size: 1.45rem;
}

.service-choice-grid p {
  margin: 0;
  color: #6f6d66;
  font-size: 0.88rem;
}

.service-detail {
  padding-block: clamp(54px, 7vw, 92px) clamp(78px, 10vw, 140px);
  background: #f3f1ea;
}

.service-detail__content > * {
  max-width: none;
}

.service-detail__content > * + * {
  margin-top: clamp(64px, 8vw, 112px);
}

.service-detail__content h2,
.service-detail__content h3 {
  margin-top: 0;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: clamp(50px, 8vw, 110px);
}

.service-intro-grid > div > p {
  max-width: 780px;
  color: #6f6d66;
  font-size: 1.08rem;
}

.service-summary {
  padding: 28px;
  border: 1px solid rgba(17, 17, 15, 0.13);
  border-radius: 24px;
  background: #11110f;
  color: #fbfaf6;
}

.service-summary > span {
  color: #ff5a36;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-summary h3 {
  margin: 18px 0;
  color: #fbfaf6;
  font-size: 1.5rem;
}

.service-summary ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-summary li {
  position: relative;
  padding: 11px 0 11px 20px;
  border-bottom: 1px solid rgba(251, 250, 246, 0.13);
  color: rgba(251, 250, 246, 0.7);
  font-size: 0.86rem;
}

.service-summary li::before {
  position: absolute;
  top: 19px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5a36;
  content: "";
}

.service-content-section > header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}

.service-content-section > header h2 {
  margin-bottom: 0;
}

.service-content-section > header p {
  margin: 0;
  color: #6f6d66;
}

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

.service-benefit-grid article {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid #d7d3c9;
  border-radius: 24px;
  background: rgba(251, 250, 246, 0.54);
  overflow: hidden;
}

.service-benefit-grid article::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(17, 17, 15, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(17, 17, 15, 0.018);
  content: "";
}

.service-benefit-grid span {
  color: #ff5a36;
  font-family: Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 800;
}

.service-benefit-grid h3 {
  margin: 58px 0 14px;
  font-size: 1.42rem;
}

.service-benefit-grid p {
  margin: 0;
  color: #6f6d66;
  font-size: 0.86rem;
}

.service-scope {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  border-radius: 28px;
  background: #11110f;
  color: #fbfaf6;
  overflow: hidden;
}

.service-scope__intro {
  padding: clamp(30px, 5vw, 56px);
  background: #ff5a36;
  color: #11110f;
}

.service-scope__intro h2 {
  color: #11110f;
}

.service-scope__intro p {
  color: rgba(17, 17, 15, 0.68);
}

.entry-content .service-scope__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: clamp(28px, 5vw, 54px);
  list-style: none;
}

.entry-content .service-scope__list li {
  position: relative;
  margin: 0;
  padding: 19px 26px 19px 28px;
  border-bottom: 1px solid rgba(251, 250, 246, 0.12);
  color: rgba(251, 250, 246, 0.72);
}

.service-scope__list li::before {
  position: absolute;
  top: 28px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5a36;
  content: "";
}

.service-faq > h2 {
  margin-bottom: 34px;
}

.service-faq details {
  border-top: 1px solid #d7d3c9;
}

.service-faq details:last-child {
  border-bottom: 1px solid #d7d3c9;
}

.service-faq summary {
  position: relative;
  padding: 24px 52px 24px 0;
  color: #11110f;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 800;
  list-style: none;
}

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

.service-faq summary::after {
  position: absolute;
  top: 18px;
  right: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #d7d3c9;
  border-radius: 50%;
  content: "+";
  transition: transform 220ms ease;
}

.service-faq details[open] summary::after {
  background: #11110f;
  color: #fbfaf6;
  transform: rotate(45deg);
}

.service-faq details p {
  max-width: 850px;
  margin: 0;
  padding: 0 52px 24px 0;
  color: #6f6d66;
}

.service-process {
  position: relative;
  overflow: hidden;
}

.service-process::after {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(251, 250, 246, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(251, 250, 246, 0.018), 0 0 0 120px rgba(251, 250, 246, 0.01);
  content: "";
}

.service-process .container {
  position: relative;
  z-index: 1;
}

.service-process__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(251, 250, 246, 0.15);
  list-style: none;
}

.service-process__grid li {
  min-height: 300px;
  padding: 26px 22px;
  border-right: 1px solid rgba(251, 250, 246, 0.15);
}

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

.service-process__grid span {
  color: #ff5a36;
  font-family: Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 800;
}

.service-process__grid h3 {
  margin: 74px 0 16px;
  color: #fbfaf6;
  font-size: 1.25rem;
}

.service-process__grid p {
  margin: 0;
  color: rgba(251, 250, 246, 0.58);
  font-size: 0.82rem;
}

.compact-cta {
  padding-block: 80px;
  background: #e8e5dc;
}
.compact-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.compact-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.case-hero {
  padding-block: 145px 90px;
  background: #151513;
  color: #fbfaf6;
  overflow: hidden;
}
.case-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}
.case-hero__content {
  position: relative;
  z-index: 2;
}
.case-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(3.3rem, 6vw, 6rem);
}
.case-hero__lead {
  max-width: 660px;
  color: rgba(251, 250, 246, 0.64);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}
.case-hero__visual {
  position: relative;
}
.case-hero__visual::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(255, 90, 54, 0.3);
  content: "";
  filter: blur(80px);
  transform: translate(-50%, -50%);
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(251, 250, 246, 0.16);
}
.case-facts dt {
  margin-bottom: 4px;
  color: rgba(251, 250, 246, 0.42);
  font-size: 0.68rem;
  text-transform: uppercase;
}
.case-facts dd {
  margin: 0;
  font-size: 0.82rem;
}

.case-browser {
  position: relative;
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 21px;
  background: #fbfaf6;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  will-change: translate;
}
.case-browser--hero {
  width: 120%;
  transform: rotate(-2.5deg);
}
.case-browser--gallery {
  width: 100%;
}
.case-browser__bar {
  display: flex;
  height: 34px;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(17, 17, 15, 0.08);
  background: #f7f6f1;
}
.case-browser__bar i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #d6d3cb;
}
.case-browser__bar small {
  width: 42%;
  margin-left: 9px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #ebe9e3;
  color: #96938b;
  font-size: 0.45rem;
  white-space: nowrap;
  overflow: hidden;
}
.case-browser__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.case-browser .project-image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
}

.case-section {
  padding-block: clamp(68px, 7vw, 104px);
}
.case-section__grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.3fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 120px);
}
.case-section__label {
  color: #ff5a36;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.case-section h2 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
}
.case-section--summary {
  padding-block: clamp(58px, 6vw, 86px);
}
.case-section--brief {
  padding-block: clamp(48px, 5vw, 74px);
}
.case-section--tinted {
  background: #e8e5dc;
}
.case-section--dark {
  background: #11110f;
  color: #fbfaf6;
}
.case-section--dark h2 {
  color: #fbfaf6;
}

.case-two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(45px, 8vw, 110px);
}

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

.case-brief-grid article {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid #d7d3c9;
  border-radius: 22px;
  background: rgba(251, 250, 246, 0.72);
}

.case-brief-grid h2 {
  margin: 16px 0;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
}

.case-brief-grid article > p:last-child {
  color: #6f6d66;
  font-size: 0.98rem;
}

.case-section--summary .entry-content h2:first-child {
  margin-top: 0;
}

.case-two-columns article > p:last-child,
.case-section__grid article > p:last-child,
.case-section__grid > div > p {
  color: #6f6d66;
  font-size: 1.08rem;
}

.case-section--dark .case-list {
  color: rgba(251, 250, 246, 0.7);
}

.case-gallery {
  padding-block: clamp(68px, 7vw, 104px);
  background: #f3f1ea;
  overflow: hidden;
}
.case-gallery__heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.3fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 120px);
  margin-bottom: clamp(34px, 4vw, 54px);
}
.case-gallery__heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
}
.case-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: clamp(32px, 4vw, 58px) clamp(18px, 2.4vw, 34px);
  padding: 16px 8px 24px;
}
.case-gallery__item {
  position: relative;
  min-width: 0;
  margin: 0;
  will-change: translate;
}
.case-gallery__item--desktop-1 {
  grid-column: span 9;
  transform: rotate(-1.25deg);
}
.case-gallery__item--desktop-2 {
  grid-column: span 6;
  transform: rotate(1.1deg);
}
.case-gallery__item--desktop-3 {
  grid-column: span 6;
  transform: rotate(-0.85deg);
}
.case-gallery__item--mobile {
  width: 100%;
  grid-column: span 3;
  align-self: center;
  transform: rotate(1.8deg);
}
.case-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
}
.case-gallery__item figcaption {
  display: table;
  margin: 14px 18px 0;
  padding: 10px 13px;
  border-radius: 11px;
  background: #11110f;
  color: #fbfaf6;
  box-shadow: 0 12px 30px rgba(17, 17, 15, 0.14);
  font-size: 0.74rem;
  font-weight: 720;
  transform: rotate(-1deg);
}
.case-gallery__item--desktop-2 figcaption, .case-gallery__item--mobile figcaption {
  margin-left: auto;
  transform: rotate(1deg);
}
.case-gallery__grid:not(.has-mobile) .case-gallery__item--desktop-1 {
  grid-column: 1/-1;
}
.case-gallery__grid--desktop-2:not(.has-mobile) .case-gallery__item--desktop-2 {
  grid-column: 3/span 8;
}
.case-gallery__item--mobile:only-child {
  grid-column: 5/span 4;
}

.case-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.case-list li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid rgba(251, 250, 246, 0.14);
}
.case-list li::before {
  position: absolute;
  top: 23px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5a36;
  content: "";
}

.case-note {
  margin-top: 18px;
  color: #6f6d66;
  font-size: 0.72rem !important;
}

.next-case {
  display: grid;
  grid-template-columns: 0.4fr 1fr auto;
  align-items: center;
  gap: 40px;
  padding: clamp(50px, 7vw, 90px) max(24px, (100vw - 1280px) / 2);
  background: #ff5a36;
  color: #11110f;
}

.next-case span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.next-case strong {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.045em;
}

.next-case i {
  font-size: 2rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.next-case:hover i {
  transform: translate(6px, -6px);
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(460px, 1fr);
  gap: clamp(60px, 10vw, 140px);
}

.contact-page__form h2 {
  margin-bottom: 26px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.contact-methods {
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid #d7d3c9;
  list-style: none;
}

.contact-methods li {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-block: 18px;
  border-bottom: 1px solid #d7d3c9;
}

.contact-methods span {
  color: #6f6d66;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.contact-methods a {
  font-weight: 700;
}

.not-found-page {
  display: grid;
  min-height: 82vh;
  align-items: center;
  padding-block: 140px 90px;
  background: radial-gradient(circle at 78% 22%, rgba(255, 90, 54, 0.16), transparent 28%), #f3f1ea;
}

.not-found-page__code {
  margin-bottom: -30px;
  color: rgba(255, 90, 54, 0.1);
  font-size: clamp(9rem, 30vw, 24rem);
  font-weight: 850;
  line-height: 0.7;
  letter-spacing: -0.09em;
}

.not-found-page h1 {
  max-width: 900px;
  margin-bottom: 24px;
}

.not-found-page > .container > p:not(.eyebrow, .not-found-page__code) {
  max-width: 650px;
  color: #6f6d66;
  font-size: 1.1rem;
}

.post-list {
  padding-bottom: 120px;
}

.post-card {
  padding-block: 38px;
  border-bottom: 1px solid #d7d3c9;
}

.post-card__date {
  color: #6f6d66;
  font-size: 0.72rem;
}

.post-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

@media (max-width: 960px) {
  .case-hero .container {
    grid-template-columns: 1fr;
  }
  .case-browser--hero {
    width: 100%;
  }
  .case-brief-grid {
    grid-template-columns: 1fr 1fr;
  }
  .case-brief-grid article:last-child {
    grid-column: 1/-1;
  }
  .case-gallery__item--desktop-1 {
    grid-column: span 8;
  }
  .case-gallery__item--mobile {
    grid-column: span 4;
  }
  .contact-page__grid {
    grid-template-columns: 1fr;
  }
  .services-directory__intro,
  .service-intro-grid {
    grid-template-columns: 1fr;
  }
  .service-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-process__grid li {
    border-bottom: 1px solid rgba(251, 250, 246, 0.15);
  }
  .service-process__grid li:nth-child(2n) {
    border-right: 0;
  }
}
@media (max-width: 720px) {
  .compact-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .case-section__grid,
  .case-two-columns,
  .case-gallery__heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-brief-grid {
    grid-template-columns: 1fr;
  }
  .case-brief-grid article:last-child {
    grid-column: auto;
  }
  .case-gallery__grid {
    grid-template-columns: 1fr;
  }
  .case-gallery__item,
  .case-gallery__item--desktop-1,
  .case-gallery__item--desktop-2,
  .case-gallery__item--desktop-3,
  .case-gallery__item--mobile,
  .case-gallery__item--mobile:only-child {
    grid-column: 1;
    transform: none;
  }
  .case-gallery__item--mobile {
    width: min(74vw, 390px);
    justify-self: center;
  }
  .case-facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .next-case {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }
  .next-case strong {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .next-case i {
    grid-column: 2;
    grid-row: 1;
  }
  .service-choice-grid,
  .service-benefit-grid {
    grid-template-columns: 1fr;
  }
  .service-choice-grid article {
    min-height: 230px;
  }
  .service-scope {
    grid-template-columns: 1fr;
  }
  .service-scope__list {
    grid-template-columns: 1fr;
  }
  .service-content-section > header {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-process__grid {
    grid-template-columns: 1fr;
  }
  .service-process__grid li {
    min-height: 240px;
    border-right: 0;
  }
  .service-process__grid h3 {
    margin-top: 48px;
  }
}
.about-hero {
  position: relative;
  display: flex;
  min-height: 760px;
  align-items: center;
  padding-block: 160px 100px;
  background: radial-gradient(circle at 82% 25%, rgba(255, 90, 54, 0.18), transparent 27%), linear-gradient(145deg, #f3f1ea, #ece8df);
  overflow: hidden;
}
.about-hero::before {
  position: absolute;
  right: -8vw;
  bottom: -26vw;
  width: 64vw;
  height: 64vw;
  border: 1px solid rgba(17, 17, 15, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(17, 17, 15, 0.018), 0 0 0 14vw rgba(17, 17, 15, 0.012);
  content: "";
}
.about-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.62fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}
.about-hero__content h1 {
  max-width: 920px;
  margin-bottom: 32px;
  font-size: clamp(4rem, 8.2vw, 8.4rem);
  line-height: 0.84;
}
.about-hero__content h1 span {
  color: #ff5a36;
}
.about-hero__lead {
  max-width: 700px;
  color: #6f6d66;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}
.about-hero__content .text-link {
  margin-top: 25px;
}
.about-hero__visual {
  position: relative;
  display: grid;
  width: min(100%, 430px);
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid rgba(17, 17, 15, 0.13);
  border-radius: 50%;
  background: rgba(251, 250, 246, 0.42);
  box-shadow: inset 0 0 0 38px rgba(251, 250, 246, 0.22), 0 24px 80px rgba(23, 22, 18, 0.12);
  place-items: center;
}
.about-hero__visual::before {
  position: absolute;
  inset: 17%;
  border-radius: 50%;
  background: rgba(255, 90, 54, 0.2);
  filter: blur(28px);
  content: "";
}
.about-hero__visual strong {
  position: relative;
  z-index: 2;
  color: #11110f;
  font-size: clamp(6rem, 11vw, 10rem);
  font-weight: 950;
  letter-spacing: -0.12em;
  line-height: 1;
}
.about-hero__portrait {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 28px rgba(17, 17, 15, 0.16));
}
.about-hero__visual > span {
  position: absolute;
  z-index: 3;
  right: -18px;
  bottom: 15%;
  padding: 10px 14px;
  border-radius: 999px;
  background: #11110f;
  color: #fbfaf6;
  font-family: Consolas, ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transform: rotate(-3deg);
}

.about-orbit {
  position: absolute;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 50%;
  animation: about-orbit 20s linear infinite;
}

.about-orbit::before {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5a36;
  content: "";
  transform: translateX(-50%);
}

.about-orbit--outer {
  inset: 9%;
}

.about-orbit--inner {
  inset: 24%;
  animation-direction: reverse;
  animation-duration: 14s;
}

.about-manifesto {
  background: #fbfaf6;
}

.about-manifesto__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(44px, 8vw, 120px);
}

.about-manifesto__statement {
  position: sticky;
  top: 130px;
  display: grid;
  min-height: 390px;
  align-content: center;
  justify-items: start;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 26px;
  background: #11110f;
  color: #fbfaf6;
  box-shadow: 0 24px 80px rgba(23, 22, 18, 0.12);
  overflow: hidden;
  transform: rotate(-2deg);
}

.about-manifesto__statement::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(251, 250, 246, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(251, 250, 246, 0.025);
  content: "";
}

.about-manifesto__statement span,
.about-manifesto__statement b {
  position: relative;
  z-index: 1;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.about-manifesto__statement span:first-child {
  color: #ff5a36;
}

.about-manifesto__statement i,
.about-manifesto__statement strong {
  position: relative;
  z-index: 1;
  margin-block: 10px;
  color: rgba(251, 250, 246, 0.36);
  font-family: Consolas, monospace;
  font-size: 1rem;
  font-style: normal;
}

.about-manifesto__copy {
  columns: 2;
  column-gap: clamp(28px, 4vw, 54px);
}

.about-manifesto__copy p {
  margin: 0 0 24px;
  color: #6f6d66;
  font-size: 1.04rem;
  break-inside: avoid;
}

.about-manifesto__copy p:first-child::first-letter {
  float: left;
  margin: 5px 10px 0 0;
  color: #ff5a36;
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 0.72;
}

.about-principles {
  position: relative;
  overflow: hidden;
}

.about-principles::after {
  position: absolute;
  top: -250px;
  right: -180px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(251, 250, 246, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(251, 250, 246, 0.018), 0 0 0 130px rgba(251, 250, 246, 0.012);
  content: "";
}

.about-principles .container {
  position: relative;
  z-index: 1;
}

.about-accordion {
  border-top: 1px solid rgba(251, 250, 246, 0.18);
}

.about-accordion__item {
  border-bottom: 1px solid rgba(251, 250, 246, 0.18);
}

.about-accordion__trigger {
  display: grid;
  width: 100%;
  grid-template-columns: 60px minmax(250px, 0.85fr) minmax(280px, 0.72fr) 42px;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  border: 0;
  background: transparent;
  color: #fbfaf6;
  cursor: pointer;
  text-align: left;
  transition: padding 220ms ease, color 220ms ease;
}

.about-accordion__trigger:hover {
  padding-left: 10px;
  color: #ff5a36;
}

.about-accordion__trigger > span {
  color: #ff5a36;
  font-family: Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.about-accordion__trigger strong {
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  letter-spacing: -0.045em;
}

.about-accordion__trigger small {
  color: rgba(251, 250, 246, 0.48);
  font-size: 0.76rem;
  line-height: 1.5;
}

.about-accordion__trigger i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(251, 250, 246, 0.25);
  border-radius: 50%;
  font-size: 1.2rem;
  font-style: normal;
  transition: background-color 220ms ease, color 220ms ease, transform 320ms ease;
}

.about-accordion__item.is-open .about-accordion__trigger i {
  background: #ff5a36;
  color: #11110f;
  transform: rotate(45deg);
}

.about-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 480ms cubic-bezier(0.22, 0.8, 0.24, 1);
}

.about-accordion__panel > div {
  max-width: 900px;
  padding: 0 64px 0 84px;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-12px);
  transition: opacity 300ms ease, padding 420ms ease, transform 420ms ease;
}

.about-accordion__panel p {
  color: rgba(251, 250, 246, 0.68);
  font-size: 1rem;
}

.about-accordion__item.is-open .about-accordion__panel {
  grid-template-rows: 1fr;
}

.about-accordion__item.is-open .about-accordion__panel > div {
  padding-bottom: 38px;
  opacity: 1;
  transform: none;
}

.about-specialist {
  background: #f3f1ea;
}

.about-specialist__grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.75fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.about-specialist__story > p {
  color: #6f6d66;
  font-size: 1.04rem;
}

.about-specialist__badge {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 24px;
  margin-top: 38px;
  padding: 26px;
  border-radius: 22px;
  background: #ff5a36;
  color: #11110f;
  transform: rotate(-1.5deg);
}

.about-specialist__badge span {
  grid-row: 1/span 2;
  align-self: center;
  font-family: Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  writing-mode: vertical-rl;
}

.about-specialist__badge strong {
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.about-specialist__badge small {
  color: rgba(17, 17, 15, 0.68);
}

.about-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.about-profile-grid article {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border: 1px solid #d7d3c9;
  border-radius: 24px;
  background: rgba(251, 250, 246, 0.62);
  overflow: hidden;
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 350ms cubic-bezier(0.22, 0.8, 0.24, 1);
}

.about-profile-grid article::after {
  position: absolute;
  right: -55px;
  bottom: -60px;
  width: 155px;
  height: 155px;
  border: 1px solid rgba(17, 17, 15, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgba(17, 17, 15, 0.018);
  content: "";
}

.about-profile-grid article:hover {
  border-color: rgba(17, 17, 15, 0.28);
  box-shadow: 0 24px 80px rgba(23, 22, 18, 0.12);
  transform: translateY(-6px) rotate(-0.5deg);
}

.about-profile-grid span {
  color: #ff5a36;
  font-family: Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 800;
}

.about-profile-grid h3 {
  margin: 70px 0 14px;
  font-size: 1.55rem;
}

.about-profile-grid p {
  margin: 0;
  color: #6f6d66;
  font-size: 0.86rem;
}

.about-final {
  padding-block: clamp(72px, 9vw, 120px);
  background: #ff5a36;
}

.about-final__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.about-final h2 {
  max-width: 850px;
  margin-bottom: 28px;
  color: #11110f;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.88;
}

.about-final p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: rgba(17, 17, 15, 0.68);
}

.about-final .button {
  flex: 0 0 auto;
}

@keyframes about-orbit {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 980px) {
  .about-hero__grid,
  .about-specialist__grid {
    grid-template-columns: 1fr;
  }
  .about-hero__visual {
    width: 340px;
    justify-self: start;
  }
  .about-manifesto__grid {
    grid-template-columns: 1fr;
  }
  .about-manifesto__statement {
    position: relative;
    top: auto;
    width: min(100%, 620px);
    min-height: 300px;
  }
  .about-accordion__trigger {
    grid-template-columns: 48px minmax(0, 1fr) 42px;
  }
  .about-accordion__trigger small {
    grid-column: 2;
    grid-row: 2;
  }
  .about-accordion__trigger i {
    grid-column: 3;
    grid-row: 1/span 2;
  }
  .about-final__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .about-hero {
    min-height: auto;
    padding-block: 130px 76px;
  }
  .about-hero__content h1 {
    font-size: clamp(3.4rem, 15vw, 5.6rem);
  }
  .about-hero__visual {
    width: 250px;
  }
  .about-hero__visual > span {
    right: -32px;
    max-width: 210px;
    white-space: normal;
  }
  .about-manifesto__copy {
    columns: 1;
  }
  .about-accordion__trigger {
    grid-template-columns: 38px minmax(0, 1fr) 36px;
    gap: 12px;
    padding-block: 24px;
  }
  .about-accordion__trigger:hover {
    padding-left: 0;
    color: #fbfaf6;
  }
  .about-accordion__trigger i {
    width: 34px;
    height: 34px;
  }
  .about-accordion__panel > div {
    padding-inline: 50px 0;
  }
  .about-profile-grid {
    grid-template-columns: 1fr;
  }
  .about-profile-grid article {
    min-height: 230px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-orbit {
    animation: none;
  }
  .about-accordion__panel,
  .about-accordion__panel > div,
  .about-profile-grid article {
    transition: none;
  }
}
