/* ============ RESET / BASE ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  background-color: #1a1a1a;
  color: #e7e5e4;
  font-family: "Cabin", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  background-color: transparent;
  color: inherit;
}

h1, h2, h3, h4 {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-weight: 400;
}

p {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

ul {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

blockquote {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

iframe {
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
}

/* ============ LAYOUT WRAPPERS ============ */
.main-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.main {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  width: 100%;
}

.page {
  display: block;
  width: 100%;
}

.page--hidden {
  display: none;
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background-color: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(74, 74, 74, 0.5);
  width: 100%;
}

.header__inner {
  max-width: 1200px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 12px;
}

.header__brand {
  display: flex;
  align-items: center;
  column-gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}

.header__brand-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background-color: #e85d3a;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  flex-shrink: 0;
}

.header__brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.header__brand-name {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #f5f5f4;
}

.header__brand-tag {
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #a8a29e;
  margin-top: 4px;
}

.header__nav {
  display: none;
  align-items: center;
  column-gap: 20px;
}

.header__nav-link {
  font-size: 14px;
  color: rgba(231, 229, 228, 0.85);
  transition-property: color;
  transition-duration: 200ms;
  transition-timing-function: ease;
}

.header__nav-link--hover {
  color: #e85d3a;
}

.header__actions {
  display: flex;
  align-items: center;
  column-gap: 8px;
  flex-shrink: 0;
}

.header__phone {
  display: none;
  font-size: 14px;
  font-weight: 500;
  color: #f5f5f4;
  transition-property: color;
  transition-duration: 200ms;
  transition-timing-function: ease;
}

.header__phone--hover {
  color: #e85d3a;
}

.header__cta {
  display: none;
  padding-top: 10px;
  padding-right: 16px;
  padding-bottom: 10px;
  padding-left: 16px;
  background-color: #e85d3a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  transition-property: opacity;
  transition-duration: 200ms;
  transition-timing-function: ease;
}

.header__cta--hover {
  opacity: 0.9;
}

.header__burger {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(74, 74, 74, 0.6);
  border-right-color: rgba(74, 74, 74, 0.6);
  border-bottom-color: rgba(74, 74, 74, 0.6);
  border-left-color: rgba(74, 74, 74, 0.6);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  flex-direction: column;
  row-gap: 4px;
}

.header__burger-line {
  display: block;
  height: 2px;
  width: 20px;
  background-color: #f5f5f4;
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(74, 74, 74, 0.5);
  background-color: #1a1a1a;
  row-gap: 2px;
  max-width: 1200px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

.mobile-menu--open {
  display: flex;
}

.mobile-menu__link {
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  font-size: 14px;
  color: #e7e5e4;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.mobile-menu__link--hover {
  background-color: rgba(74, 74, 74, 0.35);
}

.mobile-menu__phone {
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #e85d3a;
}

/* ============ HERO ============ */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 24px;
  row-gap: 32px;
  padding-top: 32px;
  padding-bottom: 64px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(74, 74, 74, 0.5);
}

.hero__left {
  z-index: 2;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  column-gap: 12px;
  margin-bottom: 24px;
}

.hero__eyebrow-line {
  display: block;
  width: 48px;
  height: 1px;
  background-color: #e85d3a;
}

.hero__eyebrow-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #e85d3a;
}

.hero__title {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 68px;
  line-height: 0.85;
  text-transform: uppercase;
  color: #f5f5f4;
}

.hero__title-line {
  display: block;
}

.hero__title-accent {
  display: inline-block;
  color: #e85d3a;
  position: relative;
}

.hero__title-reg {
  position: absolute;
  right: -20px;
  top: 4px;
  font-size: 16px;
  font-family: "Cabin", sans-serif;
  color: rgba(168, 162, 158, 0.55);
}

.hero__quote {
  margin-top: 32px;
  max-width: 520px;
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: #e85d3a;
  padding-top: 12px;
  padding-right: 0;
  padding-bottom: 12px;
  padding-left: 24px;
}

.hero__quote-text {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: #a8a29e;
  font-style: italic;
}

.hero__cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 24px;
  row-gap: 16px;
}

