*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 74px;
}
body {
  font-family: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: #a9b1b7;
  background: #1a1e22;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
input,
select,
textarea,
button {
  font: inherit;
  color: inherit;
}
::selection {
  background: #b5832f;
  color: #14181b;
}
:root {
  --accent: #b5832f;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 44px);
}
.section {
  padding-block: clamp(60px, 8vw, 108px);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #e9dcc1;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  flex: none;
  width: 28px;
  height: 2px;
  background: #b5832f;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b5832f;
  color: #211803;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.btn:focus-visible {
  outline: 2px solid #e9dcc1;
  outline-offset: 3px;
}
.btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}
.btn--ghost:focus-visible {
  outline: 2px solid #e9dcc1;
  outline-offset: 3px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b5832f;
  color: #211803;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  padding: 10px 18px;
  transition: top 0.2s ease;
}
.skip-link:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.skip-link:focus-visible {
  outline: 2px solid #e9dcc1;
  outline-offset: 3px;
}
.skip-link:focus {
  top: 12px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 24, 27, 0.9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5);
}
.site-header__bar {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 44px);
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  flex: none;
}
.site-header__logo img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
}
.nav__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e7e3d9;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav__link:hover,
.nav__link[aria-current="true"] {
  border-bottom-color: #b5832f;
}
.nav__link:focus-visible {
  outline: 2px solid #b5832f;
  outline-offset: 4px;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b5832f;
  color: #211803;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  padding: 11px 20px;
  font-size: 12.5px;
}
.nav__cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.nav__cta:focus-visible {
  outline: 2px solid #e9dcc1;
  outline-offset: 3px;
}
.nav-toggle {
  flex: none;
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  cursor: pointer;
}
.nav-toggle span {
  width: 19px;
  height: 2px;
  background: #e7e3d9;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a1e22;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 44px);
  padding-block: 12px 20px;
}
.mobile-nav.is-open {
  display: block;
}
.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav__link {
  padding: 13px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e7e3d9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b5832f;
  color: #211803;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  width: 100%;
  margin-top: 12px;
  padding: 14px;
  font-size: 13px;
}
.mobile-nav__cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.mobile-nav__cta:focus-visible {
  outline: 2px solid #e9dcc1;
  outline-offset: 3px;
}
@media (max-width: 879px) {
  .nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}
