:root {
  --color-bg: #f7f1e8;
  --color-bg-2: #fbf7ef;
  --color-surface: #fffaf2;
  --color-text: #251817;
  --color-muted: #736158;
  --color-primary: #8d1515;
  --color-primary-dark: #5f0d0d;
  --color-gold: #bd8432;
  --color-gold-soft: #e9d3ae;
  --color-border: rgba(122, 84, 45, 0.18);
  --color-border-strong: rgba(122, 84, 45, 0.3);

  --font-main: Arial, Helvetica, sans-serif;
  --container: 1180px;
  --radius-card: 4px;
  --shadow-soft: 0 24px 70px rgba(70, 35, 20, 0.09);
  --shadow-card: 0 14px 36px rgba(70, 35, 20, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(180deg, #fbf7ef 0%, var(--color-bg) 42%, #f4eadc 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
  background: rgba(255, 250, 242, 0.66);
  box-shadow: 0 0 0 1px rgba(122, 84, 45, 0.08);
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 86px;
  gap: 34px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  text-transform: uppercase;
  min-width: 132px;
}

.brand__name {
  font-size: 26px;
  font-weight: 900;
}

.brand__sub {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.main-nav a {
  position: relative;
  padding: 34px 0 31px;
  color: #3a2a26;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #4b3b36;
  white-space: nowrap;
}

.header-contacts a:first-child::before {
  content: "+";
  margin-right: 5px;
  color: var(--color-primary);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.6);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--color-primary);
}

.mobile-menu {
  display: none;
}

.section-soft,
.section,
.about-strip {
  position: relative;
}

.hero {
  overflow: hidden;
  min-height: 550px;
  border-bottom: 1px solid var(--color-border);
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.96) 0%, rgba(255, 250, 242, 0.82) 40%, rgba(247, 238, 224, 0.54) 100%),
    radial-gradient(circle at 74% 45%, rgba(196, 144, 68, 0.12), transparent 36%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(141, 21, 21, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 21, 21, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 44%, #000 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 550px;
  align-items: center;
  gap: 36px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 46px 0 58px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(50px, 8vw, 88px);
  line-height: 0.92;
  color: var(--color-primary);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.hero-subtitle {
  margin: 18px 0 0;
  color: var(--color-gold);
  font-size: clamp(23px, 3.1vw, 36px);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero-text {
  max-width: 430px;
  margin: 28px 0 0;
  color: #4a3832;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #a01b1b 0%, var(--color-primary-dark) 100%);
  box-shadow: 0 14px 28px rgba(141, 21, 21, 0.2);
}

.btn-primary::after {
  content: "→";
  margin-left: 14px;
}

.btn-ghost {
  border-color: var(--color-border-strong);
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.44);
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.radar {
  position: absolute;
  border: 1px solid rgba(189, 132, 50, 0.18);
  border-radius: 50%;
  inset: 40px 20px 40px 0;
}

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(189, 132, 50, 0.16);
  border-radius: 50%;
}

.radar::after {
  inset: 26%;
}

.radar-two {
  inset: 88px 84px 86px 112px;
  opacity: 0.75;
}

.product-rocket {
  position: absolute;
  right: 16px;
  top: 48%;
  width: min(94%, 650px);
  height: 82px;
  transform: translateY(-50%) rotate(-24deg);
  transform-origin: center;
  filter: drop-shadow(0 24px 18px rgba(0, 0, 0, 0.24));
}

.rocket-body {
  position: absolute;
  left: 92px;
  right: 74px;
  top: 28px;
  height: 26px;
  border-radius: 40px;
  background:
    linear-gradient(90deg, #1c1f1f 0%, #3b4140 11%, #121414 16%, #323737 34%, #080909 44%, #434948 58%, #101212 74%, #2f3434 100%);
}

.rocket-body::before,
.rocket-body::after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  width: 3px;
  background: rgba(189, 132, 50, 0.72);
}

.rocket-body::before {
  left: 34%;
}

.rocket-body::after {
  right: 26%;
}

.rocket-tip {
  position: absolute;
  left: 0;
  top: 22px;
  width: 116px;
  height: 38px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  background: linear-gradient(90deg, #080909 0%, #353c3b 100%);
}

.rocket-tail {
  position: absolute;
  right: 0;
  top: 24px;
  width: 92px;
  height: 34px;
  border-radius: 0 28px 28px 0;
  background: linear-gradient(90deg, #2d3332 0%, #090a0a 100%);
}

.about-strip {
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 250, 242, 0.72);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 46px;
  padding: 60px 0 56px;
  align-items: center;
}

.about-copy h2,
.section-head h2 {
  margin: 0;
  color: #201413;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  text-transform: uppercase;
}

.about-copy p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--color-muted);
  line-height: 1.72;
  font-size: 16px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  padding: 13px 18px;
  border: 1px solid var(--color-border-strong);
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.link-arrow::after {
  content: "→";
  margin-left: 10px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--color-border);
}

.stat-card {
  padding: 16px 24px 14px;
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.icon-line {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--color-gold);
  font-size: 38px;
  line-height: 1;
}

.stat-card h3 {
  margin: 0;
  color: #2b1d1a;
  font-size: 15px;
  line-height: 1.25;
  text-transform: uppercase;
}

.stat-card p {
  margin: 10px 0 0;
  color: var(--color-muted);
  line-height: 1.45;
  font-size: 13px;
}

.section {
  padding: 56px 0;
  border-bottom: 1px solid var(--color-border);
}

.section-bordered {
  background: rgba(255, 250, 242, 0.5);
}

.section-head {
  max-width: 690px;
  margin-bottom: 30px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.cards-grid {
  display: grid;
  gap: 18px;
}

.cards-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  min-height: 206px;
  padding: 34px 26px 24px;
  text-align: center;
  border: 1px solid var(--color-border);
  background: rgba(255, 250, 242, 0.72);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(141, 21, 21, 0.34);
  background: rgba(255, 255, 255, 0.72);
}

.feature-icon {
  color: var(--color-primary);
  font-size: 40px;
  line-height: 1;
}

.feature-card h3 {
  margin: 22px 0 0;
  text-transform: uppercase;
  font-size: 15px;
}

.feature-card p {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.5;
}

.feature-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 900;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.document-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  min-height: 124px;
  padding: 24px;
  border: 1px solid var(--color-border);
  background: rgba(255, 250, 242, 0.76);
}