.hero__btn {
  display: inline-flex;
  padding-top: 16px;
  padding-right: 32px;
  padding-bottom: 16px;
  padding-left: 32px;
  background-color: #e85d3a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 20px 40px -10px rgba(232, 93, 58, 0.35);
  transition-property: opacity, transform;
  transition-duration: 300ms;
  transition-timing-function: ease;
}

.hero__btn--hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.hero__link {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(74, 74, 74, 0.7);
  transition-property: color, border-bottom-color;
  transition-duration: 300ms;
  transition-timing-function: ease;
}

.hero__link--hover {
  color: #e85d3a;
  border-bottom-color: #e85d3a;
}

.hero__right {
  position: relative;
}

.hero__image-frame {
  position: relative;
  z-index: 2;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  filter: grayscale(1) contrast(1.15);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-shadow {
  display: none;
}

.hero__badge {
  display: none;
}

/* ============ STATS ============ */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(74, 74, 74, 0.5);
}

.stats__item {
  padding-top: 24px;
  padding-right: 16px;
  padding-bottom: 24px;
  padding-left: 16px;
  text-align: center;
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: rgba(74, 74, 74, 0.5);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(74, 74, 74, 0.5);
}

.stats__item--last {
  border-right-width: 0;
}

.stats__num {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 30px;
  color: #e85d3a;
  line-height: 1;
}

.stats__label {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a8a29e;
}

/* ============ SECTION HEADS shared eyebrow style via unique classes per section ============ */
.services {
  padding-top: 64px;
  padding-bottom: 64px;
}

.services__head {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-bottom: 40px;
}

.services__head-left {
  display: block;
}

.services__eyebrow {
  display: flex;
  align-items: center;
  column-gap: 12px;
  margin-bottom: 14px;
}

.services__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background-color: #e85d3a;
}

.services__eyebrow-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #e85d3a;
}

.services__title {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 48px;
  line-height: 1;
  color: #f5f5f4;
}

.services__lead {
  max-width: 320px;
  font-size: 14px;
  line-height: 1.6;
  color: #a8a29e;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1px;
  column-gap: 1px;
  background-color: rgba(74, 74, 74, 0.35);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(74, 74, 74, 0.35);
  border-right-color: rgba(74, 74, 74, 0.35);
  border-bottom-color: rgba(74, 74, 74, 0.35);
  border-left-color: rgba(74, 74, 74, 0.35);
}

.services__card {
  background-color: #1a1a1a;
  padding-top: 32px;
  padding-right: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
  display: block;
  transition-property: background-color;
  transition-duration: 400ms;
  transition-timing-function: ease;
}

.services__card--hover {
  background-color: #2d2d2d;
}

.services__card-image-wrap {
  aspect-ratio: 1 / 1;
  margin-bottom: 32px;
  overflow: hidden;
  position: relative;
}

.services__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition-property: transform, filter;
  transition-duration: 700ms;
  transition-timing-function: ease;
}

.services__card-image--hover {
  transform: scale(1.1);
  filter: grayscale(0);
}

.services__card-num {
  position: absolute;
  top: 12px;
  right: 12px;
  padding-top: 4px;
  padding-right: 8px;
  padding-bottom: 4px;
  padding-left: 8px;
  font-size: 10px;
  color: #e85d3a;
  background-color: rgba(26, 26, 26, 0.8);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #e85d3a;
  border-right-color: #e85d3a;
  border-bottom-color: #e85d3a;
  border-left-color: #e85d3a;
}

.services__card-title {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 28px;
  color: #f5f5f4;
  margin-bottom: 12px;
}

.services__card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #a8a29e;
  margin-bottom: 20px;
}

.services__card-hr {
  height: 1px;
  width: 0;
  background-color: #e85d3a;
  transition-property: width;
  transition-duration: 700ms;
  transition-timing-function: ease;
}

.services__card-hr--hover {
  width: 100%;
}

.services__foot {
  margin-top: 40px;
  text-align: center;
}

.services__all-link {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(74, 74, 74, 0.7);
  color: #e7e5e4;
  transition-property: color, border-bottom-color;
  transition-duration: 300ms;
  transition-timing-function: ease;
}