.hero {
  position: relative;
  min-height: min(80vh, 680px);
  display: flex;
  align-items: flex-end;
  background: #14181b;
  isolation: isolate;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  z-index: -2;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 24, 27, 0.62) 0%, rgba(20, 24, 27, 0.28) 34%, rgba(20, 24, 27, 0.92) 100%);
}
.hero__inner {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 44px);
  padding-bottom: clamp(44px, 6vw, 80px);
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e9dcc1;
  font-weight: 600;
  letter-spacing: 0.2em;
  flex-wrap: wrap;
}
.hero__eyebrow::before {
  content: "";
  flex: none;
  width: 28px;
  height: 2px;
  background: #b5832f;
}
.hero__eyebrow::before {
  content: "";
  flex: none;
  width: 28px;
  height: 2px;
  background: #b5832f;
}
.hero__eyebrow::before {
  width: 32px;
}
.hero__title {
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.01em;
  font-size: clamp(34px, 5vw, 60px);
  text-wrap: balance;
  color: #ffffff;
  line-height: 1.07;
  max-width: 18ch;
}
.hero__lead {
  margin-top: 22px;
  max-width: 52ch;
  color: #d7dadb;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}
.section--base {
  background: #1a1e22;
}
.section--alt {
  background: #23292d;
}
.section--deep {
  background: #14181b;
}
.section-head {
  max-width: 640px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-head__title {
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.01em;
  font-size: clamp(26px, 3.3vw, 42px);
  text-wrap: balance;
  color: #f1efe9;
}
.section-head__lead {
  margin-top: 18px;
  max-width: 54ch;
  color: #9aa2a8;
  font-size: 16px;
  line-height: 1.7;
}
.intro__grid {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}
.intro__title {
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.01em;
  font-size: clamp(26px, 3.3vw, 42px);
  text-wrap: balance;
  color: #f1efe9;
}
.intro__body {
  padding-top: 4px;
}
.intro__body p {
  font-size: 16.5px;
  line-height: 1.82;
  color: #a9b1b7;
  margin-bottom: 20px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.tag {
  font-size: 13px;
  font-weight: 600;
  color: #d7dde1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 9px 16px;
  border-radius: 2px;
}
.about__grid {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.about__media {
  position: relative;
}
.about__img {
  width: 100%;
  height: clamp(320px, 44vw, 500px);
  object-fit: cover;
  border-radius: 2px;
}
.about__badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 220px;
  background: #14181b;
  color: #ffffff;
  padding: 18px 24px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.about__badge__name {
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  font-size: 22px;
  line-height: 1.12;
}
.about__badge__meta {
  margin-top: 6px;
  font-size: 12.5px;
  color: #9aa2a8;
  letter-spacing: 0.03em;
}
.about__title {
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.01em;
  font-size: clamp(24px, 3vw, 38px);
  text-wrap: balance;
  color: #f1efe9;
  line-height: 1.16;
  margin-bottom: 22px;
}
.about__body p {
  font-size: 16px;
  line-height: 1.82;
  color: #a9b1b7;
  margin-bottom: 18px;
}
.about__body p:last-child {
  margin-bottom: 0;
}
.services__list {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 44px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.service {
  padding-block: clamp(24px, 3.2vw, 38px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}
.service:hover {
  background: rgba(255, 255, 255, 0.04);
}
.service__detail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(8px, 2vw, 36px);
  align-items: baseline;
}
.service__title {
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.16;
  color: #f1efe9;
}
.service__desc {
  max-width: 46ch;
  font-size: 15.5px;
  line-height: 1.7;
  color: #9aa2a8;
}
.work__head {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 22px;
  margin-bottom: clamp(32px, 5vw, 52px);
}
.work__head .section-head {
  margin-bottom: 0;
}
.work__head .section-head__title {
  color: #ffffff;
}
.work__link {
  white-space: nowrap;
  color: #e9dcc1;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid #b5832f;
  padding-bottom: 4px;
}
.work__body {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 44px);
}
.project-card {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0;
  background: #1d2226;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  color: inherit;
}
.project-card:focus-visible {
  outline: 2px solid #b5832f;
  outline-offset: 3px;
}
.feature {
  margin-bottom: 13px;
}
.feature__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.feature__media {
  position: relative;
  overflow: hidden;
  min-height: clamp(260px, 34vw, 440px);
}
.feature__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.feature:hover .feature__img {
  transform: scale(1.04);
}
.feature__text {
  padding: clamp(28px, 3.4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature__category {
  color: #b5832f;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.feature__title {
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.14;
  color: #f4f2ec;
  margin-bottom: 8px;
}
.feature__place {
  color: #9aa2a8;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}
.feature__summary {
  max-width: 48ch;
  font-size: 15.5px;
  line-height: 1.74;
  color: #a9b1b7;
  margin-bottom: 26px;
}
.feature__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e9dcc1;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.feature__more svg {
  stroke: #b5832f;
}
.work__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 13px;
}
.tile {
  position: relative;
  aspect-ratio: 4 / 3;
  border-color: rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease;
}
.tile:hover {
  border-color: rgba(181, 131, 47, 0.5);
}
.tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.tile:hover .tile__img {
  transform: scale(1.06);
}
.tile__count {
  position: absolute;
  top: 13px;
  right: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(10, 12, 14, 0.74);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 2px;
}
.tile__caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(8, 10, 12, 0.92) 100%);
}
.tile__category {
  color: #b5832f;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  margin-bottom: 6px;
  font-size: 10.5px;
  letter-spacing: 0.11em;
}
.tile__title {
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  font-size: 20px;
  line-height: 1.18;
  color: #ffffff;
}
.tile__place {
  margin-top: 3px;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: #aeb4ba;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 10, 12, 0.96);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
}
.lightbox[hidden] {
  display: none;
}
.lightbox__bar {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(16px, 2.4vw, 26px) clamp(18px, 4vw, 40px);
}
.lightbox__eyebrow {
  color: #b5832f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lightbox__title {
  margin-top: 3px;
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
  color: #ffffff;
}
.lb-btn {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lb-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}
.lb-btn:focus-visible {
  outline: 2px solid #b5832f;
  outline-offset: 2px;
}
.lightbox__close {
  width: 46px;
  height: 46px;
  border-radius: 2px;
}
.lightbox__stage {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 20px);
  padding-inline: clamp(10px, 3vw, 32px);
}
.lightbox__nav {
  width: clamp(42px, 5vw, 54px);
  height: clamp(42px, 5vw, 54px);
  border-radius: 50%;
}
.lightbox__nav:hover {
  background: #b5832f;
}
.lightbox__figure {
  position: relative;
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  margin: 0;
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  transition: opacity 0.2s ease;
}
.lightbox__figure.is-loading .lightbox__img {
  opacity: 0.55;
}
.lightbox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-top-color: #b5832f;
  animation: lb-spin 0.8s linear infinite;
  pointer-events: none;
}
.lightbox__spinner[hidden] {
  display: none;
}
@keyframes lb-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox__spinner {
    animation-duration: 1.6s;
  }
  .lightbox__img {
    transition: none;
  }
}
.lightbox__foot {
  flex: none;
  padding: clamp(12px, 2vw, 20px) clamp(18px, 4vw, 40px) clamp(18px, 3vw, 28px);
}
.lightbox__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.lightbox__caption {
  color: #cfd4d8;
  font-size: 14px;
  line-height: 1.4;
}
.lightbox__counter {
  flex: none;
  color: #7f868c;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.lightbox__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.lb-thumb {
  flex: none;
  width: 84px;
  height: 60px;
  padding: 0;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.18);
  opacity: 0.5;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.lb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lb-thumb:hover {
  opacity: 0.85;
}
.lb-thumb.is-active {
  opacity: 1;
  border-color: #b5832f;
}
.lb-thumb:focus-visible {
  outline: 2px solid #b5832f;
  outline-offset: 2px;
}
body.is-locked {
  overflow: hidden;
}
.reviews__grid {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
}
.review {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: #2b3238;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  padding: clamp(26px, 3vw, 38px);
}
.review__mark {
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  font-size: 50px;
  line-height: 0.6;
  height: 28px;
  color: #b5832f;
}
.review__quote {
  flex: 1;
  margin: 0 0 24px;
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.6;
  color: #ecebe5;
}
.review__cite {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  font-style: normal;
}
.review__name {
  font-weight: 700;
  font-size: 14.5px;
  color: #f1efe9;
}
.review__role {
  margin-top: 3px;
  font-size: 13px;
  color: #9aa2a8;
}
@media (max-width: 480px) {
  .reviews__grid {
    grid-template-columns: 1fr;
  }
}
.contact__grid {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 6vw, 72px);
}
.contact__title {
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.01em;
  font-size: clamp(26px, 3.3vw, 42px);
  text-wrap: balance;
  color: #ffffff;
  margin-bottom: 22px;
}
.contact__lead {
  max-width: 46ch;
  margin-bottom: 36px;
  font-size: 16px;
  line-height: 1.8;
  color: #bcc1c4;
}
.contact__methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-method__icon {
  flex: none;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  color: #b5832f;
}
.contact-method__label {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #909699;
}
.contact-method__value {
  display: block;
  margin-top: 2px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}