.document-card span {
  grid-row: span 2;
  color: var(--color-gold);
  font-size: 32px;
}

.document-card p {
  margin: 0;
  color: #3a2a26;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.document-card strong {
  color: var(--color-primary);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.action-row {
  margin-top: 24px;
}

.partners {
  background: rgba(255, 250, 242, 0.72);
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: stretch;
}

.partner-list span {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 10px;
  color: #3a2a26;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  filter: grayscale(1);
  opacity: 0.86;
}

.site-footer {
  color: #f8eee2;
  background:
    linear-gradient(180deg, rgba(141, 21, 21, 0.94), rgba(80, 11, 11, 0.98)),
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.2), transparent 28%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  padding: 46px 0 34px;
  align-items: start;
}

.brand-footer {
  color: #f8d7a4;
}

.site-footer p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-nav,
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  font-style: normal;
}

.footer-contacts {
  justify-self: end;
  text-align: right;
  text-transform: none;
}

.footer-bottom {
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 20px;
  }

  .main-nav {
    gap: 18px;
  }

  .header-contacts {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cards-grid-four,
  .partner-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 74px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .mobile-menu {
    position: fixed;
    inset: 74px 14px auto;
    display: grid;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--color-border);
    background: rgba(255, 250, 242, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 14px 10px;
    color: #2b1d1a;
    font-weight: 900;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-border);
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 22px;
  }

  .hero-content {
    padding: 46px 0 10px;
  }

  .hero-visual {
    min-height: 280px;
  }

  .product-rocket {
    right: 0;
    width: 94%;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    border-left: 0;
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-right: 0;
    border-top: 1px solid var(--color-border);
  }

  .cards-grid-four,
  .document-grid,
  .partner-list,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contacts {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-shell {
    box-shadow: none;
  }

  .brand__name {
    font-size: 22px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .cards-grid-four,
  .document-grid,
  .partner-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .document-card {
    grid-template-columns: 34px 1fr;
    padding: 20px;
  }

  .section {
    padding: 44px 0;
  }
}

/* Step 2: closer corporate hero/header polish */
.site-shell {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.86), rgba(255, 250, 242, 0.72)),
    radial-gradient(circle at 82% 10%, rgba(189, 132, 50, 0.09), transparent 30%);
}