.services__all-link--hover {
  color: #e85d3a;
  border-bottom-color: #e85d3a;
}

/* ============ MANIFEST ============ */
.manifest {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 40px;
  row-gap: 32px;
  padding-top: 64px;
  padding-bottom: 64px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(74, 74, 74, 0.5);
}

.manifest__image-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  filter: grayscale(1) contrast(1.15);
}

.manifest__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manifest__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manifest__eyebrow {
  display: flex;
  align-items: center;
  column-gap: 12px;
  margin-bottom: 14px;
}

.manifest__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background-color: #e85d3a;
}

.manifest__eyebrow-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #e85d3a;
}

.manifest__title {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 36px;
  line-height: 1.05;
  margin-bottom: 32px;
  color: #f5f5f4;
}

.manifest__title-accent {
  color: #e85d3a;
  font-style: italic;
}

.manifest__grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 24px;
  row-gap: 24px;
}

.manifest__item {
  padding-left: 16px;
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: rgba(232, 93, 58, 0.6);
}

.manifest__item-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #f5f5f4;
}

.manifest__item-desc {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #a8a29e;
}

/* ============ PORTFOLIO PREVIEW ============ */
.portfolio-preview {
  padding-top: 64px;
  padding-bottom: 64px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(74, 74, 74, 0.5);
}

.portfolio-preview__head {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-bottom: 32px;
}

.portfolio-preview__head-left {
  display: block;
}

.portfolio-preview__eyebrow {
  display: flex;
  align-items: center;
  column-gap: 12px;
  margin-bottom: 14px;
}

.portfolio-preview__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background-color: #e85d3a;
}

.portfolio-preview__eyebrow-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #e85d3a;
}

.portfolio-preview__title {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 48px;
  line-height: 1;
  color: #f5f5f4;
}

.portfolio-preview__link {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(74, 74, 74, 0.7);
  color: #e7e5e4;
  align-self: flex-start;
  transition-property: color, border-bottom-color;
  transition-duration: 300ms;
  transition-timing-function: ease;
}

.portfolio-preview__link--hover {
  color: #e85d3a;
  border-bottom-color: #e85d3a;
}

.portfolio-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 12px;
  row-gap: 12px;
}

.portfolio-preview__cell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.portfolio-preview__cell--tall {
  aspect-ratio: 3 / 4;
}

.portfolio-preview__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition-property: transform, filter;
  transition-duration: 700ms;
  transition-timing-function: ease;
}

.portfolio-preview__img--hover {
  transform: scale(1.05);
  filter: grayscale(0);
}

.portfolio-preview__overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  opacity: 0;
  transform: translateY(16px);
  transition-property: opacity, transform;
  transition-duration: 500ms;
  transition-timing-function: ease;
}

.portfolio-preview__overlay--hover {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-preview__cap {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e85d3a;
}

.portfolio-preview__label {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 18px;
  color: #f5f5f4;
  line-height: 1.1;
}

/* ============ REVIEWS ============ */
.reviews {
  padding-top: 64px;
  padding-bottom: 64px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(74, 74, 74, 0.5);
}

.reviews__head {
  text-align: center;
  margin-bottom: 40px;
}

.reviews__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  margin-bottom: 14px;
}

.reviews__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background-color: #e85d3a;
}

.reviews__eyebrow-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #e85d3a;
}

.reviews__title {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 36px;
  color: #f5f5f4;
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1px;
  row-gap: 1px;
  background-color: rgba(74, 74, 74, 0.35);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(74, 74, 74, 0.35);
  border-right-color: rgba(74, 74, 74, 0.35);
  border-bottom-color: rgba(74, 74, 74, 0.35);
  border-left-color: rgba(74, 74, 74, 0.35);
}