.contact__panel {
  background: #2b3238;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  padding: clamp(26px, 3.2vw, 42px);
}
.form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.field {
  display: block;
  margin-bottom: 16px;
}
.field__label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #d7dde1;
}
.field__control {
  width: 100%;
  padding: 12px 14px;
  background: #14181b;
  color: #e8eaec;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  font-size: 15px;
}
.field__control:focus {
  outline: none;
  border-color: #b5832f;
}
textarea.field__control {
  resize: vertical;
  min-height: 110px;
}
.form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b5832f;
  color: #211803;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  width: 100%;
  padding: 15px;
  transform: none;
}
.form__submit:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.form__submit:focus-visible {
  outline: 2px solid #e9dcc1;
  outline-offset: 3px;
}
.form__submit:hover {
  transform: none;
}
.htmx-request .form__submit {
  opacity: 0.6;
  pointer-events: none;
}
.contact__success {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 320px;
  height: 100%;
  background: #2b3238;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  padding: clamp(30px, 4vw, 52px);
}
.contact__success__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #b5832f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__success__title {
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  font-size: 26px;
  color: #f1efe9;
  margin-bottom: 10px;
}
.contact__success__text {
  max-width: 38ch;
  font-size: 15.5px;
  line-height: 1.7;
  color: #a9b1b7;
}
.contact__panel-wrap.is-sent .contact__panel {
  display: none;
}
.contact__panel-wrap.is-sent .contact__success {
  display: flex;
}
.site-footer {
  background: #14181b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(44px, 6vw, 64px) 0 34px;
}
.site-footer__inner {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 44px);
}
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__brand {
  max-width: 300px;
}
.site-footer__brand img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}
.site-footer__brand p {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.7;
  color: #9298a0;
}
.site-footer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 64px);
}
.foot-col__title {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.foot-col__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-col a,
.foot-col span {
  color: #9298a0;
  font-size: 14px;
  line-height: 1.6;
}
.foot-col a {
  transition: color 0.2s ease;
}
.foot-col a:hover {
  color: #ffffff;
}
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  color: #717880;
  font-size: 12.5px;
  line-height: 1.7;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media print {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  .service,
  .review,
  .project-card,
  .feature__inner {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .nav-toggle,
  .skip-link,
  .mobile-nav {
    display: none !important;
  }
}