.site-header {
  position: relative;
  background: rgba(255, 250, 242, 0.96);
  backdrop-filter: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(141, 21, 21, 0.18), transparent);
}

.header-inner {
  min-height: 92px;
}

.brand {
  padding: 4px 0;
}

.brand__name {
  font-size: 28px;
  letter-spacing: 0.035em;
}

.brand__sub {
  letter-spacing: 0.055em;
}

.main-nav a {
  padding: 37px 0 34px;
}

.header-contacts a {
  position: relative;
  padding-left: 17px;
}

.header-contacts a:first-child::before {
  content: "☎";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-52%);
  margin: 0;
  font-size: 10px;
}

.header-contacts a:last-child::before {
  content: "✉";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-52%);
  color: var(--color-gold);
  font-size: 10px;
}

.hero {
  min-height: 585px;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 250, 242, 0.9) 34%, rgba(247, 238, 224, 0.62) 100%),
    radial-gradient(circle at 72% 42%, rgba(189, 132, 50, 0.16), transparent 34%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 26px;
  width: 590px;
  height: 590px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(189, 132, 50, 0.13) 0 1px, transparent 1px 38px),
    radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 58%);
  opacity: 0.78;
  pointer-events: none;
}

.hero-grid {
  min-height: 585px;
  grid-template-columns: 0.78fr 1.22fr;
}

.hero-content {
  padding-top: 58px;
  padding-bottom: 74px;
}

.hero-label {
  margin: -3px 0 74px;
  color: rgba(37, 24, 23, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(58px, 7vw, 86px);
  letter-spacing: -0.06em;
}

.hero-subtitle {
  margin-top: 14px;
  font-size: clamp(22px, 2.55vw, 31px);
  letter-spacing: -0.015em;
}

.hero-text {
  max-width: 465px;
  margin-top: 25px;
  font-size: 16px;
  line-height: 1.72;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(189, 132, 50, 0.26);
  color: #6d4b22;
  background: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.hero-actions {
  margin-top: 30px;
}

.btn {
  min-height: 46px;
  padding: 0 23px;
}

.hero-visual {
  z-index: 1;
  min-height: 470px;
}

.radar {
  inset: 6px -18px 34px 18px;
  opacity: 0.9;
}

.radar-two {
  inset: 68px 56px 92px 162px;
  opacity: 0.62;
}

.radar-center {
  position: absolute;
  right: 242px;
  top: 46%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(141, 21, 21, 0.38);
  box-shadow: 0 0 0 12px rgba(141, 21, 21, 0.04);
}

.product-rocket {
  right: -16px;
  top: 47%;
  width: min(103%, 720px);
  height: 90px;
  transform: translateY(-50%) rotate(-23deg);
}

.rocket-body {
  left: 102px;
  right: 86px;
  top: 30px;
  height: 29px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22), transparent 40%),
    linear-gradient(90deg, #171919 0%, #444b49 10%, #101111 16%, #353a39 33%, #090a0a 44%, #555c59 60%, #111313 75%, #343938 100%);
}

.rocket-tip {
  top: 23px;
  width: 128px;
  height: 43px;
}

.rocket-tail {
  top: 25px;
  width: 102px;
  height: 39px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-dots span {
  width: 26px;
  height: 3px;
  background: rgba(122, 84, 45, 0.28);
}

.hero-dots .is-active {
  background: var(--color-primary);
}

.about-grid {
  padding-top: 54px;
  padding-bottom: 52px;
}

.about-copy h2,
.section-head h2 {
  font-size: clamp(22px, 2.4vw, 31px);
}

.stat-card {
  padding-top: 20px;
  padding-bottom: 18px;
}

.feature-card,
.document-card {
  background: rgba(255, 250, 242, 0.82);
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .hero-label {
    margin-bottom: 46px;
  }

  .product-rocket {
    right: -30px;
    width: 110%;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
    backdrop-filter: blur(12px);
  }

  .header-inner {
    min-height: 74px;
  }

  .hero::after {
    right: -190px;
    top: 210px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-label {
    margin-bottom: 28px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .radar-center {
    right: 45%;
  }

  .product-rocket {
    right: -14px;
    width: 104%;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 44px;
  }

  .hero-meta {
    display: none;
  }

  .hero-visual {
    min-height: 230px;
  }

  .product-rocket {
    width: 116%;
    right: -48px;
    transform: translateY(-50%) rotate(-21deg);
  }

  .hero-dots {
    bottom: 14px;
  }
}

/* Step 4: homepage flow cleanup */
.about-strip + .section {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.62), rgba(247, 239, 226, 0.5));
}

.about-grid {
  padding-bottom: 62px;
}

/* ========================================================================== 
   Step 4 additions: clearer hero tags and contact CTA
   Product-focus section removed; product detail will be handled separately.
   ========================================================================== */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
  max-width: 430px;
}

.hero-tags span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(189, 132, 50, 0.34);
  background: rgba(255, 250, 242, 0.56);
  color: #4a342b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-dots span {
  display: block;
  width: 26px;
  height: 2px;
  background: rgba(189, 132, 50, 0.34);
}