.reviews__item {
  background-color: #1a1a1a;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}

.reviews__quote-mark {
  font-family: "Abril Fatface", Georgia, serif;
  color: #e85d3a;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
}

.reviews__text {
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
  color: rgba(231, 229, 228, 0.9);
}

.reviews__author {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a8a29e;
}

.reviews__author-name {
  color: #f5f5f4;
  font-weight: 600;
}

/* ============ CTA BLOCK ============ */
.cta-block {
  margin-top: 64px;
  margin-bottom: 64px;
  background-color: #e85d3a;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-block--sm {
  margin-top: 32px;
  margin-bottom: 32px;
}

.cta-block__body {
  padding-top: 48px;
  padding-right: 24px;
  padding-bottom: 48px;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: flex-start;
}

.cta-block__eyebrow {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.85;
}

.cta-block__title {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 32px;
  line-height: 0.95;
}

.cta-block__lead {
  opacity: 0.9;
  max-width: 480px;
  font-size: 14px;
}

.cta-block__actions {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 12px;
}

.cta-block__btn {
  padding-top: 14px;
  padding-right: 24px;
  padding-bottom: 14px;
  padding-left: 24px;
  background-color: #1a1a1a;
  color: #f5f5f4;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition-property: opacity;
  transition-duration: 200ms;
  transition-timing-function: ease;
}

.cta-block__btn--ghost {
  background-color: transparent;
  color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.4);
  border-right-color: rgba(255, 255, 255, 0.4);
  border-bottom-color: rgba(255, 255, 255, 0.4);
  border-left-color: rgba(255, 255, 255, 0.4);
}

.cta-block__btn--hover {
  opacity: 0.9;
}

/* ============ FOOTER ============ */
.footer {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(74, 74, 74, 0.5);
  background-color: rgba(45, 45, 45, 0.35);
  margin-top: 48px;
  width: 100%;
}

.footer__inner {
  max-width: 1200px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 32px;
  row-gap: 32px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.footer__col {
  display: block;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
}

.footer__brand-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background-color: #e85d3a;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.footer__brand-name {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 20px;
  color: #f5f5f4;
}

.footer__desc {
  margin-top: 14px;
  max-width: 320px;
  font-size: 14px;
  color: #a8a29e;
}

.footer__col-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a8a29e;
  margin-bottom: 12px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.footer__list-item {
  font-size: 14px;
  color: #e7e5e4;
}

.footer__list-item--muted {
  color: #a8a29e;
  font-size: 12px;
  padding-top: 8px;
}

.footer__list-link {
  color: #e7e5e4;
  transition-property: color;
  transition-duration: 200ms;
  transition-timing-function: ease;
}

.footer__list-link--hover {
  color: #e85d3a;
}

.footer__bottom {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(74, 74, 74, 0.5);
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  font-size: 12px;
  color: #a8a29e;
}

.footer__bottom-copy {
  display: block;
}

.footer__bottom-note {
  display: block;
}

/* ============ PAGE HEAD ============ */
.page-head {
  padding-top: 48px;
  padding-bottom: 48px;
  text-align: center;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(74, 74, 74, 0.5);
}

.page-head__eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #e85d3a;
  margin-bottom: 12px;
}

.page-head__title {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 40px;
  line-height: 1;
  color: #f5f5f4;
}

.page-head__lead {
  max-width: 620px;
  margin-top: 16px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: #a8a29e;
  font-size: 15px;
}

