.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  backdrop-filter: blur(18px);
  background:
    radial-gradient(circle at top right, rgba(232, 90, 79, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(28, 20, 17, 0.92), rgba(45, 31, 24, 0.82));
  border-bottom: 1px solid rgba(255, 244, 236, 0.08);
  overflow: hidden;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.site-header::before {
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(232, 90, 79, 0.92), rgba(255, 184, 143, 0.86), rgba(232, 90, 79, 0.72));
}

.site-header::after {
  top: -46px;
  right: min(12vw, 120px);
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(232, 90, 79, 0.12), transparent 68%);
  filter: blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.site-brand img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(45, 31, 24, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.site-brand__stack {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.site-brand__eyebrow {
  color: rgba(247, 243, 234, 0.62);
  font: 700 0.72rem/1 "Lexend", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-brand__name {
  color: #f7f3ea;
  font: 700 1.04rem/1 "Lexend", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.site-header__meta::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -42%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: skewX(-20deg);
  animation: headerMetaSheen 5.8s ease-in-out infinite;
}

.site-header__meta-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8f6a, #df5b4e);
  box-shadow: 0 0 0 6px rgba(223, 91, 78, 0.12);
  animation: headerMetaPulse 2.8s ease-in-out infinite;
}

.site-header__meta-text {
  color: rgba(247, 243, 234, 0.82);
  font: 700 0.78rem/1 "Lexend", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

@keyframes headerMetaPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(223, 91, 78, 0.1);
  }

  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 10px rgba(223, 91, 78, 0.16);
  }
}

@keyframes headerMetaSheen {
  0%,
  100% {
    transform: translateX(0) skewX(-20deg);
    opacity: 0;
  }

  15%,
  65% {
    opacity: 0;
  }

  30% {
    transform: translateX(420%) skewX(-20deg);
    opacity: 1;
  }
}

.site-footer {
  padding: 72px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(232, 90, 79, 0.24), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(135deg, #18110d, #271912 52%, #1f140f);
  color: #f7f3ea;
  overflow: hidden;
  position: relative;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.site-footer::before {
  top: 22px;
  right: min(9vw, 84px);
  width: 128px;
  height: 128px;
  border: 1px solid rgba(247, 243, 234, 0.1);
  opacity: 0.55;
}

.site-footer::after {
  left: -42px;
  bottom: 52px;
  width: 196px;
  height: 196px;
  background: radial-gradient(circle, rgba(232, 90, 79, 0.18), transparent 68%);
  filter: blur(2px);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: flex-start;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.site-footer__hero,
.site-footer__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__eyebrow {
  margin: 0;
  color: rgba(247, 243, 234, 0.78);
  font: 700 0.8rem/1 "Lexend", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__title {
  margin: 0;
  max-width: 11ch;
  font: 700 clamp(1.95rem, 4.2vw, 3.85rem)/1 "Lexend", sans-serif;
  letter-spacing: -0.06em;
}

.site-footer__lead {
  max-width: 58ch;
  margin: 0;
  color: rgba(247, 243, 234, 0.8);
  font: 400 1rem/1.75 "Lexend", sans-serif;
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer__badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(247, 243, 234, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff3eb;
  font: 700 0.82rem/1 "Lexend", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 6px;
}

.site-button--ghost-light {
  border-color: rgba(247, 243, 234, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #f7f3ea;
}

.site-button--ghost-light:hover,
.site-button--ghost-light:focus-visible {
  border-color: rgba(247, 243, 234, 0.36);
  background: rgba(255, 255, 255, 0.14);
}

.site-footer__actions .site-button {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.site-footer__actions .site-button:hover,
.site-footer__actions .site-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.site-footer__card {
  padding: 20px 22px;
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.site-footer__card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(255, 221, 204, 0.92), rgba(232, 90, 79, 0.12));
}

.site-footer__card:hover,
.site-footer__card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(247, 243, 234, 0.2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.22);
}

.site-footer__card-title {
  margin: 0 0 12px;
  color: rgba(247, 243, 234, 0.62);
  font: 700 0.76rem/1 "Lexend", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__card-text {
  margin: 0;
  color: rgba(247, 243, 234, 0.88);
  font: 400 0.96rem/1.7 "Lexend", sans-serif;
}

.site-footer__contact {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid rgba(247, 243, 234, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: #f7f3ea;
  text-decoration: none;
  font: 500 1rem/1.55 "Lexend", sans-serif;
  transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.site-footer__contact + .site-footer__contact {
  margin-top: 10px;
}

.site-footer__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(232, 90, 79, 0.16));
  color: #fff3eb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.site-footer__contact-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.site-footer__contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.site-footer__contact-label {
  color: rgba(247, 243, 234, 0.58);
  font: 700 0.72rem/1 "Lexend", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__contact-value {
  color: #f7f3ea;
  font: 500 0.98rem/1.4 "Lexend", sans-serif;
  overflow-wrap: anywhere;
}

.site-footer__contact:hover,
.site-footer__contact:focus-visible {
  border-color: rgba(247, 243, 234, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: #ffd8cc;
  transform: translateX(4px);
}

.site-footer__nav {
  display: grid;
  gap: 10px;
}

.site-footer__nav a {
  position: relative;
  color: rgba(247, 243, 234, 0.9);
  text-decoration: none;
  font: 500 0.96rem/1.45 "Lexend", sans-serif;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: rgba(255, 216, 204, 0.9);
  transition: width 0.22s ease;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: #ffd8cc;
  transform: translateX(4px);
}

.site-footer__nav a:hover::after,
.site-footer__nav a:focus-visible::after {
  width: 100%;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(247, 243, 234, 0.12);
  position: relative;
  z-index: 1;
}

.site-footer__brand {
  margin: 0;
  font: 700 0.95rem/1 "Lexend", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__copy {
  margin: 0;
  color: rgba(247, 243, 234, 0.66);
  font: 400 0.92rem/1.5 "Lexend", sans-serif;
}

@media (max-width: 991px) {
  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-header__meta {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--site-line);
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 243, 234, 0.9)),
      var(--site-surface);
    box-shadow: 0 22px 38px rgba(45, 31, 24, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__title {
    max-width: none;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