.hero-dots span.is-active {
  width: 32px;
  background: var(--color-primary);
}



.contact-cta h2 {
  margin: 0;
  color: #201413;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.05;
  text-transform: uppercase;
}

.contact-cta p {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}





.contact-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.72), rgba(247, 239, 226, 0.72));
}

.contact-cta-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 42px;
  padding: 58px 0;
  align-items: center;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--color-border);
  background: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow-card);
}

.contact-panel a,
.contact-panel span {
  color: #2b1d1a;
  font-size: 15px;
  font-weight: 900;
}

.contact-panel a {
  color: var(--color-primary);
}

@media (max-width: 860px) {
  .hero-dots {
    bottom: 24px;
  }

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

  .contact-cta-grid {
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .hero-tags span {
    width: 100%;
    justify-content: center;
  }

  .contact-cta-grid {
    padding: 44px 0;
  }
}

/* ========================================================================== 
   Step 5: internal page structure
   ========================================================================== */
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.96), rgba(255, 250, 242, 0.78)),
    linear-gradient(rgba(189, 132, 50, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(189, 132, 50, 0.055) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -150px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(189, 132, 50, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(189, 132, 50, 0.035),
    0 0 0 96px rgba(189, 132, 50, 0.028),
    0 0 0 144px rgba(189, 132, 50, 0.02);
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  min-height: 300px;
  padding: 72px 0 68px;
  align-items: center;
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #201413;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.96;
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.75;
}

.page-hero-panel {
  display: grid;
  gap: 8px;
  padding: 30px;
  border: 1px solid var(--color-border);
  background: rgba(255, 250, 242, 0.74);
  box-shadow: var(--shadow-card);
  text-transform: uppercase;
}

.page-hero-panel span {
  color: var(--color-primary);
  font-size: 28px;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.page-hero-panel strong {
  color: var(--color-gold-dark);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.inner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.content-card {
  padding: 34px;
  border: 1px solid var(--color-border);
  background: rgba(255, 250, 242, 0.78);
  box-shadow: var(--shadow-card);
}

.content-card h2,
.two-column-content h2,
.contact-page-grid h2 {
  margin: 0;
  color: #201413;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  text-transform: uppercase;
}

.content-card p,
.two-column-content p,
.contact-page-grid p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.75;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 26px;
  align-items: stretch;
}

.product-card-large {
  padding: 42px;
  border: 1px solid var(--color-border);
  background: rgba(255, 250, 242, 0.8);
  box-shadow: var(--shadow-card);
}

.product-card-large h2 {
  margin: 0;
  color: #201413;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
}

.product-card-large p {
  max-width: 620px;
  margin: 22px 0 30px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
}

.product-mini-list {
  display: grid;
  gap: 14px;
}

.product-mini-list article {
  padding: 28px;
  border: 1px solid var(--color-border);
  background: rgba(255, 250, 242, 0.78);
  box-shadow: var(--shadow-card);
}

.product-mini-list span {
  color: var(--color-gold-dark);
  font-size: 12px;
  font-weight: 900;
}

.product-mini-list h3 {
  margin: 16px 0 0;
  color: #201413;
  font-size: 16px;
  line-height: 1.25;
  text-transform: uppercase;
}

.two-column-content,
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: start;
}

.compact-card {
  padding: 30px;
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 22px;
  color: #342522;
  font-size: 14px;
  font-weight: 800;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--color-gold-dark);
  transform: rotate(45deg);
}

.document-grid-page {
  margin-top: 0;
}

.contact-panel-large {
  min-height: 180px;
}

.main-nav a.is-active,
.mobile-menu a.is-active {
  color: var(--color-primary);
}

.mobile-menu a.is-active {
  background: rgba(143, 22, 22, 0.07);
}

@media (max-width: 960px) {
  .page-hero-grid,
  .product-layout,
  .two-column-content,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .inner-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-panel {
    max-width: 340px;
  }
}

@media (max-width: 560px) {
  .page-hero-grid {
    min-height: 0;
    padding: 54px 0;
  }

  .page-hero-panel,
  .content-card,
  .product-card-large,
  .product-mini-list article {
    padding: 24px;
  }
}

/* ========================================================================== 
   Step 6: simplified sitemap and homepage-integrated services/about/contact
   ========================================================================== */
.services-overview {
  background: linear-gradient(180deg, rgba(247, 239, 226, 0.52), rgba(255, 250, 242, 0.72));
}

.services-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: start;
}