/* ============ SERVICES LIST (services page) ============ */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 20px;
  row-gap: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.service-block {
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  background-color: #2d2d2d;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(74, 74, 74, 0.5);
  border-right-color: rgba(74, 74, 74, 0.5);
  border-bottom-color: rgba(74, 74, 74, 0.5);
  border-left-color: rgba(74, 74, 74, 0.5);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.service-block__num {
  font-size: 12px;
  color: #a8a29e;
}

.service-block__title {
  margin-top: 8px;
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 26px;
  color: #f5f5f4;
}

.service-block__desc {
  margin-top: 12px;
  font-size: 14px;
  color: #a8a29e;
  line-height: 1.6;
}

.service-block__list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

.service-block__list-item {
  font-size: 14px;
  color: #e7e5e4;
  display: flex;
  column-gap: 8px;
}

.service-block__list-dash {
  color: #e85d3a;
}

.service-block__foot {
  margin-top: 20px;
  padding-top: 16px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(74, 74, 74, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 12px;
}

.service-block__price {
  font-size: 14px;
  font-weight: 700;
  color: #f5f5f4;
}

.service-block__link {
  font-size: 14px;
  font-weight: 500;
  color: #e85d3a;
  text-decoration-line: underline;
  text-underline-offset: 4px;
}

/* ============ PORTFOLIO LIST ============ */
.portfolio-list {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 16px;
  row-gap: 16px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.portfolio-card {
  overflow: hidden;
  background-color: #2d2d2d;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(74, 74, 74, 0.5);
  border-right-color: rgba(74, 74, 74, 0.5);
  border-bottom-color: rgba(74, 74, 74, 0.5);
  border-left-color: rgba(74, 74, 74, 0.5);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  transition-property: border-top-color, border-right-color, border-bottom-color, border-left-color;
  transition-duration: 300ms;
  transition-timing-function: ease;
}

.portfolio-card__media {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background-color: #1a1a1a;
}

.portfolio-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-property: transform;
  transition-duration: 500ms;
  transition-timing-function: ease;
}

.portfolio-card--hover .portfolio-card__img {
  transform: scale(1.05);
}

.portfolio-card__body {
  padding-top: 20px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}

.portfolio-card--hover {
  border-top-color: #e85d3a;
  border-right-color: #e85d3a;
  border-bottom-color: #e85d3a;
  border-left-color: #e85d3a;
}

.portfolio-card__num {
  font-size: 12px;
  color: #a8a29e;
}

.portfolio-card__title {
  margin-top: 8px;
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 22px;
  color: #f5f5f4;
}

.portfolio-card__desc {
  margin-top: 8px;
  font-size: 14px;
  color: #a8a29e;
}

.portfolio-card__master {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e85d3a;
}

/* ============ MASTERS ============ */
.masters-list {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.master-card {
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  background-color: #2d2d2d;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(74, 74, 74, 0.5);
  border-right-color: rgba(74, 74, 74, 0.5);
  border-bottom-color: rgba(74, 74, 74, 0.5);
  border-left-color: rgba(74, 74, 74, 0.5);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 32px;
  row-gap: 20px;
}

.master-card__head {
  display: flex;
  align-items: baseline;
  column-gap: 16px;
}

.master-card__num {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 64px;
  color: #e85d3a;
  line-height: 1;
}

.master-card__exp {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a8a29e;
}

.master-card__body {
  display: block;
}

.master-card__name {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 32px;
  color: #f5f5f4;
}

.master-card__role {
  margin-top: 4px;
  font-size: 14px;
  color: #e85d3a;
}

.master-card__bio {
  margin-top: 16px;
  font-size: 15px;
  color: #a8a29e;
  line-height: 1.65;
}

.master-card__skills {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 8px;
}

.master-card__skill {
  padding-top: 6px;
  padding-right: 12px;
  padding-bottom: 6px;
  padding-left: 12px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(74, 74, 74, 0.6);
  border-right-color: rgba(74, 74, 74, 0.6);
  border-bottom-color: rgba(74, 74, 74, 0.6);
  border-left-color: rgba(74, 74, 74, 0.6);
  background-color: #1a1a1a;
  font-size: 12px;
  color: #e7e5e4;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.master-card__link {
  display: inline-flex;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #e85d3a;
  text-decoration-line: underline;
  text-underline-offset: 4px;
}

/* ============ PRICES ============ */
.prices-list {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 800px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

.price-group {
  display: block;
}

.price-group__head {
  display: flex;
  align-items: baseline;
  column-gap: 16px;
  margin-bottom: 16px;
}

.price-group__num {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 28px;
  color: #e85d3a;
}

.price-group__title {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 24px;
  color: #f5f5f4;
}

.price-group__list {
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: rgba(74, 74, 74, 0.5);
  border-bottom-color: rgba(74, 74, 74, 0.5);
}

.price-group__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  column-gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 14px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(74, 74, 74, 0.35);
}

.price-group__row--last {
  border-bottom-width: 0;
}

.price-group__row-name {
  color: #e7e5e4;
}

.price-group__row-price {
  font-weight: 700;
  color: #e85d3a;
  white-space: nowrap;
}

/* ============ ABOUT ============ */
.about {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 48px;
  max-width: 800px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

.about-section {
  display: block;
}

.about-section__title {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 28px;
  color: #f5f5f4;
  margin-bottom: 16px;
}

.about-section__text {
  font-size: 15px;
  color: #a8a29e;
  line-height: 1.7;
}

.about-principles {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 16px;
  row-gap: 16px;
}

.about-principle {
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  background-color: #2d2d2d;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(74, 74, 74, 0.5);
  border-right-color: rgba(74, 74, 74, 0.5);
  border-bottom-color: rgba(74, 74, 74, 0.5);
  border-left-color: rgba(74, 74, 74, 0.5);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.about-principle__title {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 22px;
  color: #f5f5f4;
}

.about-principle__desc {
  margin-top: 8px;
  font-size: 14px;
  color: #a8a29e;
}

.about-req {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 12px;
  row-gap: 12px;
}

.about-req__row {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  font-size: 14px;
}

.about-req__label {
  color: #a8a29e;
  font-size: 12px;
}

.about-req__value {
  color: #e7e5e4;
}

.about-req__link {
  color: #e7e5e4;
  text-decoration-line: underline;
}

/* ============ FAQ ============ */
.faq {
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 800px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  background-color: #2d2d2d;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(74, 74, 74, 0.5);
  border-right-color: rgba(74, 74, 74, 0.5);
  border-bottom-color: rgba(74, 74, 74, 0.5);
  border-left-color: rgba(74, 74, 74, 0.5);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.faq__item {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(74, 74, 74, 0.5);
}

.faq__item--last {
  border-bottom-width: 0;
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 12px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  text-align: left;
  font-family: inherit;
  transition-property: background-color;
  transition-duration: 200ms;
  transition-timing-function: ease;
}

.faq__q--hover {
  background-color: rgba(26, 26, 26, 0.5);
}

.faq__q-text {
  font-weight: 600;
  color: #f5f5f4;
  font-size: 15px;
}

.faq__q-icon {
  font-size: 22px;
  color: #e85d3a;
  flex-shrink: 0;
}

.faq__a {
  display: none;
  padding-top: 0;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  font-size: 14px;
  color: #a8a29e;
  line-height: 1.7;
}

.faq__a--open {
  display: block;
}

/* ============ CONTACT ============ */
.contact-grid {
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 32px;
  row-gap: 32px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.info-card {
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  background-color: #2d2d2d;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(74, 74, 74, 0.5);
  border-right-color: rgba(74, 74, 74, 0.5);
  border-bottom-color: rgba(74, 74, 74, 0.5);
  border-left-color: rgba(74, 74, 74, 0.5);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.info-card__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e85d3a;
}

.info-card__value {
  margin-top: 8px;
  font-size: 15px;
  color: #e7e5e4;
}

.info-card__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 15px;
  color: #e7e5e4;
  text-decoration-line: underline;
}

.contact-form {
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  background-color: #2d2d2d;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(74, 74, 74, 0.5);
  border-right-color: rgba(74, 74, 74, 0.5);
  border-bottom-color: rgba(74, 74, 74, 0.5);
  border-left-color: rgba(74, 74, 74, 0.5);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.contact-form__title {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 24px;
  color: #f5f5f4;
}

.contact-form__field {
  display: block;
}

.contact-form__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a8a29e;
  margin-bottom: 6px;
}

.contact-form__input {
  width: 100%;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  background-color: #1a1a1a;
  color: #f5f5f4;
  font-family: inherit;
  font-size: 14px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(74, 74, 74, 0.6);
  border-right-color: rgba(74, 74, 74, 0.6);
  border-bottom-color: rgba(74, 74, 74, 0.6);
  border-left-color: rgba(74, 74, 74, 0.6);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  outline-style: none;
}

.contact-form__textarea {
  width: 100%;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  background-color: #1a1a1a;
  color: #f5f5f4;
  font-family: inherit;
  font-size: 14px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(74, 74, 74, 0.6);
  border-right-color: rgba(74, 74, 74, 0.6);
  border-bottom-color: rgba(74, 74, 74, 0.6);
  border-left-color: rgba(74, 74, 74, 0.6);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  outline-style: none;
  resize: none;
}

.contact-form__error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #f87171;
}

.contact-form__consent {
  display: flex;
  align-items: flex-start;
  column-gap: 8px;
  font-size: 12px;
  color: #a8a29e;
}

.contact-form__checkbox {
  margin-top: 4px;
  accent-color: #e85d3a;
}

.contact-form__consent-text {
  display: block;
}

.contact-form__consent-link {
  color: #e7e5e4;
  text-decoration-line: underline;
}

.contact-form__submit {
  width: 100%;
  padding-top: 14px;
  padding-right: 20px;
  padding-bottom: 14px;
  padding-left: 20px;
  background-color: #e85d3a;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  transition-property: opacity;
  transition-duration: 200ms;
  transition-timing-function: ease;
}

.contact-form__submit--hover {
  opacity: 0.9;
}

.contact-form__success {
  font-size: 13px;
  color: #a8a29e;
}

.map-block {
  margin-bottom: 48px;
}

.map-block__title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e85d3a;
  margin-bottom: 12px;
}

.map-block__addr {
  padding-top: 14px;
  padding-right: 16px;
  padding-bottom: 14px;
  padding-left: 16px;
  background-color: #2d2d2d;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(74, 74, 74, 0.5);
  border-right-color: rgba(74, 74, 74, 0.5);
  border-bottom-color: rgba(74, 74, 74, 0.5);
  border-left-color: rgba(74, 74, 74, 0.5);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  color: #f5f5f4;
  font-size: 14px;
  font-weight: 500;
}

.map-block__frame-wrap {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-right-color: rgba(74, 74, 74, 0.5);
  border-bottom-color: rgba(74, 74, 74, 0.5);
  border-left-color: rgba(74, 74, 74, 0.5);
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.map-block__frame {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============ LEGAL ============ */
.legal {
  max-width: 720px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 40px;
  padding-bottom: 64px;
}

.legal__title {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 32px;
  color: #f5f5f4;
}

.legal__date {
  margin-top: 8px;
  font-size: 13px;
  color: #a8a29e;
}

.legal__section {
  margin-top: 32px;
}

.legal__section-title {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 20px;
  color: #f5f5f4;
}

.legal__section-text {
  margin-top: 12px;
  font-size: 15px;
  color: #a8a29e;
  line-height: 1.7;
}

.legal__link {
  color: #e7e5e4;
  text-decoration-line: underline;
}

/* ============ CHAT ============ */
.chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding-top: 10px;
  padding-right: 16px;
  padding-bottom: 10px;
  padding-left: 12px;
  background-color: #e85d3a;
  color: #ffffff;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.6);
  transition-property: opacity, transform;
  transition-duration: 200ms;
  transition-timing-function: ease;
}

.chat-btn--hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

.chat-btn--hidden {
  display: none;
}

.chat-btn__avatar {
  width: 36px;
  height: 36px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  object-fit: cover;
  outline-width: 2px;
  outline-style: solid;
  outline-color: rgba(255, 255, 255, 0.5);
}

.chat-btn__label {
  font-size: 14px;
  font-weight: 500;
}

.chat-window {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  width: calc(100vw - 40px);
  max-width: 380px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  background-color: #2d2d2d;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(74, 74, 74, 0.6);
  border-right-color: rgba(74, 74, 74, 0.6);
  border-bottom-color: rgba(74, 74, 74, 0.6);
  border-left-color: rgba(74, 74, 74, 0.6);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.chat-window--open {
  display: flex;
}

.chat-window__header {
  display: flex;
  align-items: center;
  column-gap: 12px;
  background-color: #e85d3a;
  color: #ffffff;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
}

.chat-window__avatar {
  width: 44px;
  height: 44px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  object-fit: cover;
  outline-width: 2px;
  outline-style: solid;
  outline-color: rgba(255, 255, 255, 0.4);
}

.chat-window__meta {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  min-width: 0;
}

.chat-window__name {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.chat-window__status {
  font-size: 11px;
  opacity: 0.85;
  color: #ffffff;
}

.chat-window__close {
  padding-top: 6px;
  padding-right: 10px;
  padding-bottom: 6px;
  padding-left: 10px;
  font-size: 22px;
  line-height: 1;
  color: #ffffff;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  transition-property: background-color;
  transition-duration: 200ms;
  transition-timing-function: ease;
}

.chat-window__close--hover {
  background-color: rgba(255, 255, 255, 0.18);
}

.chat-window__body {
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  max-height: 55vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  background-color: rgba(26, 26, 26, 0.6);
}

.chat-window__msg {
  max-width: 85%;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  font-size: 14px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
}

.chat-window__msg--bot {
  background-color: #2d2d2d;
  color: #e7e5e4;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(74, 74, 74, 0.6);
  border-right-color: rgba(74, 74, 74, 0.6);
  border-bottom-color: rgba(74, 74, 74, 0.6);
  border-left-color: rgba(74, 74, 74, 0.6);
  align-self: flex-start;
}

.chat-window__msg--user {
  background-color: #e85d3a;
  color: #ffffff;
  align-self: flex-end;
}

.chat-window__form {
  display: flex;
  align-items: center;
  column-gap: 8px;
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  background-color: #2d2d2d;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(74, 74, 74, 0.5);
}

.chat-window__input {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  padding-top: 8px;
  padding-right: 14px;
  padding-bottom: 8px;
  padding-left: 14px;
  background-color: #1a1a1a;
  color: #f5f5f4;
  font-family: inherit;
  font-size: 14px;
  outline-style: none;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(74, 74, 74, 0.6);
  border-right-color: rgba(74, 74, 74, 0.6);
  border-bottom-color: rgba(74, 74, 74, 0.6);
  border-left-color: rgba(74, 74, 74, 0.6);
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  min-width: 0;
}

.chat-window__send {
  padding-top: 8px;
  padding-right: 14px;
  padding-bottom: 8px;
  padding-left: 14px;
  background-color: #e85d3a;
  color: #ffffff;
  font-size: 14px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
}

/* ============ COOKIE ============ */
.cookie {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  max-width: 420px;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  background-color: #2d2d2d;
  color: #e7e5e4;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(74, 74, 74, 0.6);
  border-right-color: rgba(74, 74, 74, 0.6);
  border-bottom-color: rgba(74, 74, 74, 0.6);
  border-left-color: rgba(74, 74, 74, 0.6);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  display: block;
}

.cookie--hidden {
  display: none;
}

.cookie__text {
  font-size: 13px;
  line-height: 1.55;
}

.cookie__actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 8px;
  row-gap: 8px;
}

.cookie__accept {
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  background-color: #e85d3a;
  color: #ffffff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.cookie__link {
  font-size: 13px;
  color: #a8a29e;
  text-decoration-line: underline;
}

/* ============ RESPONSIVE — TABLET ============ */
@media (min-width: 640px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero__title {
    font-size: 96px;
  }
  .services__title,
  .portfolio-preview__title {
    font-size: 64px;
  }
  .manifest__title {
    font-size: 48px;
  }
  .cta-block__body {
    padding-top: 56px;
    padding-right: 48px;
    padding-bottom: 56px;
    padding-left: 48px;
  }
  .cta-block__title {
    font-size: 42px;
  }
  .page-head__title {
    font-size: 52px;
  }
  .reviews__grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-list {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-list {
    grid-template-columns: 1fr 1fr;
  }
  .about-principles {
    grid-template-columns: 1fr 1fr;
  }
  .about-req {
    grid-template-columns: 1fr 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .header__phone {
    display: inline-flex;
  }
  .header__cta {
    display: inline-flex;
  }
  .master-card {
    grid-template-columns: 220px 1fr;
  }
  .master-card__num {
    font-size: 96px;
  }
}

/* ============ RESPONSIVE — DESKTOP ============ */
@media (min-width: 1024px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
  .header__nav {
    display: flex;
  }
  .header__burger {
    display: none;
  }
  .mobile-menu--open {
    display: none;
  }
  .hero {
    grid-template-columns: 7fr 5fr;
    padding-top: 56px;
    padding-bottom: 96px;
  }
  .hero__title {
    font-size: 140px;
  }
  .stats {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .stats__item {
    border-bottom-width: 0;
  }
  .services__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .portfolio-preview__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .services__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .portfolio-preview__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .manifest {
    grid-template-columns: 5fr 7fr;
  }
  .manifest__grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-list {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .chat-window {
    max-width: 400px;
  }
}