.services-head {
  margin: 0;
  text-align: left;
}

.services-head h2 {
  max-width: 560px;
}

.services-head p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
}

.services-list {
  display: grid;
  gap: 14px;
}

.services-list article {
  display: grid;
  grid-template-columns: 54px 0.9fr 1.1fr;
  gap: 20px;
  align-items: center;
  padding: 25px 28px;
  border: 1px solid var(--color-border);
  background: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow-card);
}

.services-list span {
  color: var(--color-gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.services-list h3 {
  margin: 0;
  color: #201413;
  font-size: 16px;
  line-height: 1.25;
  text-transform: uppercase;
}

.services-list p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
}

.product-preview-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.78), rgba(247, 239, 226, 0.42));
}

.product-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-preview-card {
  display: grid;
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--color-border);
  background: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-preview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(143, 22, 22, 0.24);
  box-shadow: 0 26px 70px rgba(70, 35, 20, 0.11);
}

.product-preview-media,
.product-detail-media {
  position: relative;
  min-height: 126px;
  overflow: hidden;
  border: 1px solid rgba(189, 132, 50, 0.17);
  background:
    radial-gradient(circle at 72% 28%, rgba(189, 132, 50, 0.18), transparent 22%),
    linear-gradient(rgba(189, 132, 50, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(189, 132, 50, 0.06) 1px, transparent 1px),
    rgba(247, 239, 226, 0.6);
  background-size: auto, 24px 24px, 24px 24px, auto;
}

.product-preview-media::after,
.product-detail-media::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 12%;
  top: 50%;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #151716, #4e5753, #111312);
  transform: translateY(-50%) rotate(-18deg);
  box-shadow: 0 18px 32px rgba(20, 16, 12, 0.16);
}

.product-preview-card strong {
  margin-top: 22px;
  color: #201413;
  font-size: 19px;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.product-preview-card em {
  margin-top: 7px;
  color: var(--color-muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.product-detail-section {
  background: rgba(255, 250, 242, 0.72);
}

.product-detail-list {
  display: grid;
  gap: 22px;
}

.product-detail-card {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid var(--color-border);
  background: rgba(255, 250, 242, 0.84);
  box-shadow: var(--shadow-card);
}

.product-detail-card .product-detail-media {
  min-height: 230px;
}

.product-detail-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.product-detail-content h3 {
  margin: 0;
  color: #201413;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.98;
  text-transform: uppercase;
}

.product-detail-content p:not(.section-kicker) {
  max-width: 720px;
  margin: 18px 0 28px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 960px) {
  .services-layout,
  .product-detail-card {
    grid-template-columns: 1fr;
  }

  .product-preview-grid {
    grid-template-columns: 1fr;
  }

  .services-list article {
    grid-template-columns: 44px 1fr;
  }

  .services-list p {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .services-list article,
  .product-detail-card {
    padding: 22px;
  }

  .services-list article {
    grid-template-columns: 1fr;
  }

  .services-list p {
    grid-column: auto;
  }

  .product-detail-card .product-detail-media {
    min-height: 170px;
  }
}


/* ========================================================================== 
   Step 7: contact form, footer enrichment, Turnstile/GA ready state, type scale
   ========================================================================== */
.hero h1 {
  font-size: clamp(44px, 5.8vw, 72px);
  letter-spacing: -0.045em;
}

.page-hero h1 {
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.02;
}

.product-card-large h2,
.product-detail-content h3 {
  font-size: clamp(28px, 3.8vw, 48px);
}

.contact-section h2,
.contact-cta h2,
.section-head h2,
.about-copy h2,
.services-head h2 {
  font-size: clamp(24px, 2.75vw, 36px);
  line-height: 1.08;
}

.icon-line {
  font-size: 52px;
  line-height: 1;
}

.stat-card .icon-line,
.feature-icon,
.document-card span {
  font-size: 48px;
}

.contact-section {
  border-top: 1px solid var(--color-border);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.76), rgba(247, 239, 226, 0.7)),
    radial-gradient(circle at 80% 20%, rgba(189, 132, 50, 0.13), transparent 32%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 46px;
  padding: 66px 0;
  align-items: start;
}

.contact-copy h2 {
  margin: 0;
  color: #201413;
  text-transform: uppercase;
}

.contact-copy p:not(.section-kicker) {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
}

.contact-small-info {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-small-info a,
.contact-small-info span {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #2b1d1a;
  font-size: 15px;
}

.contact-small-info span span,
.contact-small-info a span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  background: rgba(255, 250, 242, 0.86);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--color-border);
  background: rgba(255, 250, 242, 0.92);
  box-shadow: var(--shadow-card);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #2b1d1a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.54);
  color: var(--color-text);
  padding: 14px 15px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(143, 22, 22, 0.42);
  background: #fffaf2;
  box-shadow: 0 0 0 4px rgba(143, 22, 22, 0.06);
}

.contact-form .is-invalid {
  border-color: rgba(143, 22, 22, 0.8);
  box-shadow: 0 0 0 4px rgba(143, 22, 22, 0.08);
}

.required-mark {
  color: var(--color-primary);
  font-style: normal;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-wrap {
  min-height: 68px;
  display: flex;
  align-items: center;
}

.form-status {
  display: none;
  margin: 0;
  padding: 13px 15px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #214b2a;
  border-color: rgba(33, 75, 42, 0.22);
  background: rgba(33, 75, 42, 0.08);
}

.form-status.is-error {
  color: var(--color-primary);
  border-color: rgba(143, 22, 22, 0.22);
  background: rgba(143, 22, 22, 0.07);
}

.contact-submit.is-loading {
  opacity: 0.78;
  cursor: wait;
}

.footer-grid-rich {
  grid-template-columns: 1.45fr 0.8fr 0.9fr 1fr;
  gap: 44px;
  padding: 54px 0 38px;
}

.footer-col,
.footer-brand-col,
.footer-nav,
.footer-contacts {
  min-width: 0;
}

.footer-brand-col p {
  max-width: 320px;
  line-height: 1.7;
}

.footer-nav strong,
.footer-contacts strong {
  margin-bottom: 8px;
  color: #f8d7a4;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-nav a,
.footer-contacts a,
.footer-contacts span {
  color: rgba(255, 255, 255, 0.82);
}

.footer-nav a:hover,
.footer-contacts a:hover {
  color: #fff;
}

.footer-bottom-rich {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 960px) {
  .contact-grid,
  .footer-grid-rich {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    gap: 30px;
  }
}

@media (max-width: 720px) {
  .contact-grid,
  .form-row,
  .footer-grid-rich {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-bottom-rich {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 40px;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .contact-grid {
    padding: 48px 0;
  }
}


/* Step 8: language menu, privacy modal and contact form cleanup */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--color-border);
  background: rgba(255, 250, 242, 0.72);
}

.language-switcher a,
.mobile-language a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 26px;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.language-switcher a.is-active,
.mobile-language a.is-active {
  color: var(--color-primary);
  background: rgba(143, 22, 22, 0.08);
}

.mobile-language {
  display: flex;
  gap: 8px;
  padding: 12px 18px 16px;
  border-top: 1px solid var(--color-border);
}

.form-row-single {
  grid-template-columns: minmax(0, 1fr);
}

.footer-language .is-active {
  color: #f4d6a2;
}

.footer-legal-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 250, 242, 0.74);
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-legal-link:hover,
.footer-legal-link:focus-visible {
  color: #fffaf2;
  text-decoration: underline;
}

.site-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.site-modal.is-open,
.site-modal.is-closing {
  display: flex;
}

.site-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 15, 14, 0.68);
  backdrop-filter: blur(8px);
}

.site-modal__dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  padding: 42px;
  border: 1px solid rgba(198, 144, 63, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(247, 242, 234, 0.98)),
    var(--color-surface);
  box-shadow: 0 28px 90px rgba(30, 12, 10, 0.32);
}

.site-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  background: rgba(255, 250, 242, 0.7);
  color: var(--color-primary);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.site-modal__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-modal__title {
  margin: 0 0 22px;
  color: var(--color-text);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.98;
  text-transform: uppercase;
}

.site-modal__content {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.8;
}

.site-modal__content h4 {
  margin: 26px 0 8px;
  color: var(--color-text);
  font-size: 15px;
  text-transform: uppercase;
}

.site-modal__content p {
  margin: 0 0 14px;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .language-switcher {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-modal {
    padding: 12px;
  }

  .site-modal__dialog {
    padding: 32px 22px;
  }
}


/* Step 9: header contact icons and final footer alignment */
.header-contacts {
  gap: 18px;
}

.header-contacts a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding-left: 24px;
  line-height: 1;
}

.header-contacts a:first-child::before,
.header-contacts a:last-child::before {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  font-size: 15px;
  line-height: 1;
  color: var(--color-primary);
  background: rgba(143, 22, 22, 0.06);
  border: 1px solid rgba(143, 22, 22, 0.14);
  border-radius: 999px;
}

.header-contacts a:last-child::before {
  color: var(--color-gold);
  background: rgba(198, 144, 63, 0.08);
  border-color: rgba(198, 144, 63, 0.18);
}

.site-footer {
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.18;
}

.footer-grid-final {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.55fr 0.82fr 1fr 1.25fr;
  gap: 54px;
  padding: 56px 0 42px;
  align-items: start;
}

.footer-brand-col p {
  max-width: 360px;
  margin-top: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.76);
}

.footer-language-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.footer-language-inline a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.footer-language-inline a.is-active,
.footer-language-inline a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
}

.footer-grid-final .footer-nav,
.footer-grid-final .footer-contacts {
  gap: 11px;
  text-align: left;
  justify-self: stretch;
}

.footer-grid-final .footer-nav strong,
.footer-grid-final .footer-contacts strong {
  margin-bottom: 12px;
  color: #f8d7a4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid-final .footer-nav a,
.footer-grid-final .footer-contacts a,
.footer-grid-final .footer-contacts span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.footer-grid-final .footer-nav a:hover,
.footer-grid-final .footer-contacts a:hover {
  color: #fff;
}

.footer-contact-card {
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-contact-card a,
.footer-contact-card > span:not(:first-child) {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  align-items: center;
  text-transform: none;
}

.footer-contact-card span[aria-hidden="true"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #f8d7a4;
  font-size: 12px;
}

.footer-bottom-final {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.footer-bottom-final .footer-legal-link {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom-final .footer-legal-link:hover {
  color: #fff;
}

@media (max-width: 1120px) {
  .header-contacts a:last-child {
    display: none;
  }

  .footer-grid-final {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-contact-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .footer-grid-final {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 0 30px;
  }

  .footer-bottom-final {
    flex-direction: column;
    align-items: flex-start;
  }
}
